@fluentui/react-portal 9.3.1 → 9.3.3
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.json +46 -1
- package/CHANGELOG.md +11 -2
- package/README.md +2 -2
- package/package.json +3 -3
package/CHANGELOG.json
CHANGED
@@ -2,7 +2,52 @@
|
|
2
2
|
"name": "@fluentui/react-portal",
|
3
3
|
"entries": [
|
4
4
|
{
|
5
|
-
"date": "
|
5
|
+
"date": "Tue, 25 Jul 2023 13:26:26 GMT",
|
6
|
+
"tag": "@fluentui/react-portal_v9.3.3",
|
7
|
+
"version": "9.3.3",
|
8
|
+
"comments": {
|
9
|
+
"patch": [
|
10
|
+
{
|
11
|
+
"author": "beachball",
|
12
|
+
"package": "@fluentui/react-portal",
|
13
|
+
"comment": "Bump @fluentui/react-tabster to v9.11.0",
|
14
|
+
"commit": "c0c62f9383781f0dbebd800eaa2c64ef761075a2"
|
15
|
+
}
|
16
|
+
]
|
17
|
+
}
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"date": "Thu, 20 Jul 2023 18:27:31 GMT",
|
21
|
+
"tag": "@fluentui/react-portal_v9.3.2",
|
22
|
+
"version": "9.3.2",
|
23
|
+
"comments": {
|
24
|
+
"none": [
|
25
|
+
{
|
26
|
+
"author": "olfedias@microsoft.com",
|
27
|
+
"package": "@fluentui/react-portal",
|
28
|
+
"commit": "5a4b16715e8e929f11d8113f710e578ca73acaa6",
|
29
|
+
"comment": "chore: migrate to monosize"
|
30
|
+
}
|
31
|
+
]
|
32
|
+
}
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"date": "Thu, 13 Jul 2023 21:25:44 GMT",
|
36
|
+
"tag": "@fluentui/react-portal_v9.3.1",
|
37
|
+
"version": "9.3.1",
|
38
|
+
"comments": {
|
39
|
+
"none": [
|
40
|
+
{
|
41
|
+
"author": "jirivyhnalek@microsoft.com",
|
42
|
+
"package": "@fluentui/react-portal",
|
43
|
+
"commit": "8d06e6d07e96f556e72b7a597664f14bef933eac",
|
44
|
+
"comment": "Update react-components/react-portal README.md"
|
45
|
+
}
|
46
|
+
]
|
47
|
+
}
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"date": "Mon, 03 Jul 2023 13:34:28 GMT",
|
6
51
|
"tag": "@fluentui/react-portal_v9.3.1",
|
7
52
|
"version": "9.3.1",
|
8
53
|
"comments": {
|
package/CHANGELOG.md
CHANGED
@@ -1,12 +1,21 @@
|
|
1
1
|
# Change Log - @fluentui/react-portal
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Tue, 25 Jul 2023 13:26:26 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
+
## [9.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.3.3)
|
8
|
+
|
9
|
+
Tue, 25 Jul 2023 13:26:26 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.3.2..@fluentui/react-portal_v9.3.3)
|
11
|
+
|
12
|
+
### Patches
|
13
|
+
|
14
|
+
- Bump @fluentui/react-tabster to v9.11.0 ([PR #28530](https://github.com/microsoft/fluentui/pull/28530) by beachball)
|
15
|
+
|
7
16
|
## [9.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-portal_v9.3.1)
|
8
17
|
|
9
|
-
Mon, 03 Jul 2023 13:
|
18
|
+
Mon, 03 Jul 2023 13:34:28 GMT
|
10
19
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-portal_v9.3.0..@fluentui/react-portal_v9.3.1)
|
11
20
|
|
12
21
|
### 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.
|
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.
|
3
|
+
"version": "9.3.3",
|
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": "
|
16
|
+
"bundle-size": "monosize measure",
|
17
17
|
"clean": "just-scripts clean",
|
18
18
|
"code-style": "just-scripts code-style",
|
19
19
|
"just": "just-scripts",
|
@@ -33,7 +33,7 @@
|
|
33
33
|
},
|
34
34
|
"dependencies": {
|
35
35
|
"@fluentui/react-shared-contexts": "^9.6.0",
|
36
|
-
"@fluentui/react-tabster": "^9.
|
36
|
+
"@fluentui/react-tabster": "^9.11.0",
|
37
37
|
"@fluentui/react-utilities": "^9.10.1",
|
38
38
|
"@griffel/react": "^1.5.7",
|
39
39
|
"@swc/helpers": "^0.4.14",
|