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

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