@fluentui/react-tree 9.0.0-beta.3 → 9.0.0-beta.30

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 (307) hide show
  1. package/CHANGELOG.json +1566 -1
  2. package/CHANGELOG.md +423 -2
  3. package/dist/index.d.ts +408 -131
  4. package/lib/FlatTree.js +1 -0
  5. package/lib/FlatTree.js.map +1 -0
  6. package/lib/Tree.js +0 -1
  7. package/lib/Tree.js.map +1 -1
  8. package/lib/TreeItem.js +0 -1
  9. package/lib/TreeItem.js.map +1 -1
  10. package/lib/TreeItemLayout.js +0 -1
  11. package/lib/TreeItemLayout.js.map +1 -1
  12. package/lib/TreeItemPersonaLayout.js +0 -1
  13. package/lib/TreeItemPersonaLayout.js.map +1 -1
  14. package/lib/components/FlatTree/FlatTree.js +13 -0
  15. package/lib/components/FlatTree/FlatTree.js.map +1 -0
  16. package/lib/components/FlatTree/FlatTree.types.js +1 -0
  17. package/lib/components/FlatTree/FlatTree.types.js.map +1 -0
  18. package/lib/components/FlatTree/index.js +6 -0
  19. package/lib/components/FlatTree/index.js.map +1 -0
  20. package/lib/components/FlatTree/useFlatControllableCheckedItems.js +63 -0
  21. package/lib/components/FlatTree/useFlatControllableCheckedItems.js.map +1 -0
  22. package/lib/components/FlatTree/useFlatTree.js +3 -0
  23. package/lib/components/FlatTree/useFlatTree.js.map +1 -0
  24. package/lib/components/FlatTree/useFlatTreeNavigation.js +74 -0
  25. package/lib/components/FlatTree/useFlatTreeNavigation.js.map +1 -0
  26. package/lib/components/FlatTree/useFlatTreeStyles.styles.js +20 -0
  27. package/lib/components/FlatTree/useFlatTreeStyles.styles.js.map +1 -0
  28. package/lib/components/FlatTree/useHeadlessFlatTree.js +117 -0
  29. package/lib/components/FlatTree/useHeadlessFlatTree.js.map +1 -0
  30. package/lib/components/Tree/Tree.js +8 -15
  31. package/lib/components/Tree/Tree.js.map +1 -1
  32. package/lib/components/Tree/Tree.types.js +1 -2
  33. package/lib/components/Tree/Tree.types.js.map +1 -1
  34. package/lib/components/Tree/index.js +2 -3
  35. package/lib/components/Tree/index.js.map +1 -1
  36. package/lib/components/Tree/renderTree.js +7 -13
  37. package/lib/components/Tree/renderTree.js.map +1 -1
  38. package/lib/components/Tree/useControllableCheckedItems.js +94 -0
  39. package/lib/components/Tree/useControllableCheckedItems.js.map +1 -0
  40. package/lib/components/Tree/useTree.js +55 -112
  41. package/lib/components/Tree/useTree.js.map +1 -1
  42. package/lib/components/Tree/useTreeContextValues.js +14 -22
  43. package/lib/components/Tree/useTreeContextValues.js.map +1 -1
  44. package/lib/components/Tree/useTreeNavigation.js +52 -0
  45. package/lib/components/Tree/useTreeNavigation.js.map +1 -0
  46. package/lib/components/Tree/{useTreeStyles.js → useTreeStyles.styles.js} +7 -3
  47. package/lib/components/Tree/useTreeStyles.styles.js.map +1 -0
  48. package/lib/components/TreeItem/TreeItem.js +16 -9
  49. package/lib/components/TreeItem/TreeItem.js.map +1 -1
  50. package/lib/components/TreeItem/TreeItem.types.js +1 -2
  51. package/lib/components/TreeItem/TreeItem.types.js.map +1 -1
  52. package/lib/components/TreeItem/index.js +2 -2
  53. package/lib/components/TreeItem/index.js.map +1 -1
  54. package/lib/components/TreeItem/renderTreeItem.js +7 -25
  55. package/lib/components/TreeItem/renderTreeItem.js.map +1 -1
  56. package/lib/components/TreeItem/useTreeItem.js +163 -234
  57. package/lib/components/TreeItem/useTreeItem.js.map +1 -1
  58. package/lib/components/TreeItem/useTreeItemContextValues.js +20 -16
  59. package/lib/components/TreeItem/useTreeItemContextValues.js.map +1 -1
  60. package/lib/components/TreeItem/useTreeItemStyles.styles.js +100 -0
  61. package/lib/components/TreeItem/useTreeItemStyles.styles.js.map +1 -0
  62. package/lib/components/TreeItemChevron.js +24 -0
  63. package/lib/components/TreeItemChevron.js.map +1 -0
  64. package/lib/components/TreeItemLayout/TreeItemLayout.js +8 -8
  65. package/lib/components/TreeItemLayout/TreeItemLayout.js.map +1 -1
  66. package/lib/components/TreeItemLayout/TreeItemLayout.types.js +1 -2
  67. package/lib/components/TreeItemLayout/TreeItemLayout.types.js.map +1 -1
  68. package/lib/components/TreeItemLayout/index.js +1 -2
  69. package/lib/components/TreeItemLayout/index.js.map +1 -1
  70. package/lib/components/TreeItemLayout/renderTreeItemLayout.js +8 -21
  71. package/lib/components/TreeItemLayout/renderTreeItemLayout.js.map +1 -1
  72. package/lib/components/TreeItemLayout/useTreeItemLayout.js +99 -40
  73. package/lib/components/TreeItemLayout/useTreeItemLayout.js.map +1 -1
  74. package/lib/components/TreeItemLayout/useTreeItemLayoutStyles.styles.js +237 -0
  75. package/lib/components/TreeItemLayout/useTreeItemLayoutStyles.styles.js.map +1 -0
  76. package/lib/components/TreeItemPersonaLayout/TreeItemPersonaLayout.js +9 -9
  77. package/lib/components/TreeItemPersonaLayout/TreeItemPersonaLayout.js.map +1 -1
  78. package/lib/components/TreeItemPersonaLayout/TreeItemPersonaLayout.types.js +1 -2
  79. package/lib/components/TreeItemPersonaLayout/TreeItemPersonaLayout.types.js.map +1 -1
  80. package/lib/components/TreeItemPersonaLayout/index.js +1 -2
  81. package/lib/components/TreeItemPersonaLayout/index.js.map +1 -1
  82. package/lib/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.js +10 -27
  83. package/lib/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.js.map +1 -1
  84. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.js +40 -48
  85. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.js.map +1 -1
  86. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutContextValues.js +9 -10
  87. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutContextValues.js.map +1 -1
  88. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.styles.js +210 -0
  89. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.styles.js.map +1 -0
  90. package/lib/contexts/index.js +0 -1
  91. package/lib/contexts/index.js.map +1 -1
  92. package/lib/contexts/treeContext.js +13 -15
  93. package/lib/contexts/treeContext.js.map +1 -1
  94. package/lib/contexts/treeItemContext.js +16 -10
  95. package/lib/contexts/treeItemContext.js.map +1 -1
  96. package/lib/hooks/useControllableOpenItems.js +28 -0
  97. package/lib/hooks/useControllableOpenItems.js.map +1 -0
  98. package/lib/hooks/useRootTree.js +139 -0
  99. package/lib/hooks/useRootTree.js.map +1 -0
  100. package/lib/hooks/useRovingTabIndexes.js +30 -49
  101. package/lib/hooks/useRovingTabIndexes.js.map +1 -1
  102. package/lib/hooks/useSubtree.js +39 -0
  103. package/lib/hooks/useSubtree.js.map +1 -0
  104. package/lib/index.js +3 -4
  105. package/lib/index.js.map +1 -1
  106. package/lib/utils/ImmutableMap.js +41 -0
  107. package/lib/utils/ImmutableMap.js.map +1 -0
  108. package/lib/utils/ImmutableSet.js +42 -33
  109. package/lib/utils/ImmutableSet.js.map +1 -1
  110. package/lib/utils/assert.js +5 -5
  111. package/lib/utils/assert.js.map +1 -1
  112. package/lib/utils/createCheckedItems.js +18 -0
  113. package/lib/utils/createCheckedItems.js.map +1 -0
  114. package/lib/utils/createHTMLElementWalker.js +67 -0
  115. package/lib/utils/createHTMLElementWalker.js.map +1 -0
  116. package/lib/utils/createHeadlessTree.js +188 -0
  117. package/lib/utils/createHeadlessTree.js.map +1 -0
  118. package/lib/utils/createOpenItems.js +10 -0
  119. package/lib/utils/createOpenItems.js.map +1 -0
  120. package/lib/utils/flattenTree.js +54 -29
  121. package/lib/utils/flattenTree.js.map +1 -1
  122. package/lib/utils/getTreeItemValueFromElement.js +4 -0
  123. package/lib/utils/getTreeItemValueFromElement.js.map +1 -0
  124. package/lib/utils/nextTypeAheadElement.js +11 -12
  125. package/lib/utils/nextTypeAheadElement.js.map +1 -1
  126. package/lib/utils/normalizeOpenItems.js +6 -5
  127. package/lib/utils/normalizeOpenItems.js.map +1 -1
  128. package/lib/utils/tokens.js +14 -14
  129. package/lib/utils/tokens.js.map +1 -1
  130. package/lib/utils/treeItemFilter.js +2 -3
  131. package/lib/utils/treeItemFilter.js.map +1 -1
  132. package/lib-commonjs/FlatTree.js +6 -0
  133. package/lib-commonjs/FlatTree.js.map +1 -0
  134. package/lib-commonjs/Tree.js +3 -5
  135. package/lib-commonjs/Tree.js.map +1 -1
  136. package/lib-commonjs/TreeItem.js +3 -5
  137. package/lib-commonjs/TreeItem.js.map +1 -1
  138. package/lib-commonjs/TreeItemLayout.js +3 -5
  139. package/lib-commonjs/TreeItemLayout.js.map +1 -1
  140. package/lib-commonjs/TreeItemPersonaLayout.js +3 -5
  141. package/lib-commonjs/TreeItemPersonaLayout.js.map +1 -1
  142. package/lib-commonjs/components/FlatTree/FlatTree.js +20 -0
  143. package/lib-commonjs/components/FlatTree/FlatTree.js.map +1 -0
  144. package/lib-commonjs/components/FlatTree/FlatTree.types.js +4 -0
  145. package/lib-commonjs/components/FlatTree/FlatTree.types.js.map +1 -0
  146. package/lib-commonjs/components/FlatTree/index.js +21 -0
  147. package/lib-commonjs/components/FlatTree/index.js.map +1 -0
  148. package/lib-commonjs/components/FlatTree/useFlatControllableCheckedItems.js +78 -0
  149. package/lib-commonjs/components/FlatTree/useFlatControllableCheckedItems.js.map +1 -0
  150. package/lib-commonjs/components/FlatTree/useFlatTree.js +12 -0
  151. package/lib-commonjs/components/FlatTree/useFlatTree.js.map +1 -0
  152. package/lib-commonjs/components/FlatTree/useFlatTreeNavigation.js +82 -0
  153. package/lib-commonjs/components/FlatTree/useFlatTreeNavigation.js.map +1 -0
  154. package/lib-commonjs/components/FlatTree/useFlatTreeStyles.styles.js +36 -0
  155. package/lib-commonjs/components/FlatTree/useFlatTreeStyles.styles.js.map +1 -0
  156. package/lib-commonjs/components/FlatTree/useHeadlessFlatTree.js +114 -0
  157. package/lib-commonjs/components/FlatTree/useHeadlessFlatTree.js.map +1 -0
  158. package/lib-commonjs/components/Tree/Tree.js +17 -23
  159. package/lib-commonjs/components/Tree/Tree.js.map +1 -1
  160. package/lib-commonjs/components/Tree/Tree.types.js +1 -3
  161. package/lib-commonjs/components/Tree/Tree.types.js.map +1 -1
  162. package/lib-commonjs/components/Tree/index.js +8 -10
  163. package/lib-commonjs/components/Tree/index.js.map +1 -1
  164. package/lib-commonjs/components/Tree/renderTree.js +14 -19
  165. package/lib-commonjs/components/Tree/renderTree.js.map +1 -1
  166. package/lib-commonjs/components/Tree/useControllableCheckedItems.js +103 -0
  167. package/lib-commonjs/components/Tree/useControllableCheckedItems.js.map +1 -0
  168. package/lib-commonjs/components/Tree/useTree.js +61 -116
  169. package/lib-commonjs/components/Tree/useTree.js.map +1 -1
  170. package/lib-commonjs/components/Tree/useTreeContextValues.js +19 -26
  171. package/lib-commonjs/components/Tree/useTreeContextValues.js.map +1 -1
  172. package/lib-commonjs/components/Tree/useTreeNavigation.js +60 -0
  173. package/lib-commonjs/components/Tree/useTreeNavigation.js.map +1 -0
  174. package/lib-commonjs/components/Tree/useTreeStyles.styles.js +41 -0
  175. package/lib-commonjs/components/Tree/useTreeStyles.styles.js.map +1 -0
  176. package/lib-commonjs/components/TreeItem/TreeItem.js +17 -18
  177. package/lib-commonjs/components/TreeItem/TreeItem.js.map +1 -1
  178. package/lib-commonjs/components/TreeItem/TreeItem.types.js +3 -4
  179. package/lib-commonjs/components/TreeItem/TreeItem.types.js.map +1 -1
  180. package/lib-commonjs/components/TreeItem/index.js +8 -9
  181. package/lib-commonjs/components/TreeItem/index.js.map +1 -1
  182. package/lib-commonjs/components/TreeItem/renderTreeItem.js +14 -33
  183. package/lib-commonjs/components/TreeItem/renderTreeItem.js.map +1 -1
  184. package/lib-commonjs/components/TreeItem/useTreeItem.js +172 -250
  185. package/lib-commonjs/components/TreeItem/useTreeItem.js.map +1 -1
  186. package/lib-commonjs/components/TreeItem/useTreeItemContextValues.js +25 -20
  187. package/lib-commonjs/components/TreeItem/useTreeItemContextValues.js.map +1 -1
  188. package/lib-commonjs/components/TreeItem/useTreeItemStyles.styles.js +202 -0
  189. package/lib-commonjs/components/TreeItem/useTreeItemStyles.styles.js.map +1 -0
  190. package/lib-commonjs/components/TreeItemChevron.js +33 -0
  191. package/lib-commonjs/components/TreeItemChevron.js.map +1 -0
  192. package/lib-commonjs/components/TreeItemLayout/TreeItemLayout.js +15 -16
  193. package/lib-commonjs/components/TreeItemLayout/TreeItemLayout.js.map +1 -1
  194. package/lib-commonjs/components/TreeItemLayout/TreeItemLayout.types.js +1 -3
  195. package/lib-commonjs/components/TreeItemLayout/TreeItemLayout.types.js.map +1 -1
  196. package/lib-commonjs/components/TreeItemLayout/index.js +7 -9
  197. package/lib-commonjs/components/TreeItemLayout/index.js.map +1 -1
  198. package/lib-commonjs/components/TreeItemLayout/renderTreeItemLayout.js +14 -28
  199. package/lib-commonjs/components/TreeItemLayout/renderTreeItemLayout.js.map +1 -1
  200. package/lib-commonjs/components/TreeItemLayout/useTreeItemLayout.js +105 -52
  201. package/lib-commonjs/components/TreeItemLayout/useTreeItemLayout.js.map +1 -1
  202. package/lib-commonjs/components/TreeItemLayout/useTreeItemLayoutStyles.styles.js +392 -0
  203. package/lib-commonjs/components/TreeItemLayout/useTreeItemLayoutStyles.styles.js.map +1 -0
  204. package/lib-commonjs/components/TreeItemPersonaLayout/TreeItemPersonaLayout.js +17 -18
  205. package/lib-commonjs/components/TreeItemPersonaLayout/TreeItemPersonaLayout.js.map +1 -1
  206. package/lib-commonjs/components/TreeItemPersonaLayout/TreeItemPersonaLayout.types.js +1 -3
  207. package/lib-commonjs/components/TreeItemPersonaLayout/TreeItemPersonaLayout.types.js.map +1 -1
  208. package/lib-commonjs/components/TreeItemPersonaLayout/index.js +7 -9
  209. package/lib-commonjs/components/TreeItemPersonaLayout/index.js.map +1 -1
  210. package/lib-commonjs/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.js +17 -35
  211. package/lib-commonjs/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.js.map +1 -1
  212. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.js +47 -61
  213. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.js.map +1 -1
  214. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutContextValues.js +16 -15
  215. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutContextValues.js.map +1 -1
  216. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.styles.js +379 -0
  217. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.styles.js.map +1 -0
  218. package/lib-commonjs/contexts/index.js +4 -6
  219. package/lib-commonjs/contexts/index.js.map +1 -1
  220. package/lib-commonjs/contexts/treeContext.js +26 -18
  221. package/lib-commonjs/contexts/treeContext.js.map +1 -1
  222. package/lib-commonjs/contexts/treeItemContext.js +30 -13
  223. package/lib-commonjs/contexts/treeItemContext.js.map +1 -1
  224. package/lib-commonjs/hooks/useControllableOpenItems.js +39 -0
  225. package/lib-commonjs/hooks/useControllableOpenItems.js.map +1 -0
  226. package/lib-commonjs/hooks/useRootTree.js +143 -0
  227. package/lib-commonjs/hooks/useRootTree.js.map +1 -0
  228. package/lib-commonjs/hooks/useRovingTabIndexes.js +36 -55
  229. package/lib-commonjs/hooks/useRovingTabIndexes.js.map +1 -1
  230. package/lib-commonjs/hooks/useSubtree.js +43 -0
  231. package/lib-commonjs/hooks/useSubtree.js.map +1 -0
  232. package/lib-commonjs/index.js +53 -181
  233. package/lib-commonjs/index.js.map +1 -1
  234. package/lib-commonjs/utils/ImmutableMap.js +49 -0
  235. package/lib-commonjs/utils/ImmutableMap.js.map +1 -0
  236. package/lib-commonjs/utils/ImmutableSet.js +47 -38
  237. package/lib-commonjs/utils/ImmutableSet.js.map +1 -1
  238. package/lib-commonjs/utils/assert.js +11 -9
  239. package/lib-commonjs/utils/assert.js.map +1 -1
  240. package/lib-commonjs/utils/createCheckedItems.js +26 -0
  241. package/lib-commonjs/utils/createCheckedItems.js.map +1 -0
  242. package/lib-commonjs/utils/createHTMLElementWalker.js +75 -0
  243. package/lib-commonjs/utils/createHTMLElementWalker.js.map +1 -0
  244. package/lib-commonjs/utils/createHeadlessTree.js +202 -0
  245. package/lib-commonjs/utils/createHeadlessTree.js.map +1 -0
  246. package/lib-commonjs/utils/createOpenItems.js +18 -0
  247. package/lib-commonjs/utils/createOpenItems.js.map +1 -0
  248. package/lib-commonjs/utils/flattenTree.js +21 -34
  249. package/lib-commonjs/utils/flattenTree.js.map +1 -1
  250. package/lib-commonjs/utils/getTreeItemValueFromElement.js +18 -0
  251. package/lib-commonjs/utils/getTreeItemValueFromElement.js.map +1 -0
  252. package/lib-commonjs/utils/nextTypeAheadElement.js +16 -16
  253. package/lib-commonjs/utils/nextTypeAheadElement.js.map +1 -1
  254. package/lib-commonjs/utils/normalizeOpenItems.js +11 -9
  255. package/lib-commonjs/utils/normalizeOpenItems.js.map +1 -1
  256. package/lib-commonjs/utils/tokens.js +29 -20
  257. package/lib-commonjs/utils/tokens.js.map +1 -1
  258. package/lib-commonjs/utils/treeItemFilter.js +7 -7
  259. package/lib-commonjs/utils/treeItemFilter.js.map +1 -1
  260. package/package.json +26 -17
  261. package/lib/components/Tree/useTreeStyles.js.map +0 -1
  262. package/lib/components/TreeItem/useTreeItemStyles.js +0 -203
  263. package/lib/components/TreeItem/useTreeItemStyles.js.map +0 -1
  264. package/lib/components/TreeItemLayout/useTreeItemLayoutStyles.js +0 -98
  265. package/lib/components/TreeItemLayout/useTreeItemLayoutStyles.js.map +0 -1
  266. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.js +0 -115
  267. package/lib/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.js.map +0 -1
  268. package/lib/hooks/index.js +0 -4
  269. package/lib/hooks/index.js.map +0 -1
  270. package/lib/hooks/useFlatTree.js +0 -49
  271. package/lib/hooks/useFlatTree.js.map +0 -1
  272. package/lib/hooks/useFlatTreeNavigation.js +0 -74
  273. package/lib/hooks/useFlatTreeNavigation.js.map +0 -1
  274. package/lib/hooks/useHTMLElementWalker.js +0 -80
  275. package/lib/hooks/useHTMLElementWalker.js.map +0 -1
  276. package/lib/hooks/useNestedTreeNavigation.js +0 -59
  277. package/lib/hooks/useNestedTreeNavigation.js.map +0 -1
  278. package/lib/hooks/useOpenItemsState.js +0 -22
  279. package/lib/hooks/useOpenItemsState.js.map +0 -1
  280. package/lib/utils/createUnfilteredFlatTree.js +0 -77
  281. package/lib/utils/createUnfilteredFlatTree.js.map +0 -1
  282. package/lib/utils/createVisibleFlatTree.js +0 -80
  283. package/lib/utils/createVisibleFlatTree.js.map +0 -1
  284. package/lib-commonjs/components/Tree/useTreeStyles.js +0 -27
  285. package/lib-commonjs/components/Tree/useTreeStyles.js.map +0 -1
  286. package/lib-commonjs/components/TreeItem/useTreeItemStyles.js +0 -210
  287. package/lib-commonjs/components/TreeItem/useTreeItemStyles.js.map +0 -1
  288. package/lib-commonjs/components/TreeItemLayout/useTreeItemLayoutStyles.js +0 -105
  289. package/lib-commonjs/components/TreeItemLayout/useTreeItemLayoutStyles.js.map +0 -1
  290. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.js +0 -122
  291. package/lib-commonjs/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.js.map +0 -1
  292. package/lib-commonjs/hooks/index.js +0 -10
  293. package/lib-commonjs/hooks/index.js.map +0 -1
  294. package/lib-commonjs/hooks/useFlatTree.js +0 -56
  295. package/lib-commonjs/hooks/useFlatTree.js.map +0 -1
  296. package/lib-commonjs/hooks/useFlatTreeNavigation.js +0 -81
  297. package/lib-commonjs/hooks/useFlatTreeNavigation.js.map +0 -1
  298. package/lib-commonjs/hooks/useHTMLElementWalker.js +0 -88
  299. package/lib-commonjs/hooks/useHTMLElementWalker.js.map +0 -1
  300. package/lib-commonjs/hooks/useNestedTreeNavigation.js +0 -66
  301. package/lib-commonjs/hooks/useNestedTreeNavigation.js.map +0 -1
  302. package/lib-commonjs/hooks/useOpenItemsState.js +0 -29
  303. package/lib-commonjs/hooks/useOpenItemsState.js.map +0 -1
  304. package/lib-commonjs/utils/createUnfilteredFlatTree.js +0 -84
  305. package/lib-commonjs/utils/createUnfilteredFlatTree.js.map +0 -1
  306. package/lib-commonjs/utils/createVisibleFlatTree.js +0 -87
  307. package/lib-commonjs/utils/createVisibleFlatTree.js.map +0 -1
