@fluentui/react-nav 0.0.0-nightly-20250612-0406.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 (465) hide show
  1. package/CHANGELOG.md +704 -0
  2. package/LICENSE +15 -0
  3. package/README.md +5 -0
  4. package/dist/index.d.ts +992 -0
  5. package/lib/AppItem.js +1 -0
  6. package/lib/AppItem.js.map +1 -0
  7. package/lib/AppItemStatic.js +1 -0
  8. package/lib/AppItemStatic.js.map +1 -0
  9. package/lib/Hamburger.js +1 -0
  10. package/lib/Hamburger.js.map +1 -0
  11. package/lib/Nav.js +3 -0
  12. package/lib/Nav.js.map +1 -0
  13. package/lib/NavCategory.js +1 -0
  14. package/lib/NavCategory.js.map +1 -0
  15. package/lib/NavDivider.js +1 -0
  16. package/lib/NavDivider.js.map +1 -0
  17. package/lib/NavDrawer.js +1 -0
  18. package/lib/NavDrawer.js.map +1 -0
  19. package/lib/NavDrawerBody.js +1 -0
  20. package/lib/NavDrawerBody.js.map +1 -0
  21. package/lib/NavDrawerFooter.js +1 -0
  22. package/lib/NavDrawerFooter.js.map +1 -0
  23. package/lib/NavDrawerHeader.js +1 -0
  24. package/lib/NavDrawerHeader.js.map +1 -0
  25. package/lib/NavItem.js +1 -0
  26. package/lib/NavItem.js.map +1 -0
  27. package/lib/NavSectionHeader.js +1 -0
  28. package/lib/NavSectionHeader.js.map +1 -0
  29. package/lib/NavSubItem.js +1 -0
  30. package/lib/NavSubItem.js.map +1 -0
  31. package/lib/NavSubItemGroup.js +1 -0
  32. package/lib/NavSubItemGroup.js.map +1 -0
  33. package/lib/SplitNavItem.js +1 -0
  34. package/lib/SplitNavItem.js.map +1 -0
  35. package/lib/components/AppItem/AppItem.js +20 -0
  36. package/lib/components/AppItem/AppItem.js.map +1 -0
  37. package/lib/components/AppItem/AppItem.types.js +3 -0
  38. package/lib/components/AppItem/AppItem.types.js.map +1 -0
  39. package/lib/components/AppItem/index.js +4 -0
  40. package/lib/components/AppItem/index.js.map +1 -0
  41. package/lib/components/AppItem/renderAppItem.js +13 -0
  42. package/lib/components/AppItem/renderAppItem.js.map +1 -0
  43. package/lib/components/AppItem/useAppItem.js +37 -0
  44. package/lib/components/AppItem/useAppItem.js.map +1 -0
  45. package/lib/components/AppItem/useAppItemStyles.styles.js +79 -0
  46. package/lib/components/AppItem/useAppItemStyles.styles.js.map +1 -0
  47. package/lib/components/AppItemStatic/AppItemStatic.js +20 -0
  48. package/lib/components/AppItemStatic/AppItemStatic.js.map +1 -0
  49. package/lib/components/AppItemStatic/AppItemStatic.types.js +3 -0
  50. package/lib/components/AppItemStatic/AppItemStatic.types.js.map +1 -0
  51. package/lib/components/AppItemStatic/index.js +4 -0
  52. package/lib/components/AppItemStatic/index.js.map +1 -0
  53. package/lib/components/AppItemStatic/renderAppItemStatic.js +13 -0
  54. package/lib/components/AppItemStatic/renderAppItemStatic.js.map +1 -0
  55. package/lib/components/AppItemStatic/useAppItemStatic.js +31 -0
  56. package/lib/components/AppItemStatic/useAppItemStatic.js.map +1 -0
  57. package/lib/components/AppItemStatic/useAppItemStaticStyles.styles.js +38 -0
  58. package/lib/components/AppItemStatic/useAppItemStaticStyles.styles.js.map +1 -0
  59. package/lib/components/Hamburger/Hamburger.js +15 -0
  60. package/lib/components/Hamburger/Hamburger.js.map +1 -0
  61. package/lib/components/Hamburger/Hamburger.types.js +3 -0
  62. package/lib/components/Hamburger/Hamburger.types.js.map +1 -0
  63. package/lib/components/Hamburger/index.js +3 -0
  64. package/lib/components/Hamburger/index.js.map +1 -0
  65. package/lib/components/Hamburger/useHamburger.js +15 -0
  66. package/lib/components/Hamburger/useHamburger.js.map +1 -0
  67. package/lib/components/Hamburger/useHamburgerStyles.styles.js +40 -0
  68. package/lib/components/Hamburger/useHamburgerStyles.styles.js.map +1 -0
  69. package/lib/components/Nav/Nav.js +14 -0
  70. package/lib/components/Nav/Nav.js.map +1 -0
  71. package/lib/components/Nav/Nav.types.js +1 -0
  72. package/lib/components/Nav/Nav.types.js.map +1 -0
  73. package/lib/components/Nav/index.js +4 -0
  74. package/lib/components/Nav/index.js.map +1 -0
  75. package/lib/components/Nav/renderNav.js +10 -0
  76. package/lib/components/Nav/renderNav.js.map +1 -0
  77. package/lib/components/Nav/useNav.js +134 -0
  78. package/lib/components/Nav/useNav.js.map +1 -0
  79. package/lib/components/Nav/useNavStyles.styles.js +27 -0
  80. package/lib/components/Nav/useNavStyles.styles.js.map +1 -0
  81. package/lib/components/NavCategory/NavCategory.js +12 -0
  82. package/lib/components/NavCategory/NavCategory.js.map +1 -0
  83. package/lib/components/NavCategory/NavCategory.types.js +1 -0
  84. package/lib/components/NavCategory/NavCategory.types.js.map +1 -0
  85. package/lib/components/NavCategory/index.js +3 -0
  86. package/lib/components/NavCategory/index.js.map +1 -0
  87. package/lib/components/NavCategory/renderNavCategory.js +9 -0
  88. package/lib/components/NavCategory/renderNavCategory.js.map +1 -0
  89. package/lib/components/NavCategory/useNavCategory.js +20 -0
  90. package/lib/components/NavCategory/useNavCategory.js.map +1 -0
  91. package/lib/components/NavCategoryContext.js +11 -0
  92. package/lib/components/NavCategoryContext.js.map +1 -0
  93. package/lib/components/NavCategoryItem/NavCategoryItem.js +18 -0
  94. package/lib/components/NavCategoryItem/NavCategoryItem.js.map +1 -0
  95. package/lib/components/NavCategoryItem/NavCategoryItem.types.js +3 -0
  96. package/lib/components/NavCategoryItem/NavCategoryItem.types.js.map +1 -0
  97. package/lib/components/NavCategoryItem/index.js +4 -0
  98. package/lib/components/NavCategoryItem/index.js.map +1 -0
  99. package/lib/components/NavCategoryItem/renderNavCategoryItem.js +18 -0
  100. package/lib/components/NavCategoryItem/renderNavCategoryItem.js.map +1 -0
  101. package/lib/components/NavCategoryItem/useNavCategoryItem.js +58 -0
  102. package/lib/components/NavCategoryItem/useNavCategoryItem.js.map +1 -0
  103. package/lib/components/NavCategoryItem/useNavCategoryItem.styles.js +60 -0
  104. package/lib/components/NavCategoryItem/useNavCategoryItem.styles.js.map +1 -0
  105. package/lib/components/NavCategoryItemContext.js +10 -0
  106. package/lib/components/NavCategoryItemContext.js.map +1 -0
  107. package/lib/components/NavContext.js +30 -0
  108. package/lib/components/NavContext.js.map +1 -0
  109. package/lib/components/NavContext.types.js +1 -0
  110. package/lib/components/NavContext.types.js.map +1 -0
  111. package/lib/components/NavDivider/NavDivider.js +15 -0
  112. package/lib/components/NavDivider/NavDivider.js.map +1 -0
  113. package/lib/components/NavDivider/NavDivider.types.js +3 -0
  114. package/lib/components/NavDivider/NavDivider.types.js.map +1 -0
  115. package/lib/components/NavDivider/index.js +3 -0
  116. package/lib/components/NavDivider/index.js.map +1 -0
  117. package/lib/components/NavDivider/useNavDivider.js +16 -0
  118. package/lib/components/NavDivider/useNavDivider.js.map +1 -0
  119. package/lib/components/NavDivider/useNavDividerStyles.styles.js +27 -0
  120. package/lib/components/NavDivider/useNavDividerStyles.styles.js.map +1 -0
  121. package/lib/components/NavDrawer/NavDrawer.js +18 -0
  122. package/lib/components/NavDrawer/NavDrawer.js.map +1 -0
  123. package/lib/components/NavDrawer/NavDrawer.types.js +3 -0
  124. package/lib/components/NavDrawer/NavDrawer.types.js.map +1 -0
  125. package/lib/components/NavDrawer/index.js +4 -0
  126. package/lib/components/NavDrawer/index.js.map +1 -0
  127. package/lib/components/NavDrawer/renderNavDrawer.js +10 -0
  128. package/lib/components/NavDrawer/renderNavDrawer.js.map +1 -0
  129. package/lib/components/NavDrawer/useNavDrawer.js +47 -0
  130. package/lib/components/NavDrawer/useNavDrawer.js.map +1 -0
  131. package/lib/components/NavDrawer/useNavDrawerStyles.styles.js +32 -0
  132. package/lib/components/NavDrawer/useNavDrawerStyles.styles.js.map +1 -0
  133. package/lib/components/NavDrawerBody/NavDrawerBody.js +15 -0
  134. package/lib/components/NavDrawerBody/NavDrawerBody.js.map +1 -0
  135. package/lib/components/NavDrawerBody/NavDrawerBody.types.js +3 -0
  136. package/lib/components/NavDrawerBody/NavDrawerBody.types.js.map +1 -0
  137. package/lib/components/NavDrawerBody/index.js +3 -0
  138. package/lib/components/NavDrawerBody/index.js.map +1 -0
  139. package/lib/components/NavDrawerBody/useNavDrawerBody.js +13 -0
  140. package/lib/components/NavDrawerBody/useNavDrawerBody.js.map +1 -0
  141. package/lib/components/NavDrawerBody/useNavDrawerBodyStyles.styles.js +39 -0
  142. package/lib/components/NavDrawerBody/useNavDrawerBodyStyles.styles.js.map +1 -0
  143. package/lib/components/NavDrawerFooter/NavDrawerFooter.js +15 -0
  144. package/lib/components/NavDrawerFooter/NavDrawerFooter.js.map +1 -0
  145. package/lib/components/NavDrawerFooter/NavDrawerFooter.types.js +3 -0
  146. package/lib/components/NavDrawerFooter/NavDrawerFooter.types.js.map +1 -0
  147. package/lib/components/NavDrawerFooter/index.js +3 -0
  148. package/lib/components/NavDrawerFooter/index.js.map +1 -0
  149. package/lib/components/NavDrawerFooter/useNavDrawerFooter.js +13 -0
  150. package/lib/components/NavDrawerFooter/useNavDrawerFooter.js.map +1 -0
  151. package/lib/components/NavDrawerFooter/useNavDrawerFooterStyles.styles.js +36 -0
  152. package/lib/components/NavDrawerFooter/useNavDrawerFooterStyles.styles.js.map +1 -0
  153. package/lib/components/NavDrawerHeader/NavDrawerHeader.js +15 -0
  154. package/lib/components/NavDrawerHeader/NavDrawerHeader.js.map +1 -0
  155. package/lib/components/NavDrawerHeader/NavDrawerHeader.types.js +3 -0
  156. package/lib/components/NavDrawerHeader/NavDrawerHeader.types.js.map +1 -0
  157. package/lib/components/NavDrawerHeader/index.js +3 -0
  158. package/lib/components/NavDrawerHeader/index.js.map +1 -0
  159. package/lib/components/NavDrawerHeader/useNavDrawerHeader.js +13 -0
  160. package/lib/components/NavDrawerHeader/useNavDrawerHeader.js.map +1 -0
  161. package/lib/components/NavDrawerHeader/useNavDrawerHeaderStyles.styles.js +38 -0
  162. package/lib/components/NavDrawerHeader/useNavDrawerHeaderStyles.styles.js.map +1 -0
  163. package/lib/components/NavItem/NavItem.js +16 -0
  164. package/lib/components/NavItem/NavItem.js.map +1 -0
  165. package/lib/components/NavItem/NavItem.types.js +3 -0
  166. package/lib/components/NavItem/NavItem.types.js.map +1 -0
  167. package/lib/components/NavItem/index.js +4 -0
  168. package/lib/components/NavItem/index.js.map +1 -0
  169. package/lib/components/NavItem/renderNavItem.js +13 -0
  170. package/lib/components/NavItem/renderNavItem.js.map +1 -0
  171. package/lib/components/NavItem/useNavItem.js +70 -0
  172. package/lib/components/NavItem/useNavItem.js.map +1 -0
  173. package/lib/components/NavItem/useNavItemStyles.styles.js +27 -0
  174. package/lib/components/NavItem/useNavItemStyles.styles.js.map +1 -0
  175. package/lib/components/NavSectionHeader/NavSectionHeader.js +15 -0
  176. package/lib/components/NavSectionHeader/NavSectionHeader.js.map +1 -0
  177. package/lib/components/NavSectionHeader/NavSectionHeader.types.js +4 -0
  178. package/lib/components/NavSectionHeader/NavSectionHeader.types.js.map +1 -0
  179. package/lib/components/NavSectionHeader/index.js +4 -0
  180. package/lib/components/NavSectionHeader/index.js.map +1 -0
  181. package/lib/components/NavSectionHeader/renderNavSectionHeader.js +8 -0
  182. package/lib/components/NavSectionHeader/renderNavSectionHeader.js.map +1 -0
  183. package/lib/components/NavSectionHeader/useNavSectionHeader.js +23 -0
  184. package/lib/components/NavSectionHeader/useNavSectionHeader.js.map +1 -0
  185. package/lib/components/NavSectionHeader/useNavSectionHeaderStyles.styles.js +34 -0
  186. package/lib/components/NavSectionHeader/useNavSectionHeaderStyles.styles.js.map +1 -0
  187. package/lib/components/NavSubItem/NavSubItem.js +16 -0
  188. package/lib/components/NavSubItem/NavSubItem.js.map +1 -0
  189. package/lib/components/NavSubItem/NavSubItem.types.js +3 -0
  190. package/lib/components/NavSubItem/NavSubItem.types.js.map +1 -0
  191. package/lib/components/NavSubItem/index.js +4 -0
  192. package/lib/components/NavSubItem/index.js.map +1 -0
  193. package/lib/components/NavSubItem/renderNavSubItem.js +8 -0
  194. package/lib/components/NavSubItem/renderNavSubItem.js.map +1 -0
  195. package/lib/components/NavSubItem/useNavSubItem.js +69 -0
  196. package/lib/components/NavSubItem/useNavSubItem.js.map +1 -0
  197. package/lib/components/NavSubItem/useNavSubItemStyles.styles.js +39 -0
  198. package/lib/components/NavSubItem/useNavSubItemStyles.styles.js.map +1 -0
  199. package/lib/components/NavSubItemContext.js +11 -0
  200. package/lib/components/NavSubItemContext.js.map +1 -0
  201. package/lib/components/NavSubItemGroup/NavSubItemGroup.js +16 -0
  202. package/lib/components/NavSubItemGroup/NavSubItemGroup.js.map +1 -0
  203. package/lib/components/NavSubItemGroup/NavSubItemGroup.types.js +3 -0
  204. package/lib/components/NavSubItemGroup/NavSubItemGroup.types.js.map +1 -0
  205. package/lib/components/NavSubItemGroup/index.js +4 -0
  206. package/lib/components/NavSubItemGroup/index.js.map +1 -0
  207. package/lib/components/NavSubItemGroup/renderNavSubItemGroup.js +10 -0
  208. package/lib/components/NavSubItemGroup/renderNavSubItemGroup.js.map +1 -0
  209. package/lib/components/NavSubItemGroup/useNavSubItemGroup.js +29 -0
  210. package/lib/components/NavSubItemGroup/useNavSubItemGroup.js.map +1 -0
  211. package/lib/components/NavSubItemGroup/useNavSubItemGroupStyles.styles.js +22 -0
  212. package/lib/components/NavSubItemGroup/useNavSubItemGroupStyles.styles.js.map +1 -0
  213. package/lib/components/SplitNavItem/SplitNavItem.js +20 -0
  214. package/lib/components/SplitNavItem/SplitNavItem.js.map +1 -0
  215. package/lib/components/SplitNavItem/SplitNavItem.types.js +3 -0
  216. package/lib/components/SplitNavItem/SplitNavItem.types.js.map +1 -0
  217. package/lib/components/SplitNavItem/index.js +4 -0
  218. package/lib/components/SplitNavItem/index.js.map +1 -0
  219. package/lib/components/SplitNavItem/renderSplitNavItem.js +24 -0
  220. package/lib/components/SplitNavItem/renderSplitNavItem.js.map +1 -0
  221. package/lib/components/SplitNavItem/useSplitNavItem.js +101 -0
  222. package/lib/components/SplitNavItem/useSplitNavItem.js.map +1 -0
  223. package/lib/components/SplitNavItem/useSplitNavItemStyles.styles.js +98 -0
  224. package/lib/components/SplitNavItem/useSplitNavItemStyles.styles.js.map +1 -0
  225. package/lib/components/sharedNavStyles.styles.js +147 -0
  226. package/lib/components/sharedNavStyles.styles.js.map +1 -0
  227. package/lib/components/useNavCategoryContextValues_unstable.js +14 -0
  228. package/lib/components/useNavCategoryContextValues_unstable.js.map +1 -0
  229. package/lib/components/useNavCategoryItemContextValues_unstable.js +14 -0
  230. package/lib/components/useNavCategoryItemContextValues_unstable.js.map +1 -0
  231. package/lib/components/useNavContextValues.js +30 -0
  232. package/lib/components/useNavContextValues.js.map +1 -0
  233. package/lib/index.js +22 -0
  234. package/lib/index.js.map +1 -0
  235. package/lib-commonjs/AppItem.js +31 -0
  236. package/lib-commonjs/AppItem.js.map +1 -0
  237. package/lib-commonjs/AppItemStatic.js +28 -0
  238. package/lib-commonjs/AppItemStatic.js.map +1 -0
  239. package/lib-commonjs/Hamburger.js +25 -0
  240. package/lib-commonjs/Hamburger.js.map +1 -0
  241. package/lib-commonjs/Nav.js +51 -0
  242. package/lib-commonjs/Nav.js.map +1 -0
  243. package/lib-commonjs/NavCategory.js +22 -0
  244. package/lib-commonjs/NavCategory.js.map +1 -0
  245. package/lib-commonjs/NavDivider.js +25 -0
  246. package/lib-commonjs/NavDivider.js.map +1 -0
  247. package/lib-commonjs/NavDrawer.js +28 -0
  248. package/lib-commonjs/NavDrawer.js.map +1 -0
  249. package/lib-commonjs/NavDrawerBody.js +25 -0
  250. package/lib-commonjs/NavDrawerBody.js.map +1 -0
  251. package/lib-commonjs/NavDrawerFooter.js +25 -0
  252. package/lib-commonjs/NavDrawerFooter.js.map +1 -0
  253. package/lib-commonjs/NavDrawerHeader.js +25 -0
  254. package/lib-commonjs/NavDrawerHeader.js.map +1 -0
  255. package/lib-commonjs/NavItem.js +28 -0
  256. package/lib-commonjs/NavItem.js.map +1 -0
  257. package/lib-commonjs/NavSectionHeader.js +28 -0
  258. package/lib-commonjs/NavSectionHeader.js.map +1 -0
  259. package/lib-commonjs/NavSubItem.js +28 -0
  260. package/lib-commonjs/NavSubItem.js.map +1 -0
  261. package/lib-commonjs/NavSubItemGroup.js +28 -0
  262. package/lib-commonjs/NavSubItemGroup.js.map +1 -0
  263. package/lib-commonjs/SplitNavItem.js +28 -0
  264. package/lib-commonjs/SplitNavItem.js.map +1 -0
  265. package/lib-commonjs/components/AppItem/AppItem.js +29 -0
  266. package/lib-commonjs/components/AppItem/AppItem.js.map +1 -0
  267. package/lib-commonjs/components/AppItem/AppItem.types.js +6 -0
  268. package/lib-commonjs/components/AppItem/AppItem.types.js.map +1 -0
  269. package/lib-commonjs/components/AppItem/index.js +34 -0
  270. package/lib-commonjs/components/AppItem/index.js.map +1 -0
  271. package/lib-commonjs/components/AppItem/renderAppItem.js +21 -0
  272. package/lib-commonjs/components/AppItem/renderAppItem.js.map +1 -0
  273. package/lib-commonjs/components/AppItem/useAppItem.js +40 -0
  274. package/lib-commonjs/components/AppItem/useAppItem.js.map +1 -0
  275. package/lib-commonjs/components/AppItem/useAppItemStyles.styles.js +133 -0
  276. package/lib-commonjs/components/AppItem/useAppItemStyles.styles.js.map +1 -0
  277. package/lib-commonjs/components/AppItemStatic/AppItemStatic.js +29 -0
  278. package/lib-commonjs/components/AppItemStatic/AppItemStatic.js.map +1 -0
  279. package/lib-commonjs/components/AppItemStatic/AppItemStatic.types.js +6 -0
  280. package/lib-commonjs/components/AppItemStatic/AppItemStatic.types.js.map +1 -0
  281. package/lib-commonjs/components/AppItemStatic/index.js +31 -0
  282. package/lib-commonjs/components/AppItemStatic/index.js.map +1 -0
  283. package/lib-commonjs/components/AppItemStatic/renderAppItemStatic.js +21 -0
  284. package/lib-commonjs/components/AppItemStatic/renderAppItemStatic.js.map +1 -0
  285. package/lib-commonjs/components/AppItemStatic/useAppItemStatic.js +34 -0
  286. package/lib-commonjs/components/AppItemStatic/useAppItemStatic.js.map +1 -0
  287. package/lib-commonjs/components/AppItemStatic/useAppItemStaticStyles.styles.js +55 -0
  288. package/lib-commonjs/components/AppItemStatic/useAppItemStaticStyles.styles.js.map +1 -0
  289. package/lib-commonjs/components/Hamburger/Hamburger.js +24 -0
  290. package/lib-commonjs/components/Hamburger/Hamburger.js.map +1 -0
  291. package/lib-commonjs/components/Hamburger/Hamburger.types.js +6 -0
  292. package/lib-commonjs/components/Hamburger/Hamburger.types.js.map +1 -0
  293. package/lib-commonjs/components/Hamburger/index.js +27 -0
  294. package/lib-commonjs/components/Hamburger/index.js.map +1 -0
  295. package/lib-commonjs/components/Hamburger/useHamburger.js +21 -0
  296. package/lib-commonjs/components/Hamburger/useHamburger.js.map +1 -0
  297. package/lib-commonjs/components/Hamburger/useHamburgerStyles.styles.js +69 -0
  298. package/lib-commonjs/components/Hamburger/useHamburgerStyles.styles.js.map +1 -0
  299. package/lib-commonjs/components/Nav/Nav.js +23 -0
  300. package/lib-commonjs/components/Nav/Nav.js.map +1 -0
  301. package/lib-commonjs/components/Nav/Nav.types.js +6 -0
  302. package/lib-commonjs/components/Nav/Nav.types.js.map +1 -0
  303. package/lib-commonjs/components/Nav/index.js +31 -0
  304. package/lib-commonjs/components/Nav/index.js.map +1 -0
  305. package/lib-commonjs/components/Nav/renderNav.js +20 -0
  306. package/lib-commonjs/components/Nav/renderNav.js.map +1 -0
  307. package/lib-commonjs/components/Nav/useNav.js +137 -0
  308. package/lib-commonjs/components/Nav/useNav.js.map +1 -0
  309. package/lib-commonjs/components/Nav/useNavStyles.styles.js +43 -0
  310. package/lib-commonjs/components/Nav/useNavStyles.styles.js.map +1 -0
  311. package/lib-commonjs/components/NavCategory/NavCategory.js +21 -0
  312. package/lib-commonjs/components/NavCategory/NavCategory.js.map +1 -0
  313. package/lib-commonjs/components/NavCategory/NavCategory.types.js +6 -0
  314. package/lib-commonjs/components/NavCategory/NavCategory.types.js.map +1 -0
  315. package/lib-commonjs/components/NavCategory/index.js +24 -0
  316. package/lib-commonjs/components/NavCategory/index.js.map +1 -0
  317. package/lib-commonjs/components/NavCategory/renderNavCategory.js +18 -0
  318. package/lib-commonjs/components/NavCategory/renderNavCategory.js.map +1 -0
  319. package/lib-commonjs/components/NavCategory/useNavCategory.js +23 -0
  320. package/lib-commonjs/components/NavCategory/useNavCategory.js.map +1 -0
  321. package/lib-commonjs/components/NavCategoryContext.js +30 -0
  322. package/lib-commonjs/components/NavCategoryContext.js.map +1 -0
  323. package/lib-commonjs/components/NavCategoryItem/NavCategoryItem.js +25 -0
  324. package/lib-commonjs/components/NavCategoryItem/NavCategoryItem.js.map +1 -0
  325. package/lib-commonjs/components/NavCategoryItem/NavCategoryItem.types.js +6 -0
  326. package/lib-commonjs/components/NavCategoryItem/NavCategoryItem.types.js.map +1 -0
  327. package/lib-commonjs/components/NavCategoryItem/index.js +31 -0
  328. package/lib-commonjs/components/NavCategoryItem/index.js.map +1 -0
  329. package/lib-commonjs/components/NavCategoryItem/renderNavCategoryItem.js +26 -0
  330. package/lib-commonjs/components/NavCategoryItem/renderNavCategoryItem.js.map +1 -0
  331. package/lib-commonjs/components/NavCategoryItem/useNavCategoryItem.js +61 -0
  332. package/lib-commonjs/components/NavCategoryItem/useNavCategoryItem.js.map +1 -0
  333. package/lib-commonjs/components/NavCategoryItem/useNavCategoryItem.styles.js +83 -0
  334. package/lib-commonjs/components/NavCategoryItem/useNavCategoryItem.styles.js.map +1 -0
  335. package/lib-commonjs/components/NavCategoryItemContext.js +29 -0
  336. package/lib-commonjs/components/NavCategoryItemContext.js.map +1 -0
  337. package/lib-commonjs/components/NavContext.js +49 -0
  338. package/lib-commonjs/components/NavContext.js.map +1 -0
  339. package/lib-commonjs/components/NavContext.types.js +6 -0
  340. package/lib-commonjs/components/NavContext.types.js.map +1 -0
  341. package/lib-commonjs/components/NavDivider/NavDivider.js +24 -0
  342. package/lib-commonjs/components/NavDivider/NavDivider.js.map +1 -0
  343. package/lib-commonjs/components/NavDivider/NavDivider.types.js +6 -0
  344. package/lib-commonjs/components/NavDivider/NavDivider.types.js.map +1 -0
  345. package/lib-commonjs/components/NavDivider/index.js +27 -0
  346. package/lib-commonjs/components/NavDivider/index.js.map +1 -0
  347. package/lib-commonjs/components/NavDivider/useNavDivider.js +19 -0
  348. package/lib-commonjs/components/NavDivider/useNavDivider.js.map +1 -0
  349. package/lib-commonjs/components/NavDivider/useNavDividerStyles.styles.js +45 -0
  350. package/lib-commonjs/components/NavDivider/useNavDividerStyles.styles.js.map +1 -0
  351. package/lib-commonjs/components/NavDrawer/NavDrawer.js +26 -0
  352. package/lib-commonjs/components/NavDrawer/NavDrawer.js.map +1 -0
  353. package/lib-commonjs/components/NavDrawer/NavDrawer.types.js +6 -0
  354. package/lib-commonjs/components/NavDrawer/NavDrawer.types.js.map +1 -0
  355. package/lib-commonjs/components/NavDrawer/index.js +31 -0
  356. package/lib-commonjs/components/NavDrawer/index.js.map +1 -0
  357. package/lib-commonjs/components/NavDrawer/renderNavDrawer.js +20 -0
  358. package/lib-commonjs/components/NavDrawer/renderNavDrawer.js.map +1 -0
  359. package/lib-commonjs/components/NavDrawer/useNavDrawer.js +50 -0
  360. package/lib-commonjs/components/NavDrawer/useNavDrawer.js.map +1 -0
  361. package/lib-commonjs/components/NavDrawer/useNavDrawerStyles.styles.js +46 -0
  362. package/lib-commonjs/components/NavDrawer/useNavDrawerStyles.styles.js.map +1 -0
  363. package/lib-commonjs/components/NavDrawerBody/NavDrawerBody.js +24 -0
  364. package/lib-commonjs/components/NavDrawerBody/NavDrawerBody.js.map +1 -0
  365. package/lib-commonjs/components/NavDrawerBody/NavDrawerBody.types.js +6 -0
  366. package/lib-commonjs/components/NavDrawerBody/NavDrawerBody.types.js.map +1 -0
  367. package/lib-commonjs/components/NavDrawerBody/index.js +27 -0
  368. package/lib-commonjs/components/NavDrawerBody/index.js.map +1 -0
  369. package/lib-commonjs/components/NavDrawerBody/useNavDrawerBody.js +16 -0
  370. package/lib-commonjs/components/NavDrawerBody/useNavDrawerBody.js.map +1 -0
  371. package/lib-commonjs/components/NavDrawerBody/useNavDrawerBodyStyles.styles.js +67 -0
  372. package/lib-commonjs/components/NavDrawerBody/useNavDrawerBodyStyles.styles.js.map +1 -0
  373. package/lib-commonjs/components/NavDrawerFooter/NavDrawerFooter.js +24 -0
  374. package/lib-commonjs/components/NavDrawerFooter/NavDrawerFooter.js.map +1 -0
  375. package/lib-commonjs/components/NavDrawerFooter/NavDrawerFooter.types.js +6 -0
  376. package/lib-commonjs/components/NavDrawerFooter/NavDrawerFooter.types.js.map +1 -0
  377. package/lib-commonjs/components/NavDrawerFooter/index.js +27 -0
  378. package/lib-commonjs/components/NavDrawerFooter/index.js.map +1 -0
  379. package/lib-commonjs/components/NavDrawerFooter/useNavDrawerFooter.js +16 -0
  380. package/lib-commonjs/components/NavDrawerFooter/useNavDrawerFooter.js.map +1 -0
  381. package/lib-commonjs/components/NavDrawerFooter/useNavDrawerFooterStyles.styles.js +56 -0
  382. package/lib-commonjs/components/NavDrawerFooter/useNavDrawerFooterStyles.styles.js.map +1 -0
  383. package/lib-commonjs/components/NavDrawerHeader/NavDrawerHeader.js +24 -0
  384. package/lib-commonjs/components/NavDrawerHeader/NavDrawerHeader.js.map +1 -0
  385. package/lib-commonjs/components/NavDrawerHeader/NavDrawerHeader.types.js +6 -0
  386. package/lib-commonjs/components/NavDrawerHeader/NavDrawerHeader.types.js.map +1 -0
  387. package/lib-commonjs/components/NavDrawerHeader/index.js +27 -0
  388. package/lib-commonjs/components/NavDrawerHeader/index.js.map +1 -0
  389. package/lib-commonjs/components/NavDrawerHeader/useNavDrawerHeader.js +16 -0
  390. package/lib-commonjs/components/NavDrawerHeader/useNavDrawerHeader.js.map +1 -0
  391. package/lib-commonjs/components/NavDrawerHeader/useNavDrawerHeaderStyles.styles.js +61 -0
  392. package/lib-commonjs/components/NavDrawerHeader/useNavDrawerHeaderStyles.styles.js.map +1 -0
  393. package/lib-commonjs/components/NavItem/NavItem.js +24 -0
  394. package/lib-commonjs/components/NavItem/NavItem.js.map +1 -0
  395. package/lib-commonjs/components/NavItem/NavItem.types.js +6 -0
  396. package/lib-commonjs/components/NavItem/NavItem.types.js.map +1 -0
  397. package/lib-commonjs/components/NavItem/index.js +31 -0
  398. package/lib-commonjs/components/NavItem/index.js.map +1 -0
  399. package/lib-commonjs/components/NavItem/renderNavItem.js +21 -0
  400. package/lib-commonjs/components/NavItem/renderNavItem.js.map +1 -0
  401. package/lib-commonjs/components/NavItem/useNavItem.js +73 -0
  402. package/lib-commonjs/components/NavItem/useNavItem.js.map +1 -0
  403. package/lib-commonjs/components/NavItem/useNavItemStyles.styles.js +38 -0
  404. package/lib-commonjs/components/NavItem/useNavItemStyles.styles.js.map +1 -0
  405. package/lib-commonjs/components/NavSectionHeader/NavSectionHeader.js +24 -0
  406. package/lib-commonjs/components/NavSectionHeader/NavSectionHeader.js.map +1 -0
  407. package/lib-commonjs/components/NavSectionHeader/NavSectionHeader.types.js +8 -0
  408. package/lib-commonjs/components/NavSectionHeader/NavSectionHeader.types.js.map +1 -0
  409. package/lib-commonjs/components/NavSectionHeader/index.js +31 -0
  410. package/lib-commonjs/components/NavSectionHeader/index.js.map +1 -0
  411. package/lib-commonjs/components/NavSectionHeader/renderNavSectionHeader.js +16 -0
  412. package/lib-commonjs/components/NavSectionHeader/renderNavSectionHeader.js.map +1 -0
  413. package/lib-commonjs/components/NavSectionHeader/useNavSectionHeader.js +26 -0
  414. package/lib-commonjs/components/NavSectionHeader/useNavSectionHeader.js.map +1 -0
  415. package/lib-commonjs/components/NavSectionHeader/useNavSectionHeaderStyles.styles.js +56 -0
  416. package/lib-commonjs/components/NavSectionHeader/useNavSectionHeaderStyles.styles.js.map +1 -0
  417. package/lib-commonjs/components/NavSubItem/NavSubItem.js +24 -0
  418. package/lib-commonjs/components/NavSubItem/NavSubItem.js.map +1 -0
  419. package/lib-commonjs/components/NavSubItem/NavSubItem.types.js +6 -0
  420. package/lib-commonjs/components/NavSubItem/NavSubItem.types.js.map +1 -0
  421. package/lib-commonjs/components/NavSubItem/index.js +31 -0
  422. package/lib-commonjs/components/NavSubItem/index.js.map +1 -0
  423. package/lib-commonjs/components/NavSubItem/renderNavSubItem.js +16 -0
  424. package/lib-commonjs/components/NavSubItem/renderNavSubItem.js.map +1 -0
  425. package/lib-commonjs/components/NavSubItem/useNavSubItem.js +72 -0
  426. package/lib-commonjs/components/NavSubItem/useNavSubItem.js.map +1 -0
  427. package/lib-commonjs/components/NavSubItem/useNavSubItemStyles.styles.js +53 -0
  428. package/lib-commonjs/components/NavSubItem/useNavSubItemStyles.styles.js.map +1 -0
  429. package/lib-commonjs/components/NavSubItemContext.js +30 -0
  430. package/lib-commonjs/components/NavSubItemContext.js.map +1 -0
  431. package/lib-commonjs/components/NavSubItemGroup/NavSubItemGroup.js +24 -0
  432. package/lib-commonjs/components/NavSubItemGroup/NavSubItemGroup.js.map +1 -0
  433. package/lib-commonjs/components/NavSubItemGroup/NavSubItemGroup.types.js +6 -0
  434. package/lib-commonjs/components/NavSubItemGroup/NavSubItemGroup.types.js.map +1 -0
  435. package/lib-commonjs/components/NavSubItemGroup/index.js +31 -0
  436. package/lib-commonjs/components/NavSubItemGroup/index.js.map +1 -0
  437. package/lib-commonjs/components/NavSubItemGroup/renderNavSubItemGroup.js +18 -0
  438. package/lib-commonjs/components/NavSubItemGroup/renderNavSubItemGroup.js.map +1 -0
  439. package/lib-commonjs/components/NavSubItemGroup/useNavSubItemGroup.js +32 -0
  440. package/lib-commonjs/components/NavSubItemGroup/useNavSubItemGroup.js.map +1 -0
  441. package/lib-commonjs/components/NavSubItemGroup/useNavSubItemGroupStyles.styles.js +35 -0
  442. package/lib-commonjs/components/NavSubItemGroup/useNavSubItemGroupStyles.styles.js.map +1 -0
  443. package/lib-commonjs/components/SplitNavItem/SplitNavItem.js +29 -0
  444. package/lib-commonjs/components/SplitNavItem/SplitNavItem.js.map +1 -0
  445. package/lib-commonjs/components/SplitNavItem/SplitNavItem.types.js +6 -0
  446. package/lib-commonjs/components/SplitNavItem/SplitNavItem.types.js.map +1 -0
  447. package/lib-commonjs/components/SplitNavItem/index.js +31 -0
  448. package/lib-commonjs/components/SplitNavItem/index.js.map +1 -0
  449. package/lib-commonjs/components/SplitNavItem/renderSplitNavItem.js +32 -0
  450. package/lib-commonjs/components/SplitNavItem/renderSplitNavItem.js.map +1 -0
  451. package/lib-commonjs/components/SplitNavItem/useSplitNavItem.js +104 -0
  452. package/lib-commonjs/components/SplitNavItem/useSplitNavItem.js.map +1 -0
  453. package/lib-commonjs/components/SplitNavItem/useSplitNavItemStyles.styles.js +149 -0
  454. package/lib-commonjs/components/SplitNavItem/useSplitNavItemStyles.styles.js.map +1 -0
  455. package/lib-commonjs/components/sharedNavStyles.styles.js +242 -0
  456. package/lib-commonjs/components/sharedNavStyles.styles.js.map +1 -0
  457. package/lib-commonjs/components/useNavCategoryContextValues_unstable.js +25 -0
  458. package/lib-commonjs/components/useNavCategoryContextValues_unstable.js.map +1 -0
  459. package/lib-commonjs/components/useNavCategoryItemContextValues_unstable.js +25 -0
  460. package/lib-commonjs/components/useNavCategoryItemContextValues_unstable.js.map +1 -0
  461. package/lib-commonjs/components/useNavContextValues.js +41 -0
  462. package/lib-commonjs/components/useNavContextValues.js.map +1 -0
  463. package/lib-commonjs/index.js +280 -0
  464. package/lib-commonjs/index.js.map +1 -0
  465. package/package.json +58 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,704 @@
