@fluentui/react-portal 9.3.1 → 9.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.json CHANGED
@@ -2,7 +2,37 @@
2
2
  "name": "@fluentui/react-portal",
3
3
  "entries": [
4
4
  {
5
- "date": "Mon, 03 Jul 2023 13:32:38 GMT",
5
+ "date": "Thu, 20 Jul 2023 18:24:23 GMT",
6
+ "tag": "@fluentui/react-portal_v9.3.2",
7
+ "version": "9.3.2",
8
+ "comments": {
9
+ "none": [
10
+ {
11
+ "author": "olfedias@microsoft.com",
12
+ "package": "@fluentui/react-portal",
13
+ "commit": "5a4b16715e8e929f11d8113f710e578ca73acaa6",
14
+ "comment": "chore: migrate to monosize"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Thu, 13 Jul 2023 21:25:44 GMT",
21
+ "tag": "@fluentui/react-portal_v9.3.1",
22
+ "version": "9.3.1",
23
+ "comments": {
24
+ "none": [
25
+ {
26
+ "author": "jirivyhnalek@microsoft.com",
27
+ "package": "@fluentui/react-portal",
28
+ "commit": "8d06e6d07e96f556e72b7a597664f14bef933eac",
29
+ "comment": "Update react-components/react-portal README.md"
30
+ }
31
+ ]
32
+ }
33
+ },
34
+ {
35
+ "date": "Mon, 03 Jul 2023 13:34:28 GMT",
6
36
  "tag": "@fluentui/react-portal_v9.3.1",
7
37
  "version": "9.3.1",
8
38
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # Change Log - @fluentui/react-portal
2
2
 
3
- This log was last generated on Mon, 03 Jul 2023 13:32:38 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 03 Jul 2023 13:34:28 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
7
  ## [9.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.3.1)
8
8
 
9
- Mon, 03 Jul 2023 13:32:38 GMT
9
+ Mon, 03 Jul 2023 13:34:28 GMT
10
10
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.3.0..@fluentui/react-portal_v9.3.1)
11
11
 
12
12
  ### Patches
package/README.md CHANGED
@@ -81,8 +81,8 @@ Below shows what a virtual parent is
81
81
  ```tsx
82
82
  // Setting a virtual parent
83
83
 
84
- const parent document.getElementById('parent')
85
- const child document.getElement.ById('child');
84
+ const parent = document.getElementById('parent');
85
+ const child = document.getElementById('child');
86
86
 
87
87
  child._virtual.parent = parent;
88
88
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-portal",
3
- "version": "9.3.1",
3
+ "version": "9.3.2",
4
4
  "description": "A utility component that creates portals compatible with Fluent UI",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -13,7 +13,7 @@
13
13
  "license": "MIT",
14
14
  "scripts": {
15
15
  "build": "just-scripts build",
16
- "bundle-size": "bundle-size measure",
16
+ "bundle-size": "monosize measure",
17
17
  "clean": "just-scripts clean",
18
18
  "code-style": "just-scripts code-style",
19
19
  "just": "just-scripts",