@fluentui/react-tree 9.0.0-beta.9 → 9.0.0

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