@fluentui/react-tree 9.0.0-beta.1 → 9.0.0-beta.11

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.
Files changed (183) hide show
  1. package/.swcrc +30 -0
  2. package/CHANGELOG.json +448 -1
  3. package/CHANGELOG.md +135 -2
  4. package/dist/index.d.ts +139 -25
  5. package/lib/Tree.js.map +1 -1
  6. package/lib/TreeItem.js.map +1 -1
  7. package/lib/TreeItemLayout.js.map +1 -1
  8. package/lib/TreeItemPersonaLayout.js.map +1 -1
  9. package/lib/components/Tree/Tree.js.map +1 -1
  10. package/lib/components/Tree/Tree.types.js +1 -1
  11. package/lib/components/Tree/Tree.types.js.map +1 -1
  12. package/lib/components/Tree/index.js.map +1 -1
  13. package/lib/components/Tree/renderTree.js +5 -7
  14. package/lib/components/Tree/renderTree.js.map +1 -1
  15. package/lib/components/Tree/useTree.js +5 -4
  16. package/lib/components/Tree/useTree.js.map +1 -1
  17. package/lib/components/Tree/useTreeContextValues.js +3 -3
  18. package/lib/components/Tree/useTreeContextValues.js.map +1 -1
  19. package/lib/components/Tree/useTreeStyles.js.map +1 -1
  20. package/lib/components/TreeItem/TreeItem.js +10 -1
  21. package/lib/components/TreeItem/TreeItem.js.map +1 -1
  22. package/lib/components/TreeItem/TreeItem.types.js +1 -1
  23. package/lib/components/TreeItem/TreeItem.types.js.map +1 -1
  24. package/lib/components/TreeItem/index.js.map +1 -1
  25. package/lib/components/TreeItem/renderTreeItem.js +6 -16
  26. package/lib/components/TreeItem/renderTreeItem.js.map +1 -1
  27. package/lib/components/TreeItem/useTreeItem.js.map +1 -1
  28. package/lib/components/TreeItem/useTreeItemContextValues.js.map +1 -1
  29. package/lib/components/TreeItem/useTreeItemStyles.js.map +1 -1
  30. package/lib/components/TreeItemLayout/TreeItemLayout.js +3 -1
  31. package/lib/components/TreeItemLayout/TreeItemLayout.js.map +1 -1
  32. package/lib/components/TreeItemLayout/TreeItemLayout.types.js.map +1 -1
  33. package/lib/components/TreeItemLayout/index.js.map +1 -1
  34. package/lib/components/TreeItemLayout/renderTreeItemLayout.js +4 -12
  35. package/lib/components/TreeItemLayout/renderTreeItemLayout.js.map +1 -1
  36. package/lib/components/TreeItemLayout/useTreeItemLayout.js +1 -0
  37. package/lib/components/TreeItemLayout/useTreeItemLayout.js.map +1 -1
  38. package/lib/components/TreeItemLayout/useTreeItemLayoutStyles.js.map +1 -1
  39. package/lib/components/TreeItemPersonaLayout/TreeItemPersonaLayout.js +3 -1
  40. package/lib/components/TreeItemPersonaLayout/TreeItemPersonaLayout.js.map +1 -1
  41. package/lib/components/TreeItemPersonaLayout/TreeItemPersonaLayout.types.js.map +1 -1
  42. package/lib/components/TreeItemPersonaLayout/index.js.map +1 -1
  43. package/lib/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.js +5 -17
  44. package/lib/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.js.map +1 -1
  45. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.js +1 -0
  46. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.js.map +1 -1
  47. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutContextValues.js.map +1 -1
  48. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.js.map +1 -1
  49. package/lib/contexts/index.js.map +1 -1
  50. package/lib/contexts/treeContext.js +1 -2
  51. package/lib/contexts/treeContext.js.map +1 -1
  52. package/lib/contexts/treeItemContext.js +2 -4
  53. package/lib/contexts/treeItemContext.js.map +1 -1
  54. package/lib/hooks/index.js +1 -1
  55. package/lib/hooks/index.js.map +1 -1
  56. package/lib/hooks/useFlatTree.js +77 -0
  57. package/lib/hooks/useFlatTree.js.map +1 -0
  58. package/lib/hooks/useFlatTreeNavigation.js +10 -10
  59. package/lib/hooks/useFlatTreeNavigation.js.map +1 -1
  60. package/lib/hooks/useHTMLElementWalker.js +5 -5
  61. package/lib/hooks/useHTMLElementWalker.js.map +1 -1
  62. package/lib/hooks/useNestedTreeNavigation.js.map +1 -1
  63. package/lib/hooks/useOpenItemsState.js.map +1 -1
  64. package/lib/hooks/useRovingTabIndexes.js.map +1 -1
  65. package/lib/index.js +1 -1
  66. package/lib/index.js.map +1 -1
  67. package/lib/utils/ImmutableSet.js.map +1 -1
  68. package/lib/utils/assert.js +1 -0
  69. package/lib/utils/assert.js.map +1 -1
  70. package/lib/utils/createFlatTreeItems.js +109 -0
  71. package/lib/utils/createFlatTreeItems.js.map +1 -0
  72. package/lib/utils/flattenTree.js +75 -16
  73. package/lib/utils/flattenTree.js.map +1 -1
  74. package/lib/utils/nextTypeAheadElement.js +2 -2
  75. package/lib/utils/nextTypeAheadElement.js.map +1 -1
  76. package/lib/utils/normalizeOpenItems.js.map +1 -1
  77. package/lib/utils/tokens.js.map +1 -1
  78. package/lib/utils/treeItemFilter.js.map +1 -1
  79. package/lib-commonjs/Tree.js +5 -4
  80. package/lib-commonjs/Tree.js.map +1 -1
  81. package/lib-commonjs/TreeItem.js +5 -4
  82. package/lib-commonjs/TreeItem.js.map +1 -1
  83. package/lib-commonjs/TreeItemLayout.js +5 -4
  84. package/lib-commonjs/TreeItemLayout.js.map +1 -1
  85. package/lib-commonjs/TreeItemPersonaLayout.js +5 -4
  86. package/lib-commonjs/TreeItemPersonaLayout.js.map +1 -1
  87. package/lib-commonjs/components/Tree/Tree.js +18 -22
  88. package/lib-commonjs/components/Tree/Tree.js.map +1 -1
  89. package/lib-commonjs/components/Tree/Tree.types.js +5 -2
  90. package/lib-commonjs/components/Tree/Tree.types.js.map +1 -1
  91. package/lib-commonjs/components/Tree/index.js +10 -9
  92. package/lib-commonjs/components/Tree/index.js.map +1 -1
  93. package/lib-commonjs/components/Tree/renderTree.js +16 -19
  94. package/lib-commonjs/components/Tree/renderTree.js.map +1 -1
  95. package/lib-commonjs/components/Tree/useTree.js +88 -101
  96. package/lib-commonjs/components/Tree/useTree.js.map +1 -1
  97. package/lib-commonjs/components/Tree/useTreeContextValues.js +22 -28
  98. package/lib-commonjs/components/Tree/useTreeContextValues.js.map +1 -1
  99. package/lib-commonjs/components/Tree/useTreeStyles.js +31 -20
  100. package/lib-commonjs/components/Tree/useTreeStyles.js.map +1 -1
  101. package/lib-commonjs/components/TreeItem/TreeItem.js +18 -17
  102. package/lib-commonjs/components/TreeItem/TreeItem.js.map +1 -1
  103. package/lib-commonjs/components/TreeItem/TreeItem.types.js +5 -3
  104. package/lib-commonjs/components/TreeItem/TreeItem.types.js.map +1 -1
  105. package/lib-commonjs/components/TreeItem/index.js +9 -8
  106. package/lib-commonjs/components/TreeItem/index.js.map +1 -1
  107. package/lib-commonjs/components/TreeItem/renderTreeItem.js +19 -33
  108. package/lib-commonjs/components/TreeItem/renderTreeItem.js.map +1 -1
  109. package/lib-commonjs/components/TreeItem/useTreeItem.js +229 -249
  110. package/lib-commonjs/components/TreeItem/useTreeItem.js.map +1 -1
  111. package/lib-commonjs/components/TreeItem/useTreeItemContextValues.js +24 -20
  112. package/lib-commonjs/components/TreeItem/useTreeItemContextValues.js.map +1 -1
  113. package/lib-commonjs/components/TreeItem/useTreeItemStyles.js +353 -188
  114. package/lib-commonjs/components/TreeItem/useTreeItemStyles.js.map +1 -1
  115. package/lib-commonjs/components/TreeItemLayout/TreeItemLayout.js +16 -15
  116. package/lib-commonjs/components/TreeItemLayout/TreeItemLayout.js.map +1 -1
  117. package/lib-commonjs/components/TreeItemLayout/TreeItemLayout.types.js +3 -2
  118. package/lib-commonjs/components/TreeItemLayout/TreeItemLayout.types.js.map +1 -1
  119. package/lib-commonjs/components/TreeItemLayout/index.js +9 -8
  120. package/lib-commonjs/components/TreeItemLayout/index.js.map +1 -1
  121. package/lib-commonjs/components/TreeItemLayout/renderTreeItemLayout.js +14 -28
  122. package/lib-commonjs/components/TreeItemLayout/renderTreeItemLayout.js.map +1 -1
  123. package/lib-commonjs/components/TreeItemLayout/useTreeItemLayout.js +42 -52
  124. package/lib-commonjs/components/TreeItemLayout/useTreeItemLayout.js.map +1 -1
  125. package/lib-commonjs/components/TreeItemLayout/useTreeItemLayoutStyles.js +126 -88
  126. package/lib-commonjs/components/TreeItemLayout/useTreeItemLayoutStyles.js.map +1 -1
  127. package/lib-commonjs/components/TreeItemPersonaLayout/TreeItemPersonaLayout.js +18 -17
  128. package/lib-commonjs/components/TreeItemPersonaLayout/TreeItemPersonaLayout.js.map +1 -1
  129. package/lib-commonjs/components/TreeItemPersonaLayout/TreeItemPersonaLayout.types.js +3 -2
  130. package/lib-commonjs/components/TreeItemPersonaLayout/TreeItemPersonaLayout.types.js.map +1 -1
  131. package/lib-commonjs/components/TreeItemPersonaLayout/index.js +9 -8
  132. package/lib-commonjs/components/TreeItemPersonaLayout/index.js.map +1 -1
  133. package/lib-commonjs/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.js +17 -35
  134. package/lib-commonjs/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.js.map +1 -1
  135. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.js +46 -61
  136. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.js.map +1 -1
  137. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutContextValues.js +18 -15
  138. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutContextValues.js.map +1 -1
  139. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.js +165 -101
  140. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.js.map +1 -1
  141. package/lib-commonjs/contexts/index.js +6 -5
  142. package/lib-commonjs/contexts/index.js.map +1 -1
  143. package/lib-commonjs/contexts/treeContext.js +25 -17
  144. package/lib-commonjs/contexts/treeContext.js.map +1 -1
  145. package/lib-commonjs/contexts/treeItemContext.js +20 -12
  146. package/lib-commonjs/contexts/treeItemContext.js.map +1 -1
  147. package/lib-commonjs/hooks/index.js +7 -6
  148. package/lib-commonjs/hooks/index.js.map +1 -1
  149. package/lib-commonjs/hooks/useFlatTree.js +86 -0
  150. package/lib-commonjs/hooks/useFlatTree.js.map +1 -0
  151. package/lib-commonjs/hooks/useFlatTreeNavigation.js +73 -72
  152. package/lib-commonjs/hooks/useFlatTreeNavigation.js.map +1 -1
  153. package/lib-commonjs/hooks/useHTMLElementWalker.js +94 -83
  154. package/lib-commonjs/hooks/useHTMLElementWalker.js.map +1 -1
  155. package/lib-commonjs/hooks/useNestedTreeNavigation.js +61 -58
  156. package/lib-commonjs/hooks/useNestedTreeNavigation.js.map +1 -1
  157. package/lib-commonjs/hooks/useOpenItemsState.js +32 -22
  158. package/lib-commonjs/hooks/useOpenItemsState.js.map +1 -1
  159. package/lib-commonjs/hooks/useRovingTabIndexes.js +56 -53
  160. package/lib-commonjs/hooks/useRovingTabIndexes.js.map +1 -1
  161. package/lib-commonjs/index.js +48 -180
  162. package/lib-commonjs/index.js.map +1 -1
  163. package/lib-commonjs/utils/ImmutableSet.js +39 -38
  164. package/lib-commonjs/utils/ImmutableSet.js.map +1 -1
  165. package/lib-commonjs/utils/assert.js +13 -9
  166. package/lib-commonjs/utils/assert.js.map +1 -1
  167. package/lib-commonjs/utils/createFlatTreeItems.js +126 -0
  168. package/lib-commonjs/utils/createFlatTreeItems.js.map +1 -0
  169. package/lib-commonjs/utils/flattenTree.js +55 -32
  170. package/lib-commonjs/utils/flattenTree.js.map +1 -1
  171. package/lib-commonjs/utils/nextTypeAheadElement.js +18 -16
  172. package/lib-commonjs/utils/nextTypeAheadElement.js.map +1 -1
  173. package/lib-commonjs/utils/normalizeOpenItems.js +13 -9
  174. package/lib-commonjs/utils/normalizeOpenItems.js.map +1 -1
  175. package/lib-commonjs/utils/tokens.js +30 -20
  176. package/lib-commonjs/utils/tokens.js.map +1 -1
  177. package/lib-commonjs/utils/treeItemFilter.js +9 -7
  178. package/lib-commonjs/utils/treeItemFilter.js.map +1 -1
  179. package/package.json +20 -15
  180. package/lib/hooks/useFlatTreeItems.js +0 -134
  181. package/lib/hooks/useFlatTreeItems.js.map +0 -1
  182. package/lib-commonjs/hooks/useFlatTreeItems.js +0 -141
  183. package/lib-commonjs/hooks/useFlatTreeItems.js.map +0 -1
