@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.
- package/CHANGELOG.md +704 -0
- package/LICENSE +15 -0
- package/README.md +5 -0
- package/dist/index.d.ts +992 -0
- package/lib/AppItem.js +1 -0
- package/lib/AppItem.js.map +1 -0
- package/lib/AppItemStatic.js +1 -0
- package/lib/AppItemStatic.js.map +1 -0
- package/lib/Hamburger.js +1 -0
- package/lib/Hamburger.js.map +1 -0
- package/lib/Nav.js +3 -0
- package/lib/Nav.js.map +1 -0
- package/lib/NavCategory.js +1 -0
- package/lib/NavCategory.js.map +1 -0
- package/lib/NavDivider.js +1 -0
- package/lib/NavDivider.js.map +1 -0
- package/lib/NavDrawer.js +1 -0
- package/lib/NavDrawer.js.map +1 -0
- package/lib/NavDrawerBody.js +1 -0
- package/lib/NavDrawerBody.js.map +1 -0
- package/lib/NavDrawerFooter.js +1 -0
- package/lib/NavDrawerFooter.js.map +1 -0
- package/lib/NavDrawerHeader.js +1 -0
- package/lib/NavDrawerHeader.js.map +1 -0
- package/lib/NavItem.js +1 -0
- package/lib/NavItem.js.map +1 -0
- package/lib/NavSectionHeader.js +1 -0
- package/lib/NavSectionHeader.js.map +1 -0
- package/lib/NavSubItem.js +1 -0
- package/lib/NavSubItem.js.map +1 -0
- package/lib/NavSubItemGroup.js +1 -0
- package/lib/NavSubItemGroup.js.map +1 -0
- package/lib/SplitNavItem.js +1 -0
- package/lib/SplitNavItem.js.map +1 -0
- package/lib/components/AppItem/AppItem.js +20 -0
- package/lib/components/AppItem/AppItem.js.map +1 -0
- package/lib/components/AppItem/AppItem.types.js +3 -0
- package/lib/components/AppItem/AppItem.types.js.map +1 -0
- package/lib/components/AppItem/index.js +4 -0
- package/lib/components/AppItem/index.js.map +1 -0
- package/lib/components/AppItem/renderAppItem.js +13 -0
- package/lib/components/AppItem/renderAppItem.js.map +1 -0
- package/lib/components/AppItem/useAppItem.js +37 -0
- package/lib/components/AppItem/useAppItem.js.map +1 -0
- package/lib/components/AppItem/useAppItemStyles.styles.js +79 -0
- package/lib/components/AppItem/useAppItemStyles.styles.js.map +1 -0
- package/lib/components/AppItemStatic/AppItemStatic.js +20 -0
- package/lib/components/AppItemStatic/AppItemStatic.js.map +1 -0
- package/lib/components/AppItemStatic/AppItemStatic.types.js +3 -0
- package/lib/components/AppItemStatic/AppItemStatic.types.js.map +1 -0
- package/lib/components/AppItemStatic/index.js +4 -0
- package/lib/components/AppItemStatic/index.js.map +1 -0
- package/lib/components/AppItemStatic/renderAppItemStatic.js +13 -0
- package/lib/components/AppItemStatic/renderAppItemStatic.js.map +1 -0
- package/lib/components/AppItemStatic/useAppItemStatic.js +31 -0
- package/lib/components/AppItemStatic/useAppItemStatic.js.map +1 -0
- package/lib/components/AppItemStatic/useAppItemStaticStyles.styles.js +38 -0
- package/lib/components/AppItemStatic/useAppItemStaticStyles.styles.js.map +1 -0
- package/lib/components/Hamburger/Hamburger.js +15 -0
- package/lib/components/Hamburger/Hamburger.js.map +1 -0
- package/lib/components/Hamburger/Hamburger.types.js +3 -0
- package/lib/components/Hamburger/Hamburger.types.js.map +1 -0
- package/lib/components/Hamburger/index.js +3 -0
- package/lib/components/Hamburger/index.js.map +1 -0
- package/lib/components/Hamburger/useHamburger.js +15 -0
- package/lib/components/Hamburger/useHamburger.js.map +1 -0
- package/lib/components/Hamburger/useHamburgerStyles.styles.js +40 -0
- package/lib/components/Hamburger/useHamburgerStyles.styles.js.map +1 -0
- package/lib/components/Nav/Nav.js +14 -0
- package/lib/components/Nav/Nav.js.map +1 -0
- package/lib/components/Nav/Nav.types.js +1 -0
- package/lib/components/Nav/Nav.types.js.map +1 -0
- package/lib/components/Nav/index.js +4 -0
- package/lib/components/Nav/index.js.map +1 -0
- package/lib/components/Nav/renderNav.js +10 -0
- package/lib/components/Nav/renderNav.js.map +1 -0
- package/lib/components/Nav/useNav.js +134 -0
- package/lib/components/Nav/useNav.js.map +1 -0
- package/lib/components/Nav/useNavStyles.styles.js +27 -0
- package/lib/components/Nav/useNavStyles.styles.js.map +1 -0
- package/lib/components/NavCategory/NavCategory.js +12 -0
- package/lib/components/NavCategory/NavCategory.js.map +1 -0
- package/lib/components/NavCategory/NavCategory.types.js +1 -0
- package/lib/components/NavCategory/NavCategory.types.js.map +1 -0
- package/lib/components/NavCategory/index.js +3 -0
- package/lib/components/NavCategory/index.js.map +1 -0
- package/lib/components/NavCategory/renderNavCategory.js +9 -0
- package/lib/components/NavCategory/renderNavCategory.js.map +1 -0
- package/lib/components/NavCategory/useNavCategory.js +20 -0
- package/lib/components/NavCategory/useNavCategory.js.map +1 -0
- package/lib/components/NavCategoryContext.js +11 -0
- package/lib/components/NavCategoryContext.js.map +1 -0
- package/lib/components/NavCategoryItem/NavCategoryItem.js +18 -0
- package/lib/components/NavCategoryItem/NavCategoryItem.js.map +1 -0
- package/lib/components/NavCategoryItem/NavCategoryItem.types.js +3 -0
- package/lib/components/NavCategoryItem/NavCategoryItem.types.js.map +1 -0
- package/lib/components/NavCategoryItem/index.js +4 -0
- package/lib/components/NavCategoryItem/index.js.map +1 -0
- package/lib/components/NavCategoryItem/renderNavCategoryItem.js +18 -0
- package/lib/components/NavCategoryItem/renderNavCategoryItem.js.map +1 -0
- package/lib/components/NavCategoryItem/useNavCategoryItem.js +58 -0
- package/lib/components/NavCategoryItem/useNavCategoryItem.js.map +1 -0
- package/lib/components/NavCategoryItem/useNavCategoryItem.styles.js +60 -0
- package/lib/components/NavCategoryItem/useNavCategoryItem.styles.js.map +1 -0
- package/lib/components/NavCategoryItemContext.js +10 -0
- package/lib/components/NavCategoryItemContext.js.map +1 -0
- package/lib/components/NavContext.js +30 -0
- package/lib/components/NavContext.js.map +1 -0
- package/lib/components/NavContext.types.js +1 -0
- package/lib/components/NavContext.types.js.map +1 -0
- package/lib/components/NavDivider/NavDivider.js +15 -0
- package/lib/components/NavDivider/NavDivider.js.map +1 -0
- package/lib/components/NavDivider/NavDivider.types.js +3 -0
- package/lib/components/NavDivider/NavDivider.types.js.map +1 -0
- package/lib/components/NavDivider/index.js +3 -0
- package/lib/components/NavDivider/index.js.map +1 -0
- package/lib/components/NavDivider/useNavDivider.js +16 -0
- package/lib/components/NavDivider/useNavDivider.js.map +1 -0
- package/lib/components/NavDivider/useNavDividerStyles.styles.js +27 -0
- package/lib/components/NavDivider/useNavDividerStyles.styles.js.map +1 -0
- package/lib/components/NavDrawer/NavDrawer.js +18 -0
- package/lib/components/NavDrawer/NavDrawer.js.map +1 -0
- package/lib/components/NavDrawer/NavDrawer.types.js +3 -0
- package/lib/components/NavDrawer/NavDrawer.types.js.map +1 -0
- package/lib/components/NavDrawer/index.js +4 -0
- package/lib/components/NavDrawer/index.js.map +1 -0
- package/lib/components/NavDrawer/renderNavDrawer.js +10 -0
- package/lib/components/NavDrawer/renderNavDrawer.js.map +1 -0
- package/lib/components/NavDrawer/useNavDrawer.js +47 -0
- package/lib/components/NavDrawer/useNavDrawer.js.map +1 -0
- package/lib/components/NavDrawer/useNavDrawerStyles.styles.js +32 -0
- package/lib/components/NavDrawer/useNavDrawerStyles.styles.js.map +1 -0
- package/lib/components/NavDrawerBody/NavDrawerBody.js +15 -0
- package/lib/components/NavDrawerBody/NavDrawerBody.js.map +1 -0
- package/lib/components/NavDrawerBody/NavDrawerBody.types.js +3 -0
- package/lib/components/NavDrawerBody/NavDrawerBody.types.js.map +1 -0
- package/lib/components/NavDrawerBody/index.js +3 -0
- package/lib/components/NavDrawerBody/index.js.map +1 -0
- package/lib/components/NavDrawerBody/useNavDrawerBody.js +13 -0
- package/lib/components/NavDrawerBody/useNavDrawerBody.js.map +1 -0
- package/lib/components/NavDrawerBody/useNavDrawerBodyStyles.styles.js +39 -0
- package/lib/components/NavDrawerBody/useNavDrawerBodyStyles.styles.js.map +1 -0
- package/lib/components/NavDrawerFooter/NavDrawerFooter.js +15 -0
- package/lib/components/NavDrawerFooter/NavDrawerFooter.js.map +1 -0
- package/lib/components/NavDrawerFooter/NavDrawerFooter.types.js +3 -0
- package/lib/components/NavDrawerFooter/NavDrawerFooter.types.js.map +1 -0
- package/lib/components/NavDrawerFooter/index.js +3 -0
- package/lib/components/NavDrawerFooter/index.js.map +1 -0
- package/lib/components/NavDrawerFooter/useNavDrawerFooter.js +13 -0
- package/lib/components/NavDrawerFooter/useNavDrawerFooter.js.map +1 -0
- package/lib/components/NavDrawerFooter/useNavDrawerFooterStyles.styles.js +36 -0
- package/lib/components/NavDrawerFooter/useNavDrawerFooterStyles.styles.js.map +1 -0
- package/lib/components/NavDrawerHeader/NavDrawerHeader.js +15 -0
- package/lib/components/NavDrawerHeader/NavDrawerHeader.js.map +1 -0
- package/lib/components/NavDrawerHeader/NavDrawerHeader.types.js +3 -0
- package/lib/components/NavDrawerHeader/NavDrawerHeader.types.js.map +1 -0
- package/lib/components/NavDrawerHeader/index.js +3 -0
- package/lib/components/NavDrawerHeader/index.js.map +1 -0
- package/lib/components/NavDrawerHeader/useNavDrawerHeader.js +13 -0
- package/lib/components/NavDrawerHeader/useNavDrawerHeader.js.map +1 -0
- package/lib/components/NavDrawerHeader/useNavDrawerHeaderStyles.styles.js +38 -0
- package/lib/components/NavDrawerHeader/useNavDrawerHeaderStyles.styles.js.map +1 -0
- package/lib/components/NavItem/NavItem.js +16 -0
- package/lib/components/NavItem/NavItem.js.map +1 -0
- package/lib/components/NavItem/NavItem.types.js +3 -0
- package/lib/components/NavItem/NavItem.types.js.map +1 -0
- package/lib/components/NavItem/index.js +4 -0
- package/lib/components/NavItem/index.js.map +1 -0
- package/lib/components/NavItem/renderNavItem.js +13 -0
- package/lib/components/NavItem/renderNavItem.js.map +1 -0
- package/lib/components/NavItem/useNavItem.js +70 -0
- package/lib/components/NavItem/useNavItem.js.map +1 -0
- package/lib/components/NavItem/useNavItemStyles.styles.js +27 -0
- package/lib/components/NavItem/useNavItemStyles.styles.js.map +1 -0
- package/lib/components/NavSectionHeader/NavSectionHeader.js +15 -0
- package/lib/components/NavSectionHeader/NavSectionHeader.js.map +1 -0
- package/lib/components/NavSectionHeader/NavSectionHeader.types.js +4 -0
- package/lib/components/NavSectionHeader/NavSectionHeader.types.js.map +1 -0
- package/lib/components/NavSectionHeader/index.js +4 -0
- package/lib/components/NavSectionHeader/index.js.map +1 -0
- package/lib/components/NavSectionHeader/renderNavSectionHeader.js +8 -0
- package/lib/components/NavSectionHeader/renderNavSectionHeader.js.map +1 -0
- package/lib/components/NavSectionHeader/useNavSectionHeader.js +23 -0
- package/lib/components/NavSectionHeader/useNavSectionHeader.js.map +1 -0
- package/lib/components/NavSectionHeader/useNavSectionHeaderStyles.styles.js +34 -0
- package/lib/components/NavSectionHeader/useNavSectionHeaderStyles.styles.js.map +1 -0
- package/lib/components/NavSubItem/NavSubItem.js +16 -0
- package/lib/components/NavSubItem/NavSubItem.js.map +1 -0
- package/lib/components/NavSubItem/NavSubItem.types.js +3 -0
- package/lib/components/NavSubItem/NavSubItem.types.js.map +1 -0
- package/lib/components/NavSubItem/index.js +4 -0
- package/lib/components/NavSubItem/index.js.map +1 -0
- package/lib/components/NavSubItem/renderNavSubItem.js +8 -0
- package/lib/components/NavSubItem/renderNavSubItem.js.map +1 -0
- package/lib/components/NavSubItem/useNavSubItem.js +69 -0
- package/lib/components/NavSubItem/useNavSubItem.js.map +1 -0
- package/lib/components/NavSubItem/useNavSubItemStyles.styles.js +39 -0
- package/lib/components/NavSubItem/useNavSubItemStyles.styles.js.map +1 -0
- package/lib/components/NavSubItemContext.js +11 -0
- package/lib/components/NavSubItemContext.js.map +1 -0
- package/lib/components/NavSubItemGroup/NavSubItemGroup.js +16 -0
- package/lib/components/NavSubItemGroup/NavSubItemGroup.js.map +1 -0
- package/lib/components/NavSubItemGroup/NavSubItemGroup.types.js +3 -0
- package/lib/components/NavSubItemGroup/NavSubItemGroup.types.js.map +1 -0
- package/lib/components/NavSubItemGroup/index.js +4 -0
- package/lib/components/NavSubItemGroup/index.js.map +1 -0
- package/lib/components/NavSubItemGroup/renderNavSubItemGroup.js +10 -0
- package/lib/components/NavSubItemGroup/renderNavSubItemGroup.js.map +1 -0
- package/lib/components/NavSubItemGroup/useNavSubItemGroup.js +29 -0
- package/lib/components/NavSubItemGroup/useNavSubItemGroup.js.map +1 -0
- package/lib/components/NavSubItemGroup/useNavSubItemGroupStyles.styles.js +22 -0
- package/lib/components/NavSubItemGroup/useNavSubItemGroupStyles.styles.js.map +1 -0
- package/lib/components/SplitNavItem/SplitNavItem.js +20 -0
- package/lib/components/SplitNavItem/SplitNavItem.js.map +1 -0
- package/lib/components/SplitNavItem/SplitNavItem.types.js +3 -0
- package/lib/components/SplitNavItem/SplitNavItem.types.js.map +1 -0
- package/lib/components/SplitNavItem/index.js +4 -0
- package/lib/components/SplitNavItem/index.js.map +1 -0
- package/lib/components/SplitNavItem/renderSplitNavItem.js +24 -0
- package/lib/components/SplitNavItem/renderSplitNavItem.js.map +1 -0
- package/lib/components/SplitNavItem/useSplitNavItem.js +101 -0
- package/lib/components/SplitNavItem/useSplitNavItem.js.map +1 -0
- package/lib/components/SplitNavItem/useSplitNavItemStyles.styles.js +98 -0
- package/lib/components/SplitNavItem/useSplitNavItemStyles.styles.js.map +1 -0
- package/lib/components/sharedNavStyles.styles.js +147 -0
- package/lib/components/sharedNavStyles.styles.js.map +1 -0
- package/lib/components/useNavCategoryContextValues_unstable.js +14 -0
- package/lib/components/useNavCategoryContextValues_unstable.js.map +1 -0
- package/lib/components/useNavCategoryItemContextValues_unstable.js +14 -0
- package/lib/components/useNavCategoryItemContextValues_unstable.js.map +1 -0
- package/lib/components/useNavContextValues.js +30 -0
- package/lib/components/useNavContextValues.js.map +1 -0
- package/lib/index.js +22 -0
- package/lib/index.js.map +1 -0
- package/lib-commonjs/AppItem.js +31 -0
- package/lib-commonjs/AppItem.js.map +1 -0
- package/lib-commonjs/AppItemStatic.js +28 -0
- package/lib-commonjs/AppItemStatic.js.map +1 -0
- package/lib-commonjs/Hamburger.js +25 -0
- package/lib-commonjs/Hamburger.js.map +1 -0
- package/lib-commonjs/Nav.js +51 -0
- package/lib-commonjs/Nav.js.map +1 -0
- package/lib-commonjs/NavCategory.js +22 -0
- package/lib-commonjs/NavCategory.js.map +1 -0
- package/lib-commonjs/NavDivider.js +25 -0
- package/lib-commonjs/NavDivider.js.map +1 -0
- package/lib-commonjs/NavDrawer.js +28 -0
- package/lib-commonjs/NavDrawer.js.map +1 -0
- package/lib-commonjs/NavDrawerBody.js +25 -0
- package/lib-commonjs/NavDrawerBody.js.map +1 -0
- package/lib-commonjs/NavDrawerFooter.js +25 -0
- package/lib-commonjs/NavDrawerFooter.js.map +1 -0
- package/lib-commonjs/NavDrawerHeader.js +25 -0
- package/lib-commonjs/NavDrawerHeader.js.map +1 -0
- package/lib-commonjs/NavItem.js +28 -0
- package/lib-commonjs/NavItem.js.map +1 -0
- package/lib-commonjs/NavSectionHeader.js +28 -0
- package/lib-commonjs/NavSectionHeader.js.map +1 -0
- package/lib-commonjs/NavSubItem.js +28 -0
- package/lib-commonjs/NavSubItem.js.map +1 -0
- package/lib-commonjs/NavSubItemGroup.js +28 -0
- package/lib-commonjs/NavSubItemGroup.js.map +1 -0
- package/lib-commonjs/SplitNavItem.js +28 -0
- package/lib-commonjs/SplitNavItem.js.map +1 -0
- package/lib-commonjs/components/AppItem/AppItem.js +29 -0
- package/lib-commonjs/components/AppItem/AppItem.js.map +1 -0
- package/lib-commonjs/components/AppItem/AppItem.types.js +6 -0
- package/lib-commonjs/components/AppItem/AppItem.types.js.map +1 -0
- package/lib-commonjs/components/AppItem/index.js +34 -0
- package/lib-commonjs/components/AppItem/index.js.map +1 -0
- package/lib-commonjs/components/AppItem/renderAppItem.js +21 -0
- package/lib-commonjs/components/AppItem/renderAppItem.js.map +1 -0
- package/lib-commonjs/components/AppItem/useAppItem.js +40 -0
- package/lib-commonjs/components/AppItem/useAppItem.js.map +1 -0
- package/lib-commonjs/components/AppItem/useAppItemStyles.styles.js +133 -0
- package/lib-commonjs/components/AppItem/useAppItemStyles.styles.js.map +1 -0
- package/lib-commonjs/components/AppItemStatic/AppItemStatic.js +29 -0
- package/lib-commonjs/components/AppItemStatic/AppItemStatic.js.map +1 -0
- package/lib-commonjs/components/AppItemStatic/AppItemStatic.types.js +6 -0
- package/lib-commonjs/components/AppItemStatic/AppItemStatic.types.js.map +1 -0
- package/lib-commonjs/components/AppItemStatic/index.js +31 -0
- package/lib-commonjs/components/AppItemStatic/index.js.map +1 -0
- package/lib-commonjs/components/AppItemStatic/renderAppItemStatic.js +21 -0
- package/lib-commonjs/components/AppItemStatic/renderAppItemStatic.js.map +1 -0
- package/lib-commonjs/components/AppItemStatic/useAppItemStatic.js +34 -0
- package/lib-commonjs/components/AppItemStatic/useAppItemStatic.js.map +1 -0
- package/lib-commonjs/components/AppItemStatic/useAppItemStaticStyles.styles.js +55 -0
- package/lib-commonjs/components/AppItemStatic/useAppItemStaticStyles.styles.js.map +1 -0
- package/lib-commonjs/components/Hamburger/Hamburger.js +24 -0
- package/lib-commonjs/components/Hamburger/Hamburger.js.map +1 -0
- package/lib-commonjs/components/Hamburger/Hamburger.types.js +6 -0
- package/lib-commonjs/components/Hamburger/Hamburger.types.js.map +1 -0
- package/lib-commonjs/components/Hamburger/index.js +27 -0
- package/lib-commonjs/components/Hamburger/index.js.map +1 -0
- package/lib-commonjs/components/Hamburger/useHamburger.js +21 -0
- package/lib-commonjs/components/Hamburger/useHamburger.js.map +1 -0
- package/lib-commonjs/components/Hamburger/useHamburgerStyles.styles.js +69 -0
- package/lib-commonjs/components/Hamburger/useHamburgerStyles.styles.js.map +1 -0
- package/lib-commonjs/components/Nav/Nav.js +23 -0
- package/lib-commonjs/components/Nav/Nav.js.map +1 -0
- package/lib-commonjs/components/Nav/Nav.types.js +6 -0
- package/lib-commonjs/components/Nav/Nav.types.js.map +1 -0
- package/lib-commonjs/components/Nav/index.js +31 -0
- package/lib-commonjs/components/Nav/index.js.map +1 -0
- package/lib-commonjs/components/Nav/renderNav.js +20 -0
- package/lib-commonjs/components/Nav/renderNav.js.map +1 -0
- package/lib-commonjs/components/Nav/useNav.js +137 -0
- package/lib-commonjs/components/Nav/useNav.js.map +1 -0
- package/lib-commonjs/components/Nav/useNavStyles.styles.js +43 -0
- package/lib-commonjs/components/Nav/useNavStyles.styles.js.map +1 -0
- package/lib-commonjs/components/NavCategory/NavCategory.js +21 -0
- package/lib-commonjs/components/NavCategory/NavCategory.js.map +1 -0
- package/lib-commonjs/components/NavCategory/NavCategory.types.js +6 -0
- package/lib-commonjs/components/NavCategory/NavCategory.types.js.map +1 -0
- package/lib-commonjs/components/NavCategory/index.js +24 -0
- package/lib-commonjs/components/NavCategory/index.js.map +1 -0
- package/lib-commonjs/components/NavCategory/renderNavCategory.js +18 -0
- package/lib-commonjs/components/NavCategory/renderNavCategory.js.map +1 -0
- package/lib-commonjs/components/NavCategory/useNavCategory.js +23 -0
- package/lib-commonjs/components/NavCategory/useNavCategory.js.map +1 -0
- package/lib-commonjs/components/NavCategoryContext.js +30 -0
- package/lib-commonjs/components/NavCategoryContext.js.map +1 -0
- package/lib-commonjs/components/NavCategoryItem/NavCategoryItem.js +25 -0
- package/lib-commonjs/components/NavCategoryItem/NavCategoryItem.js.map +1 -0
- package/lib-commonjs/components/NavCategoryItem/NavCategoryItem.types.js +6 -0
- package/lib-commonjs/components/NavCategoryItem/NavCategoryItem.types.js.map +1 -0
- package/lib-commonjs/components/NavCategoryItem/index.js +31 -0
- package/lib-commonjs/components/NavCategoryItem/index.js.map +1 -0
- package/lib-commonjs/components/NavCategoryItem/renderNavCategoryItem.js +26 -0
- package/lib-commonjs/components/NavCategoryItem/renderNavCategoryItem.js.map +1 -0
- package/lib-commonjs/components/NavCategoryItem/useNavCategoryItem.js +61 -0
- package/lib-commonjs/components/NavCategoryItem/useNavCategoryItem.js.map +1 -0
- package/lib-commonjs/components/NavCategoryItem/useNavCategoryItem.styles.js +83 -0
- package/lib-commonjs/components/NavCategoryItem/useNavCategoryItem.styles.js.map +1 -0
- package/lib-commonjs/components/NavCategoryItemContext.js +29 -0
- package/lib-commonjs/components/NavCategoryItemContext.js.map +1 -0
- package/lib-commonjs/components/NavContext.js +49 -0
- package/lib-commonjs/components/NavContext.js.map +1 -0
- package/lib-commonjs/components/NavContext.types.js +6 -0
- package/lib-commonjs/components/NavContext.types.js.map +1 -0
- package/lib-commonjs/components/NavDivider/NavDivider.js +24 -0
- package/lib-commonjs/components/NavDivider/NavDivider.js.map +1 -0
- package/lib-commonjs/components/NavDivider/NavDivider.types.js +6 -0
- package/lib-commonjs/components/NavDivider/NavDivider.types.js.map +1 -0
- package/lib-commonjs/components/NavDivider/index.js +27 -0
- package/lib-commonjs/components/NavDivider/index.js.map +1 -0
- package/lib-commonjs/components/NavDivider/useNavDivider.js +19 -0
- package/lib-commonjs/components/NavDivider/useNavDivider.js.map +1 -0
- package/lib-commonjs/components/NavDivider/useNavDividerStyles.styles.js +45 -0
- package/lib-commonjs/components/NavDivider/useNavDividerStyles.styles.js.map +1 -0
- package/lib-commonjs/components/NavDrawer/NavDrawer.js +26 -0
- package/lib-commonjs/components/NavDrawer/NavDrawer.js.map +1 -0
- package/lib-commonjs/components/NavDrawer/NavDrawer.types.js +6 -0
- package/lib-commonjs/components/NavDrawer/NavDrawer.types.js.map +1 -0
- package/lib-commonjs/components/NavDrawer/index.js +31 -0
- package/lib-commonjs/components/NavDrawer/index.js.map +1 -0
- package/lib-commonjs/components/NavDrawer/renderNavDrawer.js +20 -0
- package/lib-commonjs/components/NavDrawer/renderNavDrawer.js.map +1 -0
- package/lib-commonjs/components/NavDrawer/useNavDrawer.js +50 -0
- package/lib-commonjs/components/NavDrawer/useNavDrawer.js.map +1 -0
- package/lib-commonjs/components/NavDrawer/useNavDrawerStyles.styles.js +46 -0
- package/lib-commonjs/components/NavDrawer/useNavDrawerStyles.styles.js.map +1 -0
- package/lib-commonjs/components/NavDrawerBody/NavDrawerBody.js +24 -0
- package/lib-commonjs/components/NavDrawerBody/NavDrawerBody.js.map +1 -0
- package/lib-commonjs/components/NavDrawerBody/NavDrawerBody.types.js +6 -0
- package/lib-commonjs/components/NavDrawerBody/NavDrawerBody.types.js.map +1 -0
- package/lib-commonjs/components/NavDrawerBody/index.js +27 -0
- package/lib-commonjs/components/NavDrawerBody/index.js.map +1 -0
- package/lib-commonjs/components/NavDrawerBody/useNavDrawerBody.js +16 -0
- package/lib-commonjs/components/NavDrawerBody/useNavDrawerBody.js.map +1 -0
- package/lib-commonjs/components/NavDrawerBody/useNavDrawerBodyStyles.styles.js +67 -0
- package/lib-commonjs/components/NavDrawerBody/useNavDrawerBodyStyles.styles.js.map +1 -0
- package/lib-commonjs/components/NavDrawerFooter/NavDrawerFooter.js +24 -0
- package/lib-commonjs/components/NavDrawerFooter/NavDrawerFooter.js.map +1 -0
- package/lib-commonjs/components/NavDrawerFooter/NavDrawerFooter.types.js +6 -0
- package/lib-commonjs/components/NavDrawerFooter/NavDrawerFooter.types.js.map +1 -0
- package/lib-commonjs/components/NavDrawerFooter/index.js +27 -0
- package/lib-commonjs/components/NavDrawerFooter/index.js.map +1 -0
- package/lib-commonjs/components/NavDrawerFooter/useNavDrawerFooter.js +16 -0
- package/lib-commonjs/components/NavDrawerFooter/useNavDrawerFooter.js.map +1 -0
- package/lib-commonjs/components/NavDrawerFooter/useNavDrawerFooterStyles.styles.js +56 -0
- package/lib-commonjs/components/NavDrawerFooter/useNavDrawerFooterStyles.styles.js.map +1 -0
- package/lib-commonjs/components/NavDrawerHeader/NavDrawerHeader.js +24 -0
- package/lib-commonjs/components/NavDrawerHeader/NavDrawerHeader.js.map +1 -0
- package/lib-commonjs/components/NavDrawerHeader/NavDrawerHeader.types.js +6 -0
- package/lib-commonjs/components/NavDrawerHeader/NavDrawerHeader.types.js.map +1 -0
- package/lib-commonjs/components/NavDrawerHeader/index.js +27 -0
- package/lib-commonjs/components/NavDrawerHeader/index.js.map +1 -0
- package/lib-commonjs/components/NavDrawerHeader/useNavDrawerHeader.js +16 -0
- package/lib-commonjs/components/NavDrawerHeader/useNavDrawerHeader.js.map +1 -0
- package/lib-commonjs/components/NavDrawerHeader/useNavDrawerHeaderStyles.styles.js +61 -0
- package/lib-commonjs/components/NavDrawerHeader/useNavDrawerHeaderStyles.styles.js.map +1 -0
- package/lib-commonjs/components/NavItem/NavItem.js +24 -0
- package/lib-commonjs/components/NavItem/NavItem.js.map +1 -0
- package/lib-commonjs/components/NavItem/NavItem.types.js +6 -0
- package/lib-commonjs/components/NavItem/NavItem.types.js.map +1 -0
- package/lib-commonjs/components/NavItem/index.js +31 -0
- package/lib-commonjs/components/NavItem/index.js.map +1 -0
- package/lib-commonjs/components/NavItem/renderNavItem.js +21 -0
- package/lib-commonjs/components/NavItem/renderNavItem.js.map +1 -0
- package/lib-commonjs/components/NavItem/useNavItem.js +73 -0
- package/lib-commonjs/components/NavItem/useNavItem.js.map +1 -0
- package/lib-commonjs/components/NavItem/useNavItemStyles.styles.js +38 -0
- package/lib-commonjs/components/NavItem/useNavItemStyles.styles.js.map +1 -0
- package/lib-commonjs/components/NavSectionHeader/NavSectionHeader.js +24 -0
- package/lib-commonjs/components/NavSectionHeader/NavSectionHeader.js.map +1 -0
- package/lib-commonjs/components/NavSectionHeader/NavSectionHeader.types.js +8 -0
- package/lib-commonjs/components/NavSectionHeader/NavSectionHeader.types.js.map +1 -0
- package/lib-commonjs/components/NavSectionHeader/index.js +31 -0
- package/lib-commonjs/components/NavSectionHeader/index.js.map +1 -0
- package/lib-commonjs/components/NavSectionHeader/renderNavSectionHeader.js +16 -0
- package/lib-commonjs/components/NavSectionHeader/renderNavSectionHeader.js.map +1 -0
- package/lib-commonjs/components/NavSectionHeader/useNavSectionHeader.js +26 -0
- package/lib-commonjs/components/NavSectionHeader/useNavSectionHeader.js.map +1 -0
- package/lib-commonjs/components/NavSectionHeader/useNavSectionHeaderStyles.styles.js +56 -0
- package/lib-commonjs/components/NavSectionHeader/useNavSectionHeaderStyles.styles.js.map +1 -0
- package/lib-commonjs/components/NavSubItem/NavSubItem.js +24 -0
- package/lib-commonjs/components/NavSubItem/NavSubItem.js.map +1 -0
- package/lib-commonjs/components/NavSubItem/NavSubItem.types.js +6 -0
- package/lib-commonjs/components/NavSubItem/NavSubItem.types.js.map +1 -0
- package/lib-commonjs/components/NavSubItem/index.js +31 -0
- package/lib-commonjs/components/NavSubItem/index.js.map +1 -0
- package/lib-commonjs/components/NavSubItem/renderNavSubItem.js +16 -0
- package/lib-commonjs/components/NavSubItem/renderNavSubItem.js.map +1 -0
- package/lib-commonjs/components/NavSubItem/useNavSubItem.js +72 -0
- package/lib-commonjs/components/NavSubItem/useNavSubItem.js.map +1 -0
- package/lib-commonjs/components/NavSubItem/useNavSubItemStyles.styles.js +53 -0
- package/lib-commonjs/components/NavSubItem/useNavSubItemStyles.styles.js.map +1 -0
- package/lib-commonjs/components/NavSubItemContext.js +30 -0
- package/lib-commonjs/components/NavSubItemContext.js.map +1 -0
- package/lib-commonjs/components/NavSubItemGroup/NavSubItemGroup.js +24 -0
- package/lib-commonjs/components/NavSubItemGroup/NavSubItemGroup.js.map +1 -0
- package/lib-commonjs/components/NavSubItemGroup/NavSubItemGroup.types.js +6 -0
- package/lib-commonjs/components/NavSubItemGroup/NavSubItemGroup.types.js.map +1 -0
- package/lib-commonjs/components/NavSubItemGroup/index.js +31 -0
- package/lib-commonjs/components/NavSubItemGroup/index.js.map +1 -0
- package/lib-commonjs/components/NavSubItemGroup/renderNavSubItemGroup.js +18 -0
- package/lib-commonjs/components/NavSubItemGroup/renderNavSubItemGroup.js.map +1 -0
- package/lib-commonjs/components/NavSubItemGroup/useNavSubItemGroup.js +32 -0
- package/lib-commonjs/components/NavSubItemGroup/useNavSubItemGroup.js.map +1 -0
- package/lib-commonjs/components/NavSubItemGroup/useNavSubItemGroupStyles.styles.js +35 -0
- package/lib-commonjs/components/NavSubItemGroup/useNavSubItemGroupStyles.styles.js.map +1 -0
- package/lib-commonjs/components/SplitNavItem/SplitNavItem.js +29 -0
- package/lib-commonjs/components/SplitNavItem/SplitNavItem.js.map +1 -0
- package/lib-commonjs/components/SplitNavItem/SplitNavItem.types.js +6 -0
- package/lib-commonjs/components/SplitNavItem/SplitNavItem.types.js.map +1 -0
- package/lib-commonjs/components/SplitNavItem/index.js +31 -0
- package/lib-commonjs/components/SplitNavItem/index.js.map +1 -0
- package/lib-commonjs/components/SplitNavItem/renderSplitNavItem.js +32 -0
- package/lib-commonjs/components/SplitNavItem/renderSplitNavItem.js.map +1 -0
- package/lib-commonjs/components/SplitNavItem/useSplitNavItem.js +104 -0
- package/lib-commonjs/components/SplitNavItem/useSplitNavItem.js.map +1 -0
- package/lib-commonjs/components/SplitNavItem/useSplitNavItemStyles.styles.js +149 -0
- package/lib-commonjs/components/SplitNavItem/useSplitNavItemStyles.styles.js.map +1 -0
- package/lib-commonjs/components/sharedNavStyles.styles.js +242 -0
- package/lib-commonjs/components/sharedNavStyles.styles.js.map +1 -0
- package/lib-commonjs/components/useNavCategoryContextValues_unstable.js +25 -0
- package/lib-commonjs/components/useNavCategoryContextValues_unstable.js.map +1 -0
- package/lib-commonjs/components/useNavCategoryItemContextValues_unstable.js +25 -0
- package/lib-commonjs/components/useNavCategoryItemContextValues_unstable.js.map +1 -0
- package/lib-commonjs/components/useNavContextValues.js +41 -0
- package/lib-commonjs/components/useNavContextValues.js.map +1 -0
- package/lib-commonjs/index.js +280 -0
- package/lib-commonjs/index.js.map +1 -0
- 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)
|