1
+ # Change Log - @fluentui/react-nav
2
+
3
+ This log was last generated on Thu, 12 Jun 2025 04:22:25 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## [0.0.0-nightly-20250612-0406.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav_v0.0.0-nightly-20250612-0406.1)
8
+
9
+ Thu, 12 Jun 2025 04:22:25 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav_v9.0.0..@fluentui/react-nav_v0.0.0-nightly-20250612-0406.1)
11
+
12
+ ### Changes
13
+
14
+ - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/not available) by fluentui-internal@service.microsoft.com)
15
+ - Bump @fluentui/react-aria to v0.0.0-nightly-20250612-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/5f397ec7b66f4537e19b32df3f1dca1048e995ff) by beachball)
16
+ - Bump @fluentui/react-button to v0.0.0-nightly-20250612-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/5f397ec7b66f4537e19b32df3f1dca1048e995ff) by beachball)
17
+ - Bump @fluentui/react-tooltip to v0.0.0-nightly-20250612-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/5f397ec7b66f4537e19b32df3f1dca1048e995ff) by beachball)
18
+ - Bump @fluentui/react-context-selector to v0.0.0-nightly-20250612-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/5f397ec7b66f4537e19b32df3f1dca1048e995ff) by beachball)
19
+ - Bump @fluentui/react-divider to v0.0.0-nightly-20250612-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/5f397ec7b66f4537e19b32df3f1dca1048e995ff) by beachball)
20
+ - Bump @fluentui/react-drawer to v0.0.0-nightly-20250612-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/5f397ec7b66f4537e19b32df3f1dca1048e995ff) by beachball)
21
+ - Bump @fluentui/react-jsx-runtime to v0.0.0-nightly-20250612-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/5f397ec7b66f4537e19b32df3f1dca1048e995ff) by beachball)
22
+ - Bump @fluentui/react-shared-contexts to v0.0.0-nightly-20250612-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/5f397ec7b66f4537e19b32df3f1dca1048e995ff) by beachball)
23
+ - Bump @fluentui/react-tabster to v0.0.0-nightly-20250612-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/5f397ec7b66f4537e19b32df3f1dca1048e995ff) by beachball)
24
+ - Bump @fluentui/react-theme to v0.0.0-nightly-20250612-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/5f397ec7b66f4537e19b32df3f1dca1048e995ff) by beachball)
25
+ - Bump @fluentui/react-utilities to v0.0.0-nightly-20250612-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/5f397ec7b66f4537e19b32df3f1dca1048e995ff) by beachball)
26
+ - Bump @fluentui/react-conformance to v0.0.0-nightly-20250612-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/5f397ec7b66f4537e19b32df3f1dca1048e995ff) by beachball)
27
+ - Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20250612-0406.1 ([commit](https://github.com/microsoft/fluentui/commit/5f397ec7b66f4537e19b32df3f1dca1048e995ff) by beachball)
28
+
29
+ ## [9.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav_v9.0.0)
30
+
31
+ Wed, 11 Jun 2025 22:31:57 GMT
32
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.13.9..@fluentui/react-nav_v9.0.0)
33
+
34
+ ### Minor changes
35
+
36
+ - feat: release stable ([PR #34631](https://github.com/microsoft/fluentui/pull/34631) by marcosvmmoura@gmail.com)
37
+ - Bump @fluentui/react-tooltip to v9.6.9 ([PR #34631](https://github.com/microsoft/fluentui/pull/34631) by beachball)
38
+ - Bump @fluentui/react-drawer to v9.7.11 ([PR #34631](https://github.com/microsoft/fluentui/pull/34631) by beachball)
39
+
40
+ ## [0.13.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.13.9)
41
+
42
+ Fri, 06 Jun 2025 13:15:14 GMT
43
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.13.8..@fluentui/react-nav-preview_v0.13.9)
44
+
45
+ ### Patches
46
+
47
+ - fix: Change Nav icon display animations to opacity animations ([PR #34452](https://github.com/microsoft/fluentui/pull/34452) by jiangemma@microsoft.com)
48
+ - fix: focus borders being cut-off ([PR #34565](https://github.com/microsoft/fluentui/pull/34565) by marcosvmmoura@gmail.com)
49
+ - Bump @fluentui/react-aria to v9.14.8 ([PR #34572](https://github.com/microsoft/fluentui/pull/34572) by beachball)
50
+ - Bump @fluentui/react-button to v9.4.8 ([PR #34572](https://github.com/microsoft/fluentui/pull/34572) by beachball)
51
+ - Bump @fluentui/react-tooltip to v9.6.8 ([PR #34572](https://github.com/microsoft/fluentui/pull/34572) by beachball)
52
+ - Bump @fluentui/react-context-selector to v9.1.77 ([PR #34572](https://github.com/microsoft/fluentui/pull/34572) by beachball)
53
+ - Bump @fluentui/react-divider to v9.2.87 ([PR #34572](https://github.com/microsoft/fluentui/pull/34572) by beachball)
54
+ - Bump @fluentui/react-drawer to v9.7.10 ([PR #34572](https://github.com/microsoft/fluentui/pull/34572) by beachball)
55
+ - Bump @fluentui/react-jsx-runtime to v9.0.55 ([PR #34572](https://github.com/microsoft/fluentui/pull/34572) by beachball)
56
+ - Bump @fluentui/react-tabster to v9.24.8 ([PR #34572](https://github.com/microsoft/fluentui/pull/34572) by beachball)
57
+ - Bump @fluentui/react-utilities to v9.20.0 ([PR #34572](https://github.com/microsoft/fluentui/pull/34572) by beachball)
58
+
59
+ ## [0.13.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.13.8)
60
+
61
+ Wed, 14 May 2025 18:49:20 GMT
62
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.13.7..@fluentui/react-nav-preview_v0.13.8)
63
+
64
+ ### Patches
65
+
66
+ - Bump @fluentui/react-aria to v9.14.7 ([PR #34438](https://github.com/microsoft/fluentui/pull/34438) by beachball)
67
+ - Bump @fluentui/react-button to v9.4.7 ([PR #34438](https://github.com/microsoft/fluentui/pull/34438) by beachball)
68
+ - Bump @fluentui/react-tooltip to v9.6.7 ([PR #34438](https://github.com/microsoft/fluentui/pull/34438) by beachball)
69
+ - Bump @fluentui/react-drawer to v9.7.9 ([PR #34438](https://github.com/microsoft/fluentui/pull/34438) by beachball)
70
+ - Bump @fluentui/react-tabster to v9.24.7 ([PR #34438](https://github.com/microsoft/fluentui/pull/34438) by beachball)
71
+
72
+ ## [0.13.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.13.7)
73
+
74
+ Thu, 24 Apr 2025 09:59:45 GMT
75
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.13.6..@fluentui/react-nav-preview_v0.13.7)
76
+
77
+ ### Patches
78
+
79
+ - Bump @fluentui/react-aria to v9.14.6 ([PR #34315](https://github.com/microsoft/fluentui/pull/34315) by beachball)
80
+ - Bump @fluentui/react-button to v9.4.6 ([PR #34315](https://github.com/microsoft/fluentui/pull/34315) by beachball)
81
+ - Bump @fluentui/react-tooltip to v9.6.6 ([PR #34315](https://github.com/microsoft/fluentui/pull/34315) by beachball)
82
+ - Bump @fluentui/react-drawer to v9.7.8 ([PR #34315](https://github.com/microsoft/fluentui/pull/34315) by beachball)
83
+ - Bump @fluentui/react-tabster to v9.24.6 ([PR #34315](https://github.com/microsoft/fluentui/pull/34315) by beachball)
84
+
85
+ ## [0.13.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.13.6)
86
+
87
+ Wed, 16 Apr 2025 19:42:18 GMT
88
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.13.5..@fluentui/react-nav-preview_v0.13.6)
89
+
90
+ ### Patches
91
+
92
+ - Bump @fluentui/react-aria to v9.14.5 ([PR #34166](https://github.com/microsoft/fluentui/pull/34166) by beachball)
93
+ - Bump @fluentui/react-button to v9.4.5 ([PR #34166](https://github.com/microsoft/fluentui/pull/34166) by beachball)
94
+ - Bump @fluentui/react-tooltip to v9.6.5 ([PR #34166](https://github.com/microsoft/fluentui/pull/34166) by beachball)
95
+ - Bump @fluentui/react-context-selector to v9.1.76 ([PR #34166](https://github.com/microsoft/fluentui/pull/34166) by beachball)
96
+ - Bump @fluentui/react-divider to v9.2.86 ([PR #34166](https://github.com/microsoft/fluentui/pull/34166) by beachball)
97
+ - Bump @fluentui/react-drawer to v9.7.7 ([PR #34166](https://github.com/microsoft/fluentui/pull/34166) by beachball)
98
+ - Bump @fluentui/react-jsx-runtime to v9.0.54 ([PR #34166](https://github.com/microsoft/fluentui/pull/34166) by beachball)
99
+ - Bump @fluentui/react-tabster to v9.24.5 ([PR #34166](https://github.com/microsoft/fluentui/pull/34166) by beachball)
100
+ - Bump @fluentui/react-utilities to v9.19.0 ([PR #34166](https://github.com/microsoft/fluentui/pull/34166) by beachball)
101
+
102
+ ## [0.13.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.13.5)
103
+
104
+ Tue, 01 Apr 2025 15:08:02 GMT
105
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.13.4..@fluentui/react-nav-preview_v0.13.5)
106
+
107
+ ### Patches
108
+
109
+ - Bump @fluentui/react-aria to v9.14.4 ([PR #33909](https://github.com/microsoft/fluentui/pull/33909) by beachball)
110
+ - Bump @fluentui/react-button to v9.4.4 ([PR #33909](https://github.com/microsoft/fluentui/pull/33909) by beachball)
111
+ - Bump @fluentui/react-tooltip to v9.6.4 ([PR #33909](https://github.com/microsoft/fluentui/pull/33909) by beachball)
112
+ - Bump @fluentui/react-drawer to v9.7.6 ([PR #33909](https://github.com/microsoft/fluentui/pull/33909) by beachball)
113
+ - Bump @fluentui/react-tabster to v9.24.4 ([PR #33909](https://github.com/microsoft/fluentui/pull/33909) by beachball)
114
+
115
+ ## [0.13.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.13.4)
116
+
117
+ Thu, 27 Mar 2025 21:12:51 GMT
118
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.13.3..@fluentui/react-nav-preview_v0.13.4)
119
+
120
+ ### Patches
121
+
122
+ - Bump @fluentui/react-aria to v9.14.3 ([PR #34034](https://github.com/microsoft/fluentui/pull/34034) by beachball)
123
+ - Bump @fluentui/react-button to v9.4.3 ([PR #34034](https://github.com/microsoft/fluentui/pull/34034) by beachball)
124
+ - Bump @fluentui/react-tooltip to v9.6.3 ([PR #34034](https://github.com/microsoft/fluentui/pull/34034) by beachball)
125
+ - Bump @fluentui/react-context-selector to v9.1.75 ([PR #34034](https://github.com/microsoft/fluentui/pull/34034) by beachball)
126
+ - Bump @fluentui/react-divider to v9.2.85 ([PR #34034](https://github.com/microsoft/fluentui/pull/34034) by beachball)
127
+ - Bump @fluentui/react-drawer to v9.7.5 ([PR #34034](https://github.com/microsoft/fluentui/pull/34034) by beachball)
128
+ - Bump @fluentui/react-jsx-runtime to v9.0.53 ([PR #34034](https://github.com/microsoft/fluentui/pull/34034) by beachball)
129
+ - Bump @fluentui/react-shared-contexts to v9.23.1 ([PR #34034](https://github.com/microsoft/fluentui/pull/34034) by beachball)
130
+ - Bump @fluentui/react-tabster to v9.24.3 ([PR #34034](https://github.com/microsoft/fluentui/pull/34034) by beachball)
131
+ - Bump @fluentui/react-utilities to v9.18.23 ([PR #34034](https://github.com/microsoft/fluentui/pull/34034) by beachball)
132
+
133
+ ## [0.13.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.13.3)
134
+
135
+ Wed, 26 Mar 2025 21:47:47 GMT
136
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.13.2..@fluentui/react-nav-preview_v0.13.3)
137
+
138
+ ### Patches
139
+
140
+ - Bump @fluentui/react-drawer to v9.7.4 ([PR #34096](https://github.com/microsoft/fluentui/pull/34096) by beachball)
141
+
142
+ ## [0.13.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.13.2)
143
+
144
+ Thu, 20 Mar 2025 09:34:59 GMT
145
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.13.1..@fluentui/react-nav-preview_v0.13.2)
146
+
147
+ ### Patches
148
+
149
+ - Bump @fluentui/react-drawer to v9.7.3 ([PR #33994](https://github.com/microsoft/fluentui/pull/33994) by beachball)
150
+
151
+ ## [0.13.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.13.1)
152
+
153
+ Wed, 19 Mar 2025 15:40:41 GMT
154
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.13.0..@fluentui/react-nav-preview_v0.13.1)
155
+
156
+ ### Patches
157
+
158
+ - fix: minor accessibility cleanup ([PR #33992](https://github.com/microsoft/fluentui/pull/33992) by sarah.higley@microsoft.com)
159
+ - Bump @fluentui/react-aria to v9.14.2 ([PR #34032](https://github.com/microsoft/fluentui/pull/34032) by beachball)
160
+ - Bump @fluentui/react-button to v9.4.2 ([PR #34032](https://github.com/microsoft/fluentui/pull/34032) by beachball)
161
+ - Bump @fluentui/react-tooltip to v9.6.2 ([PR #34032](https://github.com/microsoft/fluentui/pull/34032) by beachball)
162
+ - Bump @fluentui/react-context-selector to v9.1.74 ([PR #34032](https://github.com/microsoft/fluentui/pull/34032) by beachball)
163
+ - Bump @fluentui/react-divider to v9.2.84 ([PR #34032](https://github.com/microsoft/fluentui/pull/34032) by beachball)
164
+ - Bump @fluentui/react-drawer to v9.7.2 ([PR #34032](https://github.com/microsoft/fluentui/pull/34032) by beachball)
165
+ - Bump @fluentui/react-jsx-runtime to v9.0.52 ([PR #34032](https://github.com/microsoft/fluentui/pull/34032) by beachball)
166
+ - Bump @fluentui/react-shared-contexts to v9.23.0 ([PR #34032](https://github.com/microsoft/fluentui/pull/34032) by beachball)
167
+ - Bump @fluentui/react-tabster to v9.24.2 ([PR #34032](https://github.com/microsoft/fluentui/pull/34032) by beachball)
168
+ - Bump @fluentui/react-utilities to v9.18.22 ([PR #34032](https://github.com/microsoft/fluentui/pull/34032) by beachball)
169
+
170
+ ## [0.13.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.13.0)
171
+
172
+ Tue, 11 Mar 2025 18:58:52 GMT
173
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.12.0..@fluentui/react-nav-preview_v0.13.0)
174
+
175
+ ### Minor changes
176
+
177
+ - fix(react-nav): Export missing context providers and hooks ([PR #33938](https://github.com/microsoft/fluentui/pull/33938) by jiangemma@microsoft.com)
178
+ - Bump @fluentui/react-aria to v9.14.1 ([PR #33927](https://github.com/microsoft/fluentui/pull/33927) by beachball)
179
+ - Bump @fluentui/react-button to v9.4.1 ([PR #33927](https://github.com/microsoft/fluentui/pull/33927) by beachball)
180
+ - Bump @fluentui/react-tooltip to v9.6.1 ([PR #33927](https://github.com/microsoft/fluentui/pull/33927) by beachball)
181
+ - Bump @fluentui/react-context-selector to v9.1.73 ([PR #33927](https://github.com/microsoft/fluentui/pull/33927) by beachball)
182
+ - Bump @fluentui/react-divider to v9.2.83 ([PR #33927](https://github.com/microsoft/fluentui/pull/33927) by beachball)
183
+ - Bump @fluentui/react-drawer to v9.7.1 ([PR #33927](https://github.com/microsoft/fluentui/pull/33927) by beachball)
184
+ - Bump @fluentui/react-jsx-runtime to v9.0.51 ([PR #33927](https://github.com/microsoft/fluentui/pull/33927) by beachball)
185
+ - Bump @fluentui/react-shared-contexts to v9.22.0 ([PR #33927](https://github.com/microsoft/fluentui/pull/33927) by beachball)
186
+ - Bump @fluentui/react-tabster to v9.24.1 ([PR #33927](https://github.com/microsoft/fluentui/pull/33927) by beachball)
187
+ - Bump @fluentui/react-utilities to v9.18.21 ([PR #33927](https://github.com/microsoft/fluentui/pull/33927) by beachball)
188
+
189
+ ## [0.12.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.12.0)
190
+
191
+ Fri, 21 Feb 2025 14:34:05 GMT
192
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.11.3..@fluentui/react-nav-preview_v0.12.0)
193
+
194
+ ### Minor changes
195
+
196
+ - Bump @fluentui/react-aria to v9.14.0 ([PR #33876](https://github.com/microsoft/fluentui/pull/33876) by beachball)
197
+ - Bump @fluentui/react-button to v9.4.0 ([PR #33876](https://github.com/microsoft/fluentui/pull/33876) by beachball)
198
+ - Bump @fluentui/react-tooltip to v9.6.0 ([PR #33876](https://github.com/microsoft/fluentui/pull/33876) by beachball)
199
+ - Bump @fluentui/react-drawer to v9.7.0 ([PR #33876](https://github.com/microsoft/fluentui/pull/33876) by beachball)
200
+ - Bump @fluentui/react-tabster to v9.24.0 ([PR #33876](https://github.com/microsoft/fluentui/pull/33876) by beachball)
201
+
202
+ ## [0.11.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.11.3)
203
+
204
+ Fri, 07 Feb 2025 10:42:12 GMT
205
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.11.2..@fluentui/react-nav-preview_v0.11.3)
206
+
207
+ ### Patches
208
+
209
+ - Bump @fluentui/react-button to v9.3.102 ([PR #33797](https://github.com/microsoft/fluentui/pull/33797) by beachball)
210
+ - Bump @fluentui/react-drawer to v9.6.11 ([PR #33797](https://github.com/microsoft/fluentui/pull/33797) by beachball)
211
+
212
+ ## [0.11.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.11.2)
213
+
214
+ Tue, 28 Jan 2025 21:26:35 GMT
215
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.11.1..@fluentui/react-nav-preview_v0.11.2)
216
+
217
+ ### Patches
218
+
219
+ - Bump @fluentui/react-button to v9.3.101 ([PR #33736](https://github.com/microsoft/fluentui/pull/33736) by beachball)
220
+ - Bump @fluentui/react-drawer to v9.6.10 ([PR #33736](https://github.com/microsoft/fluentui/pull/33736) by beachball)
221
+
222
+ ## [0.11.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.11.1)
223
+
224
+ Mon, 27 Jan 2025 20:27:35 GMT
225
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.11.0..@fluentui/react-nav-preview_v0.11.1)
226
+
227
+ ### Patches
228
+
229
+ - Bump @fluentui/react-tooltip to v9.5.5 ([PR #33724](https://github.com/microsoft/fluentui/pull/33724) by beachball)
230
+ - Bump @fluentui/react-drawer to v9.6.9 ([PR #33724](https://github.com/microsoft/fluentui/pull/33724) by beachball)
231
+
232
+ ## [0.11.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.11.0)
233
+
234
+ Wed, 22 Jan 2025 14:00:20 GMT
235
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.10.7..@fluentui/react-nav-preview_v0.11.0)
236
+
237
+ ### Minor changes
238
+
239
+ - [BREAKING CHANGE] Replacing NavSize type and size prop with NavDensity type and density prop to avoid collisions with size on base Drawer component. ([PR #33559](https://github.com/microsoft/fluentui/pull/33559) by matejera@microsoft.com)
240
+ - Bump @fluentui/react-aria to v9.13.14 ([PR #33631](https://github.com/microsoft/fluentui/pull/33631) by beachball)
241
+ - Bump @fluentui/react-button to v9.3.100 ([PR #33631](https://github.com/microsoft/fluentui/pull/33631) by beachball)
242
+ - Bump @fluentui/react-tooltip to v9.5.4 ([PR #33631](https://github.com/microsoft/fluentui/pull/33631) by beachball)
243
+ - Bump @fluentui/react-context-selector to v9.1.72 ([PR #33631](https://github.com/microsoft/fluentui/pull/33631) by beachball)
244
+ - Bump @fluentui/react-divider to v9.2.82 ([PR #33631](https://github.com/microsoft/fluentui/pull/33631) by beachball)
245
+ - Bump @fluentui/react-drawer to v9.6.8 ([PR #33631](https://github.com/microsoft/fluentui/pull/33631) by beachball)
246
+ - Bump @fluentui/react-jsx-runtime to v9.0.50 ([PR #33631](https://github.com/microsoft/fluentui/pull/33631) by beachball)
247
+ - Bump @fluentui/react-tabster to v9.23.3 ([PR #33631](https://github.com/microsoft/fluentui/pull/33631) by beachball)
248
+ - Bump @fluentui/react-utilities to v9.18.20 ([PR #33631](https://github.com/microsoft/fluentui/pull/33631) by beachball)
249
+
250
+ ### Patches
251
+
252
+ - fix: Speeding up animations in Nav. ([PR #33588](https://github.com/microsoft/fluentui/pull/33588) by matejera@microsoft.com)
253
+ - fix - changing hover animation curve to linear. ([PR #33633](https://github.com/microsoft/fluentui/pull/33633) by matejera@microsoft.com)
254
+
255
+ ## [0.10.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.10.7)
256
+
257
+ Wed, 08 Jan 2025 18:33:36 GMT
258
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.10.6..@fluentui/react-nav-preview_v0.10.7)
259
+
260
+ ### Patches
261
+
262
+ - Bump @fluentui/react-aria to v9.13.13 ([PR #33550](https://github.com/microsoft/fluentui/pull/33550) by beachball)
263
+ - Bump @fluentui/react-button to v9.3.99 ([PR #33550](https://github.com/microsoft/fluentui/pull/33550) by beachball)
264
+ - Bump @fluentui/react-tooltip to v9.5.3 ([PR #33550](https://github.com/microsoft/fluentui/pull/33550) by beachball)
265
+ - Bump @fluentui/react-divider to v9.2.81 ([PR #33550](https://github.com/microsoft/fluentui/pull/33550) by beachball)
266
+ - Bump @fluentui/react-drawer to v9.6.7 ([PR #33550](https://github.com/microsoft/fluentui/pull/33550) by beachball)
267
+ - Bump @fluentui/react-jsx-runtime to v9.0.49 ([PR #33550](https://github.com/microsoft/fluentui/pull/33550) by beachball)
268
+
269
+ ## [0.10.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.10.6)
270
+
271
+ Wed, 18 Dec 2024 10:59:37 GMT
272
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.10.5..@fluentui/react-nav-preview_v0.10.6)
273
+
274
+ ### Patches
275
+
276
+ - Bump @fluentui/react-drawer to v9.6.6 ([PR #33483](https://github.com/microsoft/fluentui/pull/33483) by beachball)
277
+
278
+ ## [0.10.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.10.5)
279
+
280
+ Mon, 16 Dec 2024 16:26:49 GMT
281
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.10.4..@fluentui/react-nav-preview_v0.10.5)
282
+
283
+ ### Patches
284
+
285
+ - chore: remove usage of "export \*" ([PR #33457](https://github.com/microsoft/fluentui/pull/33457) by olfedias@microsoft.com)
286
+ - Bump @fluentui/react-aria to v9.13.12 ([PR #33468](https://github.com/microsoft/fluentui/pull/33468) by beachball)
287
+ - Bump @fluentui/react-button to v9.3.98 ([PR #33468](https://github.com/microsoft/fluentui/pull/33468) by beachball)
288
+ - Bump @fluentui/react-tooltip to v9.5.2 ([PR #33468](https://github.com/microsoft/fluentui/pull/33468) by beachball)
289
+ - Bump @fluentui/react-context-selector to v9.1.71 ([PR #33468](https://github.com/microsoft/fluentui/pull/33468) by beachball)
290
+ - Bump @fluentui/react-divider to v9.2.80 ([PR #33468](https://github.com/microsoft/fluentui/pull/33468) by beachball)
291
+ - Bump @fluentui/react-drawer to v9.6.5 ([PR #33468](https://github.com/microsoft/fluentui/pull/33468) by beachball)
292
+ - Bump @fluentui/react-jsx-runtime to v9.0.48 ([PR #33468](https://github.com/microsoft/fluentui/pull/33468) by beachball)
293
+ - Bump @fluentui/react-shared-contexts to v9.21.2 ([PR #33468](https://github.com/microsoft/fluentui/pull/33468) by beachball)
294
+ - Bump @fluentui/react-tabster to v9.23.2 ([PR #33468](https://github.com/microsoft/fluentui/pull/33468) by beachball)
295
+ - Bump @fluentui/react-theme to v9.1.24 ([PR #33468](https://github.com/microsoft/fluentui/pull/33468) by beachball)
296
+ - Bump @fluentui/react-utilities to v9.18.19 ([PR #33468](https://github.com/microsoft/fluentui/pull/33468) by beachball)
297
+
298
+ ## [0.10.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.10.4)
299
+
300
+ Mon, 09 Dec 2024 17:38:16 GMT
301
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.10.3..@fluentui/react-nav-preview_v0.10.4)
302
+
303
+ ### Patches
304
+
305
+ - Bump @fluentui/react-aria to v9.13.11 ([PR #33431](https://github.com/microsoft/fluentui/pull/33431) by beachball)
306
+ - Bump @fluentui/react-button to v9.3.97 ([PR #33431](https://github.com/microsoft/fluentui/pull/33431) by beachball)
307
+ - Bump @fluentui/react-tooltip to v9.5.1 ([PR #33431](https://github.com/microsoft/fluentui/pull/33431) by beachball)
308
+ - Bump @fluentui/react-divider to v9.2.79 ([PR #33431](https://github.com/microsoft/fluentui/pull/33431) by beachball)
309
+ - Bump @fluentui/react-drawer to v9.6.4 ([PR #33431](https://github.com/microsoft/fluentui/pull/33431) by beachball)
310
+
311
+ ## [0.10.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.10.3)
312
+
313
+ Fri, 06 Dec 2024 12:53:46 GMT
314
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.10.2..@fluentui/react-nav-preview_v0.10.3)
315
+
316
+ ### Patches
317
+
318
+ - Bump @fluentui/react-aria to v9.13.10 ([PR #33372](https://github.com/microsoft/fluentui/pull/33372) by beachball)
319
+ - Bump @fluentui/react-button to v9.3.96 ([PR #33372](https://github.com/microsoft/fluentui/pull/33372) by beachball)
320
+ - Bump @fluentui/react-tooltip to v9.5.0 ([PR #33372](https://github.com/microsoft/fluentui/pull/33372) by beachball)
321
+ - Bump @fluentui/react-context-selector to v9.1.70 ([PR #33372](https://github.com/microsoft/fluentui/pull/33372) by beachball)
322
+ - Bump @fluentui/react-divider to v9.2.78 ([PR #33372](https://github.com/microsoft/fluentui/pull/33372) by beachball)
323
+ - Bump @fluentui/react-drawer to v9.6.3 ([PR #33372](https://github.com/microsoft/fluentui/pull/33372) by beachball)
324
+ - Bump @fluentui/react-jsx-runtime to v9.0.47 ([PR #33372](https://github.com/microsoft/fluentui/pull/33372) by beachball)
325
+ - Bump @fluentui/react-shared-contexts to v9.21.1 ([PR #33372](https://github.com/microsoft/fluentui/pull/33372) by beachball)
326
+ - Bump @fluentui/react-tabster to v9.23.1 ([PR #33372](https://github.com/microsoft/fluentui/pull/33372) by beachball)
327
+ - Bump @fluentui/react-theme to v9.1.23 ([PR #33372](https://github.com/microsoft/fluentui/pull/33372) by beachball)
328
+ - Bump @fluentui/react-utilities to v9.18.18 ([PR #33372](https://github.com/microsoft/fluentui/pull/33372) by beachball)
329
+
330
+ ## [0.10.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.10.2)
331
+
332
+ Thu, 28 Nov 2024 09:30:54 GMT
333
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.10.1..@fluentui/react-nav-preview_v0.10.2)
334
+
335
+ ### Patches
336
+
337
+ - Bump @fluentui/react-drawer to v9.6.2 ([PR #33331](https://github.com/microsoft/fluentui/pull/33331) by beachball)
338
+
339
+ ## [0.10.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.10.1)
340
+
341
+ Mon, 18 Nov 2024 09:44:40 GMT
342
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.10.0..@fluentui/react-nav-preview_v0.10.1)
343
+
344
+ ### Patches
345
+
346
+ - Bump @fluentui/react-tooltip to v9.4.43 ([PR #33229](https://github.com/microsoft/fluentui/pull/33229) by beachball)
347
+ - Bump @fluentui/react-drawer to v9.6.1 ([PR #33229](https://github.com/microsoft/fluentui/pull/33229) by beachball)
348
+
349
+ ## [0.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.10.0)
350
+
351
+ Tue, 12 Nov 2024 09:31:26 GMT
352
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.9.2..@fluentui/react-nav-preview_v0.10.0)
353
+
354
+ ### Minor changes
355
+
356
+ - feat: Exposed 'tabbable' prop on NavDrawer to let consumers disagree with default arrowing opinion. ([PR #33232](https://github.com/microsoft/fluentui/pull/33232) by matejera@microsoft.com)
357
+ - Bump @fluentui/react-drawer to v9.6.0 ([commit](https://github.com/microsoft/fluentui/commit/fc7240b48f7441d9fbf62d600c41c25c57ebac3b) by beachball)
358
+
359
+ ## [0.9.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.9.2)
360
+
361
+ Mon, 11 Nov 2024 10:00:48 GMT
362
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.9.1..@fluentui/react-nav-preview_v0.9.2)
363
+
364
+ ### Patches
365
+
366
+ - chore: replace npm-scripts and just-scrtips with nx inferred tasks ([PR #33074](https://github.com/microsoft/fluentui/pull/33074) by martinhochel@microsoft.com)
367
+ - style: resolve exposed jsx pragma lint issues within monorepo ([PR #32975](https://github.com/microsoft/fluentui/pull/32975) by martinhochel@microsoft.com)
368
+ - Bump @fluentui/react-aria to v9.13.9 ([PR #33238](https://github.com/microsoft/fluentui/pull/33238) by beachball)
369
+ - Bump @fluentui/react-button to v9.3.95 ([PR #33238](https://github.com/microsoft/fluentui/pull/33238) by beachball)
370
+ - Bump @fluentui/react-tooltip to v9.4.42 ([PR #33238](https://github.com/microsoft/fluentui/pull/33238) by beachball)
371
+ - Bump @fluentui/react-context-selector to v9.1.69 ([PR #33238](https://github.com/microsoft/fluentui/pull/33238) by beachball)
372
+ - Bump @fluentui/react-divider to v9.2.77 ([PR #33238](https://github.com/microsoft/fluentui/pull/33238) by beachball)
373
+ - Bump @fluentui/react-drawer to v9.5.19 ([PR #33238](https://github.com/microsoft/fluentui/pull/33238) by beachball)
374
+ - Bump @fluentui/react-jsx-runtime to v9.0.46 ([PR #33238](https://github.com/microsoft/fluentui/pull/33238) by beachball)
375
+ - Bump @fluentui/react-shared-contexts to v9.21.0 ([PR #33238](https://github.com/microsoft/fluentui/pull/33238) by beachball)
376
+ - Bump @fluentui/react-tabster to v9.23.0 ([PR #33238](https://github.com/microsoft/fluentui/pull/33238) by beachball)
377
+ - Bump @fluentui/react-theme to v9.1.22 ([PR #33238](https://github.com/microsoft/fluentui/pull/33238) by beachball)
378
+ - Bump @fluentui/react-utilities to v9.18.17 ([PR #33238](https://github.com/microsoft/fluentui/pull/33238) by beachball)
379
+
380
+ ## [0.9.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.9.1)
381
+
382
+ Tue, 15 Oct 2024 17:17:53 GMT
383
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.9.0..@fluentui/react-nav-preview_v0.9.1)
384
+
385
+ ### Patches
386
+
387
+ - Bump @fluentui/react-aria to v9.13.8 ([PR #32999](https://github.com/microsoft/fluentui/pull/32999) by beachball)
388
+ - Bump @fluentui/react-button to v9.3.94 ([PR #32999](https://github.com/microsoft/fluentui/pull/32999) by beachball)
389
+ - Bump @fluentui/react-tooltip to v9.4.41 ([PR #32999](https://github.com/microsoft/fluentui/pull/32999) by beachball)
390
+ - Bump @fluentui/react-context-selector to v9.1.68 ([PR #32999](https://github.com/microsoft/fluentui/pull/32999) by beachball)
391
+ - Bump @fluentui/react-divider to v9.2.76 ([PR #32999](https://github.com/microsoft/fluentui/pull/32999) by beachball)
392
+ - Bump @fluentui/react-drawer to v9.5.18 ([PR #32999](https://github.com/microsoft/fluentui/pull/32999) by beachball)
393
+ - Bump @fluentui/react-jsx-runtime to v9.0.45 ([PR #32999](https://github.com/microsoft/fluentui/pull/32999) by beachball)
394
+ - Bump @fluentui/react-shared-contexts to v9.20.2 ([PR #32999](https://github.com/microsoft/fluentui/pull/32999) by beachball)
395
+ - Bump @fluentui/react-tabster to v9.22.9 ([PR #32999](https://github.com/microsoft/fluentui/pull/32999) by beachball)
396
+ - Bump @fluentui/react-theme to v9.1.21 ([PR #32999](https://github.com/microsoft/fluentui/pull/32999) by beachball)
397
+ - Bump @fluentui/react-utilities to v9.18.16 ([PR #32999](https://github.com/microsoft/fluentui/pull/32999) by beachball)
398
+
399
+ ## [0.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.9.0)
400
+
401
+ Tue, 08 Oct 2024 22:05:58 GMT
402
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.8.1..@fluentui/react-nav-preview_v0.9.0)
403
+
404
+ ### Minor changes
405
+
406
+ - feat: Build out SplitNavItem ([PR #32873](https://github.com/microsoft/fluentui/pull/32873) by matejera@microsoft.com)
407
+ - feat: Add props for SplitSubNavItems and Tooltips. Other pixel pushing on SplitNavItem ([PR #32964](https://github.com/microsoft/fluentui/pull/32964) by matejera@microsoft.com)
408
+ - Bump @fluentui/react-aria to v9.13.7 ([PR #33007](https://github.com/microsoft/fluentui/pull/33007) by beachball)
409
+ - Bump @fluentui/react-button to v9.3.93 ([PR #33007](https://github.com/microsoft/fluentui/pull/33007) by beachball)
410
+ - Bump @fluentui/react-tooltip to v9.4.40 ([PR #33007](https://github.com/microsoft/fluentui/pull/33007) by beachball)
411
+ - Bump @fluentui/react-drawer to v9.5.17 ([PR #33007](https://github.com/microsoft/fluentui/pull/33007) by beachball)
412
+ - Bump @fluentui/react-tabster to v9.22.8 ([PR #33007](https://github.com/microsoft/fluentui/pull/33007) by beachball)
413
+
414
+ ## [0.8.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.8.1)
415
+
416
+ Thu, 26 Sep 2024 14:15:28 GMT
417
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.8.0..@fluentui/react-nav-preview_v0.8.1)
418
+
419
+ ### Patches
420
+
421
+ - Bump @fluentui/react-button to v9.3.92 ([PR #32924](https://github.com/microsoft/fluentui/pull/32924) by beachball)
422
+ - Bump @fluentui/react-drawer to v9.5.16 ([PR #32924](https://github.com/microsoft/fluentui/pull/32924) by beachball)
423
+
424
+ ## [0.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.8.0)
425
+
426
+ Mon, 23 Sep 2024 12:40:14 GMT
427
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.7.6..@fluentui/react-nav-preview_v0.8.0)
428
+
429
+ ### Minor changes
430
+
431
+ - Scaffolds SplitNavItem ([PR #32870](https://github.com/microsoft/fluentui/pull/32870) by matejera@microsoft.com)
432
+ - [BREAKING] Removed non functional reserveSelectedNavItemSpace prop. Added defaultOpenCategories and openCategories prop and example. Updated icon selection logic for NavCategoryItem. Exports OnNavItemSelectData. ([PR #32489](https://github.com/microsoft/fluentui/pull/32489) by matejera@microsoft.com)
433
+ - Bump @fluentui/react-aria to v9.13.6 ([PR #32840](https://github.com/microsoft/fluentui/pull/32840) by beachball)
434
+ - Bump @fluentui/react-button to v9.3.91 ([PR #32840](https://github.com/microsoft/fluentui/pull/32840) by beachball)
435
+ - Bump @fluentui/react-context-selector to v9.1.67 ([PR #32840](https://github.com/microsoft/fluentui/pull/32840) by beachball)
436
+ - Bump @fluentui/react-divider to v9.2.75 ([PR #32840](https://github.com/microsoft/fluentui/pull/32840) by beachball)
437
+ - Bump @fluentui/react-drawer to v9.5.15 ([PR #32840](https://github.com/microsoft/fluentui/pull/32840) by beachball)
438
+ - Bump @fluentui/react-jsx-runtime to v9.0.44 ([PR #32840](https://github.com/microsoft/fluentui/pull/32840) by beachball)
439
+ - Bump @fluentui/react-shared-contexts to v9.20.1 ([PR #32840](https://github.com/microsoft/fluentui/pull/32840) by beachball)
440
+ - Bump @fluentui/react-tabster to v9.22.7 ([PR #32840](https://github.com/microsoft/fluentui/pull/32840) by beachball)
441
+ - Bump @fluentui/react-theme to v9.1.20 ([PR #32840](https://github.com/microsoft/fluentui/pull/32840) by beachball)
442
+ - Bump @fluentui/react-utilities to v9.18.15 ([PR #32840](https://github.com/microsoft/fluentui/pull/32840) by beachball)
443
+
444
+ ## [0.7.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.7.6)
445
+
446
+ Fri, 13 Sep 2024 00:49:25 GMT
447
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.7.5..@fluentui/react-nav-preview_v0.7.6)
448
+
449
+ ### Patches
450
+
451
+ - Bump @fluentui/react-drawer to v9.5.14 ([PR #32371](https://github.com/microsoft/fluentui/pull/32371) by beachball)
452
+
453
+ ## [0.7.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.7.5)
454
+
455
+ Tue, 10 Sep 2024 10:19:12 GMT
456
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.7.4..@fluentui/react-nav-preview_v0.7.5)
457
+
458
+ ### Patches
459
+
460
+ - Bump @fluentui/react-aria to v9.13.5 ([PR #32494](https://github.com/microsoft/fluentui/pull/32494) by beachball)
461
+ - Bump @fluentui/react-button to v9.3.90 ([PR #32494](https://github.com/microsoft/fluentui/pull/32494) by beachball)
462
+ - Bump @fluentui/react-context-selector to v9.1.66 ([PR #32494](https://github.com/microsoft/fluentui/pull/32494) by beachball)
463
+ - Bump @fluentui/react-divider to v9.2.74 ([PR #32494](https://github.com/microsoft/fluentui/pull/32494) by beachball)
464
+ - Bump @fluentui/react-drawer to v9.5.13 ([PR #32494](https://github.com/microsoft/fluentui/pull/32494) by beachball)
465
+ - Bump @fluentui/react-jsx-runtime to v9.0.43 ([PR #32494](https://github.com/microsoft/fluentui/pull/32494) by beachball)
466
+ - Bump @fluentui/react-tabster to v9.22.6 ([PR #32494](https://github.com/microsoft/fluentui/pull/32494) by beachball)
467
+ - Bump @fluentui/react-utilities to v9.18.14 ([PR #32494](https://github.com/microsoft/fluentui/pull/32494) by beachball)
468
+
469
+ ## [0.7.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.7.4)
470
+
471
+ Fri, 16 Aug 2024 10:24:17 GMT
472
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.7.3..@fluentui/react-nav-preview_v0.7.4)
473
+
474
+ ### Patches
475
+
476
+ - Bump @fluentui/react-drawer to v9.5.12 ([PR #32316](https://github.com/microsoft/fluentui/pull/32316) by beachball)
477
+
478
+ ## [0.7.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.7.3)
479
+
480
+ Thu, 15 Aug 2024 13:49:46 GMT
481
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.7.2..@fluentui/react-nav-preview_v0.7.3)
482
+
483
+ ### Patches
484
+
485
+ - Bump @fluentui/react-aria to v9.13.4 ([PR #32313](https://github.com/microsoft/fluentui/pull/32313) by beachball)
486
+ - Bump @fluentui/react-button to v9.3.89 ([PR #32313](https://github.com/microsoft/fluentui/pull/32313) by beachball)
487
+ - Bump @fluentui/react-drawer to v9.5.11 ([PR #32313](https://github.com/microsoft/fluentui/pull/32313) by beachball)
488
+ - Bump @fluentui/react-tabster to v9.22.5 ([PR #32313](https://github.com/microsoft/fluentui/pull/32313) by beachball)
489
+
490
+ ## [0.7.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.7.2)
491
+
492
+ Thu, 15 Aug 2024 08:22:17 GMT
493
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.7.1..@fluentui/react-nav-preview_v0.7.2)
494
+
495
+ ### Patches
496
+
497
+ - Bump @fluentui/react-aria to v9.13.3 ([PR #31885](https://github.com/microsoft/fluentui/pull/31885) by beachball)
498
+ - Bump @fluentui/react-button to v9.3.88 ([PR #31885](https://github.com/microsoft/fluentui/pull/31885) by beachball)
499
+ - Bump @fluentui/react-drawer to v9.5.10 ([PR #31885](https://github.com/microsoft/fluentui/pull/31885) by beachball)
500
+ - Bump @fluentui/react-tabster to v9.22.4 ([PR #31885](https://github.com/microsoft/fluentui/pull/31885) by beachball)
501
+
502
+ ## [0.7.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.7.1)
503
+
504
+ Tue, 06 Aug 2024 21:40:45 GMT
505
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.7.0..@fluentui/react-nav-preview_v0.7.1)
506
+
507
+ ### Patches
508
+
509
+ - Bump @fluentui/react-drawer to v9.5.9 ([PR #32200](https://github.com/microsoft/fluentui/pull/32200) by beachball)
510
+
511
+ ## [0.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.7.0)
512
+
513
+ Mon, 05 Aug 2024 22:33:03 GMT
514
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.6.0..@fluentui/react-nav-preview_v0.7.0)
515
+
516
+ ### Minor changes
517
+
518
+ - feat: Builds out and styles AppItemStatic ([PR #32161](https://github.com/microsoft/fluentui/pull/32161) by matejera@microsoft.com)
519
+ - Bump @fluentui/react-drawer to v9.5.8 ([PR #32077](https://github.com/microsoft/fluentui/pull/32077) by beachball)
520
+
521
+ ## [0.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.6.0)
522
+
523
+ Tue, 30 Jul 2024 18:47:33 GMT
524
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.5.3..@fluentui/react-nav-preview_v0.6.0)
525
+
526
+ ### Minor changes
527
+
528
+ - Adds AppItem and AppItemStatic, removes AppNode ([PR #32088](https://github.com/microsoft/fluentui/pull/32088) by matejera@microsoft.com)
529
+ - feat: Adds slots & styling for AppItem. ([PR #32103](https://github.com/microsoft/fluentui/pull/32103) by matejera@microsoft.com)
530
+ - Bump @fluentui/react-drawer to v9.5.7 ([PR #32157](https://github.com/microsoft/fluentui/pull/32157) by beachball)
531
+
532
+ ### Patches
533
+
534
+ - chore: update types for navDrawerClassNames ([PR #31668](https://github.com/microsoft/fluentui/pull/31668) by olfedias@microsoft.com)
535
+
536
+ ## [0.5.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.5.3)
537
+
538
+ Tue, 23 Jul 2024 20:13:14 GMT
539
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.5.2..@fluentui/react-nav-preview_v0.5.3)
540
+
541
+ ### Patches
542
+
543
+ - Bump @fluentui/react-aria to v9.13.2 ([PR #32067](https://github.com/microsoft/fluentui/pull/32067) by beachball)
544
+ - Bump @fluentui/react-button to v9.3.87 ([PR #32067](https://github.com/microsoft/fluentui/pull/32067) by beachball)
545
+ - Bump @fluentui/react-context-selector to v9.1.65 ([PR #32067](https://github.com/microsoft/fluentui/pull/32067) by beachball)
546
+ - Bump @fluentui/react-divider to v9.2.73 ([PR #32067](https://github.com/microsoft/fluentui/pull/32067) by beachball)
547
+ - Bump @fluentui/react-drawer to v9.5.6 ([PR #32067](https://github.com/microsoft/fluentui/pull/32067) by beachball)
548
+ - Bump @fluentui/react-jsx-runtime to v9.0.42 ([PR #32067](https://github.com/microsoft/fluentui/pull/32067) by beachball)
549
+ - Bump @fluentui/react-shared-contexts to v9.20.0 ([PR #32067](https://github.com/microsoft/fluentui/pull/32067) by beachball)
550
+ - Bump @fluentui/react-tabster to v9.22.3 ([PR #32067](https://github.com/microsoft/fluentui/pull/32067) by beachball)
551
+ - Bump @fluentui/react-utilities to v9.18.13 ([PR #32067](https://github.com/microsoft/fluentui/pull/32067) by beachball)
552
+
553
+ ## [0.5.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.5.2)
554
+
555
+ Mon, 15 Jul 2024 17:25:37 GMT
556
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.5.1..@fluentui/react-nav-preview_v0.5.2)
557
+
558
+ ### Patches
559
+
560
+ - fix: revert incorectly set npm versions in all packages ([PR #31937](https://github.com/microsoft/fluentui/pull/31937) by martinhochel@microsoft.com)
561
+ - Bump @fluentui/react-aria to v9.13.1 ([PR #31998](https://github.com/microsoft/fluentui/pull/31998) by beachball)
562
+ - Bump @fluentui/react-button to v9.3.86 ([PR #31998](https://github.com/microsoft/fluentui/pull/31998) by beachball)
563
+ - Bump @fluentui/react-context-selector to v9.1.64 ([PR #31998](https://github.com/microsoft/fluentui/pull/31998) by beachball)
564
+ - Bump @fluentui/react-divider to v9.2.72 ([PR #31998](https://github.com/microsoft/fluentui/pull/31998) by beachball)
565
+ - Bump @fluentui/react-drawer to v9.5.5 ([PR #31998](https://github.com/microsoft/fluentui/pull/31998) by beachball)
566
+ - Bump @fluentui/react-jsx-runtime to v9.0.41 ([PR #31998](https://github.com/microsoft/fluentui/pull/31998) by beachball)
567
+ - Bump @fluentui/react-shared-contexts to v9.19.1 ([PR #31998](https://github.com/microsoft/fluentui/pull/31998) by beachball)
568
+ - Bump @fluentui/react-tabster to v9.22.2 ([PR #31998](https://github.com/microsoft/fluentui/pull/31998) by beachball)
569
+ - Bump @fluentui/react-utilities to v9.18.12 ([PR #31998](https://github.com/microsoft/fluentui/pull/31998) by beachball)
570
+
571
+ ## [0.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.5.1)
572
+
573
+ Thu, 04 Jul 2024 15:14:36 GMT
574
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.5.0..@fluentui/react-nav-preview_v0.5.1)
575
+
576
+ ### Patches
577
+
578
+ - Bump @fluentui/react-drawer to v9.5.4 ([PR #31893](https://github.com/microsoft/fluentui/pull/31893) by beachball)
579
+
580
+ ## [0.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.5.0)
581
+
582
+ Mon, 01 Jul 2024 20:30:24 GMT
583
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.4.1..@fluentui/react-nav-preview_v0.5.0)
584
+
585
+ ### Minor changes
586
+
587
+ - feat: Adds animation to selection indicator and icon. ([PR #31720](https://github.com/microsoft/fluentui/pull/31720) by matejera@microsoft.com)
588
+ - feat: Adds NavDivider implementation ([PR #31848](https://github.com/microsoft/fluentui/pull/31848) by matejera@microsoft.com)
589
+ - Bump @fluentui/react-aria to v9.13.0 ([PR #31861](https://github.com/microsoft/fluentui/pull/31861) by beachball)
590
+ - Bump @fluentui/react-button to v9.3.85 ([PR #31861](https://github.com/microsoft/fluentui/pull/31861) by beachball)
591
+ - Bump @fluentui/react-context-selector to v9.1.63 ([PR #31861](https://github.com/microsoft/fluentui/pull/31861) by beachball)
592
+ - Bump @fluentui/react-divider to v9.2.71 ([PR #31861](https://github.com/microsoft/fluentui/pull/31861) by beachball)
593
+ - Bump @fluentui/react-drawer to v9.5.3 ([PR #31861](https://github.com/microsoft/fluentui/pull/31861) by beachball)
594
+ - Bump @fluentui/react-jsx-runtime to v9.0.40 ([PR #31861](https://github.com/microsoft/fluentui/pull/31861) by beachball)
595
+ - Bump @fluentui/react-tabster to v9.22.1 ([PR #31861](https://github.com/microsoft/fluentui/pull/31861) by beachball)
596
+ - Bump @fluentui/react-utilities to v9.18.11 ([PR #31861](https://github.com/microsoft/fluentui/pull/31861) by beachball)
597
+
598
+ ### Patches
599
+
600
+ - chore: Update react-icons package to ^2.0.245 ([PR #31802](https://github.com/microsoft/fluentui/pull/31802) by ololubek@microsoft.com)
601
+ - Scaffolds NavDivider and AppNode ([PR #31836](https://github.com/microsoft/fluentui/pull/31836) by matejera@microsoft.com)
602
+ - fix: Addresses icon and indicator Windows and Teams Theme high contrast issues. ([PR #31704](https://github.com/microsoft/fluentui/pull/31704) by matejera@microsoft.com)
603
+ - chore: add eslint react-compiler ([PR #31457](https://github.com/microsoft/fluentui/pull/31457) by seanmonahan@microsoft.com)
604
+ - fix: Adds aria-expanded to NavCategoryItem ([PR #31837](https://github.com/microsoft/fluentui/pull/31837) by matejera@microsoft.com)
605
+
606
+ ## [0.4.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.4.1)
607
+
608
+ Mon, 17 Jun 2024 07:34:17 GMT
609
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.4.0..@fluentui/react-nav-preview_v0.4.1)
610
+
611
+ ### Patches
612
+
613
+ - Bump @fluentui/react-aria to v9.12.1 ([commit](https://github.com/microsoft/fluentui/commit/9ae683c22f2e65d94422a571ad5d3f97d0a77234) by beachball)
614
+ - Bump @fluentui/react-context-selector to v9.1.62 ([commit](https://github.com/microsoft/fluentui/commit/9ae683c22f2e65d94422a571ad5d3f97d0a77234) by beachball)
615
+ - Bump @fluentui/react-tabster to v9.22.0 ([commit](https://github.com/microsoft/fluentui/commit/9ae683c22f2e65d94422a571ad5d3f97d0a77234) by beachball)
616
+ - Bump @fluentui/react-button to v9.3.84 ([commit](https://github.com/microsoft/fluentui/commit/9ae683c22f2e65d94422a571ad5d3f97d0a77234) by beachball)
617
+ - Bump @fluentui/react-drawer to v9.5.2 ([commit](https://github.com/microsoft/fluentui/commit/9ae683c22f2e65d94422a571ad5d3f97d0a77234) by beachball)
618
+
619
+ ## [0.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.4.0)
620
+
621
+ Wed, 12 Jun 2024 13:17:20 GMT
622
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.3.0..@fluentui/react-nav-preview_v0.4.0)
623
+
624
+ ### Minor changes
625
+
626
+ - feat: Adding small size variant. ([PR #31589](https://github.com/microsoft/fluentui/pull/31589) by matejera@microsoft.com)
627
+ - (chore): Remove NavDrawerHeaderNav component. ([PR #31646](https://github.com/microsoft/fluentui/pull/31646) by matejera@microsoft.com)
628
+ - Bump @fluentui/react-drawer to v9.5.1 ([PR #31681](https://github.com/microsoft/fluentui/pull/31681) by beachball)
629
+
630
+ ### Patches
631
+
632
+ - feat: Adding roles and current where appropriate. ([PR #31649](https://github.com/microsoft/fluentui/pull/31649) by matejera@microsoft.com)
633
+
634
+ ## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.3.0)
635
+
636
+ Thu, 06 Jun 2024 15:26:36 GMT
637
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.2.1..@fluentui/react-nav-preview_v0.3.0)
638
+
639
+ ### Minor changes
640
+
641
+ - chore: Recomposing NavSectionHeader and Hamburger. Removing HamburgerInNav. Some other pixel pushing. ([PR #31387](https://github.com/microsoft/fluentui/pull/31387) by matejera@microsoft.com)
642
+ - Bump @fluentui/react-aria to v9.12.0 ([PR #31586](https://github.com/microsoft/fluentui/pull/31586) by beachball)
643
+ - Bump @fluentui/react-context-selector to v9.1.61 ([PR #31586](https://github.com/microsoft/fluentui/pull/31586) by beachball)
644
+ - Bump @fluentui/react-tabster to v9.21.5 ([PR #31586](https://github.com/microsoft/fluentui/pull/31586) by beachball)
645
+ - Bump @fluentui/react-jsx-runtime to v9.0.39 ([PR #31586](https://github.com/microsoft/fluentui/pull/31586) by beachball)
646
+ - Bump @fluentui/react-button to v9.3.83 ([PR #31586](https://github.com/microsoft/fluentui/pull/31586) by beachball)
647
+ - Bump @fluentui/react-drawer to v9.5.0 ([PR #31586](https://github.com/microsoft/fluentui/pull/31586) by beachball)
648
+ - Bump @fluentui/react-utilities to v9.18.10 ([PR #31586](https://github.com/microsoft/fluentui/pull/31586) by beachball)
649
+
650
+ ### Patches
651
+
652
+ - fix: compatibility with Drawer slots ([PR #31434](https://github.com/microsoft/fluentui/pull/31434) by marcosvmmoura@gmail.com)
653
+
654
+ ## [0.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.2.1)
655
+
656
+ Thu, 23 May 2024 08:02:45 GMT
657
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.2.0..@fluentui/react-nav-preview_v0.2.1)
658
+
659
+ ### Patches
660
+
661
+ - chore: replace usage of .shorthands() in styles ([PR #31458](https://github.com/microsoft/fluentui/pull/31458) by olfedias@microsoft.com)
662
+ - Bump @fluentui/react-aria to v9.11.4 ([commit](https://github.com/microsoft/fluentui/commit/03599d609e8310b08c57d1f871cffbf717d79207) by beachball)
663
+ - Bump @fluentui/react-tabster to v9.21.4 ([commit](https://github.com/microsoft/fluentui/commit/03599d609e8310b08c57d1f871cffbf717d79207) by beachball)
664
+ - Bump @fluentui/react-drawer to v9.4.0 ([commit](https://github.com/microsoft/fluentui/commit/03599d609e8310b08c57d1f871cffbf717d79207) by beachball)
665
+
666
+ ## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.2.0)
667
+
668
+ Mon, 20 May 2024 12:45:00 GMT
669
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.1.1..@fluentui/react-nav-preview_v0.2.0)
670
+
671
+ ### Minor changes
672
+
673
+ - fix: Updating types for NavItem and NavSubItem to better handle keyboarding. ([PR #31352](https://github.com/microsoft/fluentui/pull/31352) by matejera@microsoft.com)
674
+ - Bump @fluentui/react-aria to v9.11.3 ([PR #26682](https://github.com/microsoft/fluentui/pull/26682) by beachball)
675
+ - Bump @fluentui/react-context-selector to v9.1.60 ([PR #26682](https://github.com/microsoft/fluentui/pull/26682) by beachball)
676
+ - Bump @fluentui/react-shared-contexts to v9.19.0 ([PR #26682](https://github.com/microsoft/fluentui/pull/26682) by beachball)
677
+ - Bump @fluentui/react-tabster to v9.21.3 ([PR #26682](https://github.com/microsoft/fluentui/pull/26682) by beachball)
678
+ - Bump @fluentui/react-jsx-runtime to v9.0.38 ([PR #26682](https://github.com/microsoft/fluentui/pull/26682) by beachball)
679
+ - Bump @fluentui/react-drawer to v9.3.2 ([PR #26682](https://github.com/microsoft/fluentui/pull/26682) by beachball)
680
+ - Bump @fluentui/react-utilities to v9.18.9 ([PR #26682](https://github.com/microsoft/fluentui/pull/26682) by beachball)
681
+
682
+ ### Patches
683
+
684
+ - chore: bump @griffel/react ([PR #31258](https://github.com/microsoft/fluentui/pull/31258) by olfedias@microsoft.com)
685
+
686
+ ## [0.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.1.1)
687
+
688
+ Thu, 16 May 2024 09:25:16 GMT
689
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-nav-preview_v0.1.0..@fluentui/react-nav-preview_v0.1.1)
690
+
691
+ ### Patches
692
+
693
+ - chore: Update react-icons package to 2.0.239. ([PR #31287](https://github.com/microsoft/fluentui/pull/31287) by ololubek@microsoft.com)
694
+ - Bump @fluentui/react-drawer to v9.3.1 ([PR #31390](https://github.com/microsoft/fluentui/pull/31390) by beachball)
695
+
696
+ ## [0.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-nav-preview_v0.1.0)
697
+
698
+ Mon, 13 May 2024 12:34:19 GMT
699
+
700
+ ### Minor changes
701
+
702
+ - feat: release preview package ([PR #31304](https://github.com/microsoft/fluentui/pull/31304) by matejera@microsoft.com)
703
+ - feat: Moving styles to new recomposed components. ([PR #31313](https://github.com/microsoft/fluentui/pull/31313) by matejera@microsoft.com)
704
+ - Bump @fluentui/react-drawer to v9.3.0 ([PR #31328](https://github.com/microsoft/fluentui/pull/31328) by beachball)