@fluentui/react-tree 9.0.0-beta.2 → 9.0.0-beta.21

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 (244) hide show
  1. package/CHANGELOG.json +1073 -1
  2. package/CHANGELOG.md +295 -2
  3. package/dist/index.d.ts +153 -91
  4. package/lib/Tree.js +0 -1
  5. package/lib/Tree.js.map +1 -1
  6. package/lib/TreeItem.js +0 -1
  7. package/lib/TreeItem.js.map +1 -1
  8. package/lib/TreeItemLayout.js +0 -1
  9. package/lib/TreeItemLayout.js.map +1 -1
  10. package/lib/TreeItemPersonaLayout.js +0 -1
  11. package/lib/TreeItemPersonaLayout.js.map +1 -1
  12. package/lib/components/Tree/Tree.js +6 -8
  13. package/lib/components/Tree/Tree.js.map +1 -1
  14. package/lib/components/Tree/Tree.types.js +1 -2
  15. package/lib/components/Tree/Tree.types.js.map +1 -1
  16. package/lib/components/Tree/index.js +1 -2
  17. package/lib/components/Tree/index.js.map +1 -1
  18. package/lib/components/Tree/renderTree.js +7 -13
  19. package/lib/components/Tree/renderTree.js.map +1 -1
  20. package/lib/components/Tree/useRootTree.js +145 -0
  21. package/lib/components/Tree/useRootTree.js.map +1 -0
  22. package/lib/components/Tree/useSubtree.js +35 -0
  23. package/lib/components/Tree/useSubtree.js.map +1 -0
  24. package/lib/components/Tree/useTree.js +9 -103
  25. package/lib/components/Tree/useTree.js.map +1 -1
  26. package/lib/components/Tree/useTreeContextValues.js +12 -22
  27. package/lib/components/Tree/useTreeContextValues.js.map +1 -1
  28. package/lib/components/Tree/useTreeStyles.styles.js +30 -0
  29. package/lib/components/Tree/useTreeStyles.styles.js.map +1 -0
  30. package/lib/components/TreeItem/TreeItem.js +16 -9
  31. package/lib/components/TreeItem/TreeItem.js.map +1 -1
  32. package/lib/components/TreeItem/TreeItem.types.js +1 -2
  33. package/lib/components/TreeItem/TreeItem.types.js.map +1 -1
  34. package/lib/components/TreeItem/index.js +1 -2
  35. package/lib/components/TreeItem/index.js.map +1 -1
  36. package/lib/components/TreeItem/renderTreeItem.js +7 -25
  37. package/lib/components/TreeItem/renderTreeItem.js.map +1 -1
  38. package/lib/components/TreeItem/useTreeItem.js +116 -234
  39. package/lib/components/TreeItem/useTreeItem.js.map +1 -1
  40. package/lib/components/TreeItem/useTreeItemContextValues.js +18 -16
  41. package/lib/components/TreeItem/useTreeItemContextValues.js.map +1 -1
  42. package/lib/components/TreeItem/useTreeItemStyles.styles.js +100 -0
  43. package/lib/components/TreeItem/useTreeItemStyles.styles.js.map +1 -0
  44. package/lib/components/TreeItemChevron.js +24 -0
  45. package/lib/components/TreeItemChevron.js.map +1 -0
  46. package/lib/components/TreeItemLayout/TreeItemLayout.js +8 -8
  47. package/lib/components/TreeItemLayout/TreeItemLayout.js.map +1 -1
  48. package/lib/components/TreeItemLayout/TreeItemLayout.types.js +1 -2
  49. package/lib/components/TreeItemLayout/TreeItemLayout.types.js.map +1 -1
  50. package/lib/components/TreeItemLayout/index.js +1 -2
  51. package/lib/components/TreeItemLayout/index.js.map +1 -1
  52. package/lib/components/TreeItemLayout/renderTreeItemLayout.js +8 -21
  53. package/lib/components/TreeItemLayout/renderTreeItemLayout.js.map +1 -1
  54. package/lib/components/TreeItemLayout/useTreeItemLayout.js +58 -39
  55. package/lib/components/TreeItemLayout/useTreeItemLayout.js.map +1 -1
  56. package/lib/components/TreeItemLayout/useTreeItemLayoutStyles.styles.js +191 -0
  57. package/lib/components/TreeItemLayout/useTreeItemLayoutStyles.styles.js.map +1 -0
  58. package/lib/components/TreeItemPersonaLayout/TreeItemPersonaLayout.js +9 -9
  59. package/lib/components/TreeItemPersonaLayout/TreeItemPersonaLayout.js.map +1 -1
  60. package/lib/components/TreeItemPersonaLayout/TreeItemPersonaLayout.types.js +1 -2
  61. package/lib/components/TreeItemPersonaLayout/TreeItemPersonaLayout.types.js.map +1 -1
  62. package/lib/components/TreeItemPersonaLayout/index.js +1 -2
  63. package/lib/components/TreeItemPersonaLayout/index.js.map +1 -1
  64. package/lib/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.js +10 -27
  65. package/lib/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.js.map +1 -1
  66. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.js +35 -48
  67. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.js.map +1 -1
  68. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutContextValues.js +9 -10
  69. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutContextValues.js.map +1 -1
  70. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.styles.js +206 -0
  71. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.styles.js.map +1 -0
  72. package/lib/contexts/index.js +0 -1
  73. package/lib/contexts/index.js.map +1 -1
  74. package/lib/contexts/treeContext.js +9 -14
  75. package/lib/contexts/treeContext.js.map +1 -1
  76. package/lib/contexts/treeItemContext.js +13 -10
  77. package/lib/contexts/treeItemContext.js.map +1 -1
  78. package/lib/hooks/index.js +0 -1
  79. package/lib/hooks/index.js.map +1 -1
  80. package/lib/hooks/useFlatTree.js +81 -35
  81. package/lib/hooks/useFlatTree.js.map +1 -1
  82. package/lib/hooks/useFlatTreeNavigation.js +65 -62
  83. package/lib/hooks/useFlatTreeNavigation.js.map +1 -1
  84. package/lib/hooks/useHTMLElementWalker.js +78 -76
  85. package/lib/hooks/useHTMLElementWalker.js.map +1 -1
  86. package/lib/hooks/useNestedTreeNavigation.js +49 -49
  87. package/lib/hooks/useNestedTreeNavigation.js.map +1 -1
  88. package/lib/hooks/useOpenItemsState.js +21 -15
  89. package/lib/hooks/useOpenItemsState.js.map +1 -1
  90. package/lib/hooks/useRovingTabIndexes.js +46 -45
  91. package/lib/hooks/useRovingTabIndexes.js.map +1 -1
  92. package/lib/index.js +0 -1
  93. package/lib/index.js.map +1 -1
  94. package/lib/utils/ImmutableSet.js +27 -30
  95. package/lib/utils/ImmutableSet.js.map +1 -1
  96. package/lib/utils/assert.js +5 -5
  97. package/lib/utils/assert.js.map +1 -1
  98. package/lib/utils/createFlatTreeItems.js +113 -0
  99. package/lib/utils/createFlatTreeItems.js.map +1 -0
  100. package/lib/utils/flattenTree.js +58 -28
  101. package/lib/utils/flattenTree.js.map +1 -1
  102. package/lib/utils/getTreeItemValueFromElement.js +4 -0
  103. package/lib/utils/getTreeItemValueFromElement.js.map +1 -0
  104. package/lib/utils/nextTypeAheadElement.js +11 -12
  105. package/lib/utils/nextTypeAheadElement.js.map +1 -1
  106. package/lib/utils/normalizeOpenItems.js +6 -5
  107. package/lib/utils/normalizeOpenItems.js.map +1 -1
  108. package/lib/utils/tokens.js +13 -14
  109. package/lib/utils/tokens.js.map +1 -1
  110. package/lib/utils/treeItemFilter.js +2 -3
  111. package/lib/utils/treeItemFilter.js.map +1 -1
  112. package/lib-commonjs/Tree.js +3 -5
  113. package/lib-commonjs/Tree.js.map +1 -1
  114. package/lib-commonjs/TreeItem.js +3 -5
  115. package/lib-commonjs/TreeItem.js.map +1 -1
  116. package/lib-commonjs/TreeItemLayout.js +3 -5
  117. package/lib-commonjs/TreeItemLayout.js.map +1 -1
  118. package/lib-commonjs/TreeItemPersonaLayout.js +3 -5
  119. package/lib-commonjs/TreeItemPersonaLayout.js.map +1 -1
  120. package/lib-commonjs/components/Tree/Tree.js +17 -23
  121. package/lib-commonjs/components/Tree/Tree.js.map +1 -1
  122. package/lib-commonjs/components/Tree/Tree.types.js +3 -3
  123. package/lib-commonjs/components/Tree/Tree.types.js.map +1 -1
  124. package/lib-commonjs/components/Tree/index.js +8 -10
  125. package/lib-commonjs/components/Tree/index.js.map +1 -1
  126. package/lib-commonjs/components/Tree/renderTree.js +14 -19
  127. package/lib-commonjs/components/Tree/renderTree.js.map +1 -1
  128. package/lib-commonjs/components/Tree/useRootTree.js +149 -0
  129. package/lib-commonjs/components/Tree/useRootTree.js.map +1 -0
  130. package/lib-commonjs/components/Tree/useSubtree.js +39 -0
  131. package/lib-commonjs/components/Tree/useSubtree.js.map +1 -0
  132. package/lib-commonjs/components/Tree/useTree.js +16 -116
  133. package/lib-commonjs/components/Tree/useTree.js.map +1 -1
  134. package/lib-commonjs/components/Tree/useTreeContextValues.js +17 -26
  135. package/lib-commonjs/components/Tree/useTreeContextValues.js.map +1 -1
  136. package/lib-commonjs/components/Tree/useTreeStyles.styles.js +53 -0
  137. package/lib-commonjs/components/Tree/useTreeStyles.styles.js.map +1 -0
  138. package/lib-commonjs/components/TreeItem/TreeItem.js +17 -18
  139. package/lib-commonjs/components/TreeItem/TreeItem.js.map +1 -1
  140. package/lib-commonjs/components/TreeItem/TreeItem.types.js +3 -4
  141. package/lib-commonjs/components/TreeItem/TreeItem.types.js.map +1 -1
  142. package/lib-commonjs/components/TreeItem/index.js +7 -9
  143. package/lib-commonjs/components/TreeItem/index.js.map +1 -1
  144. package/lib-commonjs/components/TreeItem/renderTreeItem.js +14 -33
  145. package/lib-commonjs/components/TreeItem/renderTreeItem.js.map +1 -1
  146. package/lib-commonjs/components/TreeItem/useTreeItem.js +126 -251
  147. package/lib-commonjs/components/TreeItem/useTreeItem.js.map +1 -1
  148. package/lib-commonjs/components/TreeItem/useTreeItemContextValues.js +23 -20
  149. package/lib-commonjs/components/TreeItem/useTreeItemContextValues.js.map +1 -1
  150. package/lib-commonjs/components/TreeItem/useTreeItemStyles.styles.js +202 -0
  151. package/lib-commonjs/components/TreeItem/useTreeItemStyles.styles.js.map +1 -0
  152. package/lib-commonjs/components/TreeItemChevron.js +33 -0
  153. package/lib-commonjs/components/TreeItemChevron.js.map +1 -0
  154. package/lib-commonjs/components/TreeItemLayout/TreeItemLayout.js +15 -16
  155. package/lib-commonjs/components/TreeItemLayout/TreeItemLayout.js.map +1 -1
  156. package/lib-commonjs/components/TreeItemLayout/TreeItemLayout.types.js +1 -3
  157. package/lib-commonjs/components/TreeItemLayout/TreeItemLayout.types.js.map +1 -1
  158. package/lib-commonjs/components/TreeItemLayout/index.js +7 -9
  159. package/lib-commonjs/components/TreeItemLayout/index.js.map +1 -1
  160. package/lib-commonjs/components/TreeItemLayout/renderTreeItemLayout.js +14 -28
  161. package/lib-commonjs/components/TreeItemLayout/renderTreeItemLayout.js.map +1 -1
  162. package/lib-commonjs/components/TreeItemLayout/useTreeItemLayout.js +64 -52
  163. package/lib-commonjs/components/TreeItemLayout/useTreeItemLayout.js.map +1 -1
  164. package/lib-commonjs/components/TreeItemLayout/useTreeItemLayoutStyles.styles.js +321 -0
  165. package/lib-commonjs/components/TreeItemLayout/useTreeItemLayoutStyles.styles.js.map +1 -0
  166. package/lib-commonjs/components/TreeItemPersonaLayout/TreeItemPersonaLayout.js +17 -18
  167. package/lib-commonjs/components/TreeItemPersonaLayout/TreeItemPersonaLayout.js.map +1 -1
  168. package/lib-commonjs/components/TreeItemPersonaLayout/TreeItemPersonaLayout.types.js +1 -3
  169. package/lib-commonjs/components/TreeItemPersonaLayout/TreeItemPersonaLayout.types.js.map +1 -1
  170. package/lib-commonjs/components/TreeItemPersonaLayout/index.js +7 -9
  171. package/lib-commonjs/components/TreeItemPersonaLayout/index.js.map +1 -1
  172. package/lib-commonjs/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.js +17 -35
  173. package/lib-commonjs/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.js.map +1 -1
  174. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.js +42 -61
  175. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.js.map +1 -1
  176. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutContextValues.js +16 -15
  177. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutContextValues.js.map +1 -1
  178. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.styles.js +375 -0
  179. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.styles.js.map +1 -0
  180. package/lib-commonjs/contexts/index.js +4 -6
  181. package/lib-commonjs/contexts/index.js.map +1 -1
  182. package/lib-commonjs/contexts/treeContext.js +23 -18
  183. package/lib-commonjs/contexts/treeContext.js.map +1 -1
  184. package/lib-commonjs/contexts/treeItemContext.js +27 -13
  185. package/lib-commonjs/contexts/treeItemContext.js.map +1 -1
  186. package/lib-commonjs/hooks/index.js +5 -7
  187. package/lib-commonjs/hooks/index.js.map +1 -1
  188. package/lib-commonjs/hooks/useFlatTree.js +88 -52
  189. package/lib-commonjs/hooks/useFlatTree.js.map +1 -1
  190. package/lib-commonjs/hooks/useFlatTreeNavigation.js +76 -72
  191. package/lib-commonjs/hooks/useFlatTreeNavigation.js.map +1 -1
  192. package/lib-commonjs/hooks/useHTMLElementWalker.js +92 -83
  193. package/lib-commonjs/hooks/useHTMLElementWalker.js.map +1 -1
  194. package/lib-commonjs/hooks/useNestedTreeNavigation.js +59 -58
  195. package/lib-commonjs/hooks/useNestedTreeNavigation.js.map +1 -1
  196. package/lib-commonjs/hooks/useOpenItemsState.js +30 -22
  197. package/lib-commonjs/hooks/useOpenItemsState.js.map +1 -1
  198. package/lib-commonjs/hooks/useRovingTabIndexes.js +54 -53
  199. package/lib-commonjs/hooks/useRovingTabIndexes.js.map +1 -1
  200. package/lib-commonjs/index.js +46 -181
  201. package/lib-commonjs/index.js.map +1 -1
  202. package/lib-commonjs/utils/ImmutableSet.js +37 -38
  203. package/lib-commonjs/utils/ImmutableSet.js.map +1 -1
  204. package/lib-commonjs/utils/assert.js +11 -9
  205. package/lib-commonjs/utils/assert.js.map +1 -1
  206. package/lib-commonjs/utils/createFlatTreeItems.js +127 -0
  207. package/lib-commonjs/utils/createFlatTreeItems.js.map +1 -0
  208. package/lib-commonjs/utils/flattenTree.js +25 -33
  209. package/lib-commonjs/utils/flattenTree.js.map +1 -1
  210. package/lib-commonjs/utils/getTreeItemValueFromElement.js +18 -0
  211. package/lib-commonjs/utils/getTreeItemValueFromElement.js.map +1 -0
  212. package/lib-commonjs/utils/nextTypeAheadElement.js +16 -16
  213. package/lib-commonjs/utils/nextTypeAheadElement.js.map +1 -1
  214. package/lib-commonjs/utils/normalizeOpenItems.js +11 -9
  215. package/lib-commonjs/utils/normalizeOpenItems.js.map +1 -1
  216. package/lib-commonjs/utils/tokens.js +28 -20
  217. package/lib-commonjs/utils/tokens.js.map +1 -1
  218. package/lib-commonjs/utils/treeItemFilter.js +7 -7
  219. package/lib-commonjs/utils/treeItemFilter.js.map +1 -1
  220. package/package.json +23 -17
  221. package/lib/components/Tree/useTreeStyles.js +0 -20
  222. package/lib/components/Tree/useTreeStyles.js.map +0 -1
  223. package/lib/components/TreeItem/useTreeItemStyles.js +0 -203
  224. package/lib/components/TreeItem/useTreeItemStyles.js.map +0 -1
  225. package/lib/components/TreeItemLayout/useTreeItemLayoutStyles.js +0 -98
  226. package/lib/components/TreeItemLayout/useTreeItemLayoutStyles.js.map +0 -1
  227. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.js +0 -115
  228. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.js.map +0 -1
  229. package/lib/utils/createUnfilteredFlatTree.js +0 -77
  230. package/lib/utils/createUnfilteredFlatTree.js.map +0 -1
  231. package/lib/utils/createVisibleFlatTree.js +0 -80
  232. package/lib/utils/createVisibleFlatTree.js.map +0 -1
  233. package/lib-commonjs/components/Tree/useTreeStyles.js +0 -27
  234. package/lib-commonjs/components/Tree/useTreeStyles.js.map +0 -1
  235. package/lib-commonjs/components/TreeItem/useTreeItemStyles.js +0 -210
  236. package/lib-commonjs/components/TreeItem/useTreeItemStyles.js.map +0 -1
  237. package/lib-commonjs/components/TreeItemLayout/useTreeItemLayoutStyles.js +0 -105
  238. package/lib-commonjs/components/TreeItemLayout/useTreeItemLayoutStyles.js.map +0 -1
  239. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.js +0 -122
  240. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.js.map +0 -1
  241. package/lib-commonjs/utils/createUnfilteredFlatTree.js +0 -84
  242. package/lib-commonjs/utils/createUnfilteredFlatTree.js.map +0 -1
  243. package/lib-commonjs/utils/createVisibleFlatTree.js +0 -87
  244. package/lib-commonjs/utils/createVisibleFlatTree.js.map +0 -1
