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

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 +385 -1
  3. package/CHANGELOG.md +118 -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 +1 -3
  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 +2 -12
  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 +1 -9
  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 +2 -14
  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 -18
  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 -32
  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 -27
  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 -34
  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 +19 -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,391 @@
2
2
  "name": "@fluentui/react-tree",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 10 Mar 2023 07:11:10 GMT",
5
+ "date": "Wed, 12 Apr 2023 09:28:17 GMT",
6
+ "tag": "@fluentui/react-tree_v9.0.0-beta.10",
7
+ "version": "9.0.0-beta.10",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "beachball",
12
+ "package": "@fluentui/react-tree",
13
+ "comment": "Bump @fluentui/react-aria to v9.3.17",
14
+ "commit": "b48890859f5ce28fe12fd40f6bda26ed486c5e47"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui/react-tree",
19
+ "comment": "Bump @fluentui/react-avatar to v9.4.8",
20
+ "commit": "b48890859f5ce28fe12fd40f6bda26ed486c5e47"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-tree",
25
+ "comment": "Bump @fluentui/react-button to v9.3.8",
26
+ "commit": "b48890859f5ce28fe12fd40f6bda26ed486c5e47"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-tree",
31
+ "comment": "Bump @fluentui/react-context-selector to v9.1.17",
32
+ "commit": "b48890859f5ce28fe12fd40f6bda26ed486c5e47"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui/react-tree",
37
+ "comment": "Bump @fluentui/react-portal to v9.2.5",
38
+ "commit": "b48890859f5ce28fe12fd40f6bda26ed486c5e47"
39
+ },
40
+ {
41
+ "author": "beachball",
42
+ "package": "@fluentui/react-tree",
43
+ "comment": "Bump @fluentui/react-tabster to v9.6.4",
44
+ "commit": "b48890859f5ce28fe12fd40f6bda26ed486c5e47"
45
+ },
46
+ {
47
+ "author": "beachball",
48
+ "package": "@fluentui/react-tree",
49
+ "comment": "Bump @fluentui/react-utilities to v9.7.4",
50
+ "commit": "b48890859f5ce28fe12fd40f6bda26ed486c5e47"
51
+ }
52
+ ]
53
+ }
54
+ },
55
+ {
56
+ "date": "Tue, 04 Apr 2023 18:44:49 GMT",
57
+ "tag": "@fluentui/react-tree_v9.0.0-beta.9",
58
+ "version": "9.0.0-beta.9",
59
+ "comments": {
60
+ "prerelease": [
61
+ {
62
+ "author": "bernardo.sunderhus@gmail.com",
63
+ "package": "@fluentui/react-tree",
64
+ "commit": "7dc03924c99ea14c4df43e56454fc7781e1fdb89",
65
+ "comment": "chore: adds e2e flat tree tests"
66
+ },
67
+ {
68
+ "author": "beachball",
69
+ "package": "@fluentui/react-tree",
70
+ "comment": "Bump @fluentui/react-aria to v9.3.16",
71
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
72
+ },
73
+ {
74
+ "author": "beachball",
75
+ "package": "@fluentui/react-tree",
76
+ "comment": "Bump @fluentui/react-avatar to v9.4.7",
77
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
78
+ },
79
+ {
80
+ "author": "beachball",
81
+ "package": "@fluentui/react-tree",
82
+ "comment": "Bump @fluentui/react-button to v9.3.7",
83
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
84
+ },
85
+ {
86
+ "author": "beachball",
87
+ "package": "@fluentui/react-tree",
88
+ "comment": "Bump @fluentui/react-context-selector to v9.1.16",
89
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
90
+ },
91
+ {
92
+ "author": "beachball",
93
+ "package": "@fluentui/react-tree",
94
+ "comment": "Bump @fluentui/react-portal to v9.2.4",
95
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
96
+ },
97
+ {
98
+ "author": "beachball",
99
+ "package": "@fluentui/react-tree",
100
+ "comment": "Bump @fluentui/react-tabster to v9.6.3",
101
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
102
+ },
103
+ {
104
+ "author": "beachball",
105
+ "package": "@fluentui/react-tree",
106
+ "comment": "Bump @fluentui/react-utilities to v9.7.3",
107
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
108
+ }
109
+ ]
110
+ }
111
+ },
112
+ {
113
+ "date": "Fri, 24 Mar 2023 10:15:27 GMT",
114
+ "tag": "@fluentui/react-tree_v9.0.0-beta.8",
115
+ "version": "9.0.0-beta.8",
116
+ "comments": {
117
+ "prerelease": [
118
+ {
119
+ "author": "petrduda@microsoft.com",
120
+ "package": "@fluentui/react-tree",
121
+ "commit": "b19ad44388b93ade650d5c46802b82fa7419e6b4",
122
+ "comment": "tree stories and doc update"
123
+ }
124
+ ]
125
+ }
126
+ },
127
+ {
128
+ "date": "Tue, 21 Mar 2023 21:23:13 GMT",
129
+ "tag": "@fluentui/react-tree_v9.0.0-beta.6",
130
+ "version": "9.0.0-beta.6",
131
+ "comments": {
132
+ "prerelease": [
133
+ {
134
+ "author": "tristan.watanabe@gmail.com",
135
+ "package": "@fluentui/react-tree",
136
+ "commit": "2fac1a139149bd13b76b1306207bc988dca9c72c",
137
+ "comment": "chore: migrate to swc transpilation approach."
138
+ },
139
+ {
140
+ "author": "olfedias@microsoft.com",
141
+ "package": "@fluentui/react-tree",
142
+ "commit": "7fde5c94869ff9841b142b7ff1d0a3df0ab58f74",
143
+ "comment": "chore: Bumping version of @fluentui/react-icons to ^2.0.196."
144
+ },
145
+ {
146
+ "author": "tristan.watanabe@gmail.com",
147
+ "package": "@fluentui/react-tree",
148
+ "commit": "ead1c6d4c2ac3f3596b62b8cbc07b0a03041f11f",
149
+ "comment": "fix: add node field to package.json exports map."
150
+ },
151
+ {
152
+ "author": "email not defined",
153
+ "package": "@fluentui/react-tree",
154
+ "commit": "d7016bf89107ba2c8b22596b5e4b5ce4d32f99b0",
155
+ "comment": "chore: adds initial e2e cypress tests"
156
+ },
157
+ {
158
+ "author": "beachball",
159
+ "package": "@fluentui/react-tree",
160
+ "comment": "Bump @fluentui/keyboard-keys to v9.0.2",
161
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
162
+ },
163
+ {
164
+ "author": "beachball",
165
+ "package": "@fluentui/react-tree",
166
+ "comment": "Bump @fluentui/react-aria to v9.3.15",
167
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
168
+ },
169
+ {
170
+ "author": "beachball",
171
+ "package": "@fluentui/react-tree",
172
+ "comment": "Bump @fluentui/react-avatar to v9.4.5",
173
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
174
+ },
175
+ {
176
+ "author": "beachball",
177
+ "package": "@fluentui/react-tree",
178
+ "comment": "Bump @fluentui/react-button to v9.3.5",
179
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
180
+ },
181
+ {
182
+ "author": "beachball",
183
+ "package": "@fluentui/react-tree",
184
+ "comment": "Bump @fluentui/react-context-selector to v9.1.15",
185
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
186
+ },
187
+ {
188
+ "author": "beachball",
189
+ "package": "@fluentui/react-tree",
190
+ "comment": "Bump @fluentui/react-portal to v9.2.2",
191
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
192
+ },
193
+ {
194
+ "author": "beachball",
195
+ "package": "@fluentui/react-tree",
196
+ "comment": "Bump @fluentui/react-shared-contexts to v9.3.2",
197
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
198
+ },
199
+ {
200
+ "author": "beachball",
201
+ "package": "@fluentui/react-tree",
202
+ "comment": "Bump @fluentui/react-tabster to v9.6.1",
203
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
204
+ },
205
+ {
206
+ "author": "beachball",
207
+ "package": "@fluentui/react-tree",
208
+ "comment": "Bump @fluentui/react-theme to v9.1.7",
209
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
210
+ },
211
+ {
212
+ "author": "beachball",
213
+ "package": "@fluentui/react-tree",
214
+ "comment": "Bump @fluentui/react-utilities to v9.7.2",
215
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
216
+ },
217
+ {
218
+ "author": "beachball",
219
+ "package": "@fluentui/react-tree",
220
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.20",
221
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
222
+ }
223
+ ]
224
+ }
225
+ },
226
+ {
227
+ "date": "Thu, 16 Mar 2023 14:36:59 GMT",
228
+ "tag": "@fluentui/react-tree_v9.0.0-beta.5",
229
+ "version": "9.0.0-beta.5",
230
+ "comments": {
231
+ "prerelease": [
232
+ {
233
+ "author": "beachball",
234
+ "package": "@fluentui/react-tree",
235
+ "comment": "Bump @fluentui/react-context-selector to v9.1.14",
236
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
237
+ },
238
+ {
239
+ "author": "beachball",
240
+ "package": "@fluentui/react-tree",
241
+ "comment": "Bump @fluentui/react-avatar to v9.4.4",
242
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
243
+ },
244
+ {
245
+ "author": "beachball",
246
+ "package": "@fluentui/react-tree",
247
+ "comment": "Bump @fluentui/react-aria to v9.3.14",
248
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
249
+ },
250
+ {
251
+ "author": "beachball",
252
+ "package": "@fluentui/react-tree",
253
+ "comment": "Bump @fluentui/react-tabster to v9.6.0",
254
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
255
+ },
256
+ {
257
+ "author": "beachball",
258
+ "package": "@fluentui/react-tree",
259
+ "comment": "Bump @fluentui/react-portal to v9.2.1",
260
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
261
+ },
262
+ {
263
+ "author": "beachball",
264
+ "package": "@fluentui/react-tree",
265
+ "comment": "Bump @fluentui/react-button to v9.3.4",
266
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
267
+ },
268
+ {
269
+ "author": "beachball",
270
+ "package": "@fluentui/react-tree",
271
+ "comment": "Bump @fluentui/react-utilities to v9.7.1",
272
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
273
+ }
274
+ ]
275
+ }
276
+ },
277
+ {
278
+ "date": "Wed, 15 Mar 2023 10:19:53 GMT",
279
+ "tag": "@fluentui/react-tree_v9.0.0-beta.4",
280
+ "version": "9.0.0-beta.4",
281
+ "comments": {
282
+ "prerelease": [
283
+ {
284
+ "author": "beachball",
285
+ "package": "@fluentui/react-tree",
286
+ "comment": "Bump @fluentui/react-shared-contexts to v9.3.1",
287
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
288
+ },
289
+ {
290
+ "author": "beachball",
291
+ "package": "@fluentui/react-tree",
292
+ "comment": "Bump @fluentui/react-avatar to v9.4.3",
293
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
294
+ },
295
+ {
296
+ "author": "beachball",
297
+ "package": "@fluentui/react-tree",
298
+ "comment": "Bump @fluentui/react-tabster to v9.5.7",
299
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
300
+ },
301
+ {
302
+ "author": "beachball",
303
+ "package": "@fluentui/react-tree",
304
+ "comment": "Bump @fluentui/react-portal to v9.2.0",
305
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
306
+ },
307
+ {
308
+ "author": "beachball",
309
+ "package": "@fluentui/react-tree",
310
+ "comment": "Bump @fluentui/react-button to v9.3.3",
311
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
312
+ },
313
+ {
314
+ "author": "beachball",
315
+ "package": "@fluentui/react-tree",
316
+ "comment": "Bump @fluentui/react-theme to v9.1.6",
317
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
318
+ }
319
+ ]
320
+ }
321
+ },
322
+ {
323
+ "date": "Mon, 13 Mar 2023 08:58:26 GMT",
324
+ "tag": "@fluentui/react-tree_v9.0.0-beta.3",
325
+ "version": "9.0.0-beta.3",
326
+ "comments": {
327
+ "prerelease": [
328
+ {
329
+ "author": "beachball",
330
+ "package": "@fluentui/react-tree",
331
+ "comment": "Bump @fluentui/react-context-selector to v9.1.13",
332
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
333
+ },
334
+ {
335
+ "author": "beachball",
336
+ "package": "@fluentui/react-tree",
337
+ "comment": "Bump @fluentui/react-avatar to v9.4.2",
338
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
339
+ },
340
+ {
341
+ "author": "beachball",
342
+ "package": "@fluentui/react-tree",
343
+ "comment": "Bump @fluentui/react-aria to v9.3.13",
344
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
345
+ },
346
+ {
347
+ "author": "beachball",
348
+ "package": "@fluentui/react-tree",
349
+ "comment": "Bump @fluentui/react-tabster to v9.5.6",
350
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
351
+ },
352
+ {
353
+ "author": "beachball",
354
+ "package": "@fluentui/react-tree",
355
+ "comment": "Bump @fluentui/react-portal to v9.1.12",
356
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
357
+ },
358
+ {
359
+ "author": "beachball",
360
+ "package": "@fluentui/react-tree",
361
+ "comment": "Bump @fluentui/react-button to v9.3.2",
362
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
363
+ },
364
+ {
365
+ "author": "beachball",
366
+ "package": "@fluentui/react-tree",
367
+ "comment": "Bump @fluentui/react-utilities to v9.7.0",
368
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
369
+ }
370
+ ]
371
+ }
372
+ },
373
+ {
374
+ "date": "Fri, 10 Mar 2023 13:28:40 GMT",
375
+ "tag": "@fluentui/react-tree_v9.0.0-beta.2",
376
+ "version": "9.0.0-beta.2",
377
+ "comments": {
378
+ "prerelease": [
379
+ {
380
+ "author": "bernardo.sunderhus@gmail.com",
381
+ "package": "@fluentui/react-tree",
382
+ "commit": "4e092355bfa9457409d7fc3b4e617681bc9d3c85",
383
+ "comment": "feat: creates useFlatTree hook to improve API"
384
+ }
385
+ ]
386
+ }
387
+ },
388
+ {
389
+ "date": "Fri, 10 Mar 2023 07:14:01 GMT",
6
390
  "tag": "@fluentui/react-tree_v9.0.0-beta.1",
7
391
  "version": "9.0.0-beta.1",
8
392
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,128 @@
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 Wed, 12 Apr 2023 09:28:17 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.0.0-beta.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.10)
8
+
9
+ Wed, 12 Apr 2023 09:28:17 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.9..@fluentui/react-tree_v9.0.0-beta.10)
11
+
12
+ ### Changes
13
+
14
+ - Bump @fluentui/react-aria to v9.3.17 ([commit](https://github.com/microsoft/fluentui/commit/b48890859f5ce28fe12fd40f6bda26ed486c5e47) by beachball)
15
+ - Bump @fluentui/react-avatar to v9.4.8 ([commit](https://github.com/microsoft/fluentui/commit/b48890859f5ce28fe12fd40f6bda26ed486c5e47) by beachball)
16
+ - Bump @fluentui/react-button to v9.3.8 ([commit](https://github.com/microsoft/fluentui/commit/b48890859f5ce28fe12fd40f6bda26ed486c5e47) by beachball)
17
+ - Bump @fluentui/react-context-selector to v9.1.17 ([commit](https://github.com/microsoft/fluentui/commit/b48890859f5ce28fe12fd40f6bda26ed486c5e47) by beachball)
18
+ - Bump @fluentui/react-portal to v9.2.5 ([commit](https://github.com/microsoft/fluentui/commit/b48890859f5ce28fe12fd40f6bda26ed486c5e47) by beachball)
19
+ - Bump @fluentui/react-tabster to v9.6.4 ([commit](https://github.com/microsoft/fluentui/commit/b48890859f5ce28fe12fd40f6bda26ed486c5e47) by beachball)
20
+ - Bump @fluentui/react-utilities to v9.7.4 ([commit](https://github.com/microsoft/fluentui/commit/b48890859f5ce28fe12fd40f6bda26ed486c5e47) by beachball)
21
+
22
+ ## [9.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.9)
23
+
24
+ Tue, 04 Apr 2023 18:44:49 GMT
25
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.8..@fluentui/react-tree_v9.0.0-beta.9)
26
+
27
+ ### Changes
28
+
29
+ - chore: adds e2e flat tree tests ([PR #27318](https://github.com/microsoft/fluentui/pull/27318) by bernardo.sunderhus@gmail.com)
30
+ - Bump @fluentui/react-aria to v9.3.16 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
31
+ - Bump @fluentui/react-avatar to v9.4.7 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
32
+ - Bump @fluentui/react-button to v9.3.7 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
33
+ - Bump @fluentui/react-context-selector to v9.1.16 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
34
+ - Bump @fluentui/react-portal to v9.2.4 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
35
+ - Bump @fluentui/react-tabster to v9.6.3 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
36
+ - Bump @fluentui/react-utilities to v9.7.3 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
37
+
38
+ ## [9.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.8)
39
+
40
+ Fri, 24 Mar 2023 10:15:27 GMT
41
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.6..@fluentui/react-tree_v9.0.0-beta.8)
42
+
43
+ ### Changes
44
+
45
+ - tree stories and doc update ([PR #27270](https://github.com/microsoft/fluentui/pull/27270) by petrduda@microsoft.com)
46
+
47
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.6)
48
+
49
+ Tue, 21 Mar 2023 21:23:13 GMT
50
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.5..@fluentui/react-tree_v9.0.0-beta.6)
51
+
52
+ ### Changes
53
+
54
+ - chore: migrate to swc transpilation approach. ([PR #27250](https://github.com/microsoft/fluentui/pull/27250) by tristan.watanabe@gmail.com)
55
+ - chore: Bumping version of @fluentui/react-icons to ^2.0.196. ([PR #27100](https://github.com/microsoft/fluentui/pull/27100) by olfedias@microsoft.com)
56
+ - fix: add node field to package.json exports map. ([PR #27154](https://github.com/microsoft/fluentui/pull/27154) by tristan.watanabe@gmail.com)
57
+ - chore: adds initial e2e cypress tests ([PR #27266](https://github.com/microsoft/fluentui/pull/27266) by email not defined)
58
+ - Bump @fluentui/keyboard-keys to v9.0.2 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
59
+ - Bump @fluentui/react-aria to v9.3.15 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
60
+ - Bump @fluentui/react-avatar to v9.4.5 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
61
+ - Bump @fluentui/react-button to v9.3.5 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
62
+ - Bump @fluentui/react-context-selector to v9.1.15 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
63
+ - Bump @fluentui/react-portal to v9.2.2 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
64
+ - Bump @fluentui/react-shared-contexts to v9.3.2 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
65
+ - Bump @fluentui/react-tabster to v9.6.1 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
66
+ - Bump @fluentui/react-theme to v9.1.7 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
67
+ - Bump @fluentui/react-utilities to v9.7.2 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
68
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.20 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
69
+
70
+ ## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.5)
71
+
72
+ Thu, 16 Mar 2023 14:36:59 GMT
73
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.4..@fluentui/react-tree_v9.0.0-beta.5)
74
+
75
+ ### Changes
76
+
77
+ - Bump @fluentui/react-context-selector to v9.1.14 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
78
+ - Bump @fluentui/react-avatar to v9.4.4 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
79
+ - Bump @fluentui/react-aria to v9.3.14 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
80
+ - Bump @fluentui/react-tabster to v9.6.0 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
81
+ - Bump @fluentui/react-portal to v9.2.1 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
82
+ - Bump @fluentui/react-button to v9.3.4 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
83
+ - Bump @fluentui/react-utilities to v9.7.1 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
84
+
85
+ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.4)
86
+
87
+ Wed, 15 Mar 2023 10:19:53 GMT
88
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.3..@fluentui/react-tree_v9.0.0-beta.4)
89
+
90
+ ### Changes
91
+
92
+ - Bump @fluentui/react-shared-contexts to v9.3.1 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball)
93
+ - Bump @fluentui/react-avatar to v9.4.3 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball)
94
+ - Bump @fluentui/react-tabster to v9.5.7 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball)
95
+ - Bump @fluentui/react-portal to v9.2.0 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball)
96
+ - Bump @fluentui/react-button to v9.3.3 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball)
97
+ - Bump @fluentui/react-theme to v9.1.6 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball)
98
+
99
+ ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.3)
100
+
101
+ Mon, 13 Mar 2023 08:58:26 GMT
102
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.2..@fluentui/react-tree_v9.0.0-beta.3)
103
+
104
+ ### Changes
105
+
106
+ - Bump @fluentui/react-context-selector to v9.1.13 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
107
+ - Bump @fluentui/react-avatar to v9.4.2 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
108
+ - Bump @fluentui/react-aria to v9.3.13 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
109
+ - Bump @fluentui/react-tabster to v9.5.6 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
110
+ - Bump @fluentui/react-portal to v9.1.12 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
111
+ - Bump @fluentui/react-button to v9.3.2 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
112
+ - Bump @fluentui/react-utilities to v9.7.0 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
113
+
114
+ ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.2)
115
+
116
+ Fri, 10 Mar 2023 13:28:40 GMT
117
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tree_v9.0.0-beta.1..@fluentui/react-tree_v9.0.0-beta.2)
118
+
119
+ ### Changes
120
+
121
+ - feat: creates useFlatTree hook to improve API ([PR #27146](https://github.com/microsoft/fluentui/pull/27146) by bernardo.sunderhus@gmail.com)
122
+
7
123
  ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-tree_v9.0.0-beta.1)
8
124
 
9
- Fri, 10 Mar 2023 07:11:10 GMT
125
+ Fri, 10 Mar 2023 07:14:01 GMT
10
126
 
11
127
  ### Changes
12
128