package/.swcrc ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/swcrc",
3
+ "exclude": [
4
+ "/testing",
5
+ "/**/*.cy.ts",
6
+ "/**/*.cy.tsx",
7
+ "/**/*.spec.ts",
8
+ "/**/*.spec.tsx",
9
+ "/**/*.test.ts",
10
+ "/**/*.test.tsx"
11
+ ],
12
+ "jsc": {
13
+ "parser": {
14
+ "syntax": "typescript",
15
+ "tsx": true,
16
+ "decorators": false,
17
+ "dynamicImport": false
18
+ },
19
+ "externalHelpers": true,
20
+ "transform": {
21
+ "react": {
22
+ "runtime": "classic",
23
+ "useSpread": true
24
+ }
25
+ },
26
+ "target": "es2019"
27
+ },
28
+ "minify": false,
29
+ "sourceMaps": true
30
+ }
package/CHANGELOG.json CHANGED
@@ -2,7 +2,454 @@
2
2
  "name": "@fluentui/react-tree",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 10 Mar 2023 07:11:10 GMT",
5
+ "date": "Mon, 17 Apr 2023 17:50:12 GMT",
6
+ "tag": "@fluentui/react-tree_v9.0.0-beta.11",
7
+ "version": "9.0.0-beta.11",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "bernardo.sunderhus@gmail.com",
12
+ "package": "@fluentui/react-tree",
13
+ "commit": "27665739a1f38468c63ea1544a2e82ff357d25f3",
14
+ "comment": "chore: adopt custom jsx pragma"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui/react-tree",
19
+ "comment": "Bump @fluentui/react-aria to v9.3.18",
20
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-tree",
25
+ "comment": "Bump @fluentui/react-avatar to v9.4.9",
26
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-tree",
31
+ "comment": "Bump @fluentui/react-button to v9.3.9",
32
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui/react-tree",
37
+ "comment": "Bump @fluentui/react-context-selector to v9.1.18",
38
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
39
+ },
40
+ {
41
+ "author": "beachball",
42
+ "package": "@fluentui/react-tree",
43
+ "comment": "Bump @fluentui/react-portal to v9.2.6",
44
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
45
+ },
46
+ {
47
+ "author": "beachball",
48
+ "package": "@fluentui/react-tree",
49
+ "comment": "Bump @fluentui/react-tabster to v9.6.5",
50
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
51
+ },
52
+ {
53
+ "author": "beachball",
54
+ "package": "@fluentui/react-tree",
55
+ "comment": "Bump @fluentui/react-utilities to v9.8.0",
56
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
57
+ },
58
+ {
59
+ "author": "beachball",
60
+ "package": "@fluentui/react-tree",
61
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.1",
62
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
63
+ }
64
+ ]
65
+ }
66
+ },
67
+ {
68
+ "date": "Wed, 12 Apr 2023 09:31:45 GMT",
69
+ "tag": "@fluentui/react-tree_v9.0.0-beta.10",
70
+ "version": "9.0.0-beta.10",
71
+ "comments": {
72
+ "prerelease": [
73
+ {
74
+ "author": "beachball",
75
+ "package": "@fluentui/react-tree",
76
+ "comment": "Bump @fluentui/react-aria to v9.3.17",
77
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
78
+ },
79
+ {
80
+ "author": "beachball",
81
+ "package": "@fluentui/react-tree",
82
+ "comment": "Bump @fluentui/react-avatar to v9.4.8",
83
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
84
+ },
85
+ {
86
+ "author": "beachball",
87
+ "package": "@fluentui/react-tree",
88
+ "comment": "Bump @fluentui/react-button to v9.3.8",
89
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
90
+ },
91
+ {
92
+ "author": "beachball",
93
+ "package": "@fluentui/react-tree",
94
+ "comment": "Bump @fluentui/react-context-selector to v9.1.17",
95
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
96
+ },
97
+ {
98
+ "author": "beachball",
99
+ "package": "@fluentui/react-tree",
100
+ "comment": "Bump @fluentui/react-portal to v9.2.5",
101
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
102
+ },
103
+ {
104
+ "author": "beachball",
105
+ "package": "@fluentui/react-tree",
106
+ "comment": "Bump @fluentui/react-tabster to v9.6.4",
107
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
108
+ },
109
+ {
110
+ "author": "beachball",
111
+ "package": "@fluentui/react-tree",
112
+ "comment": "Bump @fluentui/react-utilities to v9.7.4",
113
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
114
+ }
115
+ ]
116
+ }
117
+ },
118
+ {
119
+ "date": "Tue, 04 Apr 2023 18:44:49 GMT",
120
+ "tag": "@fluentui/react-tree_v9.0.0-beta.9",
121
+ "version": "9.0.0-beta.9",
122
+ "comments": {
123
+ "prerelease": [
124
+ {
125
+ "author": "bernardo.sunderhus@gmail.com",
126
+ "package": "@fluentui/react-tree",
127
+ "commit": "7dc03924c99ea14c4df43e56454fc7781e1fdb89",
128
+ "comment": "chore: adds e2e flat tree tests"
129
+ },
130
+ {
131
+ "author": "beachball",
132
+ "package": "@fluentui/react-tree",
133
+ "comment": "Bump @fluentui/react-aria to v9.3.16",
134
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
135
+ },
136
+ {
137
+ "author": "beachball",
138
+ "package": "@fluentui/react-tree",
139
+ "comment": "Bump @fluentui/react-avatar to v9.4.7",
140
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
141
+ },
142
+ {
143
+ "author": "beachball",
144
+ "package": "@fluentui/react-tree",
145
+ "comment": "Bump @fluentui/react-button to v9.3.7",
146
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
147
+ },
148
+ {
149
+ "author": "beachball",
150
+ "package": "@fluentui/react-tree",
151
+ "comment": "Bump @fluentui/react-context-selector to v9.1.16",
152
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
153
+ },
154
+ {
155
+ "author": "beachball",
156
+ "package": "@fluentui/react-tree",
157
+ "comment": "Bump @fluentui/react-portal to v9.2.4",
158
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
159
+ },
160
+ {
161
+ "author": "beachball",
162
+ "package": "@fluentui/react-tree",
163
+ "comment": "Bump @fluentui/react-tabster to v9.6.3",
164
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
165
+ },
166
+ {
167
+ "author": "beachball",
168
+ "package": "@fluentui/react-tree",
169
+ "comment": "Bump @fluentui/react-utilities to v9.7.3",
170
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
171
+ }
172
+ ]
173
+ }
174
+ },
175
+ {
176
+ "date": "Fri, 24 Mar 2023 10:15:27 GMT",
177
+ "tag": "@fluentui/react-tree_v9.0.0-beta.8",
178
+ "version": "9.0.0-beta.8",
179
+ "comments": {
180
+ "prerelease": [
181
+ {
182
+ "author": "petrduda@microsoft.com",
183
+ "package": "@fluentui/react-tree",
184
+ "commit": "b19ad44388b93ade650d5c46802b82fa7419e6b4",
185
+ "comment": "tree stories and doc update"
186
+ }
187
+ ]
188
+ }
189
+ },
190
+ {
191
+ "date": "Tue, 21 Mar 2023 21:23:13 GMT",
192
+ "tag": "@fluentui/react-tree_v9.0.0-beta.6",
193
+ "version": "9.0.0-beta.6",
194
+ "comments": {
195
+ "prerelease": [
196
+ {
197
+ "author": "tristan.watanabe@gmail.com",
198
+ "package": "@fluentui/react-tree",
199
+ "commit": "2fac1a139149bd13b76b1306207bc988dca9c72c",
200
+ "comment": "chore: migrate to swc transpilation approach."
201
+ },
202
+ {
203
+ "author": "olfedias@microsoft.com",
204
+ "package": "@fluentui/react-tree",
205
+ "commit": "7fde5c94869ff9841b142b7ff1d0a3df0ab58f74",
206
+ "comment": "chore: Bumping version of @fluentui/react-icons to ^2.0.196."
207
+ },
208
+ {
209
+ "author": "tristan.watanabe@gmail.com",
210
+ "package": "@fluentui/react-tree",
211
+ "commit": "ead1c6d4c2ac3f3596b62b8cbc07b0a03041f11f",
212
+ "comment": "fix: add node field to package.json exports map."
213
+ },
214
+ {
215
+ "author": "email not defined",
216
+ "package": "@fluentui/react-tree",
217
+ "commit": "d7016bf89107ba2c8b22596b5e4b5ce4d32f99b0",
218
+ "comment": "chore: adds initial e2e cypress tests"
219
+ },
220
+ {
221
+ "author": "beachball",
222
+ "package": "@fluentui/react-tree",
223
+ "comment": "Bump @fluentui/keyboard-keys to v9.0.2",
224
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
225
+ },
226
+ {
227
+ "author": "beachball",
228
+ "package": "@fluentui/react-tree",
229
+ "comment": "Bump @fluentui/react-aria to v9.3.15",
230
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
231
+ },
232
+ {
233
+ "author": "beachball",
234
+ "package": "@fluentui/react-tree",
235
+ "comment": "Bump @fluentui/react-avatar to v9.4.5",
236
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
237
+ },
238
+ {
239
+ "author": "beachball",
240
+ "package": "@fluentui/react-tree",
241
+ "comment": "Bump @fluentui/react-button to v9.3.5",
242
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
243
+ },
244
+ {
245
+ "author": "beachball",
246
+ "package": "@fluentui/react-tree",
247
+ "comment": "Bump @fluentui/react-context-selector to v9.1.15",
248
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
249
+ },
250
+ {
251
+ "author": "beachball",
252
+ "package": "@fluentui/react-tree",
253
+ "comment": "Bump @fluentui/react-portal to v9.2.2",
254
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
255
+ },
256
+ {
257
+ "author": "beachball",
258
+ "package": "@fluentui/react-tree",
259
+ "comment": "Bump @fluentui/react-shared-contexts to v9.3.2",
260
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
261
+ },
262
+ {
263
+ "author": "beachball",
264
+ "package": "@fluentui/react-tree",
265
+ "comment": "Bump @fluentui/react-tabster to v9.6.1",
266
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
267
+ },
268
+ {
269
+ "author": "beachball",
270
+ "package": "@fluentui/react-tree",
271
+ "comment": "Bump @fluentui/react-theme to v9.1.7",
272
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
273
+ },
274
+ {
275
+ "author": "beachball",
276
+ "package": "@fluentui/react-tree",
277
+ "comment": "Bump @fluentui/react-utilities to v9.7.2",
278
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
279
+ },
280
+ {
281
+ "author": "beachball",
282
+ "package": "@fluentui/react-tree",
283
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.20",
284
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
285
+ }
286
+ ]
287
+ }
288
+ },
289
+ {
290
+ "date": "Thu, 16 Mar 2023 14:36:59 GMT",
291
+ "tag": "@fluentui/react-tree_v9.0.0-beta.5",
292
+ "version": "9.0.0-beta.5",
293
+ "comments": {
294
+ "prerelease": [
295
+ {
296
+ "author": "beachball",
297
+ "package": "@fluentui/react-tree",
298
+ "comment": "Bump @fluentui/react-context-selector to v9.1.14",
299
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
300
+ },
301
+ {
302
+ "author": "beachball",
303
+ "package": "@fluentui/react-tree",
304
+ "comment": "Bump @fluentui/react-avatar to v9.4.4",
305
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
306
+ },
307
+ {
308
+ "author": "beachball",
309
+ "package": "@fluentui/react-tree",
310
+ "comment": "Bump @fluentui/react-aria to v9.3.14",
311
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
312
+ },
313
+ {
314
+ "author": "beachball",
315
+ "package": "@fluentui/react-tree",
316
+ "comment": "Bump @fluentui/react-tabster to v9.6.0",
317
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
318
+ },
319
+ {
320
+ "author": "beachball",
321
+ "package": "@fluentui/react-tree",
322
+ "comment": "Bump @fluentui/react-portal to v9.2.1",
323
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
324
+ },
325
+ {
326
+ "author": "beachball",
327
+ "package": "@fluentui/react-tree",
328
+ "comment": "Bump @fluentui/react-button to v9.3.4",
329
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
330
+ },
331
+ {
332
+ "author": "beachball",
333
+ "package": "@fluentui/react-tree",
334
+ "comment": "Bump @fluentui/react-utilities to v9.7.1",
335
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
336
+ }
337
+ ]
338
+ }
339
+ },
340
+ {
341
+ "date": "Wed, 15 Mar 2023 10:19:53 GMT",
342
+ "tag": "@fluentui/react-tree_v9.0.0-beta.4",
343
+ "version": "9.0.0-beta.4",
344
+ "comments": {
345
+ "prerelease": [
346
+ {
347
+ "author": "beachball",
348
+ "package": "@fluentui/react-tree",
349
+ "comment": "Bump @fluentui/react-shared-contexts to v9.3.1",
350
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
351
+ },
352
+ {
353
+ "author": "beachball",
354
+ "package": "@fluentui/react-tree",
355
+ "comment": "Bump @fluentui/react-avatar to v9.4.3",
356
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
357
+ },
358
+ {
359
+ "author": "beachball",
360
+ "package": "@fluentui/react-tree",
361
+ "comment": "Bump @fluentui/react-tabster to v9.5.7",
362
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
363
+ },
364
+ {
365
+ "author": "beachball",
366
+ "package": "@fluentui/react-tree",
367
+ "comment": "Bump @fluentui/react-portal to v9.2.0",
368
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
369
+ },
370
+ {
371
+ "author": "beachball",
372
+ "package": "@fluentui/react-tree",
373
+ "comment": "Bump @fluentui/react-button to v9.3.3",
374
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
375
+ },
376
+ {
377
+ "author": "beachball",
378
+ "package": "@fluentui/react-tree",
379
+ "comment": "Bump @fluentui/react-theme to v9.1.6",
380
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
381
+ }
382
+ ]
383
+ }
384
+ },
385
+ {
386
+ "date": "Mon, 13 Mar 2023 08:58:26 GMT",
387
+ "tag": "@fluentui/react-tree_v9.0.0-beta.3",
388
+ "version": "9.0.0-beta.3",
389
+ "comments": {
390
+ "prerelease": [
391
+ {
392
+ "author": "beachball",
393
+ "package": "@fluentui/react-tree",
394
+ "comment": "Bump @fluentui/react-context-selector to v9.1.13",
395
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
396
+ },
397
+ {
398
+ "author": "beachball",
399
+ "package": "@fluentui/react-tree",
400
+ "comment": "Bump @fluentui/react-avatar to v9.4.2",
401
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
402
+ },
403
+ {
404
+ "author": "beachball",
405
+ "package": "@fluentui/react-tree",
406
+ "comment": "Bump @fluentui/react-aria to v9.3.13",
407
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
408
+ },
409
+ {
410
+ "author": "beachball",
411
+ "package": "@fluentui/react-tree",
412
+ "comment": "Bump @fluentui/react-tabster to v9.5.6",
413
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
414
+ },
415
+ {
416
+ "author": "beachball",
417
+ "package": "@fluentui/react-tree",
418
+ "comment": "Bump @fluentui/react-portal to v9.1.12",
419
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
420
+ },
421
+ {
422
+ "author": "beachball",
423
+ "package": "@fluentui/react-tree",
424
+ "comment": "Bump @fluentui/react-button to v9.3.2",
425
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
426
+ },
427
+ {
428
+ "author": "beachball",
429
+ "package": "@fluentui/react-tree",
430
+ "comment": "Bump @fluentui/react-utilities to v9.7.0",
431
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
432
+ }
433
+ ]
434
+ }
435
+ },
436
+ {
437
+ "date": "Fri, 10 Mar 2023 13:28:40 GMT",
438
+ "tag": "@fluentui/react-tree_v9.0.0-beta.2",
439
+ "version": "9.0.0-beta.2",
440
+ "comments": {
441
+ "prerelease": [
442
+ {
443
+ "author": "bernardo.sunderhus@gmail.com",
444
+ "package": "@fluentui/react-tree",
445
+ "commit": "4e092355bfa9457409d7fc3b4e617681bc9d3c85",
446
+ "comment": "feat: creates useFlatTree hook to improve API"
447
+ }
448
+ ]
449
+ }
450
+ },
451
+ {
452
+ "date": "Fri, 10 Mar 2023 07:14:01 GMT",
6
453
  "tag": "@fluentui/react-tree_v9.0.0-beta.1",
7
454
  "version": "9.0.0-beta.1",
8
455
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,145 @@
1
1
  # Change Log - @fluentui/react-tree
2
2
 
3
- This log was last generated on Fri, 10 Mar 2023 07:11:10 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 17 Apr 2023 17:50:12 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.11)
8
+
9
+ Mon, 17 Apr 2023 17:50:12 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.10..@fluentui/react-tree_v9.0.0-beta.11)
11
+
12
+ ### Changes
13
+
14
+ - chore: adopt custom jsx pragma ([PR #27542](https://github.com/microsoft/fluentui/pull/27542) by bernardo.sunderhus@gmail.com)
15
+ - Bump @fluentui/react-aria to v9.3.18 ([PR #27564](https://github.com/microsoft/fluentui/pull/27564) by beachball)
16
+ - Bump @fluentui/react-avatar to v9.4.9 ([PR #27564](https://github.com/microsoft/fluentui/pull/27564) by beachball)
17
+ - Bump @fluentui/react-button to v9.3.9 ([PR #27564](https://github.com/microsoft/fluentui/pull/27564) by beachball)
18
+ - Bump @fluentui/react-context-selector to v9.1.18 ([PR #27564](https://github.com/microsoft/fluentui/pull/27564) by beachball)
19
+ - Bump @fluentui/react-portal to v9.2.6 ([PR #27564](https://github.com/microsoft/fluentui/pull/27564) by beachball)
20
+ - Bump @fluentui/react-tabster to v9.6.5 ([PR #27564](https://github.com/microsoft/fluentui/pull/27564) by beachball)
21
+ - Bump @fluentui/react-utilities to v9.8.0 ([PR #27564](https://github.com/microsoft/fluentui/pull/27564) by beachball)
22
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.1 ([PR #27564](https://github.com/microsoft/fluentui/pull/27564) by beachball)
23
+
24
+ ## [9.0.0-beta.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.10)
25
+
26
+ Wed, 12 Apr 2023 09:31:45 GMT
27
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.9..@fluentui/react-tree_v9.0.0-beta.10)
28
+
29
+ ### Changes
30
+
31
+ - Bump @fluentui/react-aria to v9.3.17 ([PR #27274](https://github.com/microsoft/fluentui/pull/27274) by beachball)
32
+ - Bump @fluentui/react-avatar to v9.4.8 ([PR #27274](https://github.com/microsoft/fluentui/pull/27274) by beachball)
33
+ - Bump @fluentui/react-button to v9.3.8 ([PR #27274](https://github.com/microsoft/fluentui/pull/27274) by beachball)
34
+ - Bump @fluentui/react-context-selector to v9.1.17 ([PR #27274](https://github.com/microsoft/fluentui/pull/27274) by beachball)
35
+ - Bump @fluentui/react-portal to v9.2.5 ([PR #27274](https://github.com/microsoft/fluentui/pull/27274) by beachball)
36
+ - Bump @fluentui/react-tabster to v9.6.4 ([PR #27274](https://github.com/microsoft/fluentui/pull/27274) by beachball)
37
+ - Bump @fluentui/react-utilities to v9.7.4 ([PR #27274](https://github.com/microsoft/fluentui/pull/27274) by beachball)
38
+
39
+ ## [9.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.9)
40
+
41
+ Tue, 04 Apr 2023 18:44:49 GMT
42
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.8..@fluentui/react-tree_v9.0.0-beta.9)
43
+
44
+ ### Changes
45
+
46
+ - chore: adds e2e flat tree tests ([PR #27318](https://github.com/microsoft/fluentui/pull/27318) by bernardo.sunderhus@gmail.com)
47
+ - Bump @fluentui/react-aria to v9.3.16 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
48
+ - Bump @fluentui/react-avatar to v9.4.7 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
49
+ - Bump @fluentui/react-button to v9.3.7 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
50
+ - Bump @fluentui/react-context-selector to v9.1.16 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
51
+ - Bump @fluentui/react-portal to v9.2.4 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
52
+ - Bump @fluentui/react-tabster to v9.6.3 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
53
+ - Bump @fluentui/react-utilities to v9.7.3 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
54
+
55
+ ## [9.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.8)
56
+
57
+ Fri, 24 Mar 2023 10:15:27 GMT
58
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.6..@fluentui/react-tree_v9.0.0-beta.8)
59
+
60
+ ### Changes
61
+
62
+ - tree stories and doc update ([PR #27270](https://github.com/microsoft/fluentui/pull/27270) by petrduda@microsoft.com)
63
+
64
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.6)
65
+
66
+ Tue, 21 Mar 2023 21:23:13 GMT
67
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.5..@fluentui/react-tree_v9.0.0-beta.6)
68
+
69
+ ### Changes
70
+
71
+ - chore: migrate to swc transpilation approach. ([PR #27250](https://github.com/microsoft/fluentui/pull/27250) by tristan.watanabe@gmail.com)
72
+ - chore: Bumping version of @fluentui/react-icons to ^2.0.196. ([PR #27100](https://github.com/microsoft/fluentui/pull/27100) by olfedias@microsoft.com)
73
+ - fix: add node field to package.json exports map. ([PR #27154](https://github.com/microsoft/fluentui/pull/27154) by tristan.watanabe@gmail.com)
74
+ - chore: adds initial e2e cypress tests ([PR #27266](https://github.com/microsoft/fluentui/pull/27266) by email not defined)
75
+ - Bump @fluentui/keyboard-keys to v9.0.2 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
76
+ - Bump @fluentui/react-aria to v9.3.15 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
77
+ - Bump @fluentui/react-avatar to v9.4.5 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
78
+ - Bump @fluentui/react-button to v9.3.5 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
79
+ - Bump @fluentui/react-context-selector to v9.1.15 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
80
+ - Bump @fluentui/react-portal to v9.2.2 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
81
+ - Bump @fluentui/react-shared-contexts to v9.3.2 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
82
+ - Bump @fluentui/react-tabster to v9.6.1 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
83
+ - Bump @fluentui/react-theme to v9.1.7 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
84
+ - Bump @fluentui/react-utilities to v9.7.2 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
85
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.20 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
86
+
87
+ ## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.5)
88
+
89
+ Thu, 16 Mar 2023 14:36:59 GMT
90
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.4..@fluentui/react-tree_v9.0.0-beta.5)
91
+
92
+ ### Changes
93
+
94
+ - Bump @fluentui/react-context-selector to v9.1.14 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
95
+ - Bump @fluentui/react-avatar to v9.4.4 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
96
+ - Bump @fluentui/react-aria to v9.3.14 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
97
+ - Bump @fluentui/react-tabster to v9.6.0 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
98
+ - Bump @fluentui/react-portal to v9.2.1 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
99
+ - Bump @fluentui/react-button to v9.3.4 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
100
+ - Bump @fluentui/react-utilities to v9.7.1 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
101
+
102
+ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.4)
103
+
104
+ Wed, 15 Mar 2023 10:19:53 GMT
105
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.3..@fluentui/react-tree_v9.0.0-beta.4)
106
+
107
+ ### Changes
108
+
109
+ - Bump @fluentui/react-shared-contexts to v9.3.1 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball)
110
+ - Bump @fluentui/react-avatar to v9.4.3 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball)
111
+ - Bump @fluentui/react-tabster to v9.5.7 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball)
112
+ - Bump @fluentui/react-portal to v9.2.0 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball)
113
+ - Bump @fluentui/react-button to v9.3.3 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball)
114
+ - Bump @fluentui/react-theme to v9.1.6 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball)
115
+
116
+ ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.3)
117
+
118
+ Mon, 13 Mar 2023 08:58:26 GMT
119
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.2..@fluentui/react-tree_v9.0.0-beta.3)
120
+
121
+ ### Changes
122
+
123
+ - Bump @fluentui/react-context-selector to v9.1.13 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
124
+ - Bump @fluentui/react-avatar to v9.4.2 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
125
+ - Bump @fluentui/react-aria to v9.3.13 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
126
+ - Bump @fluentui/react-tabster to v9.5.6 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
127
+ - Bump @fluentui/react-portal to v9.1.12 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
128
+ - Bump @fluentui/react-button to v9.3.2 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
129
+ - Bump @fluentui/react-utilities to v9.7.0 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
130
+
131
+ ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.2)
132
+
133
+ Fri, 10 Mar 2023 13:28:40 GMT
134
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.1..@fluentui/react-tree_v9.0.0-beta.2)
135
+
136
+ ### Changes
137
+
138
+ - feat: creates useFlatTree hook to improve API ([PR #27146](https://github.com/microsoft/fluentui/pull/27146) by bernardo.sunderhus@gmail.com)
139
+
7
140
  ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.1)
8
141
 
9
- Fri, 10 Mar 2023 07:11:10 GMT
142
+ Fri, 10 Mar 2023 07:14:01 GMT
10
143
 
11
144
  ### Changes
12
145