package/CHANGELOG.json CHANGED
@@ -2,7 +2,1079 @@
2
2
  "name": "@fluentui/react-tree",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 10 Mar 2023 13:28:18 GMT",
5
+ "date": "Tue, 27 Jun 2023 11:19:43 GMT",
6
+ "tag": "@fluentui/react-tree_v9.0.0-beta.21",
7
+ "version": "9.0.0-beta.21",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "bernardo.sunderhus@gmail.com",
12
+ "package": "@fluentui/react-tree",
13
+ "commit": "90acd97916fbb771d436062cad6a3f85be974e39",
14
+ "comment": "bugfix: makes value property on TreeItem less generic to simplify internals"
15
+ },
16
+ {
17
+ "author": "bernardo.sunderhus@gmail.com",
18
+ "package": "@fluentui/react-tree",
19
+ "commit": "56143ef533ed77608a3590e81b1d6fb3bca1357c",
20
+ "comment": "bugfix: rollback to actions and aside as a slot to ensure positioning of internals"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-tree",
25
+ "comment": "Bump @fluentui/react-avatar to v9.5.8",
26
+ "commit": "1c7e6451a11fb9c59e344df616394a320e8031c4"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-tree",
31
+ "comment": "Bump @fluentui/react-button to v9.3.19",
32
+ "commit": "1c7e6451a11fb9c59e344df616394a320e8031c4"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui/react-tree",
37
+ "comment": "Bump @fluentui/react-portal to v9.2.15",
38
+ "commit": "1c7e6451a11fb9c59e344df616394a320e8031c4"
39
+ },
40
+ {
41
+ "author": "beachball",
42
+ "package": "@fluentui/react-tree",
43
+ "comment": "Bump @fluentui/react-tabster to v9.9.0",
44
+ "commit": "1c7e6451a11fb9c59e344df616394a320e8031c4"
45
+ }
46
+ ]
47
+ }
48
+ },
49
+ {
50
+ "date": "Mon, 26 Jun 2023 09:53:55 GMT",
51
+ "tag": "@fluentui/react-tree_v9.0.0-beta.20",
52
+ "version": "9.0.0-beta.20",
53
+ "comments": {
54
+ "prerelease": [
55
+ {
56
+ "author": "beachball",
57
+ "package": "@fluentui/react-tree",
58
+ "comment": "Bump @fluentui/react-aria to v9.3.24",
59
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
60
+ },
61
+ {
62
+ "author": "beachball",
63
+ "package": "@fluentui/react-tree",
64
+ "comment": "Bump @fluentui/react-avatar to v9.5.7",
65
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
66
+ },
67
+ {
68
+ "author": "beachball",
69
+ "package": "@fluentui/react-tree",
70
+ "comment": "Bump @fluentui/react-button to v9.3.18",
71
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
72
+ },
73
+ {
74
+ "author": "beachball",
75
+ "package": "@fluentui/react-tree",
76
+ "comment": "Bump @fluentui/react-context-selector to v9.1.24",
77
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
78
+ },
79
+ {
80
+ "author": "beachball",
81
+ "package": "@fluentui/react-tree",
82
+ "comment": "Bump @fluentui/react-portal to v9.2.14",
83
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
84
+ },
85
+ {
86
+ "author": "beachball",
87
+ "package": "@fluentui/react-tree",
88
+ "comment": "Bump @fluentui/react-tabster to v9.8.1",
89
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
90
+ },
91
+ {
92
+ "author": "beachball",
93
+ "package": "@fluentui/react-tree",
94
+ "comment": "Bump @fluentui/react-utilities to v9.9.4",
95
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
96
+ },
97
+ {
98
+ "author": "beachball",
99
+ "package": "@fluentui/react-tree",
100
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.8",
101
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
102
+ }
103
+ ]
104
+ }
105
+ },
106
+ {
107
+ "date": "Tue, 20 Jun 2023 12:39:06 GMT",
108
+ "tag": "@fluentui/react-tree_v9.0.0-beta.19",
109
+ "version": "9.0.0-beta.19",
110
+ "comments": {
111
+ "prerelease": [
112
+ {
113
+ "author": "ololubek@microsoft.com",
114
+ "package": "@fluentui/react-tree",
115
+ "commit": "8a5ae3aa00faa327c58887a99a5698b18f2930ee",
116
+ "comment": "chore: update @fluentui/react-icons to 2.0.203"
117
+ },
118
+ {
119
+ "author": "beachball",
120
+ "package": "@fluentui/react-tree",
121
+ "comment": "Bump @fluentui/react-aria to v9.3.23",
122
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
123
+ },
124
+ {
125
+ "author": "beachball",
126
+ "package": "@fluentui/react-tree",
127
+ "comment": "Bump @fluentui/react-avatar to v9.5.6",
128
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
129
+ },
130
+ {
131
+ "author": "beachball",
132
+ "package": "@fluentui/react-tree",
133
+ "comment": "Bump @fluentui/react-button to v9.3.17",
134
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
135
+ },
136
+ {
137
+ "author": "beachball",
138
+ "package": "@fluentui/react-tree",
139
+ "comment": "Bump @fluentui/react-context-selector to v9.1.23",
140
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
141
+ },
142
+ {
143
+ "author": "beachball",
144
+ "package": "@fluentui/react-tree",
145
+ "comment": "Bump @fluentui/react-portal to v9.2.13",
146
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
147
+ },
148
+ {
149
+ "author": "beachball",
150
+ "package": "@fluentui/react-tree",
151
+ "comment": "Bump @fluentui/react-shared-contexts to v9.5.1",
152
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
153
+ },
154
+ {
155
+ "author": "beachball",
156
+ "package": "@fluentui/react-tree",
157
+ "comment": "Bump @fluentui/react-tabster to v9.8.0",
158
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
159
+ },
160
+ {
161
+ "author": "beachball",
162
+ "package": "@fluentui/react-tree",
163
+ "comment": "Bump @fluentui/react-theme to v9.1.9",
164
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
165
+ },
166
+ {
167
+ "author": "beachball",
168
+ "package": "@fluentui/react-tree",
169
+ "comment": "Bump @fluentui/react-utilities to v9.9.3",
170
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
171
+ },
172
+ {
173
+ "author": "beachball",
174
+ "package": "@fluentui/react-tree",
175
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.7",
176
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
177
+ },
178
+ {
179
+ "author": "beachball",
180
+ "package": "@fluentui/react-tree",
181
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.23",
182
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
183
+ }
184
+ ]
185
+ }
186
+ },
187
+ {
188
+ "date": "Wed, 31 May 2023 06:46:22 GMT",
189
+ "tag": "@fluentui/react-tree_v9.0.0-beta.18",
190
+ "version": "9.0.0-beta.18",
191
+ "comments": {
192
+ "prerelease": [
193
+ {
194
+ "author": "seanmonahan@microsoft.com",
195
+ "package": "@fluentui/react-tree",
196
+ "commit": "d640b972d7ac86bfb76ae6c6329f12cdd33b3b7c",
197
+ "comment": "chore: Update Griffel to v1.5.7."
198
+ },
199
+ {
200
+ "author": "beachball",
201
+ "package": "@fluentui/react-tree",
202
+ "comment": "Bump @fluentui/react-aria to v9.3.22",
203
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
204
+ },
205
+ {
206
+ "author": "beachball",
207
+ "package": "@fluentui/react-tree",
208
+ "comment": "Bump @fluentui/react-avatar to v9.5.5",
209
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
210
+ },
211
+ {
212
+ "author": "beachball",
213
+ "package": "@fluentui/react-tree",
214
+ "comment": "Bump @fluentui/react-button to v9.3.16",
215
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
216
+ },
217
+ {
218
+ "author": "beachball",
219
+ "package": "@fluentui/react-tree",
220
+ "comment": "Bump @fluentui/react-context-selector to v9.1.22",
221
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
222
+ },
223
+ {
224
+ "author": "beachball",
225
+ "package": "@fluentui/react-tree",
226
+ "comment": "Bump @fluentui/react-portal to v9.2.12",
227
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
228
+ },
229
+ {
230
+ "author": "beachball",
231
+ "package": "@fluentui/react-tree",
232
+ "comment": "Bump @fluentui/react-tabster to v9.7.5",
233
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
234
+ },
235
+ {
236
+ "author": "beachball",
237
+ "package": "@fluentui/react-tree",
238
+ "comment": "Bump @fluentui/react-utilities to v9.9.2",
239
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
240
+ },
241
+ {
242
+ "author": "beachball",
243
+ "package": "@fluentui/react-tree",
244
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.6",
245
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
246
+ },
247
+ {
248
+ "author": "beachball",
249
+ "package": "@fluentui/react-tree",
250
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.22",
251
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
252
+ }
253
+ ]
254
+ }
255
+ },
256
+ {
257
+ "date": "Thu, 25 May 2023 10:00:48 GMT",
258
+ "tag": "@fluentui/react-tree_v9.0.0-beta.17",
259
+ "version": "9.0.0-beta.17",
260
+ "comments": {
261
+ "prerelease": [
262
+ {
263
+ "author": "beachball",
264
+ "package": "@fluentui/react-tree",
265
+ "comment": "Bump @fluentui/react-aria to v9.3.21",
266
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
267
+ },
268
+ {
269
+ "author": "beachball",
270
+ "package": "@fluentui/react-tree",
271
+ "comment": "Bump @fluentui/react-avatar to v9.5.4",
272
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
273
+ },
274
+ {
275
+ "author": "beachball",
276
+ "package": "@fluentui/react-tree",
277
+ "comment": "Bump @fluentui/react-button to v9.3.15",
278
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
279
+ },
280
+ {
281
+ "author": "beachball",
282
+ "package": "@fluentui/react-tree",
283
+ "comment": "Bump @fluentui/react-context-selector to v9.1.21",
284
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
285
+ },
286
+ {
287
+ "author": "beachball",
288
+ "package": "@fluentui/react-tree",
289
+ "comment": "Bump @fluentui/react-portal to v9.2.11",
290
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
291
+ },
292
+ {
293
+ "author": "beachball",
294
+ "package": "@fluentui/react-tree",
295
+ "comment": "Bump @fluentui/react-tabster to v9.7.4",
296
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
297
+ },
298
+ {
299
+ "author": "beachball",
300
+ "package": "@fluentui/react-tree",
301
+ "comment": "Bump @fluentui/react-utilities to v9.9.1",
302
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
303
+ },
304
+ {
305
+ "author": "beachball",
306
+ "package": "@fluentui/react-tree",
307
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.5",
308
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
309
+ }
310
+ ]
311
+ }
312
+ },
313
+ {
314
+ "date": "Wed, 24 May 2023 20:45:37 GMT",
315
+ "tag": "@fluentui/react-tree_v9.0.0-beta.16",
316
+ "version": "9.0.0-beta.16",
317
+ "comments": {
318
+ "none": [
319
+ {
320
+ "author": "olfedias@microsoft.com",
321
+ "package": "@fluentui/react-tree",
322
+ "commit": "69e0617a93cb44ef42f3bd19284b7dc5fe27fed3",
323
+ "comment": "chore: update test-ssr script"
324
+ }
325
+ ],
326
+ "prerelease": [
327
+ {
328
+ "author": "beachball",
329
+ "package": "@fluentui/react-tree",
330
+ "comment": "Bump @fluentui/react-avatar to v9.5.3",
331
+ "commit": "3f088b7b09988e7c05af1c953021acc94c273026"
332
+ },
333
+ {
334
+ "author": "beachball",
335
+ "package": "@fluentui/react-tree",
336
+ "comment": "Bump @fluentui/react-button to v9.3.14",
337
+ "commit": "3f088b7b09988e7c05af1c953021acc94c273026"
338
+ },
339
+ {
340
+ "author": "beachball",
341
+ "package": "@fluentui/react-tree",
342
+ "comment": "Bump @fluentui/react-portal to v9.2.10",
343
+ "commit": "3f088b7b09988e7c05af1c953021acc94c273026"
344
+ },
345
+ {
346
+ "author": "beachball",
347
+ "package": "@fluentui/react-tree",
348
+ "comment": "Bump @fluentui/react-shared-contexts to v9.5.0",
349
+ "commit": "3f088b7b09988e7c05af1c953021acc94c273026"
350
+ },
351
+ {
352
+ "author": "beachball",
353
+ "package": "@fluentui/react-tree",
354
+ "comment": "Bump @fluentui/react-tabster to v9.7.3",
355
+ "commit": "3f088b7b09988e7c05af1c953021acc94c273026"
356
+ }
357
+ ]
358
+ }
359
+ },
360
+ {
361
+ "date": "Thu, 18 May 2023 13:11:08 GMT",
362
+ "tag": "@fluentui/react-tree_v9.0.0-beta.15",
363
+ "version": "9.0.0-beta.15",
364
+ "comments": {
365
+ "prerelease": [
366
+ {
367
+ "author": "beachball",
368
+ "package": "@fluentui/react-tree",
369
+ "comment": "Bump @fluentui/react-avatar to v9.5.2",
370
+ "commit": "1e6f5c8eec4b67c051fb3aa429e303115570ae4d"
371
+ },
372
+ {
373
+ "author": "beachball",
374
+ "package": "@fluentui/react-tree",
375
+ "comment": "Bump @fluentui/react-button to v9.3.13",
376
+ "commit": "1e6f5c8eec4b67c051fb3aa429e303115570ae4d"
377
+ },
378
+ {
379
+ "author": "beachball",
380
+ "package": "@fluentui/react-tree",
381
+ "comment": "Bump @fluentui/react-portal to v9.2.9",
382
+ "commit": "1e6f5c8eec4b67c051fb3aa429e303115570ae4d"
383
+ },
384
+ {
385
+ "author": "beachball",
386
+ "package": "@fluentui/react-tree",
387
+ "comment": "Bump @fluentui/react-tabster to v9.7.2",
388
+ "commit": "1e6f5c8eec4b67c051fb3aa429e303115570ae4d"
389
+ }
390
+ ]
391
+ }
392
+ },
393
+ {
394
+ "date": "Thu, 18 May 2023 00:39:20 GMT",
395
+ "tag": "@fluentui/react-tree_v9.0.0-beta.14",
396
+ "version": "9.0.0-beta.14",
397
+ "comments": {
398
+ "prerelease": [
399
+ {
400
+ "author": "beachball",
401
+ "package": "@fluentui/react-tree",
402
+ "comment": "Bump @fluentui/react-aria to v9.3.20",
403
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
404
+ },
405
+ {
406
+ "author": "beachball",
407
+ "package": "@fluentui/react-tree",
408
+ "comment": "Bump @fluentui/react-avatar to v9.5.1",
409
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
410
+ },
411
+ {
412
+ "author": "beachball",
413
+ "package": "@fluentui/react-tree",
414
+ "comment": "Bump @fluentui/react-button to v9.3.12",
415
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
416
+ },
417
+ {
418
+ "author": "beachball",
419
+ "package": "@fluentui/react-tree",
420
+ "comment": "Bump @fluentui/react-context-selector to v9.1.20",
421
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
422
+ },
423
+ {
424
+ "author": "beachball",
425
+ "package": "@fluentui/react-tree",
426
+ "comment": "Bump @fluentui/react-portal to v9.2.8",
427
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
428
+ },
429
+ {
430
+ "author": "beachball",
431
+ "package": "@fluentui/react-tree",
432
+ "comment": "Bump @fluentui/react-tabster to v9.7.1",
433
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
434
+ },
435
+ {
436
+ "author": "beachball",
437
+ "package": "@fluentui/react-tree",
438
+ "comment": "Bump @fluentui/react-utilities to v9.9.0",
439
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
440
+ },
441
+ {
442
+ "author": "beachball",
443
+ "package": "@fluentui/react-tree",
444
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.4",
445
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
446
+ }
447
+ ]
448
+ }
449
+ },
450
+ {
451
+ "date": "Fri, 12 May 2023 20:28:01 GMT",
452
+ "tag": "@fluentui/react-tree_v9.0.0-beta.13",
453
+ "version": "9.0.0-beta.13",
454
+ "comments": {
455
+ "prerelease": [
456
+ {
457
+ "author": "olfedias@microsoft.com",
458
+ "package": "@fluentui/react-tree",
459
+ "commit": "c28decb23d191a0daaaf6d5d1832429715102129",
460
+ "comment": "chore: exclude .swcrc from being published"
461
+ },
462
+ {
463
+ "author": "bernardo.sunderhus@gmail.com",
464
+ "package": "@fluentui/react-tree",
465
+ "commit": "e61227d7e52d4210b0a108657e6c56c0cfaf8498",
466
+ "comment": "feat: TreeItem itemType restructure"
467
+ },
468
+ {
469
+ "author": "bernardo.sunderhus@gmail.com",
470
+ "package": "@fluentui/react-tree",
471
+ "commit": "e741b289a0cda2711146d171d3b08deb8bb7a156",
472
+ "comment": "feat: creates TreeItemAside component"
473
+ },
474
+ {
475
+ "author": "bernardo.sunderhus@gmail.com",
476
+ "package": "@fluentui/react-tree",
477
+ "commit": "53c5190f2774c4b42777af53f3739bf2949678e2",
478
+ "comment": "feat: makes useFlatTree generic"
479
+ },
480
+ {
481
+ "author": "bernardo.sunderhus@gmail.com",
482
+ "package": "@fluentui/react-tree",
483
+ "commit": "fa0f2ce25e94ddc8759f545638e01cc34e0e99f4",
484
+ "comment": "chore: updates useOpenItemsState internals"
485
+ },
486
+ {
487
+ "author": "olfedias@microsoft.com",
488
+ "package": "@fluentui/react-tree",
489
+ "commit": "9d6394b6c751092fd1d4e26ccc618b5ba05086ec",
490
+ "comment": "chore: move makeStyles() calls to .styles.ts files"
491
+ },
492
+ {
493
+ "author": "bernardo.sunderhus@gmail.com",
494
+ "package": "@fluentui/react-tree",
495
+ "commit": "d85ae6d21f5c6db877d62ccb1e9270848afbf1bb",
496
+ "comment": "feat: adds lazy loading story"
497
+ },
498
+ {
499
+ "author": "bernardo.sunderhus@gmail.com",
500
+ "package": "@fluentui/react-tree",
501
+ "commit": "be291a28d39881ce6607f465efc5c7402b2e014c",
502
+ "comment": "bugfix: fix horizontal overflow on tree"
503
+ },
504
+ {
505
+ "author": "bernardo.sunderhus@gmail.com",
506
+ "package": "@fluentui/react-tree",
507
+ "commit": "27f252e27361df75a94c5bc5b09fc0097fefd969",
508
+ "comment": "bugfix: fix VisibleFlatTreeItemGenerator omitting visible items"
509
+ },
510
+ {
511
+ "author": "beachball",
512
+ "package": "@fluentui/react-tree",
513
+ "comment": "Bump @fluentui/keyboard-keys to v9.0.3",
514
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
515
+ },
516
+ {
517
+ "author": "beachball",
518
+ "package": "@fluentui/react-tree",
519
+ "comment": "Bump @fluentui/react-aria to v9.3.19",
520
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
521
+ },
522
+ {
523
+ "author": "beachball",
524
+ "package": "@fluentui/react-tree",
525
+ "comment": "Bump @fluentui/react-avatar to v9.5.0",
526
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
527
+ },
528
+ {
529
+ "author": "beachball",
530
+ "package": "@fluentui/react-tree",
531
+ "comment": "Bump @fluentui/react-button to v9.3.11",
532
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
533
+ },
534
+ {
535
+ "author": "beachball",
536
+ "package": "@fluentui/react-tree",
537
+ "comment": "Bump @fluentui/react-context-selector to v9.1.19",
538
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
539
+ },
540
+ {
541
+ "author": "beachball",
542
+ "package": "@fluentui/react-tree",
543
+ "comment": "Bump @fluentui/react-portal to v9.2.7",
544
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
545
+ },
546
+ {
547
+ "author": "beachball",
548
+ "package": "@fluentui/react-tree",
549
+ "comment": "Bump @fluentui/react-shared-contexts to v9.4.0",
550
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
551
+ },
552
+ {
553
+ "author": "beachball",
554
+ "package": "@fluentui/react-tree",
555
+ "comment": "Bump @fluentui/react-tabster to v9.7.0",
556
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
557
+ },
558
+ {
559
+ "author": "beachball",
560
+ "package": "@fluentui/react-tree",
561
+ "comment": "Bump @fluentui/react-theme to v9.1.8",
562
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
563
+ },
564
+ {
565
+ "author": "beachball",
566
+ "package": "@fluentui/react-tree",
567
+ "comment": "Bump @fluentui/react-utilities to v9.8.1",
568
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
569
+ },
570
+ {
571
+ "author": "beachball",
572
+ "package": "@fluentui/react-tree",
573
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.3",
574
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
575
+ },
576
+ {
577
+ "author": "beachball",
578
+ "package": "@fluentui/react-tree",
579
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.21",
580
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
581
+ }
582
+ ],
583
+ "none": [
584
+ {
585
+ "author": "martinhochel@microsoft.com",
586
+ "package": "@fluentui/react-tree",
587
+ "commit": "dbda7fa69e3000aaf8dd4a061e254ebd35198b8e",
588
+ "comment": "fix: update npmignore files to fix npm8/node16 regression how npm publish works"
589
+ }
590
+ ]
591
+ }
592
+ },
593
+ {
594
+ "date": "Mon, 24 Apr 2023 08:12:44 GMT",
595
+ "tag": "@fluentui/react-tree_v9.0.0-beta.12",
596
+ "version": "9.0.0-beta.12",
597
+ "comments": {
598
+ "prerelease": [
599
+ {
600
+ "author": "bernardo.sunderhus@gmail.com",
601
+ "package": "@fluentui/react-tree",
602
+ "commit": "85c36e249b33b0bad79be4edd1a943dfc5233b11",
603
+ "comment": "bugfix: remove caret from react-jsx-runtime prerelease dependency"
604
+ },
605
+ {
606
+ "author": "bernardo.sunderhus@gmail.com",
607
+ "package": "@fluentui/react-tree",
608
+ "commit": "acbc5fcb1381e9adcc4e1fa678a374d42a79438b",
609
+ "comment": "bugfix: fix parent navigation after independency from id"
610
+ },
611
+ {
612
+ "author": "bernardo.sunderhus@gmail.com",
613
+ "package": "@fluentui/react-tree",
614
+ "commit": "4dde6727c7e7fe7fbf6fedb4e1619deddbd3e16a",
615
+ "comment": "feat: value property over id"
616
+ },
617
+ {
618
+ "author": "bernardo.sunderhus@gmail.com",
619
+ "package": "@fluentui/react-tree",
620
+ "commit": "ab5e8979917780ec8cf6b3b08b3696fc1b7a83f4",
621
+ "comment": "chore: restructure stories, add separate category for flat tree"
622
+ },
623
+ {
624
+ "author": "beachball",
625
+ "package": "@fluentui/react-tree",
626
+ "comment": "Bump @fluentui/react-avatar to v9.4.10",
627
+ "commit": "505433ac64f144c9cca456097413d6af4582e5ee"
628
+ },
629
+ {
630
+ "author": "beachball",
631
+ "package": "@fluentui/react-tree",
632
+ "comment": "Bump @fluentui/react-button to v9.3.10",
633
+ "commit": "505433ac64f144c9cca456097413d6af4582e5ee"
634
+ },
635
+ {
636
+ "author": "beachball",
637
+ "package": "@fluentui/react-tree",
638
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.2",
639
+ "commit": "505433ac64f144c9cca456097413d6af4582e5ee"
640
+ }
641
+ ]
642
+ }
643
+ },
644
+ {
645
+ "date": "Mon, 17 Apr 2023 17:54:01 GMT",
646
+ "tag": "@fluentui/react-tree_v9.0.0-beta.11",
647
+ "version": "9.0.0-beta.11",
648
+ "comments": {
649
+ "prerelease": [
650
+ {
651
+ "author": "bernardo.sunderhus@gmail.com",
652
+ "package": "@fluentui/react-tree",
653
+ "commit": "27665739a1f38468c63ea1544a2e82ff357d25f3",
654
+ "comment": "chore: adopt custom jsx pragma"
655
+ },
656
+ {
657
+ "author": "beachball",
658
+ "package": "@fluentui/react-tree",
659
+ "comment": "Bump @fluentui/react-aria to v9.3.18",
660
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
661
+ },
662
+ {
663
+ "author": "beachball",
664
+ "package": "@fluentui/react-tree",
665
+ "comment": "Bump @fluentui/react-avatar to v9.4.9",
666
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
667
+ },
668
+ {
669
+ "author": "beachball",
670
+ "package": "@fluentui/react-tree",
671
+ "comment": "Bump @fluentui/react-button to v9.3.9",
672
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
673
+ },
674
+ {
675
+ "author": "beachball",
676
+ "package": "@fluentui/react-tree",
677
+ "comment": "Bump @fluentui/react-context-selector to v9.1.18",
678
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
679
+ },
680
+ {
681
+ "author": "beachball",
682
+ "package": "@fluentui/react-tree",
683
+ "comment": "Bump @fluentui/react-portal to v9.2.6",
684
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
685
+ },
686
+ {
687
+ "author": "beachball",
688
+ "package": "@fluentui/react-tree",
689
+ "comment": "Bump @fluentui/react-tabster to v9.6.5",
690
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
691
+ },
692
+ {
693
+ "author": "beachball",
694
+ "package": "@fluentui/react-tree",
695
+ "comment": "Bump @fluentui/react-utilities to v9.8.0",
696
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
697
+ },
698
+ {
699
+ "author": "beachball",
700
+ "package": "@fluentui/react-tree",
701
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.1",
702
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
703
+ }
704
+ ]
705
+ }
706
+ },
707
+ {
708
+ "date": "Wed, 12 Apr 2023 09:31:45 GMT",
709
+ "tag": "@fluentui/react-tree_v9.0.0-beta.10",
710
+ "version": "9.0.0-beta.10",
711
+ "comments": {
712
+ "prerelease": [
713
+ {
714
+ "author": "beachball",
715
+ "package": "@fluentui/react-tree",
716
+ "comment": "Bump @fluentui/react-aria to v9.3.17",
717
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
718
+ },
719
+ {
720
+ "author": "beachball",
721
+ "package": "@fluentui/react-tree",
722
+ "comment": "Bump @fluentui/react-avatar to v9.4.8",
723
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
724
+ },
725
+ {
726
+ "author": "beachball",
727
+ "package": "@fluentui/react-tree",
728
+ "comment": "Bump @fluentui/react-button to v9.3.8",
729
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
730
+ },
731
+ {
732
+ "author": "beachball",
733
+ "package": "@fluentui/react-tree",
734
+ "comment": "Bump @fluentui/react-context-selector to v9.1.17",
735
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
736
+ },
737
+ {
738
+ "author": "beachball",
739
+ "package": "@fluentui/react-tree",
740
+ "comment": "Bump @fluentui/react-portal to v9.2.5",
741
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
742
+ },
743
+ {
744
+ "author": "beachball",
745
+ "package": "@fluentui/react-tree",
746
+ "comment": "Bump @fluentui/react-tabster to v9.6.4",
747
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
748
+ },
749
+ {
750
+ "author": "beachball",
751
+ "package": "@fluentui/react-tree",
752
+ "comment": "Bump @fluentui/react-utilities to v9.7.4",
753
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
754
+ }
755
+ ]
756
+ }
757
+ },
758
+ {
759
+ "date": "Tue, 04 Apr 2023 18:44:49 GMT",
760
+ "tag": "@fluentui/react-tree_v9.0.0-beta.9",
761
+ "version": "9.0.0-beta.9",
762
+ "comments": {
763
+ "prerelease": [
764
+ {
765
+ "author": "bernardo.sunderhus@gmail.com",
766
+ "package": "@fluentui/react-tree",
767
+ "commit": "7dc03924c99ea14c4df43e56454fc7781e1fdb89",
768
+ "comment": "chore: adds e2e flat tree tests"
769
+ },
770
+ {
771
+ "author": "beachball",
772
+ "package": "@fluentui/react-tree",
773
+ "comment": "Bump @fluentui/react-aria to v9.3.16",
774
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
775
+ },
776
+ {
777
+ "author": "beachball",
778
+ "package": "@fluentui/react-tree",
779
+ "comment": "Bump @fluentui/react-avatar to v9.4.7",
780
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
781
+ },
782
+ {
783
+ "author": "beachball",
784
+ "package": "@fluentui/react-tree",
785
+ "comment": "Bump @fluentui/react-button to v9.3.7",
786
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
787
+ },
788
+ {
789
+ "author": "beachball",
790
+ "package": "@fluentui/react-tree",
791
+ "comment": "Bump @fluentui/react-context-selector to v9.1.16",
792
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
793
+ },
794
+ {
795
+ "author": "beachball",
796
+ "package": "@fluentui/react-tree",
797
+ "comment": "Bump @fluentui/react-portal to v9.2.4",
798
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
799
+ },
800
+ {
801
+ "author": "beachball",
802
+ "package": "@fluentui/react-tree",
803
+ "comment": "Bump @fluentui/react-tabster to v9.6.3",
804
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
805
+ },
806
+ {
807
+ "author": "beachball",
808
+ "package": "@fluentui/react-tree",
809
+ "comment": "Bump @fluentui/react-utilities to v9.7.3",
810
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
811
+ }
812
+ ]
813
+ }
814
+ },
815
+ {
816
+ "date": "Fri, 24 Mar 2023 10:15:27 GMT",
817
+ "tag": "@fluentui/react-tree_v9.0.0-beta.8",
818
+ "version": "9.0.0-beta.8",
819
+ "comments": {
820
+ "prerelease": [
821
+ {
822
+ "author": "petrduda@microsoft.com",
823
+ "package": "@fluentui/react-tree",
824
+ "commit": "b19ad44388b93ade650d5c46802b82fa7419e6b4",
825
+ "comment": "tree stories and doc update"
826
+ }
827
+ ]
828
+ }
829
+ },
830
+ {
831
+ "date": "Tue, 21 Mar 2023 21:23:13 GMT",
832
+ "tag": "@fluentui/react-tree_v9.0.0-beta.6",
833
+ "version": "9.0.0-beta.6",
834
+ "comments": {
835
+ "prerelease": [
836
+ {
837
+ "author": "tristan.watanabe@gmail.com",
838
+ "package": "@fluentui/react-tree",
839
+ "commit": "2fac1a139149bd13b76b1306207bc988dca9c72c",
840
+ "comment": "chore: migrate to swc transpilation approach."
841
+ },
842
+ {
843
+ "author": "olfedias@microsoft.com",
844
+ "package": "@fluentui/react-tree",
845
+ "commit": "7fde5c94869ff9841b142b7ff1d0a3df0ab58f74",
846
+ "comment": "chore: Bumping version of @fluentui/react-icons to ^2.0.196."
847
+ },
848
+ {
849
+ "author": "tristan.watanabe@gmail.com",
850
+ "package": "@fluentui/react-tree",
851
+ "commit": "ead1c6d4c2ac3f3596b62b8cbc07b0a03041f11f",
852
+ "comment": "fix: add node field to package.json exports map."
853
+ },
854
+ {
855
+ "author": "email not defined",
856
+ "package": "@fluentui/react-tree",
857
+ "commit": "d7016bf89107ba2c8b22596b5e4b5ce4d32f99b0",
858
+ "comment": "chore: adds initial e2e cypress tests"
859
+ },
860
+ {
861
+ "author": "beachball",
862
+ "package": "@fluentui/react-tree",
863
+ "comment": "Bump @fluentui/keyboard-keys to v9.0.2",
864
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
865
+ },
866
+ {
867
+ "author": "beachball",
868
+ "package": "@fluentui/react-tree",
869
+ "comment": "Bump @fluentui/react-aria to v9.3.15",
870
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
871
+ },
872
+ {
873
+ "author": "beachball",
874
+ "package": "@fluentui/react-tree",
875
+ "comment": "Bump @fluentui/react-avatar to v9.4.5",
876
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
877
+ },
878
+ {
879
+ "author": "beachball",
880
+ "package": "@fluentui/react-tree",
881
+ "comment": "Bump @fluentui/react-button to v9.3.5",
882
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
883
+ },
884
+ {
885
+ "author": "beachball",
886
+ "package": "@fluentui/react-tree",
887
+ "comment": "Bump @fluentui/react-context-selector to v9.1.15",
888
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
889
+ },
890
+ {
891
+ "author": "beachball",
892
+ "package": "@fluentui/react-tree",
893
+ "comment": "Bump @fluentui/react-portal to v9.2.2",
894
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
895
+ },
896
+ {
897
+ "author": "beachball",
898
+ "package": "@fluentui/react-tree",
899
+ "comment": "Bump @fluentui/react-shared-contexts to v9.3.2",
900
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
901
+ },
902
+ {
903
+ "author": "beachball",
904
+ "package": "@fluentui/react-tree",
905
+ "comment": "Bump @fluentui/react-tabster to v9.6.1",
906
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
907
+ },
908
+ {
909
+ "author": "beachball",
910
+ "package": "@fluentui/react-tree",
911
+ "comment": "Bump @fluentui/react-theme to v9.1.7",
912
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
913
+ },
914
+ {
915
+ "author": "beachball",
916
+ "package": "@fluentui/react-tree",
917
+ "comment": "Bump @fluentui/react-utilities to v9.7.2",
918
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
919
+ },
920
+ {
921
+ "author": "beachball",
922
+ "package": "@fluentui/react-tree",
923
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.20",
924
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
925
+ }
926
+ ]
927
+ }
928
+ },
929
+ {
930
+ "date": "Thu, 16 Mar 2023 14:36:59 GMT",
931
+ "tag": "@fluentui/react-tree_v9.0.0-beta.5",
932
+ "version": "9.0.0-beta.5",
933
+ "comments": {
934
+ "prerelease": [
935
+ {
936
+ "author": "beachball",
937
+ "package": "@fluentui/react-tree",
938
+ "comment": "Bump @fluentui/react-context-selector to v9.1.14",
939
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
940
+ },
941
+ {
942
+ "author": "beachball",
943
+ "package": "@fluentui/react-tree",
944
+ "comment": "Bump @fluentui/react-avatar to v9.4.4",
945
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
946
+ },
947
+ {
948
+ "author": "beachball",
949
+ "package": "@fluentui/react-tree",
950
+ "comment": "Bump @fluentui/react-aria to v9.3.14",
951
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
952
+ },
953
+ {
954
+ "author": "beachball",
955
+ "package": "@fluentui/react-tree",
956
+ "comment": "Bump @fluentui/react-tabster to v9.6.0",
957
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
958
+ },
959
+ {
960
+ "author": "beachball",
961
+ "package": "@fluentui/react-tree",
962
+ "comment": "Bump @fluentui/react-portal to v9.2.1",
963
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
964
+ },
965
+ {
966
+ "author": "beachball",
967
+ "package": "@fluentui/react-tree",
968
+ "comment": "Bump @fluentui/react-button to v9.3.4",
969
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
970
+ },
971
+ {
972
+ "author": "beachball",
973
+ "package": "@fluentui/react-tree",
974
+ "comment": "Bump @fluentui/react-utilities to v9.7.1",
975
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
976
+ }
977
+ ]
978
+ }
979
+ },
980
+ {
981
+ "date": "Wed, 15 Mar 2023 10:19:53 GMT",
982
+ "tag": "@fluentui/react-tree_v9.0.0-beta.4",
983
+ "version": "9.0.0-beta.4",
984
+ "comments": {
985
+ "prerelease": [
986
+ {
987
+ "author": "beachball",
988
+ "package": "@fluentui/react-tree",
989
+ "comment": "Bump @fluentui/react-shared-contexts to v9.3.1",
990
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
991
+ },
992
+ {
993
+ "author": "beachball",
994
+ "package": "@fluentui/react-tree",
995
+ "comment": "Bump @fluentui/react-avatar to v9.4.3",
996
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
997
+ },
998
+ {
999
+ "author": "beachball",
1000
+ "package": "@fluentui/react-tree",
1001
+ "comment": "Bump @fluentui/react-tabster to v9.5.7",
1002
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
1003
+ },
1004
+ {
1005
+ "author": "beachball",
1006
+ "package": "@fluentui/react-tree",
1007
+ "comment": "Bump @fluentui/react-portal to v9.2.0",
1008
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
1009
+ },
1010
+ {
1011
+ "author": "beachball",
1012
+ "package": "@fluentui/react-tree",
1013
+ "comment": "Bump @fluentui/react-button to v9.3.3",
1014
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
1015
+ },
1016
+ {
1017
+ "author": "beachball",
1018
+ "package": "@fluentui/react-tree",
1019
+ "comment": "Bump @fluentui/react-theme to v9.1.6",
1020
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
1021
+ }
1022
+ ]
1023
+ }
1024
+ },
1025
+ {
1026
+ "date": "Mon, 13 Mar 2023 08:58:26 GMT",
1027
+ "tag": "@fluentui/react-tree_v9.0.0-beta.3",
1028
+ "version": "9.0.0-beta.3",
1029
+ "comments": {
1030
+ "prerelease": [
1031
+ {
1032
+ "author": "beachball",
1033
+ "package": "@fluentui/react-tree",
1034
+ "comment": "Bump @fluentui/react-context-selector to v9.1.13",
1035
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
1036
+ },
1037
+ {
1038
+ "author": "beachball",
1039
+ "package": "@fluentui/react-tree",
1040
+ "comment": "Bump @fluentui/react-avatar to v9.4.2",
1041
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
1042
+ },
1043
+ {
1044
+ "author": "beachball",
1045
+ "package": "@fluentui/react-tree",
1046
+ "comment": "Bump @fluentui/react-aria to v9.3.13",
1047
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
1048
+ },
1049
+ {
1050
+ "author": "beachball",
1051
+ "package": "@fluentui/react-tree",
1052
+ "comment": "Bump @fluentui/react-tabster to v9.5.6",
1053
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
1054
+ },
1055
+ {
1056
+ "author": "beachball",
1057
+ "package": "@fluentui/react-tree",
1058
+ "comment": "Bump @fluentui/react-portal to v9.1.12",
1059
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
1060
+ },
1061
+ {
1062
+ "author": "beachball",
1063
+ "package": "@fluentui/react-tree",
1064
+ "comment": "Bump @fluentui/react-button to v9.3.2",
1065
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
1066
+ },
1067
+ {
1068
+ "author": "beachball",
1069
+ "package": "@fluentui/react-tree",
1070
+ "comment": "Bump @fluentui/react-utilities to v9.7.0",
1071
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
1072
+ }
1073
+ ]
1074
+ }
1075
+ },
1076
+ {
1077
+ "date": "Fri, 10 Mar 2023 13:28:40 GMT",
6
1078
  "tag": "@fluentui/react-tree_v9.0.0-beta.2",
7
1079
  "version": "9.0.0-beta.2",
8
1080
  "comments": {