package/CHANGELOG.json CHANGED
@@ -2,7 +2,1572 @@
2
2
  "name": "@fluentui/react-tree",
3
3
  "entries": [
4
4
  {
5
- "date": "Mon, 13 Mar 2023 08:55:02 GMT",
5
+ "date": "Fri, 04 Aug 2023 08:48:23 GMT",
6
+ "tag": "@fluentui/react-tree_v9.0.0-beta.30",
7
+ "version": "9.0.0-beta.30",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "bernardo.sunderhus@gmail.com",
12
+ "package": "@fluentui/react-tree",
13
+ "commit": "8f41df31be3a4bc203c496eb1183884d30e12031",
14
+ "comment": "bugfix: renames content slot to main"
15
+ },
16
+ {
17
+ "author": "bernardo.sunderhus@gmail.com",
18
+ "package": "@fluentui/react-tree",
19
+ "commit": "a5aa130c959a79a9c4cffcffdb9253e8d1ce4d0a",
20
+ "comment": "feat: converts actions to be a toolbar"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-tree",
25
+ "comment": "Bump @fluentui/react-aria to v9.3.28",
26
+ "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-tree",
31
+ "comment": "Bump @fluentui/react-avatar to v9.5.17",
32
+ "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui/react-tree",
37
+ "comment": "Bump @fluentui/react-button to v9.3.27",
38
+ "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca"
39
+ },
40
+ {
41
+ "author": "beachball",
42
+ "package": "@fluentui/react-tree",
43
+ "comment": "Bump @fluentui/react-checkbox to v9.1.28",
44
+ "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca"
45
+ },
46
+ {
47
+ "author": "beachball",
48
+ "package": "@fluentui/react-tree",
49
+ "comment": "Bump @fluentui/react-context-selector to v9.1.27",
50
+ "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca"
51
+ },
52
+ {
53
+ "author": "beachball",
54
+ "package": "@fluentui/react-tree",
55
+ "comment": "Bump @fluentui/react-portal to v9.3.5",
56
+ "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca"
57
+ },
58
+ {
59
+ "author": "beachball",
60
+ "package": "@fluentui/react-tree",
61
+ "comment": "Bump @fluentui/react-radio to v9.1.28",
62
+ "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca"
63
+ },
64
+ {
65
+ "author": "beachball",
66
+ "package": "@fluentui/react-tree",
67
+ "comment": "Bump @fluentui/react-shared-contexts to v9.7.1",
68
+ "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca"
69
+ },
70
+ {
71
+ "author": "beachball",
72
+ "package": "@fluentui/react-tree",
73
+ "comment": "Bump @fluentui/react-tabster to v9.12.0",
74
+ "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca"
75
+ },
76
+ {
77
+ "author": "beachball",
78
+ "package": "@fluentui/react-tree",
79
+ "comment": "Bump @fluentui/react-theme to v9.1.10",
80
+ "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca"
81
+ },
82
+ {
83
+ "author": "beachball",
84
+ "package": "@fluentui/react-tree",
85
+ "comment": "Bump @fluentui/react-utilities to v9.11.0",
86
+ "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca"
87
+ },
88
+ {
89
+ "author": "beachball",
90
+ "package": "@fluentui/react-tree",
91
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.13",
92
+ "commit": "0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca"
93
+ }
94
+ ],
95
+ "none": [
96
+ {
97
+ "author": "bernardo.sunderhus@gmail.com",
98
+ "package": "@fluentui/react-tree",
99
+ "commit": "4b802ba3745dde01c68224329c1414f077faa1db",
100
+ "comment": "chore: adds bundle size metrics"
101
+ }
102
+ ]
103
+ }
104
+ },
105
+ {
106
+ "date": "Tue, 01 Aug 2023 10:17:20 GMT",
107
+ "tag": "@fluentui/react-tree_v9.0.0-beta.29",
108
+ "version": "9.0.0-beta.29",
109
+ "comments": {
110
+ "prerelease": [
111
+ {
112
+ "author": "petrduda@microsoft.com",
113
+ "package": "@fluentui/react-tree",
114
+ "commit": "d4b3feec354590939a340460bea62f4e39d38a74",
115
+ "comment": "bugfix: Tree, vertical spacing of branches and children is inconsistent"
116
+ },
117
+ {
118
+ "author": "bernardo.sunderhus@gmail.com",
119
+ "package": "@fluentui/react-tree",
120
+ "commit": "f9e014b3919f00068940b0dd94980f6d542eff68",
121
+ "comment": "feat: adds openItems and checkedItems to tree callback data"
122
+ },
123
+ {
124
+ "author": "bernardo.sunderhus@gmail.com",
125
+ "package": "@fluentui/react-tree",
126
+ "commit": "2f795af17bf0cf844e0cc59c5d2f2418a00c9594",
127
+ "comment": "chore: improves internal headless signature"
128
+ },
129
+ {
130
+ "author": "beachball",
131
+ "package": "@fluentui/react-tree",
132
+ "comment": "Bump @fluentui/react-avatar to v9.5.16",
133
+ "commit": "412d815f88863bde8bb16abc8fd9c4140a37f1f5"
134
+ },
135
+ {
136
+ "author": "beachball",
137
+ "package": "@fluentui/react-tree",
138
+ "comment": "Bump @fluentui/react-button to v9.3.26",
139
+ "commit": "412d815f88863bde8bb16abc8fd9c4140a37f1f5"
140
+ },
141
+ {
142
+ "author": "beachball",
143
+ "package": "@fluentui/react-tree",
144
+ "comment": "Bump @fluentui/react-checkbox to v9.1.27",
145
+ "commit": "412d815f88863bde8bb16abc8fd9c4140a37f1f5"
146
+ },
147
+ {
148
+ "author": "beachball",
149
+ "package": "@fluentui/react-tree",
150
+ "comment": "Bump @fluentui/react-portal to v9.3.4",
151
+ "commit": "412d815f88863bde8bb16abc8fd9c4140a37f1f5"
152
+ },
153
+ {
154
+ "author": "beachball",
155
+ "package": "@fluentui/react-tree",
156
+ "comment": "Bump @fluentui/react-radio to v9.1.27",
157
+ "commit": "412d815f88863bde8bb16abc8fd9c4140a37f1f5"
158
+ },
159
+ {
160
+ "author": "beachball",
161
+ "package": "@fluentui/react-tree",
162
+ "comment": "Bump @fluentui/react-shared-contexts to v9.7.0",
163
+ "commit": "412d815f88863bde8bb16abc8fd9c4140a37f1f5"
164
+ },
165
+ {
166
+ "author": "beachball",
167
+ "package": "@fluentui/react-tree",
168
+ "comment": "Bump @fluentui/react-tabster to v9.11.1",
169
+ "commit": "412d815f88863bde8bb16abc8fd9c4140a37f1f5"
170
+ }
171
+ ]
172
+ }
173
+ },
174
+ {
175
+ "date": "Thu, 27 Jul 2023 10:34:14 GMT",
176
+ "tag": "@fluentui/react-tree_v9.0.0-beta.28",
177
+ "version": "9.0.0-beta.28",
178
+ "comments": {
179
+ "prerelease": [
180
+ {
181
+ "author": "bernardo.sunderhus@gmail.com",
182
+ "package": "@fluentui/react-tree",
183
+ "commit": "0e9c438b78e58f346f61b15224c7b0020e4fe73e",
184
+ "comment": "bugfix: makes selector slot required when selection mode is defined"
185
+ },
186
+ {
187
+ "author": "beachball",
188
+ "package": "@fluentui/react-tree",
189
+ "comment": "Bump @fluentui/react-avatar to v9.5.15",
190
+ "commit": "d2d8068110a9a7f71f417a40ee5f2db0ed1c40b9"
191
+ }
192
+ ]
193
+ }
194
+ },
195
+ {
196
+ "date": "Tue, 25 Jul 2023 13:29:23 GMT",
197
+ "tag": "@fluentui/react-tree_v9.0.0-beta.27",
198
+ "version": "9.0.0-beta.27",
199
+ "comments": {
200
+ "prerelease": [
201
+ {
202
+ "author": "ololubek@microsoft.com",
203
+ "package": "@fluentui/react-tree",
204
+ "commit": "1082207b08959996cd736725735cadc01d0849b0",
205
+ "comment": "chore: Update react-icons version to pick up fowardref change."
206
+ },
207
+ {
208
+ "author": "bernardo.sunderhus@gmail.com",
209
+ "package": "@fluentui/react-tree",
210
+ "commit": "0d4d0ef8daebaf5b6ebbcce17e64e35488864e0e",
211
+ "comment": "chore: moves slots from TreeItem to TreeItemLayout"
212
+ },
213
+ {
214
+ "author": "bernardo.sunderhus@gmail.com",
215
+ "package": "@fluentui/react-tree",
216
+ "commit": "c017e880f238c1f113ff7ff6e28560d77e7ea46b",
217
+ "comment": "feat: creates FlatTree component"
218
+ },
219
+ {
220
+ "author": "beachball",
221
+ "package": "@fluentui/react-tree",
222
+ "comment": "Bump @fluentui/react-avatar to v9.5.14",
223
+ "commit": "e59b4b305eb656c5af005fefbfa2b1f69afcdc43"
224
+ },
225
+ {
226
+ "author": "beachball",
227
+ "package": "@fluentui/react-tree",
228
+ "comment": "Bump @fluentui/react-button to v9.3.25",
229
+ "commit": "e59b4b305eb656c5af005fefbfa2b1f69afcdc43"
230
+ },
231
+ {
232
+ "author": "beachball",
233
+ "package": "@fluentui/react-tree",
234
+ "comment": "Bump @fluentui/react-checkbox to v9.1.26",
235
+ "commit": "e59b4b305eb656c5af005fefbfa2b1f69afcdc43"
236
+ },
237
+ {
238
+ "author": "beachball",
239
+ "package": "@fluentui/react-tree",
240
+ "comment": "Bump @fluentui/react-portal to v9.3.3",
241
+ "commit": "e59b4b305eb656c5af005fefbfa2b1f69afcdc43"
242
+ },
243
+ {
244
+ "author": "beachball",
245
+ "package": "@fluentui/react-tree",
246
+ "comment": "Bump @fluentui/react-radio to v9.1.26",
247
+ "commit": "e59b4b305eb656c5af005fefbfa2b1f69afcdc43"
248
+ },
249
+ {
250
+ "author": "beachball",
251
+ "package": "@fluentui/react-tree",
252
+ "comment": "Bump @fluentui/react-tabster to v9.11.0",
253
+ "commit": "e59b4b305eb656c5af005fefbfa2b1f69afcdc43"
254
+ }
255
+ ]
256
+ }
257
+ },
258
+ {
259
+ "date": "Thu, 20 Jul 2023 18:27:36 GMT",
260
+ "tag": "@fluentui/react-tree_v9.0.0-beta.26",
261
+ "version": "9.0.0-beta.26",
262
+ "comments": {
263
+ "prerelease": [
264
+ {
265
+ "author": "bernardo.sunderhus@gmail.com",
266
+ "package": "@fluentui/react-tree",
267
+ "commit": "f5b6134905e28c124b2dc34cc6bd286ca621de6a",
268
+ "comment": "feat: implements selection"
269
+ },
270
+ {
271
+ "author": "beachball",
272
+ "package": "@fluentui/react-tree",
273
+ "comment": "Bump @fluentui/react-aria to v9.3.27",
274
+ "commit": "5a4b16715e8e929f11d8113f710e578ca73acaa6"
275
+ },
276
+ {
277
+ "author": "beachball",
278
+ "package": "@fluentui/react-tree",
279
+ "comment": "Bump @fluentui/react-avatar to v9.5.13",
280
+ "commit": "5a4b16715e8e929f11d8113f710e578ca73acaa6"
281
+ },
282
+ {
283
+ "author": "beachball",
284
+ "package": "@fluentui/react-tree",
285
+ "comment": "Bump @fluentui/react-button to v9.3.24",
286
+ "commit": "5a4b16715e8e929f11d8113f710e578ca73acaa6"
287
+ },
288
+ {
289
+ "author": "beachball",
290
+ "package": "@fluentui/react-tree",
291
+ "comment": "Bump @fluentui/react-checkbox to v9.1.25",
292
+ "commit": "5a4b16715e8e929f11d8113f710e578ca73acaa6"
293
+ },
294
+ {
295
+ "author": "beachball",
296
+ "package": "@fluentui/react-tree",
297
+ "comment": "Bump @fluentui/react-portal to v9.3.2",
298
+ "commit": "5a4b16715e8e929f11d8113f710e578ca73acaa6"
299
+ },
300
+ {
301
+ "author": "beachball",
302
+ "package": "@fluentui/react-tree",
303
+ "comment": "Bump @fluentui/react-radio to v9.1.25",
304
+ "commit": "5a4b16715e8e929f11d8113f710e578ca73acaa6"
305
+ },
306
+ {
307
+ "author": "beachball",
308
+ "package": "@fluentui/react-tree",
309
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.12",
310
+ "commit": "5a4b16715e8e929f11d8113f710e578ca73acaa6"
311
+ }
312
+ ]
313
+ }
314
+ },
315
+ {
316
+ "date": "Thu, 13 Jul 2023 21:25:48 GMT",
317
+ "tag": "@fluentui/react-tree_v9.0.0-beta.25",
318
+ "version": "9.0.0-beta.25",
319
+ "comments": {
320
+ "none": [
321
+ {
322
+ "author": "martinhochel@microsoft.com",
323
+ "package": "@fluentui/react-tree",
324
+ "commit": "8a9e1018f2abb2c7608c49d32acf44e93c43cba6",
325
+ "comment": "chore: update devDependencies to use * for inner workspace dependencies"
326
+ }
327
+ ]
328
+ }
329
+ },
330
+ {
331
+ "date": "Tue, 11 Jul 2023 18:46:36 GMT",
332
+ "tag": "@fluentui/react-tree_v9.0.0-beta.25",
333
+ "version": "9.0.0-beta.25",
334
+ "comments": {
335
+ "prerelease": [
336
+ {
337
+ "author": "bernardo.sunderhus@gmail.com",
338
+ "package": "@fluentui/react-tree",
339
+ "commit": "64752d9a76638ccc4c91303347993b50e0e6d053",
340
+ "comment": "chore: move slots back to TreeItem and creates slot context"
341
+ },
342
+ {
343
+ "author": "bernardo.sunderhus@gmail.com",
344
+ "package": "@fluentui/react-tree",
345
+ "commit": "f958e7e175264e289a6ecdc5b108e826f6b34e74",
346
+ "comment": "chore: openItems property added to TreeOpenChangeData + minor internal improvements"
347
+ },
348
+ {
349
+ "author": "beachball",
350
+ "package": "@fluentui/react-tree",
351
+ "comment": "Bump @fluentui/react-avatar to v9.5.12",
352
+ "commit": "f958e7e175264e289a6ecdc5b108e826f6b34e74"
353
+ },
354
+ {
355
+ "author": "beachball",
356
+ "package": "@fluentui/react-tree",
357
+ "comment": "Bump @fluentui/react-button to v9.3.23",
358
+ "commit": "f958e7e175264e289a6ecdc5b108e826f6b34e74"
359
+ },
360
+ {
361
+ "author": "beachball",
362
+ "package": "@fluentui/react-tree",
363
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.11",
364
+ "commit": "f958e7e175264e289a6ecdc5b108e826f6b34e74"
365
+ },
366
+ {
367
+ "author": "beachball",
368
+ "package": "@fluentui/react-tree",
369
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0",
370
+ "commit": "f958e7e175264e289a6ecdc5b108e826f6b34e74"
371
+ }
372
+ ]
373
+ }
374
+ },
375
+ {
376
+ "date": "Mon, 03 Jul 2023 13:34:28 GMT",
377
+ "tag": "@fluentui/react-tree_v9.0.0-beta.24",
378
+ "version": "9.0.0-beta.24",
379
+ "comments": {
380
+ "prerelease": [
381
+ {
382
+ "author": "beachball",
383
+ "package": "@fluentui/react-tree",
384
+ "comment": "Bump @fluentui/react-avatar to v9.5.11",
385
+ "commit": "d2c95969c67521ea1df57e1339f8743b09b68772"
386
+ },
387
+ {
388
+ "author": "beachball",
389
+ "package": "@fluentui/react-tree",
390
+ "comment": "Bump @fluentui/react-button to v9.3.22",
391
+ "commit": "d2c95969c67521ea1df57e1339f8743b09b68772"
392
+ },
393
+ {
394
+ "author": "beachball",
395
+ "package": "@fluentui/react-tree",
396
+ "comment": "Bump @fluentui/react-portal to v9.3.1",
397
+ "commit": "d2c95969c67521ea1df57e1339f8743b09b68772"
398
+ },
399
+ {
400
+ "author": "beachball",
401
+ "package": "@fluentui/react-tree",
402
+ "comment": "Bump @fluentui/react-tabster to v9.10.0",
403
+ "commit": "d2c95969c67521ea1df57e1339f8743b09b68772"
404
+ }
405
+ ]
406
+ }
407
+ },
408
+ {
409
+ "date": "Mon, 03 Jul 2023 11:57:14 GMT",
410
+ "tag": "@fluentui/react-tree_v9.0.0-beta.23",
411
+ "version": "9.0.0-beta.23",
412
+ "comments": {
413
+ "prerelease": [
414
+ {
415
+ "author": "beachball",
416
+ "package": "@fluentui/react-tree",
417
+ "comment": "Bump @fluentui/react-aria to v9.3.26",
418
+ "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd"
419
+ },
420
+ {
421
+ "author": "beachball",
422
+ "package": "@fluentui/react-tree",
423
+ "comment": "Bump @fluentui/react-avatar to v9.5.10",
424
+ "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd"
425
+ },
426
+ {
427
+ "author": "beachball",
428
+ "package": "@fluentui/react-tree",
429
+ "comment": "Bump @fluentui/react-button to v9.3.21",
430
+ "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd"
431
+ },
432
+ {
433
+ "author": "beachball",
434
+ "package": "@fluentui/react-tree",
435
+ "comment": "Bump @fluentui/react-context-selector to v9.1.26",
436
+ "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd"
437
+ },
438
+ {
439
+ "author": "beachball",
440
+ "package": "@fluentui/react-tree",
441
+ "comment": "Bump @fluentui/react-portal to v9.3.0",
442
+ "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd"
443
+ },
444
+ {
445
+ "author": "beachball",
446
+ "package": "@fluentui/react-tree",
447
+ "comment": "Bump @fluentui/react-shared-contexts to v9.6.0",
448
+ "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd"
449
+ },
450
+ {
451
+ "author": "beachball",
452
+ "package": "@fluentui/react-tree",
453
+ "comment": "Bump @fluentui/react-tabster to v9.9.2",
454
+ "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd"
455
+ },
456
+ {
457
+ "author": "beachball",
458
+ "package": "@fluentui/react-tree",
459
+ "comment": "Bump @fluentui/react-utilities to v9.10.1",
460
+ "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd"
461
+ },
462
+ {
463
+ "author": "beachball",
464
+ "package": "@fluentui/react-tree",
465
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.10",
466
+ "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd"
467
+ }
468
+ ]
469
+ }
470
+ },
471
+ {
472
+ "date": "Wed, 28 Jun 2023 11:12:35 GMT",
473
+ "tag": "@fluentui/react-tree_v9.0.0-beta.22",
474
+ "version": "9.0.0-beta.22",
475
+ "comments": {
476
+ "none": [
477
+ {
478
+ "author": "martinhochel@microsoft.com",
479
+ "package": "@fluentui/react-tree",
480
+ "commit": "fbe878e9c9785588197481f172c42c2c0a230292",
481
+ "comment": "fix: update .npmignore to unify v8 packages and exclude project.json"
482
+ },
483
+ {
484
+ "author": "petrduda@microsoft.com",
485
+ "package": "@fluentui/react-tree",
486
+ "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7",
487
+ "comment": "bugfix: aligns TreeItem leaf and branch nodes"
488
+ }
489
+ ],
490
+ "prerelease": [
491
+ {
492
+ "author": "bernardo.sunderhus@gmail.com",
493
+ "package": "@fluentui/react-tree",
494
+ "commit": "55b25f7aabb9db09beb11c61ee334c04c89ada74",
495
+ "comment": "chore: export useTreeItemContextValues_unstable"
496
+ },
497
+ {
498
+ "author": "beachball",
499
+ "package": "@fluentui/react-tree",
500
+ "comment": "Bump @fluentui/react-aria to v9.3.25",
501
+ "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
502
+ },
503
+ {
504
+ "author": "beachball",
505
+ "package": "@fluentui/react-tree",
506
+ "comment": "Bump @fluentui/react-avatar to v9.5.9",
507
+ "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
508
+ },
509
+ {
510
+ "author": "beachball",
511
+ "package": "@fluentui/react-tree",
512
+ "comment": "Bump @fluentui/react-button to v9.3.20",
513
+ "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
514
+ },
515
+ {
516
+ "author": "beachball",
517
+ "package": "@fluentui/react-tree",
518
+ "comment": "Bump @fluentui/react-context-selector to v9.1.25",
519
+ "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
520
+ },
521
+ {
522
+ "author": "beachball",
523
+ "package": "@fluentui/react-tree",
524
+ "comment": "Bump @fluentui/react-portal to v9.2.16",
525
+ "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
526
+ },
527
+ {
528
+ "author": "beachball",
529
+ "package": "@fluentui/react-tree",
530
+ "comment": "Bump @fluentui/react-tabster to v9.9.1",
531
+ "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
532
+ },
533
+ {
534
+ "author": "beachball",
535
+ "package": "@fluentui/react-tree",
536
+ "comment": "Bump @fluentui/react-utilities to v9.10.0",
537
+ "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
538
+ },
539
+ {
540
+ "author": "beachball",
541
+ "package": "@fluentui/react-tree",
542
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.9",
543
+ "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
544
+ }
545
+ ]
546
+ }
547
+ },
548
+ {
549
+ "date": "Tue, 27 Jun 2023 11:21:23 GMT",
550
+ "tag": "@fluentui/react-tree_v9.0.0-beta.21",
551
+ "version": "9.0.0-beta.21",
552
+ "comments": {
553
+ "prerelease": [
554
+ {
555
+ "author": "bernardo.sunderhus@gmail.com",
556
+ "package": "@fluentui/react-tree",
557
+ "commit": "90acd97916fbb771d436062cad6a3f85be974e39",
558
+ "comment": "bugfix: makes value property on TreeItem less generic to simplify internals"
559
+ },
560
+ {
561
+ "author": "bernardo.sunderhus@gmail.com",
562
+ "package": "@fluentui/react-tree",
563
+ "commit": "56143ef533ed77608a3590e81b1d6fb3bca1357c",
564
+ "comment": "bugfix: rollback to actions and aside as a slot to ensure positioning of internals"
565
+ },
566
+ {
567
+ "author": "beachball",
568
+ "package": "@fluentui/react-tree",
569
+ "comment": "Bump @fluentui/react-avatar to v9.5.8",
570
+ "commit": "1c7e6451a11fb9c59e344df616394a320e8031c4"
571
+ },
572
+ {
573
+ "author": "beachball",
574
+ "package": "@fluentui/react-tree",
575
+ "comment": "Bump @fluentui/react-button to v9.3.19",
576
+ "commit": "1c7e6451a11fb9c59e344df616394a320e8031c4"
577
+ },
578
+ {
579
+ "author": "beachball",
580
+ "package": "@fluentui/react-tree",
581
+ "comment": "Bump @fluentui/react-portal to v9.2.15",
582
+ "commit": "1c7e6451a11fb9c59e344df616394a320e8031c4"
583
+ },
584
+ {
585
+ "author": "beachball",
586
+ "package": "@fluentui/react-tree",
587
+ "comment": "Bump @fluentui/react-tabster to v9.9.0",
588
+ "commit": "1c7e6451a11fb9c59e344df616394a320e8031c4"
589
+ }
590
+ ]
591
+ }
592
+ },
593
+ {
594
+ "date": "Mon, 26 Jun 2023 09:53:55 GMT",
595
+ "tag": "@fluentui/react-tree_v9.0.0-beta.20",
596
+ "version": "9.0.0-beta.20",
597
+ "comments": {
598
+ "prerelease": [
599
+ {
600
+ "author": "beachball",
601
+ "package": "@fluentui/react-tree",
602
+ "comment": "Bump @fluentui/react-aria to v9.3.24",
603
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
604
+ },
605
+ {
606
+ "author": "beachball",
607
+ "package": "@fluentui/react-tree",
608
+ "comment": "Bump @fluentui/react-avatar to v9.5.7",
609
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
610
+ },
611
+ {
612
+ "author": "beachball",
613
+ "package": "@fluentui/react-tree",
614
+ "comment": "Bump @fluentui/react-button to v9.3.18",
615
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
616
+ },
617
+ {
618
+ "author": "beachball",
619
+ "package": "@fluentui/react-tree",
620
+ "comment": "Bump @fluentui/react-context-selector to v9.1.24",
621
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
622
+ },
623
+ {
624
+ "author": "beachball",
625
+ "package": "@fluentui/react-tree",
626
+ "comment": "Bump @fluentui/react-portal to v9.2.14",
627
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
628
+ },
629
+ {
630
+ "author": "beachball",
631
+ "package": "@fluentui/react-tree",
632
+ "comment": "Bump @fluentui/react-tabster to v9.8.1",
633
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
634
+ },
635
+ {
636
+ "author": "beachball",
637
+ "package": "@fluentui/react-tree",
638
+ "comment": "Bump @fluentui/react-utilities to v9.9.4",
639
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
640
+ },
641
+ {
642
+ "author": "beachball",
643
+ "package": "@fluentui/react-tree",
644
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.8",
645
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
646
+ }
647
+ ]
648
+ }
649
+ },
650
+ {
651
+ "date": "Tue, 20 Jun 2023 12:39:06 GMT",
652
+ "tag": "@fluentui/react-tree_v9.0.0-beta.19",
653
+ "version": "9.0.0-beta.19",
654
+ "comments": {
655
+ "prerelease": [
656
+ {
657
+ "author": "ololubek@microsoft.com",
658
+ "package": "@fluentui/react-tree",
659
+ "commit": "8a5ae3aa00faa327c58887a99a5698b18f2930ee",
660
+ "comment": "chore: update @fluentui/react-icons to 2.0.203"
661
+ },
662
+ {
663
+ "author": "beachball",
664
+ "package": "@fluentui/react-tree",
665
+ "comment": "Bump @fluentui/react-aria to v9.3.23",
666
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
667
+ },
668
+ {
669
+ "author": "beachball",
670
+ "package": "@fluentui/react-tree",
671
+ "comment": "Bump @fluentui/react-avatar to v9.5.6",
672
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
673
+ },
674
+ {
675
+ "author": "beachball",
676
+ "package": "@fluentui/react-tree",
677
+ "comment": "Bump @fluentui/react-button to v9.3.17",
678
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
679
+ },
680
+ {
681
+ "author": "beachball",
682
+ "package": "@fluentui/react-tree",
683
+ "comment": "Bump @fluentui/react-context-selector to v9.1.23",
684
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
685
+ },
686
+ {
687
+ "author": "beachball",
688
+ "package": "@fluentui/react-tree",
689
+ "comment": "Bump @fluentui/react-portal to v9.2.13",
690
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
691
+ },
692
+ {
693
+ "author": "beachball",
694
+ "package": "@fluentui/react-tree",
695
+ "comment": "Bump @fluentui/react-shared-contexts to v9.5.1",
696
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
697
+ },
698
+ {
699
+ "author": "beachball",
700
+ "package": "@fluentui/react-tree",
701
+ "comment": "Bump @fluentui/react-tabster to v9.8.0",
702
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
703
+ },
704
+ {
705
+ "author": "beachball",
706
+ "package": "@fluentui/react-tree",
707
+ "comment": "Bump @fluentui/react-theme to v9.1.9",
708
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
709
+ },
710
+ {
711
+ "author": "beachball",
712
+ "package": "@fluentui/react-tree",
713
+ "comment": "Bump @fluentui/react-utilities to v9.9.3",
714
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
715
+ },
716
+ {
717
+ "author": "beachball",
718
+ "package": "@fluentui/react-tree",
719
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.7",
720
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
721
+ },
722
+ {
723
+ "author": "beachball",
724
+ "package": "@fluentui/react-tree",
725
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.23",
726
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
727
+ }
728
+ ]
729
+ }
730
+ },
731
+ {
732
+ "date": "Wed, 31 May 2023 06:46:22 GMT",
733
+ "tag": "@fluentui/react-tree_v9.0.0-beta.18",
734
+ "version": "9.0.0-beta.18",
735
+ "comments": {
736
+ "prerelease": [
737
+ {
738
+ "author": "seanmonahan@microsoft.com",
739
+ "package": "@fluentui/react-tree",
740
+ "commit": "d640b972d7ac86bfb76ae6c6329f12cdd33b3b7c",
741
+ "comment": "chore: Update Griffel to v1.5.7."
742
+ },
743
+ {
744
+ "author": "beachball",
745
+ "package": "@fluentui/react-tree",
746
+ "comment": "Bump @fluentui/react-aria to v9.3.22",
747
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
748
+ },
749
+ {
750
+ "author": "beachball",
751
+ "package": "@fluentui/react-tree",
752
+ "comment": "Bump @fluentui/react-avatar to v9.5.5",
753
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
754
+ },
755
+ {
756
+ "author": "beachball",
757
+ "package": "@fluentui/react-tree",
758
+ "comment": "Bump @fluentui/react-button to v9.3.16",
759
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
760
+ },
761
+ {
762
+ "author": "beachball",
763
+ "package": "@fluentui/react-tree",
764
+ "comment": "Bump @fluentui/react-context-selector to v9.1.22",
765
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
766
+ },
767
+ {
768
+ "author": "beachball",
769
+ "package": "@fluentui/react-tree",
770
+ "comment": "Bump @fluentui/react-portal to v9.2.12",
771
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
772
+ },
773
+ {
774
+ "author": "beachball",
775
+ "package": "@fluentui/react-tree",
776
+ "comment": "Bump @fluentui/react-tabster to v9.7.5",
777
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
778
+ },
779
+ {
780
+ "author": "beachball",
781
+ "package": "@fluentui/react-tree",
782
+ "comment": "Bump @fluentui/react-utilities to v9.9.2",
783
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
784
+ },
785
+ {
786
+ "author": "beachball",
787
+ "package": "@fluentui/react-tree",
788
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.6",
789
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
790
+ },
791
+ {
792
+ "author": "beachball",
793
+ "package": "@fluentui/react-tree",
794
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.22",
795
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
796
+ }
797
+ ]
798
+ }
799
+ },
800
+ {
801
+ "date": "Thu, 25 May 2023 10:00:48 GMT",
802
+ "tag": "@fluentui/react-tree_v9.0.0-beta.17",
803
+ "version": "9.0.0-beta.17",
804
+ "comments": {
805
+ "prerelease": [
806
+ {
807
+ "author": "beachball",
808
+ "package": "@fluentui/react-tree",
809
+ "comment": "Bump @fluentui/react-aria to v9.3.21",
810
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
811
+ },
812
+ {
813
+ "author": "beachball",
814
+ "package": "@fluentui/react-tree",
815
+ "comment": "Bump @fluentui/react-avatar to v9.5.4",
816
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
817
+ },
818
+ {
819
+ "author": "beachball",
820
+ "package": "@fluentui/react-tree",
821
+ "comment": "Bump @fluentui/react-button to v9.3.15",
822
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
823
+ },
824
+ {
825
+ "author": "beachball",
826
+ "package": "@fluentui/react-tree",
827
+ "comment": "Bump @fluentui/react-context-selector to v9.1.21",
828
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
829
+ },
830
+ {
831
+ "author": "beachball",
832
+ "package": "@fluentui/react-tree",
833
+ "comment": "Bump @fluentui/react-portal to v9.2.11",
834
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
835
+ },
836
+ {
837
+ "author": "beachball",
838
+ "package": "@fluentui/react-tree",
839
+ "comment": "Bump @fluentui/react-tabster to v9.7.4",
840
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
841
+ },
842
+ {
843
+ "author": "beachball",
844
+ "package": "@fluentui/react-tree",
845
+ "comment": "Bump @fluentui/react-utilities to v9.9.1",
846
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
847
+ },
848
+ {
849
+ "author": "beachball",
850
+ "package": "@fluentui/react-tree",
851
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.5",
852
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
853
+ }
854
+ ]
855
+ }
856
+ },
857
+ {
858
+ "date": "Wed, 24 May 2023 20:45:37 GMT",
859
+ "tag": "@fluentui/react-tree_v9.0.0-beta.16",
860
+ "version": "9.0.0-beta.16",
861
+ "comments": {
862
+ "none": [
863
+ {
864
+ "author": "olfedias@microsoft.com",
865
+ "package": "@fluentui/react-tree",
866
+ "commit": "69e0617a93cb44ef42f3bd19284b7dc5fe27fed3",
867
+ "comment": "chore: update test-ssr script"
868
+ }
869
+ ],
870
+ "prerelease": [
871
+ {
872
+ "author": "beachball",
873
+ "package": "@fluentui/react-tree",
874
+ "comment": "Bump @fluentui/react-avatar to v9.5.3",
875
+ "commit": "3f088b7b09988e7c05af1c953021acc94c273026"
876
+ },
877
+ {
878
+ "author": "beachball",
879
+ "package": "@fluentui/react-tree",
880
+ "comment": "Bump @fluentui/react-button to v9.3.14",
881
+ "commit": "3f088b7b09988e7c05af1c953021acc94c273026"
882
+ },
883
+ {
884
+ "author": "beachball",
885
+ "package": "@fluentui/react-tree",
886
+ "comment": "Bump @fluentui/react-portal to v9.2.10",
887
+ "commit": "3f088b7b09988e7c05af1c953021acc94c273026"
888
+ },
889
+ {
890
+ "author": "beachball",
891
+ "package": "@fluentui/react-tree",
892
+ "comment": "Bump @fluentui/react-shared-contexts to v9.5.0",
893
+ "commit": "3f088b7b09988e7c05af1c953021acc94c273026"
894
+ },
895
+ {
896
+ "author": "beachball",
897
+ "package": "@fluentui/react-tree",
898
+ "comment": "Bump @fluentui/react-tabster to v9.7.3",
899
+ "commit": "3f088b7b09988e7c05af1c953021acc94c273026"
900
+ }
901
+ ]
902
+ }
903
+ },
904
+ {
905
+ "date": "Thu, 18 May 2023 13:11:08 GMT",
906
+ "tag": "@fluentui/react-tree_v9.0.0-beta.15",
907
+ "version": "9.0.0-beta.15",
908
+ "comments": {
909
+ "prerelease": [
910
+ {
911
+ "author": "beachball",
912
+ "package": "@fluentui/react-tree",
913
+ "comment": "Bump @fluentui/react-avatar to v9.5.2",
914
+ "commit": "1e6f5c8eec4b67c051fb3aa429e303115570ae4d"
915
+ },
916
+ {
917
+ "author": "beachball",
918
+ "package": "@fluentui/react-tree",
919
+ "comment": "Bump @fluentui/react-button to v9.3.13",
920
+ "commit": "1e6f5c8eec4b67c051fb3aa429e303115570ae4d"
921
+ },
922
+ {
923
+ "author": "beachball",
924
+ "package": "@fluentui/react-tree",
925
+ "comment": "Bump @fluentui/react-portal to v9.2.9",
926
+ "commit": "1e6f5c8eec4b67c051fb3aa429e303115570ae4d"
927
+ },
928
+ {
929
+ "author": "beachball",
930
+ "package": "@fluentui/react-tree",
931
+ "comment": "Bump @fluentui/react-tabster to v9.7.2",
932
+ "commit": "1e6f5c8eec4b67c051fb3aa429e303115570ae4d"
933
+ }
934
+ ]
935
+ }
936
+ },
937
+ {
938
+ "date": "Thu, 18 May 2023 00:39:20 GMT",
939
+ "tag": "@fluentui/react-tree_v9.0.0-beta.14",
940
+ "version": "9.0.0-beta.14",
941
+ "comments": {
942
+ "prerelease": [
943
+ {
944
+ "author": "beachball",
945
+ "package": "@fluentui/react-tree",
946
+ "comment": "Bump @fluentui/react-aria to v9.3.20",
947
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
948
+ },
949
+ {
950
+ "author": "beachball",
951
+ "package": "@fluentui/react-tree",
952
+ "comment": "Bump @fluentui/react-avatar to v9.5.1",
953
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
954
+ },
955
+ {
956
+ "author": "beachball",
957
+ "package": "@fluentui/react-tree",
958
+ "comment": "Bump @fluentui/react-button to v9.3.12",
959
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
960
+ },
961
+ {
962
+ "author": "beachball",
963
+ "package": "@fluentui/react-tree",
964
+ "comment": "Bump @fluentui/react-context-selector to v9.1.20",
965
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
966
+ },
967
+ {
968
+ "author": "beachball",
969
+ "package": "@fluentui/react-tree",
970
+ "comment": "Bump @fluentui/react-portal to v9.2.8",
971
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
972
+ },
973
+ {
974
+ "author": "beachball",
975
+ "package": "@fluentui/react-tree",
976
+ "comment": "Bump @fluentui/react-tabster to v9.7.1",
977
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
978
+ },
979
+ {
980
+ "author": "beachball",
981
+ "package": "@fluentui/react-tree",
982
+ "comment": "Bump @fluentui/react-utilities to v9.9.0",
983
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
984
+ },
985
+ {
986
+ "author": "beachball",
987
+ "package": "@fluentui/react-tree",
988
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.4",
989
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
990
+ }
991
+ ]
992
+ }
993
+ },
994
+ {
995
+ "date": "Fri, 12 May 2023 20:28:01 GMT",
996
+ "tag": "@fluentui/react-tree_v9.0.0-beta.13",
997
+ "version": "9.0.0-beta.13",
998
+ "comments": {
999
+ "prerelease": [
1000
+ {
1001
+ "author": "olfedias@microsoft.com",
1002
+ "package": "@fluentui/react-tree",
1003
+ "commit": "c28decb23d191a0daaaf6d5d1832429715102129",
1004
+ "comment": "chore: exclude .swcrc from being published"
1005
+ },
1006
+ {
1007
+ "author": "bernardo.sunderhus@gmail.com",
1008
+ "package": "@fluentui/react-tree",
1009
+ "commit": "e61227d7e52d4210b0a108657e6c56c0cfaf8498",
1010
+ "comment": "feat: TreeItem itemType restructure"
1011
+ },
1012
+ {
1013
+ "author": "bernardo.sunderhus@gmail.com",
1014
+ "package": "@fluentui/react-tree",
1015
+ "commit": "e741b289a0cda2711146d171d3b08deb8bb7a156",
1016
+ "comment": "feat: creates TreeItemAside component"
1017
+ },
1018
+ {
1019
+ "author": "bernardo.sunderhus@gmail.com",
1020
+ "package": "@fluentui/react-tree",
1021
+ "commit": "53c5190f2774c4b42777af53f3739bf2949678e2",
1022
+ "comment": "feat: makes useFlatTree generic"
1023
+ },
1024
+ {
1025
+ "author": "bernardo.sunderhus@gmail.com",
1026
+ "package": "@fluentui/react-tree",
1027
+ "commit": "fa0f2ce25e94ddc8759f545638e01cc34e0e99f4",
1028
+ "comment": "chore: updates useOpenItemsState internals"
1029
+ },
1030
+ {
1031
+ "author": "olfedias@microsoft.com",
1032
+ "package": "@fluentui/react-tree",
1033
+ "commit": "9d6394b6c751092fd1d4e26ccc618b5ba05086ec",
1034
+ "comment": "chore: move makeStyles() calls to .styles.ts files"
1035
+ },
1036
+ {
1037
+ "author": "bernardo.sunderhus@gmail.com",
1038
+ "package": "@fluentui/react-tree",
1039
+ "commit": "d85ae6d21f5c6db877d62ccb1e9270848afbf1bb",
1040
+ "comment": "feat: adds lazy loading story"
1041
+ },
1042
+ {
1043
+ "author": "bernardo.sunderhus@gmail.com",
1044
+ "package": "@fluentui/react-tree",
1045
+ "commit": "be291a28d39881ce6607f465efc5c7402b2e014c",
1046
+ "comment": "bugfix: fix horizontal overflow on tree"
1047
+ },
1048
+ {
1049
+ "author": "bernardo.sunderhus@gmail.com",
1050
+ "package": "@fluentui/react-tree",
1051
+ "commit": "27f252e27361df75a94c5bc5b09fc0097fefd969",
1052
+ "comment": "bugfix: fix VisibleFlatTreeItemGenerator omitting visible items"
1053
+ },
1054
+ {
1055
+ "author": "beachball",
1056
+ "package": "@fluentui/react-tree",
1057
+ "comment": "Bump @fluentui/keyboard-keys to v9.0.3",
1058
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
1059
+ },
1060
+ {
1061
+ "author": "beachball",
1062
+ "package": "@fluentui/react-tree",
1063
+ "comment": "Bump @fluentui/react-aria to v9.3.19",
1064
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
1065
+ },
1066
+ {
1067
+ "author": "beachball",
1068
+ "package": "@fluentui/react-tree",
1069
+ "comment": "Bump @fluentui/react-avatar to v9.5.0",
1070
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
1071
+ },
1072
+ {
1073
+ "author": "beachball",
1074
+ "package": "@fluentui/react-tree",
1075
+ "comment": "Bump @fluentui/react-button to v9.3.11",
1076
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
1077
+ },
1078
+ {
1079
+ "author": "beachball",
1080
+ "package": "@fluentui/react-tree",
1081
+ "comment": "Bump @fluentui/react-context-selector to v9.1.19",
1082
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
1083
+ },
1084
+ {
1085
+ "author": "beachball",
1086
+ "package": "@fluentui/react-tree",
1087
+ "comment": "Bump @fluentui/react-portal to v9.2.7",
1088
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
1089
+ },
1090
+ {
1091
+ "author": "beachball",
1092
+ "package": "@fluentui/react-tree",
1093
+ "comment": "Bump @fluentui/react-shared-contexts to v9.4.0",
1094
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
1095
+ },
1096
+ {
1097
+ "author": "beachball",
1098
+ "package": "@fluentui/react-tree",
1099
+ "comment": "Bump @fluentui/react-tabster to v9.7.0",
1100
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
1101
+ },
1102
+ {
1103
+ "author": "beachball",
1104
+ "package": "@fluentui/react-tree",
1105
+ "comment": "Bump @fluentui/react-theme to v9.1.8",
1106
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
1107
+ },
1108
+ {
1109
+ "author": "beachball",
1110
+ "package": "@fluentui/react-tree",
1111
+ "comment": "Bump @fluentui/react-utilities to v9.8.1",
1112
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
1113
+ },
1114
+ {
1115
+ "author": "beachball",
1116
+ "package": "@fluentui/react-tree",
1117
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.3",
1118
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
1119
+ },
1120
+ {
1121
+ "author": "beachball",
1122
+ "package": "@fluentui/react-tree",
1123
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.21",
1124
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
1125
+ }
1126
+ ],
1127
+ "none": [
1128
+ {
1129
+ "author": "martinhochel@microsoft.com",
1130
+ "package": "@fluentui/react-tree",
1131
+ "commit": "dbda7fa69e3000aaf8dd4a061e254ebd35198b8e",
1132
+ "comment": "fix: update npmignore files to fix npm8/node16 regression how npm publish works"
1133
+ }
1134
+ ]
1135
+ }
1136
+ },
1137
+ {
1138
+ "date": "Mon, 24 Apr 2023 08:12:44 GMT",
1139
+ "tag": "@fluentui/react-tree_v9.0.0-beta.12",
1140
+ "version": "9.0.0-beta.12",
1141
+ "comments": {
1142
+ "prerelease": [
1143
+ {
1144
+ "author": "bernardo.sunderhus@gmail.com",
1145
+ "package": "@fluentui/react-tree",
1146
+ "commit": "85c36e249b33b0bad79be4edd1a943dfc5233b11",
1147
+ "comment": "bugfix: remove caret from react-jsx-runtime prerelease dependency"
1148
+ },
1149
+ {
1150
+ "author": "bernardo.sunderhus@gmail.com",
1151
+ "package": "@fluentui/react-tree",
1152
+ "commit": "acbc5fcb1381e9adcc4e1fa678a374d42a79438b",
1153
+ "comment": "bugfix: fix parent navigation after independency from id"
1154
+ },
1155
+ {
1156
+ "author": "bernardo.sunderhus@gmail.com",
1157
+ "package": "@fluentui/react-tree",
1158
+ "commit": "4dde6727c7e7fe7fbf6fedb4e1619deddbd3e16a",
1159
+ "comment": "feat: value property over id"
1160
+ },
1161
+ {
1162
+ "author": "bernardo.sunderhus@gmail.com",
1163
+ "package": "@fluentui/react-tree",
1164
+ "commit": "ab5e8979917780ec8cf6b3b08b3696fc1b7a83f4",
1165
+ "comment": "chore: restructure stories, add separate category for flat tree"
1166
+ },
1167
+ {
1168
+ "author": "beachball",
1169
+ "package": "@fluentui/react-tree",
1170
+ "comment": "Bump @fluentui/react-avatar to v9.4.10",
1171
+ "commit": "505433ac64f144c9cca456097413d6af4582e5ee"
1172
+ },
1173
+ {
1174
+ "author": "beachball",
1175
+ "package": "@fluentui/react-tree",
1176
+ "comment": "Bump @fluentui/react-button to v9.3.10",
1177
+ "commit": "505433ac64f144c9cca456097413d6af4582e5ee"
1178
+ },
1179
+ {
1180
+ "author": "beachball",
1181
+ "package": "@fluentui/react-tree",
1182
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.2",
1183
+ "commit": "505433ac64f144c9cca456097413d6af4582e5ee"
1184
+ }
1185
+ ]
1186
+ }
1187
+ },
1188
+ {
1189
+ "date": "Mon, 17 Apr 2023 17:54:01 GMT",
1190
+ "tag": "@fluentui/react-tree_v9.0.0-beta.11",
1191
+ "version": "9.0.0-beta.11",
1192
+ "comments": {
1193
+ "prerelease": [
1194
+ {
1195
+ "author": "bernardo.sunderhus@gmail.com",
1196
+ "package": "@fluentui/react-tree",
1197
+ "commit": "27665739a1f38468c63ea1544a2e82ff357d25f3",
1198
+ "comment": "chore: adopt custom jsx pragma"
1199
+ },
1200
+ {
1201
+ "author": "beachball",
1202
+ "package": "@fluentui/react-tree",
1203
+ "comment": "Bump @fluentui/react-aria to v9.3.18",
1204
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
1205
+ },
1206
+ {
1207
+ "author": "beachball",
1208
+ "package": "@fluentui/react-tree",
1209
+ "comment": "Bump @fluentui/react-avatar to v9.4.9",
1210
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
1211
+ },
1212
+ {
1213
+ "author": "beachball",
1214
+ "package": "@fluentui/react-tree",
1215
+ "comment": "Bump @fluentui/react-button to v9.3.9",
1216
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
1217
+ },
1218
+ {
1219
+ "author": "beachball",
1220
+ "package": "@fluentui/react-tree",
1221
+ "comment": "Bump @fluentui/react-context-selector to v9.1.18",
1222
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
1223
+ },
1224
+ {
1225
+ "author": "beachball",
1226
+ "package": "@fluentui/react-tree",
1227
+ "comment": "Bump @fluentui/react-portal to v9.2.6",
1228
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
1229
+ },
1230
+ {
1231
+ "author": "beachball",
1232
+ "package": "@fluentui/react-tree",
1233
+ "comment": "Bump @fluentui/react-tabster to v9.6.5",
1234
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
1235
+ },
1236
+ {
1237
+ "author": "beachball",
1238
+ "package": "@fluentui/react-tree",
1239
+ "comment": "Bump @fluentui/react-utilities to v9.8.0",
1240
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
1241
+ },
1242
+ {
1243
+ "author": "beachball",
1244
+ "package": "@fluentui/react-tree",
1245
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.1",
1246
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
1247
+ }
1248
+ ]
1249
+ }
1250
+ },
1251
+ {
1252
+ "date": "Wed, 12 Apr 2023 09:31:45 GMT",
1253
+ "tag": "@fluentui/react-tree_v9.0.0-beta.10",
1254
+ "version": "9.0.0-beta.10",
1255
+ "comments": {
1256
+ "prerelease": [
1257
+ {
1258
+ "author": "beachball",
1259
+ "package": "@fluentui/react-tree",
1260
+ "comment": "Bump @fluentui/react-aria to v9.3.17",
1261
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
1262
+ },
1263
+ {
1264
+ "author": "beachball",
1265
+ "package": "@fluentui/react-tree",
1266
+ "comment": "Bump @fluentui/react-avatar to v9.4.8",
1267
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
1268
+ },
1269
+ {
1270
+ "author": "beachball",
1271
+ "package": "@fluentui/react-tree",
1272
+ "comment": "Bump @fluentui/react-button to v9.3.8",
1273
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
1274
+ },
1275
+ {
1276
+ "author": "beachball",
1277
+ "package": "@fluentui/react-tree",
1278
+ "comment": "Bump @fluentui/react-context-selector to v9.1.17",
1279
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
1280
+ },
1281
+ {
1282
+ "author": "beachball",
1283
+ "package": "@fluentui/react-tree",
1284
+ "comment": "Bump @fluentui/react-portal to v9.2.5",
1285
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
1286
+ },
1287
+ {
1288
+ "author": "beachball",
1289
+ "package": "@fluentui/react-tree",
1290
+ "comment": "Bump @fluentui/react-tabster to v9.6.4",
1291
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
1292
+ },
1293
+ {
1294
+ "author": "beachball",
1295
+ "package": "@fluentui/react-tree",
1296
+ "comment": "Bump @fluentui/react-utilities to v9.7.4",
1297
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
1298
+ }
1299
+ ]
1300
+ }
1301
+ },
1302
+ {
1303
+ "date": "Tue, 04 Apr 2023 18:44:49 GMT",
1304
+ "tag": "@fluentui/react-tree_v9.0.0-beta.9",
1305
+ "version": "9.0.0-beta.9",
1306
+ "comments": {
1307
+ "prerelease": [
1308
+ {
1309
+ "author": "bernardo.sunderhus@gmail.com",
1310
+ "package": "@fluentui/react-tree",
1311
+ "commit": "7dc03924c99ea14c4df43e56454fc7781e1fdb89",
1312
+ "comment": "chore: adds e2e flat tree tests"
1313
+ },
1314
+ {
1315
+ "author": "beachball",
1316
+ "package": "@fluentui/react-tree",
1317
+ "comment": "Bump @fluentui/react-aria to v9.3.16",
1318
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
1319
+ },
1320
+ {
1321
+ "author": "beachball",
1322
+ "package": "@fluentui/react-tree",
1323
+ "comment": "Bump @fluentui/react-avatar to v9.4.7",
1324
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
1325
+ },
1326
+ {
1327
+ "author": "beachball",
1328
+ "package": "@fluentui/react-tree",
1329
+ "comment": "Bump @fluentui/react-button to v9.3.7",
1330
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
1331
+ },
1332
+ {
1333
+ "author": "beachball",
1334
+ "package": "@fluentui/react-tree",
1335
+ "comment": "Bump @fluentui/react-context-selector to v9.1.16",
1336
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
1337
+ },
1338
+ {
1339
+ "author": "beachball",
1340
+ "package": "@fluentui/react-tree",
1341
+ "comment": "Bump @fluentui/react-portal to v9.2.4",
1342
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
1343
+ },
1344
+ {
1345
+ "author": "beachball",
1346
+ "package": "@fluentui/react-tree",
1347
+ "comment": "Bump @fluentui/react-tabster to v9.6.3",
1348
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
1349
+ },
1350
+ {
1351
+ "author": "beachball",
1352
+ "package": "@fluentui/react-tree",
1353
+ "comment": "Bump @fluentui/react-utilities to v9.7.3",
1354
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
1355
+ }
1356
+ ]
1357
+ }
1358
+ },
1359
+ {
1360
+ "date": "Fri, 24 Mar 2023 10:15:27 GMT",
1361
+ "tag": "@fluentui/react-tree_v9.0.0-beta.8",
1362
+ "version": "9.0.0-beta.8",
1363
+ "comments": {
1364
+ "prerelease": [
1365
+ {
1366
+ "author": "petrduda@microsoft.com",
1367
+ "package": "@fluentui/react-tree",
1368
+ "commit": "b19ad44388b93ade650d5c46802b82fa7419e6b4",
1369
+ "comment": "tree stories and doc update"
1370
+ }
1371
+ ]
1372
+ }
1373
+ },
1374
+ {
1375
+ "date": "Tue, 21 Mar 2023 21:23:13 GMT",
1376
+ "tag": "@fluentui/react-tree_v9.0.0-beta.6",
1377
+ "version": "9.0.0-beta.6",
1378
+ "comments": {
1379
+ "prerelease": [
1380
+ {
1381
+ "author": "tristan.watanabe@gmail.com",
1382
+ "package": "@fluentui/react-tree",
1383
+ "commit": "2fac1a139149bd13b76b1306207bc988dca9c72c",
1384
+ "comment": "chore: migrate to swc transpilation approach."
1385
+ },
1386
+ {
1387
+ "author": "olfedias@microsoft.com",
1388
+ "package": "@fluentui/react-tree",
1389
+ "commit": "7fde5c94869ff9841b142b7ff1d0a3df0ab58f74",
1390
+ "comment": "chore: Bumping version of @fluentui/react-icons to ^2.0.196."
1391
+ },
1392
+ {
1393
+ "author": "tristan.watanabe@gmail.com",
1394
+ "package": "@fluentui/react-tree",
1395
+ "commit": "ead1c6d4c2ac3f3596b62b8cbc07b0a03041f11f",
1396
+ "comment": "fix: add node field to package.json exports map."
1397
+ },
1398
+ {
1399
+ "author": "email not defined",
1400
+ "package": "@fluentui/react-tree",
1401
+ "commit": "d7016bf89107ba2c8b22596b5e4b5ce4d32f99b0",
1402
+ "comment": "chore: adds initial e2e cypress tests"
1403
+ },
1404
+ {
1405
+ "author": "beachball",
1406
+ "package": "@fluentui/react-tree",
1407
+ "comment": "Bump @fluentui/keyboard-keys to v9.0.2",
1408
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
1409
+ },
1410
+ {
1411
+ "author": "beachball",
1412
+ "package": "@fluentui/react-tree",
1413
+ "comment": "Bump @fluentui/react-aria to v9.3.15",
1414
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
1415
+ },
1416
+ {
1417
+ "author": "beachball",
1418
+ "package": "@fluentui/react-tree",
1419
+ "comment": "Bump @fluentui/react-avatar to v9.4.5",
1420
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
1421
+ },
1422
+ {
1423
+ "author": "beachball",
1424
+ "package": "@fluentui/react-tree",
1425
+ "comment": "Bump @fluentui/react-button to v9.3.5",
1426
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
1427
+ },
1428
+ {
1429
+ "author": "beachball",
1430
+ "package": "@fluentui/react-tree",
1431
+ "comment": "Bump @fluentui/react-context-selector to v9.1.15",
1432
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
1433
+ },
1434
+ {
1435
+ "author": "beachball",
1436
+ "package": "@fluentui/react-tree",
1437
+ "comment": "Bump @fluentui/react-portal to v9.2.2",
1438
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
1439
+ },
1440
+ {
1441
+ "author": "beachball",
1442
+ "package": "@fluentui/react-tree",
1443
+ "comment": "Bump @fluentui/react-shared-contexts to v9.3.2",
1444
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
1445
+ },
1446
+ {
1447
+ "author": "beachball",
1448
+ "package": "@fluentui/react-tree",
1449
+ "comment": "Bump @fluentui/react-tabster to v9.6.1",
1450
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
1451
+ },
1452
+ {
1453
+ "author": "beachball",
1454
+ "package": "@fluentui/react-tree",
1455
+ "comment": "Bump @fluentui/react-theme to v9.1.7",
1456
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
1457
+ },
1458
+ {
1459
+ "author": "beachball",
1460
+ "package": "@fluentui/react-tree",
1461
+ "comment": "Bump @fluentui/react-utilities to v9.7.2",
1462
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
1463
+ },
1464
+ {
1465
+ "author": "beachball",
1466
+ "package": "@fluentui/react-tree",
1467
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.20",
1468
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
1469
+ }
1470
+ ]
1471
+ }
1472
+ },
1473
+ {
1474
+ "date": "Thu, 16 Mar 2023 14:36:59 GMT",
1475
+ "tag": "@fluentui/react-tree_v9.0.0-beta.5",
1476
+ "version": "9.0.0-beta.5",
1477
+ "comments": {
1478
+ "prerelease": [
1479
+ {
1480
+ "author": "beachball",
1481
+ "package": "@fluentui/react-tree",
1482
+ "comment": "Bump @fluentui/react-context-selector to v9.1.14",
1483
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
1484
+ },
1485
+ {
1486
+ "author": "beachball",
1487
+ "package": "@fluentui/react-tree",
1488
+ "comment": "Bump @fluentui/react-avatar to v9.4.4",
1489
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
1490
+ },
1491
+ {
1492
+ "author": "beachball",
1493
+ "package": "@fluentui/react-tree",
1494
+ "comment": "Bump @fluentui/react-aria to v9.3.14",
1495
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
1496
+ },
1497
+ {
1498
+ "author": "beachball",
1499
+ "package": "@fluentui/react-tree",
1500
+ "comment": "Bump @fluentui/react-tabster to v9.6.0",
1501
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
1502
+ },
1503
+ {
1504
+ "author": "beachball",
1505
+ "package": "@fluentui/react-tree",
1506
+ "comment": "Bump @fluentui/react-portal to v9.2.1",
1507
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
1508
+ },
1509
+ {
1510
+ "author": "beachball",
1511
+ "package": "@fluentui/react-tree",
1512
+ "comment": "Bump @fluentui/react-button to v9.3.4",
1513
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
1514
+ },
1515
+ {
1516
+ "author": "beachball",
1517
+ "package": "@fluentui/react-tree",
1518
+ "comment": "Bump @fluentui/react-utilities to v9.7.1",
1519
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
1520
+ }
1521
+ ]
1522
+ }
1523
+ },
1524
+ {
1525
+ "date": "Wed, 15 Mar 2023 10:19:53 GMT",
1526
+ "tag": "@fluentui/react-tree_v9.0.0-beta.4",
1527
+ "version": "9.0.0-beta.4",
1528
+ "comments": {
1529
+ "prerelease": [
1530
+ {
1531
+ "author": "beachball",
1532
+ "package": "@fluentui/react-tree",
1533
+ "comment": "Bump @fluentui/react-shared-contexts to v9.3.1",
1534
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
1535
+ },
1536
+ {
1537
+ "author": "beachball",
1538
+ "package": "@fluentui/react-tree",
1539
+ "comment": "Bump @fluentui/react-avatar to v9.4.3",
1540
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
1541
+ },
1542
+ {
1543
+ "author": "beachball",
1544
+ "package": "@fluentui/react-tree",
1545
+ "comment": "Bump @fluentui/react-tabster to v9.5.7",
1546
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
1547
+ },
1548
+ {
1549
+ "author": "beachball",
1550
+ "package": "@fluentui/react-tree",
1551
+ "comment": "Bump @fluentui/react-portal to v9.2.0",
1552
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
1553
+ },
1554
+ {
1555
+ "author": "beachball",
1556
+ "package": "@fluentui/react-tree",
1557
+ "comment": "Bump @fluentui/react-button to v9.3.3",
1558
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
1559
+ },
1560
+ {
1561
+ "author": "beachball",
1562
+ "package": "@fluentui/react-tree",
1563
+ "comment": "Bump @fluentui/react-theme to v9.1.6",
1564
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
1565
+ }
1566
+ ]
1567
+ }
1568
+ },
1569
+ {
1570
+ "date": "Mon, 13 Mar 2023 08:58:26 GMT",
6
1571
  "tag": "@fluentui/react-tree_v9.0.0-beta.3",
7
1572
  "version": "9.0.0-beta.3",
8
1573
  "comments": {