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

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