@fluentui/react-tree 9.0.0-beta.20 → 9.0.0-beta.22
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 +131 -9
- package/CHANGELOG.md +41 -10
- package/dist/index.d.ts +71 -148
- package/lib/components/Tree/Tree.js.map +1 -1
- package/lib/components/Tree/Tree.types.js.map +1 -1
- package/lib/components/Tree/useRootTree.js +1 -1
- package/lib/components/Tree/useRootTree.js.map +1 -1
- package/lib/components/TreeItem/TreeItem.js.map +1 -1
- package/lib/components/TreeItem/TreeItem.types.js.map +1 -1
- package/lib/components/TreeItem/index.js +1 -0
- package/lib/components/TreeItem/index.js.map +1 -1
- package/lib/components/TreeItem/useTreeItem.js +8 -6
- package/lib/components/TreeItem/useTreeItem.js.map +1 -1
- package/lib/components/TreeItem/useTreeItemStyles.styles.js +3 -5
- package/lib/components/TreeItem/useTreeItemStyles.styles.js.map +1 -1
- package/lib/components/TreeItemLayout/TreeItemLayout.types.js.map +1 -1
- package/lib/components/TreeItemLayout/renderTreeItemLayout.js +4 -1
- package/lib/components/TreeItemLayout/renderTreeItemLayout.js.map +1 -1
- package/lib/components/TreeItemLayout/useTreeItemLayout.js +26 -2
- package/lib/components/TreeItemLayout/useTreeItemLayout.js.map +1 -1
- package/lib/components/TreeItemLayout/useTreeItemLayoutStyles.styles.js +103 -11
- package/lib/components/TreeItemLayout/useTreeItemLayoutStyles.styles.js.map +1 -1
- package/lib/components/TreeItemPersonaLayout/TreeItemPersonaLayout.types.js.map +1 -1
- package/lib/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.js +4 -1
- package/lib/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.js.map +1 -1
- package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.js +5 -7
- package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.js.map +1 -1
- package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.styles.js +95 -25
- package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.styles.js.map +1 -1
- package/lib/contexts/treeContext.js.map +1 -1
- package/lib/contexts/treeItemContext.js +1 -1
- package/lib/contexts/treeItemContext.js.map +1 -1
- package/lib/hooks/useFlatTree.js +11 -2
- package/lib/hooks/useFlatTree.js.map +1 -1
- package/lib/hooks/useFlatTreeNavigation.js +8 -5
- package/lib/hooks/useFlatTreeNavigation.js.map +1 -1
- package/lib/hooks/useNestedTreeNavigation.js.map +1 -1
- package/lib/hooks/useOpenItemsState.js +3 -0
- package/lib/hooks/useOpenItemsState.js.map +1 -1
- package/lib/index.js +1 -2
- package/lib/index.js.map +1 -1
- package/lib/utils/createFlatTreeItems.js +4 -11
- package/lib/utils/createFlatTreeItems.js.map +1 -1
- package/lib/utils/flattenTree.js.map +1 -1
- package/lib/utils/getTreeItemValueFromElement.js +4 -0
- package/lib/utils/getTreeItemValueFromElement.js.map +1 -0
- package/lib-commonjs/components/Tree/useRootTree.js +1 -1
- package/lib-commonjs/components/Tree/useRootTree.js.map +1 -1
- package/lib-commonjs/components/TreeItem/index.js +1 -0
- package/lib-commonjs/components/TreeItem/index.js.map +1 -1
- package/lib-commonjs/components/TreeItem/useTreeItem.js +8 -6
- package/lib-commonjs/components/TreeItem/useTreeItem.js.map +1 -1
- package/lib-commonjs/components/TreeItem/useTreeItemStyles.styles.js +4 -8
- package/lib-commonjs/components/TreeItem/useTreeItemStyles.styles.js.map +1 -1
- package/lib-commonjs/components/TreeItemLayout/renderTreeItemLayout.js +4 -1
- package/lib-commonjs/components/TreeItemLayout/renderTreeItemLayout.js.map +1 -1
- package/lib-commonjs/components/TreeItemLayout/useTreeItemLayout.js +25 -2
- package/lib-commonjs/components/TreeItemLayout/useTreeItemLayout.js.map +1 -1
- package/lib-commonjs/components/TreeItemLayout/useTreeItemLayoutStyles.styles.js +180 -13
- package/lib-commonjs/components/TreeItemLayout/useTreeItemLayoutStyles.styles.js.map +1 -1
- package/lib-commonjs/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.js +4 -1
- package/lib-commonjs/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.js.map +1 -1
- package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.js +5 -7
- package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.js.map +1 -1
- package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.styles.js +175 -30
- package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.styles.js.map +1 -1
- package/lib-commonjs/contexts/treeItemContext.js +1 -1
- package/lib-commonjs/contexts/treeItemContext.js.map +1 -1
- package/lib-commonjs/hooks/useFlatTree.js +10 -1
- package/lib-commonjs/hooks/useFlatTree.js.map +1 -1
- package/lib-commonjs/hooks/useFlatTreeNavigation.js +8 -5
- package/lib-commonjs/hooks/useFlatTreeNavigation.js.map +1 -1
- package/lib-commonjs/hooks/useOpenItemsState.js +3 -0
- package/lib-commonjs/hooks/useOpenItemsState.js.map +1 -1
- package/lib-commonjs/index.js +1 -6
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/utils/createFlatTreeItems.js +8 -13
- package/lib-commonjs/utils/createFlatTreeItems.js.map +1 -1
- package/lib-commonjs/utils/getTreeItemValueFromElement.js +18 -0
- package/lib-commonjs/utils/getTreeItemValueFromElement.js.map +1 -0
- package/package.json +9 -9
- package/lib/TreeItemAside.js +0 -1
- package/lib/TreeItemAside.js.map +0 -1
- package/lib/components/TreeItemAside/TreeItemAside.js +0 -13
- package/lib/components/TreeItemAside/TreeItemAside.js.map +0 -1
- package/lib/components/TreeItemAside/TreeItemAside.types.js +0 -1
- package/lib/components/TreeItemAside/TreeItemAside.types.js.map +0 -1
- package/lib/components/TreeItemAside/index.js +0 -5
- package/lib/components/TreeItemAside/index.js.map +0 -1
- package/lib/components/TreeItemAside/renderTreeItemAside.js +0 -14
- package/lib/components/TreeItemAside/renderTreeItemAside.js.map +0 -1
- package/lib/components/TreeItemAside/useTreeItemAside.js +0 -30
- package/lib/components/TreeItemAside/useTreeItemAside.js.map +0 -1
- package/lib/components/TreeItemAside/useTreeItemAsideStyles.styles.js +0 -47
- package/lib/components/TreeItemAside/useTreeItemAsideStyles.styles.js.map +0 -1
- package/lib-commonjs/TreeItemAside.js +0 -6
- package/lib-commonjs/TreeItemAside.js.map +0 -1
- package/lib-commonjs/components/TreeItemAside/TreeItemAside.js +0 -19
- package/lib-commonjs/components/TreeItemAside/TreeItemAside.js.map +0 -1
- package/lib-commonjs/components/TreeItemAside/TreeItemAside.types.js +0 -4
- package/lib-commonjs/components/TreeItemAside/TreeItemAside.types.js.map +0 -1
- package/lib-commonjs/components/TreeItemAside/index.js +0 -10
- package/lib-commonjs/components/TreeItemAside/index.js.map +0 -1
- package/lib-commonjs/components/TreeItemAside/renderTreeItemAside.js +0 -20
- package/lib-commonjs/components/TreeItemAside/renderTreeItemAside.js.map +0 -1
- package/lib-commonjs/components/TreeItemAside/useTreeItemAside.js +0 -31
- package/lib-commonjs/components/TreeItemAside/useTreeItemAside.js.map +0 -1
- package/lib-commonjs/components/TreeItemAside/useTreeItemAsideStyles.styles.js +0 -90
- package/lib-commonjs/components/TreeItemAside/useTreeItemAsideStyles.styles.js.map +0 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,129 @@
|
|
|
2
2
|
"name": "@fluentui/react-tree",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Wed, 28 Jun 2023 11:08:37 GMT",
|
|
6
|
+
"tag": "@fluentui/react-tree_v9.0.0-beta.22",
|
|
7
|
+
"version": "9.0.0-beta.22",
|
|
8
|
+
"comments": {
|
|
9
|
+
"none": [
|
|
10
|
+
{
|
|
11
|
+
"author": "martinhochel@microsoft.com",
|
|
12
|
+
"package": "@fluentui/react-tree",
|
|
13
|
+
"commit": "fbe878e9c9785588197481f172c42c2c0a230292",
|
|
14
|
+
"comment": "fix: update .npmignore to unify v8 packages and exclude project.json"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"author": "petrduda@microsoft.com",
|
|
18
|
+
"package": "@fluentui/react-tree",
|
|
19
|
+
"commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7",
|
|
20
|
+
"comment": "bugfix: aligns TreeItem leaf and branch nodes"
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"prerelease": [
|
|
24
|
+
{
|
|
25
|
+
"author": "bernardo.sunderhus@gmail.com",
|
|
26
|
+
"package": "@fluentui/react-tree",
|
|
27
|
+
"commit": "55b25f7aabb9db09beb11c61ee334c04c89ada74",
|
|
28
|
+
"comment": "chore: export useTreeItemContextValues_unstable"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"author": "beachball",
|
|
32
|
+
"package": "@fluentui/react-tree",
|
|
33
|
+
"comment": "Bump @fluentui/react-aria to v9.3.25",
|
|
34
|
+
"commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"author": "beachball",
|
|
38
|
+
"package": "@fluentui/react-tree",
|
|
39
|
+
"comment": "Bump @fluentui/react-avatar to v9.5.9",
|
|
40
|
+
"commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"author": "beachball",
|
|
44
|
+
"package": "@fluentui/react-tree",
|
|
45
|
+
"comment": "Bump @fluentui/react-button to v9.3.20",
|
|
46
|
+
"commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"author": "beachball",
|
|
50
|
+
"package": "@fluentui/react-tree",
|
|
51
|
+
"comment": "Bump @fluentui/react-context-selector to v9.1.25",
|
|
52
|
+
"commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"author": "beachball",
|
|
56
|
+
"package": "@fluentui/react-tree",
|
|
57
|
+
"comment": "Bump @fluentui/react-portal to v9.2.16",
|
|
58
|
+
"commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"author": "beachball",
|
|
62
|
+
"package": "@fluentui/react-tree",
|
|
63
|
+
"comment": "Bump @fluentui/react-tabster to v9.9.1",
|
|
64
|
+
"commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"author": "beachball",
|
|
68
|
+
"package": "@fluentui/react-tree",
|
|
69
|
+
"comment": "Bump @fluentui/react-utilities to v9.10.0",
|
|
70
|
+
"commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"author": "beachball",
|
|
74
|
+
"package": "@fluentui/react-tree",
|
|
75
|
+
"comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.9",
|
|
76
|
+
"commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"date": "Tue, 27 Jun 2023 11:21:23 GMT",
|
|
83
|
+
"tag": "@fluentui/react-tree_v9.0.0-beta.21",
|
|
84
|
+
"version": "9.0.0-beta.21",
|
|
85
|
+
"comments": {
|
|
86
|
+
"prerelease": [
|
|
87
|
+
{
|
|
88
|
+
"author": "bernardo.sunderhus@gmail.com",
|
|
89
|
+
"package": "@fluentui/react-tree",
|
|
90
|
+
"commit": "90acd97916fbb771d436062cad6a3f85be974e39",
|
|
91
|
+
"comment": "bugfix: makes value property on TreeItem less generic to simplify internals"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"author": "bernardo.sunderhus@gmail.com",
|
|
95
|
+
"package": "@fluentui/react-tree",
|
|
96
|
+
"commit": "56143ef533ed77608a3590e81b1d6fb3bca1357c",
|
|
97
|
+
"comment": "bugfix: rollback to actions and aside as a slot to ensure positioning of internals"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"author": "beachball",
|
|
101
|
+
"package": "@fluentui/react-tree",
|
|
102
|
+
"comment": "Bump @fluentui/react-avatar to v9.5.8",
|
|
103
|
+
"commit": "1c7e6451a11fb9c59e344df616394a320e8031c4"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"author": "beachball",
|
|
107
|
+
"package": "@fluentui/react-tree",
|
|
108
|
+
"comment": "Bump @fluentui/react-button to v9.3.19",
|
|
109
|
+
"commit": "1c7e6451a11fb9c59e344df616394a320e8031c4"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"author": "beachball",
|
|
113
|
+
"package": "@fluentui/react-tree",
|
|
114
|
+
"comment": "Bump @fluentui/react-portal to v9.2.15",
|
|
115
|
+
"commit": "1c7e6451a11fb9c59e344df616394a320e8031c4"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"author": "beachball",
|
|
119
|
+
"package": "@fluentui/react-tree",
|
|
120
|
+
"comment": "Bump @fluentui/react-tabster to v9.9.0",
|
|
121
|
+
"commit": "1c7e6451a11fb9c59e344df616394a320e8031c4"
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"date": "Mon, 26 Jun 2023 09:53:55 GMT",
|
|
6
128
|
"tag": "@fluentui/react-tree_v9.0.0-beta.20",
|
|
7
129
|
"version": "9.0.0-beta.20",
|
|
8
130
|
"comments": {
|
|
@@ -11,49 +133,49 @@
|
|
|
11
133
|
"author": "beachball",
|
|
12
134
|
"package": "@fluentui/react-tree",
|
|
13
135
|
"comment": "Bump @fluentui/react-aria to v9.3.24",
|
|
14
|
-
"commit": "
|
|
136
|
+
"commit": "3e47257676ace0598b9ed336a54befd4d063c332"
|
|
15
137
|
},
|
|
16
138
|
{
|
|
17
139
|
"author": "beachball",
|
|
18
140
|
"package": "@fluentui/react-tree",
|
|
19
141
|
"comment": "Bump @fluentui/react-avatar to v9.5.7",
|
|
20
|
-
"commit": "
|
|
142
|
+
"commit": "3e47257676ace0598b9ed336a54befd4d063c332"
|
|
21
143
|
},
|
|
22
144
|
{
|
|
23
145
|
"author": "beachball",
|
|
24
146
|
"package": "@fluentui/react-tree",
|
|
25
147
|
"comment": "Bump @fluentui/react-button to v9.3.18",
|
|
26
|
-
"commit": "
|
|
148
|
+
"commit": "3e47257676ace0598b9ed336a54befd4d063c332"
|
|
27
149
|
},
|
|
28
150
|
{
|
|
29
151
|
"author": "beachball",
|
|
30
152
|
"package": "@fluentui/react-tree",
|
|
31
153
|
"comment": "Bump @fluentui/react-context-selector to v9.1.24",
|
|
32
|
-
"commit": "
|
|
154
|
+
"commit": "3e47257676ace0598b9ed336a54befd4d063c332"
|
|
33
155
|
},
|
|
34
156
|
{
|
|
35
157
|
"author": "beachball",
|
|
36
158
|
"package": "@fluentui/react-tree",
|
|
37
159
|
"comment": "Bump @fluentui/react-portal to v9.2.14",
|
|
38
|
-
"commit": "
|
|
160
|
+
"commit": "3e47257676ace0598b9ed336a54befd4d063c332"
|
|
39
161
|
},
|
|
40
162
|
{
|
|
41
163
|
"author": "beachball",
|
|
42
164
|
"package": "@fluentui/react-tree",
|
|
43
165
|
"comment": "Bump @fluentui/react-tabster to v9.8.1",
|
|
44
|
-
"commit": "
|
|
166
|
+
"commit": "3e47257676ace0598b9ed336a54befd4d063c332"
|
|
45
167
|
},
|
|
46
168
|
{
|
|
47
169
|
"author": "beachball",
|
|
48
170
|
"package": "@fluentui/react-tree",
|
|
49
171
|
"comment": "Bump @fluentui/react-utilities to v9.9.4",
|
|
50
|
-
"commit": "
|
|
172
|
+
"commit": "3e47257676ace0598b9ed336a54befd4d063c332"
|
|
51
173
|
},
|
|
52
174
|
{
|
|
53
175
|
"author": "beachball",
|
|
54
176
|
"package": "@fluentui/react-tree",
|
|
55
177
|
"comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.8",
|
|
56
|
-
"commit": "
|
|
178
|
+
"commit": "3e47257676ace0598b9ed336a54befd4d063c332"
|
|
57
179
|
}
|
|
58
180
|
]
|
|
59
181
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,55 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-tree
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 28 Jun 2023 11:08:37 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.0.0-beta.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.22)
|
|
8
|
+
|
|
9
|
+
Wed, 28 Jun 2023 11:08:37 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.21..@fluentui/react-tree_v9.0.0-beta.22)
|
|
11
|
+
|
|
12
|
+
### Changes
|
|
13
|
+
|
|
14
|
+
- chore: export useTreeItemContextValues_unstable ([PR #28344](https://github.com/microsoft/fluentui/pull/28344) by bernardo.sunderhus@gmail.com)
|
|
15
|
+
- Bump @fluentui/react-aria to v9.3.25 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball)
|
|
16
|
+
- Bump @fluentui/react-avatar to v9.5.9 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball)
|
|
17
|
+
- Bump @fluentui/react-button to v9.3.20 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball)
|
|
18
|
+
- Bump @fluentui/react-context-selector to v9.1.25 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball)
|
|
19
|
+
- Bump @fluentui/react-portal to v9.2.16 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball)
|
|
20
|
+
- Bump @fluentui/react-tabster to v9.9.1 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball)
|
|
21
|
+
- Bump @fluentui/react-utilities to v9.10.0 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball)
|
|
22
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.9 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball)
|
|
23
|
+
|
|
24
|
+
## [9.0.0-beta.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.21)
|
|
25
|
+
|
|
26
|
+
Tue, 27 Jun 2023 11:21:23 GMT
|
|
27
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.20..@fluentui/react-tree_v9.0.0-beta.21)
|
|
28
|
+
|
|
29
|
+
### Changes
|
|
30
|
+
|
|
31
|
+
- bugfix: makes value property on TreeItem less generic to simplify internals ([PR #28257](https://github.com/microsoft/fluentui/pull/28257) by bernardo.sunderhus@gmail.com)
|
|
32
|
+
- bugfix: rollback to actions and aside as a slot to ensure positioning of internals ([PR #28318](https://github.com/microsoft/fluentui/pull/28318) by bernardo.sunderhus@gmail.com)
|
|
33
|
+
- Bump @fluentui/react-avatar to v9.5.8 ([PR #28291](https://github.com/microsoft/fluentui/pull/28291) by beachball)
|
|
34
|
+
- Bump @fluentui/react-button to v9.3.19 ([PR #28291](https://github.com/microsoft/fluentui/pull/28291) by beachball)
|
|
35
|
+
- Bump @fluentui/react-portal to v9.2.15 ([PR #28291](https://github.com/microsoft/fluentui/pull/28291) by beachball)
|
|
36
|
+
- Bump @fluentui/react-tabster to v9.9.0 ([PR #28291](https://github.com/microsoft/fluentui/pull/28291) by beachball)
|
|
37
|
+
|
|
7
38
|
## [9.0.0-beta.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.20)
|
|
8
39
|
|
|
9
|
-
Mon, 26 Jun 2023 09:
|
|
40
|
+
Mon, 26 Jun 2023 09:53:55 GMT
|
|
10
41
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.19..@fluentui/react-tree_v9.0.0-beta.20)
|
|
11
42
|
|
|
12
43
|
### Changes
|
|
13
44
|
|
|
14
|
-
- Bump @fluentui/react-aria to v9.3.24 ([PR #
|
|
15
|
-
- Bump @fluentui/react-avatar to v9.5.7 ([PR #
|
|
16
|
-
- Bump @fluentui/react-button to v9.3.18 ([PR #
|
|
17
|
-
- Bump @fluentui/react-context-selector to v9.1.24 ([PR #
|
|
18
|
-
- Bump @fluentui/react-portal to v9.2.14 ([PR #
|
|
19
|
-
- Bump @fluentui/react-tabster to v9.8.1 ([PR #
|
|
20
|
-
- Bump @fluentui/react-utilities to v9.9.4 ([PR #
|
|
21
|
-
- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.8 ([PR #
|
|
45
|
+
- Bump @fluentui/react-aria to v9.3.24 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball)
|
|
46
|
+
- Bump @fluentui/react-avatar to v9.5.7 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball)
|
|
47
|
+
- Bump @fluentui/react-button to v9.3.18 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball)
|
|
48
|
+
- Bump @fluentui/react-context-selector to v9.1.24 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball)
|
|
49
|
+
- Bump @fluentui/react-portal to v9.2.14 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball)
|
|
50
|
+
- Bump @fluentui/react-tabster to v9.8.1 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball)
|
|
51
|
+
- Bump @fluentui/react-utilities to v9.9.4 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball)
|
|
52
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.8 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball)
|
|
22
53
|
|
|
23
54
|
## [9.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.19)
|
|
24
55
|
|