@atlaskit/navigation-system 0.166.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3278 -0
- package/README.md +26 -0
- package/afm-cc/tsconfig.json +75 -0
- package/afm-jira/tsconfig.json +75 -0
- package/afm-passionfruit/tsconfig.json +75 -0
- package/afm-post-office/tsconfig.json +75 -0
- package/afm-townsquare/tsconfig.json +75 -0
- package/build/tsconfig.json +17 -0
- package/constellation/index/examples.mdx +44 -0
- package/constellation/index/props.mdx +1 -0
- package/constellation/layout/code.mdx +129 -0
- package/constellation/layout/diagram.tsx +125 -0
- package/constellation/layout/examples.mdx +197 -0
- package/constellation/side-navigation/code.mdx +89 -0
- package/constellation/side-navigation/drag-and-drop.mdx +1079 -0
- package/constellation/side-navigation/examples.mdx +120 -0
- package/constellation/top-navigation/code.mdx +93 -0
- package/constellation/top-navigation/examples.mdx +167 -0
- package/dist/cjs/components/badge-container.compiled.css +7 -0
- package/dist/cjs/components/badge-container.js +37 -0
- package/dist/cjs/components/forward-ref-with-generic.js +11 -0
- package/dist/cjs/components/list-item.js +30 -0
- package/dist/cjs/components/list.js +40 -0
- package/dist/cjs/components/skip-links/skip-link.compiled.css +1 -0
- package/dist/cjs/components/skip-links/skip-link.js +121 -0
- package/dist/cjs/components/skip-links/skip-links-container.compiled.css +21 -0
- package/dist/cjs/components/skip-links/skip-links-container.js +74 -0
- package/dist/cjs/context/skip-links/skip-links-context.js +68 -0
- package/dist/cjs/context/skip-links/skip-links-data-context.js +51 -0
- package/dist/cjs/context/skip-links/skip-links-provider.js +83 -0
- package/dist/cjs/context/skip-links/types.js +1 -0
- package/dist/cjs/context/top-nav-start/top-nav-start-context-provider.js +37 -0
- package/dist/cjs/context/top-nav-start/top-nav-start-context.js +26 -0
- package/dist/cjs/entry-points/experimental/color-utils/parse-hex.js +12 -0
- package/dist/cjs/entry-points/experimental/color-utils/parse-hsl.js +12 -0
- package/dist/cjs/entry-points/experimental/color-utils/parse-rgb.js +12 -0
- package/dist/cjs/entry-points/experimental/color-utils/parse-user-color.js +12 -0
- package/dist/cjs/entry-points/experimental/top-nav-button.js +30 -0
- package/dist/cjs/entry-points/experimental/use-has-custom-theme.js +12 -0
- package/dist/cjs/entry-points/experimental/use-legacy-search-theme.js +12 -0
- package/dist/cjs/entry-points/layout/aside.js +12 -0
- package/dist/cjs/entry-points/layout/banner.js +12 -0
- package/dist/cjs/entry-points/layout/main.js +38 -0
- package/dist/cjs/entry-points/layout/panel-splitter.js +19 -0
- package/dist/cjs/entry-points/layout/panel.js +12 -0
- package/dist/cjs/entry-points/layout/root.js +12 -0
- package/dist/cjs/entry-points/layout/side-nav.js +54 -0
- package/dist/cjs/entry-points/layout/skip-links.js +19 -0
- package/dist/cjs/entry-points/layout/top-nav.js +33 -0
- package/dist/cjs/entry-points/side-nav-items/button-menu-item.js +19 -0
- package/dist/cjs/entry-points/side-nav-items/container-avatar.js +12 -0
- package/dist/cjs/entry-points/side-nav-items/drag-and-drop/drag-preview.js +12 -0
- package/dist/cjs/entry-points/side-nav-items/drag-and-drop/drop-indicator.js +12 -0
- package/dist/cjs/entry-points/side-nav-items/drag-and-drop/group-drop-indicator.js +12 -0
- package/dist/cjs/entry-points/side-nav-items/drag-and-drop/hitbox.js +18 -0
- package/dist/cjs/entry-points/side-nav-items/drag-and-drop/use-menu-item-drag-and-drop.js +12 -0
- package/dist/cjs/entry-points/side-nav-items/expandable-menu-item.js +33 -0
- package/dist/cjs/entry-points/side-nav-items/flyout-menu-item.js +26 -0
- package/dist/cjs/entry-points/side-nav-items/link-menu-item.js +19 -0
- package/dist/cjs/entry-points/side-nav-items/menu-list-item.js +12 -0
- package/dist/cjs/entry-points/side-nav-items/menu-list.js +12 -0
- package/dist/cjs/entry-points/side-nav-items/menu-section.js +26 -0
- package/dist/cjs/entry-points/side-nav-items/top-level-spacer.js +12 -0
- package/dist/cjs/entry-points/top-nav-items/create-button.js +12 -0
- package/dist/cjs/entry-points/top-nav-items/custom-title.js +12 -0
- package/dist/cjs/entry-points/top-nav-items/help.js +12 -0
- package/dist/cjs/entry-points/top-nav-items/index.js +96 -0
- package/dist/cjs/entry-points/top-nav-items/log-in.js +12 -0
- package/dist/cjs/entry-points/top-nav-items/notifications.js +12 -0
- package/dist/cjs/entry-points/top-nav-items/profile.js +12 -0
- package/dist/cjs/entry-points/top-nav-items/settings.js +12 -0
- package/dist/cjs/index.js +327 -0
- package/dist/cjs/ui/menu-item/button-menu-item.js +63 -0
- package/dist/cjs/ui/menu-item/constants.js +21 -0
- package/dist/cjs/ui/menu-item/container-avatar.compiled.css +4 -0
- package/dist/cjs/ui/menu-item/container-avatar.js +34 -0
- package/dist/cjs/ui/menu-item/drag-and-drop/drag-preview.compiled.css +8 -0
- package/dist/cjs/ui/menu-item/drag-and-drop/drag-preview.js +63 -0
- package/dist/cjs/ui/menu-item/drag-and-drop/drop-indicator.js +12 -0
- package/dist/cjs/ui/menu-item/drag-and-drop/group-drop-indicator.js +12 -0
- package/dist/cjs/ui/menu-item/drag-and-drop/hitbox.js +18 -0
- package/dist/cjs/ui/menu-item/drag-and-drop/use-menu-item-drag-and-drop.js +202 -0
- package/dist/cjs/ui/menu-item/drag-handle.compiled.css +9 -0
- package/dist/cjs/ui/menu-item/drag-handle.js +28 -0
- package/dist/cjs/ui/menu-item/expandable-menu-item/expandable-menu-item-content.compiled.css +2 -0
- package/dist/cjs/ui/menu-item/expandable-menu-item/expandable-menu-item-content.js +50 -0
- package/dist/cjs/ui/menu-item/expandable-menu-item/expandable-menu-item-context.js +64 -0
- package/dist/cjs/ui/menu-item/expandable-menu-item/expandable-menu-item-level-context.js +14 -0
- package/dist/cjs/ui/menu-item/expandable-menu-item/expandable-menu-item-trigger.compiled.css +11 -0
- package/dist/cjs/ui/menu-item/expandable-menu-item/expandable-menu-item-trigger.js +136 -0
- package/dist/cjs/ui/menu-item/expandable-menu-item/expandable-menu-item.compiled.css +1 -0
- package/dist/cjs/ui/menu-item/expandable-menu-item/expandable-menu-item.js +67 -0
- package/dist/cjs/ui/menu-item/flyout-menu-item/flyout-menu-item-content.compiled.css +5 -0
- package/dist/cjs/ui/menu-item/flyout-menu-item/flyout-menu-item-content.js +60 -0
- package/dist/cjs/ui/menu-item/flyout-menu-item/flyout-menu-item-context.js +28 -0
- package/dist/cjs/ui/menu-item/flyout-menu-item/flyout-menu-item-trigger.compiled.css +2 -0
- package/dist/cjs/ui/menu-item/flyout-menu-item/flyout-menu-item-trigger.js +68 -0
- package/dist/cjs/ui/menu-item/flyout-menu-item/flyout-menu-item.js +74 -0
- package/dist/cjs/ui/menu-item/link-menu-item.compiled.css +1 -0
- package/dist/cjs/ui/menu-item/link-menu-item.js +81 -0
- package/dist/cjs/ui/menu-item/menu-item-signals.js +11 -0
- package/dist/cjs/ui/menu-item/menu-item.compiled.css +95 -0
- package/dist/cjs/ui/menu-item/menu-item.js +422 -0
- package/dist/cjs/ui/menu-item/menu-list-item.js +18 -0
- package/dist/cjs/ui/menu-item/menu-list.js +14 -0
- package/dist/cjs/ui/menu-item/top-level-spacer.compiled.css +1 -0
- package/dist/cjs/ui/menu-item/top-level-spacer.js +46 -0
- package/dist/cjs/ui/menu-item/types.js +5 -0
- package/dist/cjs/ui/menu-item/use-scroll-menu-item-into-view.js +69 -0
- package/dist/cjs/ui/menu-section/divider.compiled.css +4 -0
- package/dist/cjs/ui/menu-section/divider.js +35 -0
- package/dist/cjs/ui/menu-section/menu-section-context.js +19 -0
- package/dist/cjs/ui/menu-section/menu-section-heading.compiled.css +4 -0
- package/dist/cjs/ui/menu-section/menu-section-heading.js +30 -0
- package/dist/cjs/ui/menu-section/menu-section.js +49 -0
- package/dist/cjs/ui/page-layout/aside.compiled.css +8 -0
- package/dist/cjs/ui/page-layout/aside.js +159 -0
- package/dist/cjs/ui/page-layout/banner.compiled.css +7 -0
- package/dist/cjs/ui/page-layout/banner.js +70 -0
- package/dist/cjs/ui/page-layout/constants.js +61 -0
- package/dist/cjs/ui/page-layout/hoist-slot-sizes-context.js +12 -0
- package/dist/cjs/ui/page-layout/hoist-utils.js +57 -0
- package/dist/cjs/ui/page-layout/id-utils.js +32 -0
- package/dist/cjs/ui/page-layout/main/main-sticky-context.js +11 -0
- package/dist/cjs/ui/page-layout/main/main-sticky-header.compiled.css +4 -0
- package/dist/cjs/ui/page-layout/main/main-sticky-header.js +33 -0
- package/dist/cjs/ui/page-layout/main/main.compiled.css +6 -0
- package/dist/cjs/ui/page-layout/main/main.js +49 -0
- package/dist/cjs/ui/page-layout/panel-splitter/context.js +14 -0
- package/dist/cjs/ui/page-layout/panel-splitter/convert-resize-bound-to-pixels.js +24 -0
- package/dist/cjs/ui/page-layout/panel-splitter/get-percentage-within-pixel-bounds.js +32 -0
- package/dist/cjs/ui/page-layout/panel-splitter/get-width.js +31 -0
- package/dist/cjs/ui/page-layout/panel-splitter/keyboard-resize-manager.js +82 -0
- package/dist/cjs/ui/page-layout/panel-splitter/panel-splitter.compiled.css +34 -0
- package/dist/cjs/ui/page-layout/panel-splitter/panel-splitter.js +342 -0
- package/dist/cjs/ui/page-layout/panel-splitter/provider.js +47 -0
- package/dist/cjs/ui/page-layout/panel-splitter/types.js +1 -0
- package/dist/cjs/ui/page-layout/panel-splitter/use-text-direction.js +23 -0
- package/dist/cjs/ui/page-layout/panel.compiled.css +19 -0
- package/dist/cjs/ui/page-layout/panel.js +195 -0
- package/dist/cjs/ui/page-layout/root.compiled.css +8 -0
- package/dist/cjs/ui/page-layout/root.js +65 -0
- package/dist/cjs/ui/page-layout/side-nav/element-context.js +29 -0
- package/dist/cjs/ui/page-layout/side-nav/flyout-close-delay-ms.js +18 -0
- package/dist/cjs/ui/page-layout/side-nav/side-nav-content.compiled.css +9 -0
- package/dist/cjs/ui/page-layout/side-nav/side-nav-content.js +37 -0
- package/dist/cjs/ui/page-layout/side-nav/side-nav-footer.compiled.css +7 -0
- package/dist/cjs/ui/page-layout/side-nav/side-nav-footer.js +26 -0
- package/dist/cjs/ui/page-layout/side-nav/side-nav-header.compiled.css +3 -0
- package/dist/cjs/ui/page-layout/side-nav/side-nav-header.js +25 -0
- package/dist/cjs/ui/page-layout/side-nav/side-nav.compiled.css +20 -0
- package/dist/cjs/ui/page-layout/side-nav/side-nav.js +608 -0
- package/dist/cjs/ui/page-layout/side-nav/toggle-button-context.js +26 -0
- package/dist/cjs/ui/page-layout/side-nav/toggle-button-provider.js +37 -0
- package/dist/cjs/ui/page-layout/side-nav/toggle-button.compiled.css +2 -0
- package/dist/cjs/ui/page-layout/side-nav/toggle-button.js +119 -0
- package/dist/cjs/ui/page-layout/side-nav/types.js +1 -0
- package/dist/cjs/ui/page-layout/side-nav/use-expand-side-nav.js +56 -0
- package/dist/cjs/ui/page-layout/side-nav/use-side-nav-visibility-callbacks.js +74 -0
- package/dist/cjs/ui/page-layout/side-nav/use-side-nav-visibility.js +34 -0
- package/dist/cjs/ui/page-layout/side-nav/use-toggle-side-nav.js +46 -0
- package/dist/cjs/ui/page-layout/side-nav/visibility-context.js +19 -0
- package/dist/cjs/ui/page-layout/side-nav/visibility-provider.js +28 -0
- package/dist/cjs/ui/page-layout/top-nav/top-nav-end.compiled.css +10 -0
- package/dist/cjs/ui/page-layout/top-nav/top-nav-end.js +103 -0
- package/dist/cjs/ui/page-layout/top-nav/top-nav-middle.compiled.css +8 -0
- package/dist/cjs/ui/page-layout/top-nav/top-nav-middle.js +32 -0
- package/dist/cjs/ui/page-layout/top-nav/top-nav-start.compiled.css +7 -0
- package/dist/cjs/ui/page-layout/top-nav/top-nav-start.js +43 -0
- package/dist/cjs/ui/page-layout/top-nav/top-nav.compiled.css +16 -0
- package/dist/cjs/ui/page-layout/top-nav/top-nav.js +71 -0
- package/dist/cjs/ui/page-layout/types.js +1 -0
- package/dist/cjs/ui/page-layout/use-resizing-width-css-var-on-root-element.js +67 -0
- package/dist/cjs/ui/top-nav-items/app-switcher.js +48 -0
- package/dist/cjs/ui/top-nav-items/chat-button.js +30 -0
- package/dist/cjs/ui/top-nav-items/create-button.js +31 -0
- package/dist/cjs/ui/top-nav-items/custom-title.compiled.css +11 -0
- package/dist/cjs/ui/top-nav-items/custom-title.js +36 -0
- package/dist/cjs/ui/top-nav-items/end-item.js +48 -0
- package/dist/cjs/ui/top-nav-items/help.js +60 -0
- package/dist/cjs/ui/top-nav-items/log-in.js +48 -0
- package/dist/cjs/ui/top-nav-items/nav-logo.compiled.css +22 -0
- package/dist/cjs/ui/top-nav-items/nav-logo.js +127 -0
- package/dist/cjs/ui/top-nav-items/notifications.js +55 -0
- package/dist/cjs/ui/top-nav-items/profile.js +35 -0
- package/dist/cjs/ui/top-nav-items/search.compiled.css +20 -0
- package/dist/cjs/ui/top-nav-items/search.js +68 -0
- package/dist/cjs/ui/top-nav-items/settings.js +24 -0
- package/dist/cjs/ui/top-nav-items/themed/button.compiled.css +58 -0
- package/dist/cjs/ui/top-nav-items/themed/button.js +352 -0
- package/dist/cjs/ui/top-nav-items/themed/color-utils/formats/hex.js +51 -0
- package/dist/cjs/ui/top-nav-items/themed/color-utils/formats/hsl.js +126 -0
- package/dist/cjs/ui/top-nav-items/themed/color-utils/formats/rgb.js +55 -0
- package/dist/cjs/ui/top-nav-items/themed/color-utils/index.js +118 -0
- package/dist/cjs/ui/top-nav-items/themed/color-utils/parse-user-color.js +32 -0
- package/dist/cjs/ui/top-nav-items/themed/color-utils/types.js +1 -0
- package/dist/cjs/ui/top-nav-items/themed/get-custom-theme-styles.js +112 -0
- package/dist/cjs/ui/top-nav-items/themed/has-custom-theme-context.js +19 -0
- package/dist/cjs/ui/top-nav-items/themed/migration.js +53 -0
- package/dist/cjs/ui/top-nav-items/themed/palette.js +68 -0
- package/dist/cjs/ui/top-nav-items/themed/search.js +71 -0
- package/dist/cjs/ui/top-nav-items/themed/use-custom-theme.js +50 -0
- package/dist/es2019/components/badge-container.compiled.css +7 -0
- package/dist/es2019/components/badge-container.js +27 -0
- package/dist/es2019/components/forward-ref-with-generic.js +6 -0
- package/dist/es2019/components/list-item.js +23 -0
- package/dist/es2019/components/list.js +33 -0
- package/dist/es2019/components/skip-links/skip-link.compiled.css +1 -0
- package/dist/es2019/components/skip-links/skip-link.js +114 -0
- package/dist/es2019/components/skip-links/skip-links-container.compiled.css +21 -0
- package/dist/es2019/components/skip-links/skip-links-container.js +66 -0
- package/dist/es2019/context/skip-links/skip-links-context.js +61 -0
- package/dist/es2019/context/skip-links/skip-links-data-context.js +33 -0
- package/dist/es2019/context/skip-links/skip-links-provider.js +70 -0
- package/dist/es2019/context/skip-links/types.js +0 -0
- package/dist/es2019/context/top-nav-start/top-nav-start-context-provider.js +26 -0
- package/dist/es2019/context/top-nav-start/top-nav-start-context.js +20 -0
- package/dist/es2019/entry-points/experimental/color-utils/parse-hex.js +1 -0
- package/dist/es2019/entry-points/experimental/color-utils/parse-hsl.js +1 -0
- package/dist/es2019/entry-points/experimental/color-utils/parse-rgb.js +1 -0
- package/dist/es2019/entry-points/experimental/color-utils/parse-user-color.js +1 -0
- package/dist/es2019/entry-points/experimental/top-nav-button.js +1 -0
- package/dist/es2019/entry-points/experimental/use-has-custom-theme.js +1 -0
- package/dist/es2019/entry-points/experimental/use-legacy-search-theme.js +1 -0
- package/dist/es2019/entry-points/layout/aside.js +1 -0
- package/dist/es2019/entry-points/layout/banner.js +1 -0
- package/dist/es2019/entry-points/layout/main.js +3 -0
- package/dist/es2019/entry-points/layout/panel-splitter.js +2 -0
- package/dist/es2019/entry-points/layout/panel.js +1 -0
- package/dist/es2019/entry-points/layout/root.js +1 -0
- package/dist/es2019/entry-points/layout/side-nav.js +7 -0
- package/dist/es2019/entry-points/layout/skip-links.js +2 -0
- package/dist/es2019/entry-points/layout/top-nav.js +4 -0
- package/dist/es2019/entry-points/side-nav-items/button-menu-item.js +2 -0
- package/dist/es2019/entry-points/side-nav-items/container-avatar.js +1 -0
- package/dist/es2019/entry-points/side-nav-items/drag-and-drop/drag-preview.js +1 -0
- package/dist/es2019/entry-points/side-nav-items/drag-and-drop/drop-indicator.js +1 -0
- package/dist/es2019/entry-points/side-nav-items/drag-and-drop/group-drop-indicator.js +1 -0
- package/dist/es2019/entry-points/side-nav-items/drag-and-drop/hitbox.js +1 -0
- package/dist/es2019/entry-points/side-nav-items/drag-and-drop/use-menu-item-drag-and-drop.js +1 -0
- package/dist/es2019/entry-points/side-nav-items/expandable-menu-item.js +4 -0
- package/dist/es2019/entry-points/side-nav-items/flyout-menu-item.js +3 -0
- package/dist/es2019/entry-points/side-nav-items/link-menu-item.js +2 -0
- package/dist/es2019/entry-points/side-nav-items/menu-list-item.js +1 -0
- package/dist/es2019/entry-points/side-nav-items/menu-list.js +1 -0
- package/dist/es2019/entry-points/side-nav-items/menu-section.js +3 -0
- package/dist/es2019/entry-points/side-nav-items/top-level-spacer.js +1 -0
- package/dist/es2019/entry-points/top-nav-items/create-button.js +1 -0
- package/dist/es2019/entry-points/top-nav-items/custom-title.js +1 -0
- package/dist/es2019/entry-points/top-nav-items/help.js +1 -0
- package/dist/es2019/entry-points/top-nav-items/index.js +13 -0
- package/dist/es2019/entry-points/top-nav-items/log-in.js +1 -0
- package/dist/es2019/entry-points/top-nav-items/notifications.js +1 -0
- package/dist/es2019/entry-points/top-nav-items/profile.js +1 -0
- package/dist/es2019/entry-points/top-nav-items/settings.js +1 -0
- package/dist/es2019/index.js +46 -0
- package/dist/es2019/ui/menu-item/button-menu-item.js +55 -0
- package/dist/es2019/ui/menu-item/constants.js +15 -0
- package/dist/es2019/ui/menu-item/container-avatar.compiled.css +4 -0
- package/dist/es2019/ui/menu-item/container-avatar.js +25 -0
- package/dist/es2019/ui/menu-item/drag-and-drop/drag-preview.compiled.css +8 -0
- package/dist/es2019/ui/menu-item/drag-and-drop/drag-preview.js +58 -0
- package/dist/es2019/ui/menu-item/drag-and-drop/drop-indicator.js +7 -0
- package/dist/es2019/ui/menu-item/drag-and-drop/group-drop-indicator.js +7 -0
- package/dist/es2019/ui/menu-item/drag-and-drop/hitbox.js +7 -0
- package/dist/es2019/ui/menu-item/drag-and-drop/use-menu-item-drag-and-drop.js +192 -0
- package/dist/es2019/ui/menu-item/drag-handle.compiled.css +9 -0
- package/dist/es2019/ui/menu-item/drag-handle.js +19 -0
- package/dist/es2019/ui/menu-item/expandable-menu-item/expandable-menu-item-content.compiled.css +2 -0
- package/dist/es2019/ui/menu-item/expandable-menu-item/expandable-menu-item-content.js +43 -0
- package/dist/es2019/ui/menu-item/expandable-menu-item/expandable-menu-item-context.js +53 -0
- package/dist/es2019/ui/menu-item/expandable-menu-item/expandable-menu-item-level-context.js +9 -0
- package/dist/es2019/ui/menu-item/expandable-menu-item/expandable-menu-item-trigger.compiled.css +11 -0
- package/dist/es2019/ui/menu-item/expandable-menu-item/expandable-menu-item-trigger.js +127 -0
- package/dist/es2019/ui/menu-item/expandable-menu-item/expandable-menu-item.compiled.css +1 -0
- package/dist/es2019/ui/menu-item/expandable-menu-item/expandable-menu-item.js +52 -0
- package/dist/es2019/ui/menu-item/flyout-menu-item/flyout-menu-item-content.compiled.css +5 -0
- package/dist/es2019/ui/menu-item/flyout-menu-item/flyout-menu-item-content.js +51 -0
- package/dist/es2019/ui/menu-item/flyout-menu-item/flyout-menu-item-context.js +18 -0
- package/dist/es2019/ui/menu-item/flyout-menu-item/flyout-menu-item-trigger.compiled.css +2 -0
- package/dist/es2019/ui/menu-item/flyout-menu-item/flyout-menu-item-trigger.js +57 -0
- package/dist/es2019/ui/menu-item/flyout-menu-item/flyout-menu-item.js +59 -0
- package/dist/es2019/ui/menu-item/link-menu-item.compiled.css +1 -0
- package/dist/es2019/ui/menu-item/link-menu-item.js +73 -0
- package/dist/es2019/ui/menu-item/menu-item-signals.js +5 -0
- package/dist/es2019/ui/menu-item/menu-item.compiled.css +95 -0
- package/dist/es2019/ui/menu-item/menu-item.js +406 -0
- package/dist/es2019/ui/menu-item/menu-list-item.js +12 -0
- package/dist/es2019/ui/menu-item/menu-list.js +9 -0
- package/dist/es2019/ui/menu-item/top-level-spacer.compiled.css +1 -0
- package/dist/es2019/ui/menu-item/top-level-spacer.js +38 -0
- package/dist/es2019/ui/menu-item/types.js +1 -0
- package/dist/es2019/ui/menu-item/use-scroll-menu-item-into-view.js +63 -0
- package/dist/es2019/ui/menu-section/divider.compiled.css +4 -0
- package/dist/es2019/ui/menu-section/divider.js +22 -0
- package/dist/es2019/ui/menu-section/menu-section-context.js +13 -0
- package/dist/es2019/ui/menu-section/menu-section-heading.compiled.css +4 -0
- package/dist/es2019/ui/menu-section/menu-section-heading.js +23 -0
- package/dist/es2019/ui/menu-section/menu-section.js +42 -0
- package/dist/es2019/ui/page-layout/aside.compiled.css +8 -0
- package/dist/es2019/ui/page-layout/aside.js +145 -0
- package/dist/es2019/ui/page-layout/banner.compiled.css +7 -0
- package/dist/es2019/ui/page-layout/banner.js +62 -0
- package/dist/es2019/ui/page-layout/constants.js +55 -0
- package/dist/es2019/ui/page-layout/hoist-slot-sizes-context.js +7 -0
- package/dist/es2019/ui/page-layout/hoist-utils.js +49 -0
- package/dist/es2019/ui/page-layout/id-utils.js +26 -0
- package/dist/es2019/ui/page-layout/main/main-sticky-context.js +6 -0
- package/dist/es2019/ui/page-layout/main/main-sticky-header.compiled.css +4 -0
- package/dist/es2019/ui/page-layout/main/main-sticky-header.js +26 -0
- package/dist/es2019/ui/page-layout/main/main.compiled.css +6 -0
- package/dist/es2019/ui/page-layout/main/main.js +41 -0
- package/dist/es2019/ui/page-layout/panel-splitter/context.js +9 -0
- package/dist/es2019/ui/page-layout/panel-splitter/convert-resize-bound-to-pixels.js +18 -0
- package/dist/es2019/ui/page-layout/panel-splitter/get-percentage-within-pixel-bounds.js +27 -0
- package/dist/es2019/ui/page-layout/panel-splitter/get-width.js +27 -0
- package/dist/es2019/ui/page-layout/panel-splitter/keyboard-resize-manager.js +79 -0
- package/dist/es2019/ui/page-layout/panel-splitter/panel-splitter.compiled.css +34 -0
- package/dist/es2019/ui/page-layout/panel-splitter/panel-splitter.js +318 -0
- package/dist/es2019/ui/page-layout/panel-splitter/provider.js +36 -0
- package/dist/es2019/ui/page-layout/panel-splitter/types.js +0 -0
- package/dist/es2019/ui/page-layout/panel-splitter/use-text-direction.js +17 -0
- package/dist/es2019/ui/page-layout/panel.compiled.css +19 -0
- package/dist/es2019/ui/page-layout/panel.js +182 -0
- package/dist/es2019/ui/page-layout/root.compiled.css +8 -0
- package/dist/es2019/ui/page-layout/root.js +65 -0
- package/dist/es2019/ui/page-layout/side-nav/element-context.js +21 -0
- package/dist/es2019/ui/page-layout/side-nav/flyout-close-delay-ms.js +12 -0
- package/dist/es2019/ui/page-layout/side-nav/side-nav-content.compiled.css +9 -0
- package/dist/es2019/ui/page-layout/side-nav/side-nav-content.js +30 -0
- package/dist/es2019/ui/page-layout/side-nav/side-nav-footer.compiled.css +7 -0
- package/dist/es2019/ui/page-layout/side-nav/side-nav-footer.js +22 -0
- package/dist/es2019/ui/page-layout/side-nav/side-nav-header.compiled.css +3 -0
- package/dist/es2019/ui/page-layout/side-nav/side-nav-header.js +18 -0
- package/dist/es2019/ui/page-layout/side-nav/side-nav.compiled.css +20 -0
- package/dist/es2019/ui/page-layout/side-nav/side-nav.js +601 -0
- package/dist/es2019/ui/page-layout/side-nav/toggle-button-context.js +19 -0
- package/dist/es2019/ui/page-layout/side-nav/toggle-button-provider.js +26 -0
- package/dist/es2019/ui/page-layout/side-nav/toggle-button.compiled.css +2 -0
- package/dist/es2019/ui/page-layout/side-nav/toggle-button.js +106 -0
- package/dist/es2019/ui/page-layout/side-nav/types.js +0 -0
- package/dist/es2019/ui/page-layout/side-nav/use-expand-side-nav.js +50 -0
- package/dist/es2019/ui/page-layout/side-nav/use-side-nav-visibility-callbacks.js +68 -0
- package/dist/es2019/ui/page-layout/side-nav/use-side-nav-visibility.js +27 -0
- package/dist/es2019/ui/page-layout/side-nav/use-toggle-side-nav.js +40 -0
- package/dist/es2019/ui/page-layout/side-nav/visibility-context.js +12 -0
- package/dist/es2019/ui/page-layout/side-nav/visibility-provider.js +17 -0
- package/dist/es2019/ui/page-layout/top-nav/top-nav-end.compiled.css +10 -0
- package/dist/es2019/ui/page-layout/top-nav/top-nav-end.js +78 -0
- package/dist/es2019/ui/page-layout/top-nav/top-nav-middle.compiled.css +8 -0
- package/dist/es2019/ui/page-layout/top-nav/top-nav-middle.js +26 -0
- package/dist/es2019/ui/page-layout/top-nav/top-nav-start.compiled.css +7 -0
- package/dist/es2019/ui/page-layout/top-nav/top-nav-start.js +36 -0
- package/dist/es2019/ui/page-layout/top-nav/top-nav.compiled.css +16 -0
- package/dist/es2019/ui/page-layout/top-nav/top-nav.js +62 -0
- package/dist/es2019/ui/page-layout/types.js +0 -0
- package/dist/es2019/ui/page-layout/use-resizing-width-css-var-on-root-element.js +64 -0
- package/dist/es2019/ui/top-nav-items/app-switcher.js +38 -0
- package/dist/es2019/ui/top-nav-items/chat-button.js +23 -0
- package/dist/es2019/ui/top-nav-items/create-button.js +21 -0
- package/dist/es2019/ui/top-nav-items/custom-title.compiled.css +11 -0
- package/dist/es2019/ui/top-nav-items/custom-title.js +29 -0
- package/dist/es2019/ui/top-nav-items/end-item.js +40 -0
- package/dist/es2019/ui/top-nav-items/help.js +51 -0
- package/dist/es2019/ui/top-nav-items/log-in.js +37 -0
- package/dist/es2019/ui/top-nav-items/nav-logo.compiled.css +22 -0
- package/dist/es2019/ui/top-nav-items/nav-logo.js +122 -0
- package/dist/es2019/ui/top-nav-items/notifications.js +47 -0
- package/dist/es2019/ui/top-nav-items/profile.js +23 -0
- package/dist/es2019/ui/top-nav-items/search.compiled.css +20 -0
- package/dist/es2019/ui/top-nav-items/search.js +57 -0
- package/dist/es2019/ui/top-nav-items/settings.js +13 -0
- package/dist/es2019/ui/top-nav-items/themed/button.compiled.css +58 -0
- package/dist/es2019/ui/top-nav-items/themed/button.js +333 -0
- package/dist/es2019/ui/top-nav-items/themed/color-utils/formats/hex.js +42 -0
- package/dist/es2019/ui/top-nav-items/themed/color-utils/formats/hsl.js +113 -0
- package/dist/es2019/ui/top-nav-items/themed/color-utils/formats/rgb.js +37 -0
- package/dist/es2019/ui/top-nav-items/themed/color-utils/index.js +111 -0
- package/dist/es2019/ui/top-nav-items/themed/color-utils/parse-user-color.js +26 -0
- package/dist/es2019/ui/top-nav-items/themed/color-utils/types.js +0 -0
- package/dist/es2019/ui/top-nav-items/themed/get-custom-theme-styles.js +158 -0
- package/dist/es2019/ui/top-nav-items/themed/has-custom-theme-context.js +13 -0
- package/dist/es2019/ui/top-nav-items/themed/migration.js +45 -0
- package/dist/es2019/ui/top-nav-items/themed/palette.js +62 -0
- package/dist/es2019/ui/top-nav-items/themed/search.js +64 -0
- package/dist/es2019/ui/top-nav-items/themed/use-custom-theme.js +44 -0
- package/dist/esm/components/badge-container.compiled.css +7 -0
- package/dist/esm/components/badge-container.js +29 -0
- package/dist/esm/components/forward-ref-with-generic.js +6 -0
- package/dist/esm/components/list-item.js +22 -0
- package/dist/esm/components/list.js +32 -0
- package/dist/esm/components/skip-links/skip-link.compiled.css +1 -0
- package/dist/esm/components/skip-links/skip-link.js +113 -0
- package/dist/esm/components/skip-links/skip-links-container.compiled.css +21 -0
- package/dist/esm/components/skip-links/skip-links-container.js +66 -0
- package/dist/esm/context/skip-links/skip-links-context.js +61 -0
- package/dist/esm/context/skip-links/skip-links-data-context.js +44 -0
- package/dist/esm/context/skip-links/skip-links-provider.js +74 -0
- package/dist/esm/context/skip-links/types.js +0 -0
- package/dist/esm/context/top-nav-start/top-nav-start-context-provider.js +29 -0
- package/dist/esm/context/top-nav-start/top-nav-start-context.js +20 -0
- package/dist/esm/entry-points/experimental/color-utils/parse-hex.js +1 -0
- package/dist/esm/entry-points/experimental/color-utils/parse-hsl.js +1 -0
- package/dist/esm/entry-points/experimental/color-utils/parse-rgb.js +1 -0
- package/dist/esm/entry-points/experimental/color-utils/parse-user-color.js +1 -0
- package/dist/esm/entry-points/experimental/top-nav-button.js +1 -0
- package/dist/esm/entry-points/experimental/use-has-custom-theme.js +1 -0
- package/dist/esm/entry-points/experimental/use-legacy-search-theme.js +1 -0
- package/dist/esm/entry-points/layout/aside.js +1 -0
- package/dist/esm/entry-points/layout/banner.js +1 -0
- package/dist/esm/entry-points/layout/main.js +3 -0
- package/dist/esm/entry-points/layout/panel-splitter.js +2 -0
- package/dist/esm/entry-points/layout/panel.js +1 -0
- package/dist/esm/entry-points/layout/root.js +1 -0
- package/dist/esm/entry-points/layout/side-nav.js +7 -0
- package/dist/esm/entry-points/layout/skip-links.js +2 -0
- package/dist/esm/entry-points/layout/top-nav.js +4 -0
- package/dist/esm/entry-points/side-nav-items/button-menu-item.js +2 -0
- package/dist/esm/entry-points/side-nav-items/container-avatar.js +1 -0
- package/dist/esm/entry-points/side-nav-items/drag-and-drop/drag-preview.js +1 -0
- package/dist/esm/entry-points/side-nav-items/drag-and-drop/drop-indicator.js +1 -0
- package/dist/esm/entry-points/side-nav-items/drag-and-drop/group-drop-indicator.js +1 -0
- package/dist/esm/entry-points/side-nav-items/drag-and-drop/hitbox.js +1 -0
- package/dist/esm/entry-points/side-nav-items/drag-and-drop/use-menu-item-drag-and-drop.js +1 -0
- package/dist/esm/entry-points/side-nav-items/expandable-menu-item.js +4 -0
- package/dist/esm/entry-points/side-nav-items/flyout-menu-item.js +3 -0
- package/dist/esm/entry-points/side-nav-items/link-menu-item.js +2 -0
- package/dist/esm/entry-points/side-nav-items/menu-list-item.js +1 -0
- package/dist/esm/entry-points/side-nav-items/menu-list.js +1 -0
- package/dist/esm/entry-points/side-nav-items/menu-section.js +3 -0
- package/dist/esm/entry-points/side-nav-items/top-level-spacer.js +1 -0
- package/dist/esm/entry-points/top-nav-items/create-button.js +1 -0
- package/dist/esm/entry-points/top-nav-items/custom-title.js +1 -0
- package/dist/esm/entry-points/top-nav-items/help.js +1 -0
- package/dist/esm/entry-points/top-nav-items/index.js +13 -0
- package/dist/esm/entry-points/top-nav-items/log-in.js +1 -0
- package/dist/esm/entry-points/top-nav-items/notifications.js +1 -0
- package/dist/esm/entry-points/top-nav-items/profile.js +1 -0
- package/dist/esm/entry-points/top-nav-items/settings.js +1 -0
- package/dist/esm/index.js +46 -0
- package/dist/esm/ui/menu-item/button-menu-item.js +56 -0
- package/dist/esm/ui/menu-item/constants.js +15 -0
- package/dist/esm/ui/menu-item/container-avatar.compiled.css +4 -0
- package/dist/esm/ui/menu-item/container-avatar.js +26 -0
- package/dist/esm/ui/menu-item/drag-and-drop/drag-preview.compiled.css +8 -0
- package/dist/esm/ui/menu-item/drag-and-drop/drag-preview.js +56 -0
- package/dist/esm/ui/menu-item/drag-and-drop/drop-indicator.js +7 -0
- package/dist/esm/ui/menu-item/drag-and-drop/group-drop-indicator.js +7 -0
- package/dist/esm/ui/menu-item/drag-and-drop/hitbox.js +7 -0
- package/dist/esm/ui/menu-item/drag-and-drop/use-menu-item-drag-and-drop.js +193 -0
- package/dist/esm/ui/menu-item/drag-handle.compiled.css +9 -0
- package/dist/esm/ui/menu-item/drag-handle.js +19 -0
- package/dist/esm/ui/menu-item/expandable-menu-item/expandable-menu-item-content.compiled.css +2 -0
- package/dist/esm/ui/menu-item/expandable-menu-item/expandable-menu-item-content.js +42 -0
- package/dist/esm/ui/menu-item/expandable-menu-item/expandable-menu-item-context.js +57 -0
- package/dist/esm/ui/menu-item/expandable-menu-item/expandable-menu-item-level-context.js +9 -0
- package/dist/esm/ui/menu-item/expandable-menu-item/expandable-menu-item-trigger.compiled.css +11 -0
- package/dist/esm/ui/menu-item/expandable-menu-item/expandable-menu-item-trigger.js +127 -0
- package/dist/esm/ui/menu-item/expandable-menu-item/expandable-menu-item.compiled.css +1 -0
- package/dist/esm/ui/menu-item/expandable-menu-item/expandable-menu-item.js +58 -0
- package/dist/esm/ui/menu-item/flyout-menu-item/flyout-menu-item-content.compiled.css +5 -0
- package/dist/esm/ui/menu-item/flyout-menu-item/flyout-menu-item-content.js +52 -0
- package/dist/esm/ui/menu-item/flyout-menu-item/flyout-menu-item-context.js +22 -0
- package/dist/esm/ui/menu-item/flyout-menu-item/flyout-menu-item-trigger.compiled.css +2 -0
- package/dist/esm/ui/menu-item/flyout-menu-item/flyout-menu-item-trigger.js +59 -0
- package/dist/esm/ui/menu-item/flyout-menu-item/flyout-menu-item.js +65 -0
- package/dist/esm/ui/menu-item/link-menu-item.compiled.css +1 -0
- package/dist/esm/ui/menu-item/link-menu-item.js +72 -0
- package/dist/esm/ui/menu-item/menu-item-signals.js +5 -0
- package/dist/esm/ui/menu-item/menu-item.compiled.css +95 -0
- package/dist/esm/ui/menu-item/menu-item.js +411 -0
- package/dist/esm/ui/menu-item/menu-list-item.js +12 -0
- package/dist/esm/ui/menu-item/menu-list.js +9 -0
- package/dist/esm/ui/menu-item/top-level-spacer.compiled.css +1 -0
- package/dist/esm/ui/menu-item/top-level-spacer.js +38 -0
- package/dist/esm/ui/menu-item/types.js +1 -0
- package/dist/esm/ui/menu-item/use-scroll-menu-item-into-view.js +62 -0
- package/dist/esm/ui/menu-section/divider.compiled.css +4 -0
- package/dist/esm/ui/menu-section/divider.js +27 -0
- package/dist/esm/ui/menu-section/menu-section-context.js +13 -0
- package/dist/esm/ui/menu-section/menu-section-heading.compiled.css +4 -0
- package/dist/esm/ui/menu-section/menu-section-heading.js +22 -0
- package/dist/esm/ui/menu-section/menu-section.js +42 -0
- package/dist/esm/ui/page-layout/aside.compiled.css +8 -0
- package/dist/esm/ui/page-layout/aside.js +150 -0
- package/dist/esm/ui/page-layout/banner.compiled.css +7 -0
- package/dist/esm/ui/page-layout/banner.js +62 -0
- package/dist/esm/ui/page-layout/constants.js +55 -0
- package/dist/esm/ui/page-layout/hoist-slot-sizes-context.js +7 -0
- package/dist/esm/ui/page-layout/hoist-utils.js +51 -0
- package/dist/esm/ui/page-layout/id-utils.js +26 -0
- package/dist/esm/ui/page-layout/main/main-sticky-context.js +6 -0
- package/dist/esm/ui/page-layout/main/main-sticky-header.compiled.css +4 -0
- package/dist/esm/ui/page-layout/main/main-sticky-header.js +25 -0
- package/dist/esm/ui/page-layout/main/main.compiled.css +6 -0
- package/dist/esm/ui/page-layout/main/main.js +41 -0
- package/dist/esm/ui/page-layout/panel-splitter/context.js +9 -0
- package/dist/esm/ui/page-layout/panel-splitter/convert-resize-bound-to-pixels.js +18 -0
- package/dist/esm/ui/page-layout/panel-splitter/get-percentage-within-pixel-bounds.js +26 -0
- package/dist/esm/ui/page-layout/panel-splitter/get-width.js +25 -0
- package/dist/esm/ui/page-layout/panel-splitter/keyboard-resize-manager.js +76 -0
- package/dist/esm/ui/page-layout/panel-splitter/panel-splitter.compiled.css +34 -0
- package/dist/esm/ui/page-layout/panel-splitter/panel-splitter.js +332 -0
- package/dist/esm/ui/page-layout/panel-splitter/provider.js +39 -0
- package/dist/esm/ui/page-layout/panel-splitter/types.js +0 -0
- package/dist/esm/ui/page-layout/panel-splitter/use-text-direction.js +18 -0
- package/dist/esm/ui/page-layout/panel.compiled.css +19 -0
- package/dist/esm/ui/page-layout/panel.js +186 -0
- package/dist/esm/ui/page-layout/root.compiled.css +8 -0
- package/dist/esm/ui/page-layout/root.js +57 -0
- package/dist/esm/ui/page-layout/side-nav/element-context.js +20 -0
- package/dist/esm/ui/page-layout/side-nav/flyout-close-delay-ms.js +12 -0
- package/dist/esm/ui/page-layout/side-nav/side-nav-content.compiled.css +9 -0
- package/dist/esm/ui/page-layout/side-nav/side-nav-content.js +29 -0
- package/dist/esm/ui/page-layout/side-nav/side-nav-footer.compiled.css +7 -0
- package/dist/esm/ui/page-layout/side-nav/side-nav-footer.js +18 -0
- package/dist/esm/ui/page-layout/side-nav/side-nav-header.compiled.css +3 -0
- package/dist/esm/ui/page-layout/side-nav/side-nav-header.js +17 -0
- package/dist/esm/ui/page-layout/side-nav/side-nav.compiled.css +20 -0
- package/dist/esm/ui/page-layout/side-nav/side-nav.js +599 -0
- package/dist/esm/ui/page-layout/side-nav/toggle-button-context.js +19 -0
- package/dist/esm/ui/page-layout/side-nav/toggle-button-provider.js +29 -0
- package/dist/esm/ui/page-layout/side-nav/toggle-button.compiled.css +2 -0
- package/dist/esm/ui/page-layout/side-nav/toggle-button.js +110 -0
- package/dist/esm/ui/page-layout/side-nav/types.js +0 -0
- package/dist/esm/ui/page-layout/side-nav/use-expand-side-nav.js +49 -0
- package/dist/esm/ui/page-layout/side-nav/use-side-nav-visibility-callbacks.js +67 -0
- package/dist/esm/ui/page-layout/side-nav/use-side-nav-visibility.js +28 -0
- package/dist/esm/ui/page-layout/side-nav/use-toggle-side-nav.js +39 -0
- package/dist/esm/ui/page-layout/side-nav/visibility-context.js +12 -0
- package/dist/esm/ui/page-layout/side-nav/visibility-provider.js +20 -0
- package/dist/esm/ui/page-layout/top-nav/top-nav-end.compiled.css +10 -0
- package/dist/esm/ui/page-layout/top-nav/top-nav-end.js +94 -0
- package/dist/esm/ui/page-layout/top-nav/top-nav-middle.compiled.css +8 -0
- package/dist/esm/ui/page-layout/top-nav/top-nav-middle.js +25 -0
- package/dist/esm/ui/page-layout/top-nav/top-nav-start.compiled.css +7 -0
- package/dist/esm/ui/page-layout/top-nav/top-nav-start.js +35 -0
- package/dist/esm/ui/page-layout/top-nav/top-nav.compiled.css +16 -0
- package/dist/esm/ui/page-layout/top-nav/top-nav.js +63 -0
- package/dist/esm/ui/page-layout/types.js +0 -0
- package/dist/esm/ui/page-layout/use-resizing-width-css-var-on-root-element.js +62 -0
- package/dist/esm/ui/top-nav-items/app-switcher.js +39 -0
- package/dist/esm/ui/top-nav-items/chat-button.js +24 -0
- package/dist/esm/ui/top-nav-items/create-button.js +22 -0
- package/dist/esm/ui/top-nav-items/custom-title.compiled.css +11 -0
- package/dist/esm/ui/top-nav-items/custom-title.js +28 -0
- package/dist/esm/ui/top-nav-items/end-item.js +40 -0
- package/dist/esm/ui/top-nav-items/help.js +50 -0
- package/dist/esm/ui/top-nav-items/log-in.js +39 -0
- package/dist/esm/ui/top-nav-items/nav-logo.compiled.css +22 -0
- package/dist/esm/ui/top-nav-items/nav-logo.js +119 -0
- package/dist/esm/ui/top-nav-items/notifications.js +46 -0
- package/dist/esm/ui/top-nav-items/profile.js +26 -0
- package/dist/esm/ui/top-nav-items/search.compiled.css +20 -0
- package/dist/esm/ui/top-nav-items/search.js +59 -0
- package/dist/esm/ui/top-nav-items/settings.js +15 -0
- package/dist/esm/ui/top-nav-items/themed/button.compiled.css +58 -0
- package/dist/esm/ui/top-nav-items/themed/button.js +344 -0
- package/dist/esm/ui/top-nav-items/themed/color-utils/formats/hex.js +45 -0
- package/dist/esm/ui/top-nav-items/themed/color-utils/formats/hsl.js +119 -0
- package/dist/esm/ui/top-nav-items/themed/color-utils/formats/rgb.js +48 -0
- package/dist/esm/ui/top-nav-items/themed/color-utils/index.js +109 -0
- package/dist/esm/ui/top-nav-items/themed/color-utils/parse-user-color.js +26 -0
- package/dist/esm/ui/top-nav-items/themed/color-utils/types.js +0 -0
- package/dist/esm/ui/top-nav-items/themed/get-custom-theme-styles.js +106 -0
- package/dist/esm/ui/top-nav-items/themed/has-custom-theme-context.js +13 -0
- package/dist/esm/ui/top-nav-items/themed/migration.js +45 -0
- package/dist/esm/ui/top-nav-items/themed/palette.js +62 -0
- package/dist/esm/ui/top-nav-items/themed/search.js +64 -0
- package/dist/esm/ui/top-nav-items/themed/use-custom-theme.js +44 -0
- package/dist/types/components/badge-container.d.ts +32 -0
- package/dist/types/components/forward-ref-with-generic.d.ts +4 -0
- package/dist/types/components/list-item.d.ts +27 -0
- package/dist/types/components/list.d.ts +28 -0
- package/dist/types/components/skip-links/skip-link.d.ts +16 -0
- package/dist/types/components/skip-links/skip-links-container.d.ts +13 -0
- package/dist/types/context/skip-links/skip-links-context.d.ts +23 -0
- package/dist/types/context/skip-links/skip-links-data-context.d.ts +7 -0
- package/dist/types/context/skip-links/skip-links-provider.d.ts +7 -0
- package/dist/types/context/skip-links/types.d.ts +27 -0
- package/dist/types/context/top-nav-start/top-nav-start-context-provider.d.ts +17 -0
- package/dist/types/context/top-nav-start/top-nav-start-context.d.ts +17 -0
- package/dist/types/entry-points/experimental/color-utils/parse-hex.d.ts +1 -0
- package/dist/types/entry-points/experimental/color-utils/parse-hsl.d.ts +1 -0
- package/dist/types/entry-points/experimental/color-utils/parse-rgb.d.ts +1 -0
- package/dist/types/entry-points/experimental/color-utils/parse-user-color.d.ts +1 -0
- package/dist/types/entry-points/experimental/top-nav-button.d.ts +1 -0
- package/dist/types/entry-points/experimental/use-has-custom-theme.d.ts +1 -0
- package/dist/types/entry-points/experimental/use-legacy-search-theme.d.ts +1 -0
- package/dist/types/entry-points/layout/aside.d.ts +1 -0
- package/dist/types/entry-points/layout/banner.d.ts +1 -0
- package/dist/types/entry-points/layout/main.d.ts +3 -0
- package/dist/types/entry-points/layout/panel-splitter.d.ts +3 -0
- package/dist/types/entry-points/layout/panel.d.ts +1 -0
- package/dist/types/entry-points/layout/root.d.ts +1 -0
- package/dist/types/entry-points/layout/side-nav.d.ts +7 -0
- package/dist/types/entry-points/layout/skip-links.d.ts +2 -0
- package/dist/types/entry-points/layout/top-nav.d.ts +4 -0
- package/dist/types/entry-points/side-nav-items/button-menu-item.d.ts +3 -0
- package/dist/types/entry-points/side-nav-items/container-avatar.d.ts +1 -0
- package/dist/types/entry-points/side-nav-items/drag-and-drop/drag-preview.d.ts +1 -0
- package/dist/types/entry-points/side-nav-items/drag-and-drop/drop-indicator.d.ts +1 -0
- package/dist/types/entry-points/side-nav-items/drag-and-drop/group-drop-indicator.d.ts +1 -0
- package/dist/types/entry-points/side-nav-items/drag-and-drop/hitbox.d.ts +1 -0
- package/dist/types/entry-points/side-nav-items/drag-and-drop/use-menu-item-drag-and-drop.d.ts +1 -0
- package/dist/types/entry-points/side-nav-items/expandable-menu-item.d.ts +4 -0
- package/dist/types/entry-points/side-nav-items/flyout-menu-item.d.ts +3 -0
- package/dist/types/entry-points/side-nav-items/link-menu-item.d.ts +3 -0
- package/dist/types/entry-points/side-nav-items/menu-list-item.d.ts +1 -0
- package/dist/types/entry-points/side-nav-items/menu-list.d.ts +1 -0
- package/dist/types/entry-points/side-nav-items/menu-section.d.ts +3 -0
- package/dist/types/entry-points/side-nav-items/top-level-spacer.d.ts +1 -0
- package/dist/types/entry-points/top-nav-items/create-button.d.ts +1 -0
- package/dist/types/entry-points/top-nav-items/custom-title.d.ts +1 -0
- package/dist/types/entry-points/top-nav-items/help.d.ts +1 -0
- package/dist/types/entry-points/top-nav-items/index.d.ts +13 -0
- package/dist/types/entry-points/top-nav-items/log-in.d.ts +1 -0
- package/dist/types/entry-points/top-nav-items/notifications.d.ts +1 -0
- package/dist/types/entry-points/top-nav-items/profile.d.ts +1 -0
- package/dist/types/entry-points/top-nav-items/settings.d.ts +1 -0
- package/dist/types/index.d.ts +47 -0
- package/dist/types/ui/menu-item/button-menu-item.d.ts +55 -0
- package/dist/types/ui/menu-item/constants.d.ts +15 -0
- package/dist/types/ui/menu-item/container-avatar.d.ts +19 -0
- package/dist/types/ui/menu-item/drag-and-drop/drag-preview.d.ts +24 -0
- package/dist/types/ui/menu-item/drag-and-drop/drop-indicator.d.ts +6 -0
- package/dist/types/ui/menu-item/drag-and-drop/group-drop-indicator.d.ts +6 -0
- package/dist/types/ui/menu-item/drag-and-drop/hitbox.d.ts +6 -0
- package/dist/types/ui/menu-item/drag-and-drop/use-menu-item-drag-and-drop.d.ts +62 -0
- package/dist/types/ui/menu-item/drag-handle.d.ts +7 -0
- package/dist/types/ui/menu-item/expandable-menu-item/expandable-menu-item-content.d.ts +17 -0
- package/dist/types/ui/menu-item/expandable-menu-item/expandable-menu-item-context.d.ts +37 -0
- package/dist/types/ui/menu-item/expandable-menu-item/expandable-menu-item-level-context.d.ts +5 -0
- package/dist/types/ui/menu-item/expandable-menu-item/expandable-menu-item-trigger.d.ts +121 -0
- package/dist/types/ui/menu-item/expandable-menu-item/expandable-menu-item.d.ts +61 -0
- package/dist/types/ui/menu-item/flyout-menu-item/flyout-menu-item-content.d.ts +32 -0
- package/dist/types/ui/menu-item/flyout-menu-item/flyout-menu-item-context.d.ts +15 -0
- package/dist/types/ui/menu-item/flyout-menu-item/flyout-menu-item-trigger.d.ts +86 -0
- package/dist/types/ui/menu-item/flyout-menu-item/flyout-menu-item.d.ts +52 -0
- package/dist/types/ui/menu-item/link-menu-item.d.ts +43 -0
- package/dist/types/ui/menu-item/menu-item-signals.d.ts +6 -0
- package/dist/types/ui/menu-item/menu-item.d.ts +42 -0
- package/dist/types/ui/menu-item/menu-list-item.d.ts +11 -0
- package/dist/types/ui/menu-item/menu-list.d.ts +9 -0
- package/dist/types/ui/menu-item/top-level-spacer.d.ts +21 -0
- package/dist/types/ui/menu-item/types.d.ts +160 -0
- package/dist/types/ui/menu-item/use-scroll-menu-item-into-view.d.ts +13 -0
- package/dist/types/ui/menu-section/divider.d.ts +7 -0
- package/dist/types/ui/menu-section/menu-section-context.d.ts +7 -0
- package/dist/types/ui/menu-section/menu-section-heading.d.ts +16 -0
- package/dist/types/ui/menu-section/menu-section.d.ts +41 -0
- package/dist/types/ui/page-layout/aside.d.ts +49 -0
- package/dist/types/ui/page-layout/banner.d.ts +23 -0
- package/dist/types/ui/page-layout/constants.d.ts +40 -0
- package/dist/types/ui/page-layout/hoist-slot-sizes-context.d.ts +6 -0
- package/dist/types/ui/page-layout/hoist-utils.d.ts +24 -0
- package/dist/types/ui/page-layout/id-utils.d.ts +17 -0
- package/dist/types/ui/page-layout/main/main-sticky-context.d.ts +5 -0
- package/dist/types/ui/page-layout/main/main-sticky-header.d.ts +23 -0
- package/dist/types/ui/page-layout/main/main.d.ts +38 -0
- package/dist/types/ui/page-layout/panel-splitter/context.d.ts +54 -0
- package/dist/types/ui/page-layout/panel-splitter/convert-resize-bound-to-pixels.d.ts +7 -0
- package/dist/types/ui/page-layout/panel-splitter/get-percentage-within-pixel-bounds.d.ts +18 -0
- package/dist/types/ui/page-layout/panel-splitter/get-width.d.ts +11 -0
- package/dist/types/ui/page-layout/panel-splitter/keyboard-resize-manager.d.ts +15 -0
- package/dist/types/ui/page-layout/panel-splitter/panel-splitter.d.ts +45 -0
- package/dist/types/ui/page-layout/panel-splitter/provider.d.ts +12 -0
- package/dist/types/ui/page-layout/panel-splitter/types.d.ts +23 -0
- package/dist/types/ui/page-layout/panel-splitter/use-text-direction.d.ts +10 -0
- package/dist/types/ui/page-layout/panel.d.ts +41 -0
- package/dist/types/ui/page-layout/root.d.ts +38 -0
- package/dist/types/ui/page-layout/side-nav/element-context.d.ts +10 -0
- package/dist/types/ui/page-layout/side-nav/flyout-close-delay-ms.d.ts +5 -0
- package/dist/types/ui/page-layout/side-nav/side-nav-content.d.ts +24 -0
- package/dist/types/ui/page-layout/side-nav/side-nav-footer.d.ts +19 -0
- package/dist/types/ui/page-layout/side-nav/side-nav-header.d.ts +14 -0
- package/dist/types/ui/page-layout/side-nav/side-nav.d.ts +57 -0
- package/dist/types/ui/page-layout/side-nav/toggle-button-context.d.ts +17 -0
- package/dist/types/ui/page-layout/side-nav/toggle-button-provider.d.ts +17 -0
- package/dist/types/ui/page-layout/side-nav/toggle-button.d.ts +45 -0
- package/dist/types/ui/page-layout/side-nav/types.d.ts +42 -0
- package/dist/types/ui/page-layout/side-nav/use-expand-side-nav.d.ts +12 -0
- package/dist/types/ui/page-layout/side-nav/use-side-nav-visibility-callbacks.d.ts +13 -0
- package/dist/types/ui/page-layout/side-nav/use-side-nav-visibility.d.ts +20 -0
- package/dist/types/ui/page-layout/side-nav/use-toggle-side-nav.d.ts +12 -0
- package/dist/types/ui/page-layout/side-nav/visibility-context.d.ts +11 -0
- package/dist/types/ui/page-layout/side-nav/visibility-provider.d.ts +7 -0
- package/dist/types/ui/page-layout/top-nav/top-nav-end.d.ts +29 -0
- package/dist/types/ui/page-layout/top-nav/top-nav-middle.d.ts +24 -0
- package/dist/types/ui/page-layout/top-nav/top-nav-start.d.ts +22 -0
- package/dist/types/ui/page-layout/top-nav/top-nav.d.ts +29 -0
- package/dist/types/ui/page-layout/types.d.ts +20 -0
- package/dist/types/ui/page-layout/use-resizing-width-css-var-on-root-element.d.ts +9 -0
- package/dist/types/ui/top-nav-items/app-switcher.d.ts +32 -0
- package/dist/types/ui/top-nav-items/chat-button.d.ts +25 -0
- package/dist/types/ui/top-nav-items/create-button.d.ts +30 -0
- package/dist/types/ui/top-nav-items/custom-title.d.ts +23 -0
- package/dist/types/ui/top-nav-items/end-item.d.ts +73 -0
- package/dist/types/ui/top-nav-items/help.d.ts +19 -0
- package/dist/types/ui/top-nav-items/log-in.d.ts +36 -0
- package/dist/types/ui/top-nav-items/nav-logo.d.ts +39 -0
- package/dist/types/ui/top-nav-items/notifications.d.ts +16 -0
- package/dist/types/ui/top-nav-items/profile.d.ts +15 -0
- package/dist/types/ui/top-nav-items/search.d.ts +35 -0
- package/dist/types/ui/top-nav-items/settings.d.ts +11 -0
- package/dist/types/ui/top-nav-items/themed/button.d.ts +128 -0
- package/dist/types/ui/top-nav-items/themed/color-utils/formats/hex.d.ts +9 -0
- package/dist/types/ui/top-nav-items/themed/color-utils/formats/hsl.d.ts +7 -0
- package/dist/types/ui/top-nav-items/themed/color-utils/formats/rgb.d.ts +7 -0
- package/dist/types/ui/top-nav-items/themed/color-utils/index.d.ts +21 -0
- package/dist/types/ui/top-nav-items/themed/color-utils/parse-user-color.d.ts +13 -0
- package/dist/types/ui/top-nav-items/themed/color-utils/types.d.ts +17 -0
- package/dist/types/ui/top-nav-items/themed/get-custom-theme-styles.d.ts +22 -0
- package/dist/types/ui/top-nav-items/themed/has-custom-theme-context.d.ts +9 -0
- package/dist/types/ui/top-nav-items/themed/migration.d.ts +10 -0
- package/dist/types/ui/top-nav-items/themed/palette.d.ts +62 -0
- package/dist/types/ui/top-nav-items/themed/search.d.ts +55 -0
- package/dist/types/ui/top-nav-items/themed/use-custom-theme.d.ts +13 -0
- package/dist/types-ts4.5/components/badge-container.d.ts +32 -0
- package/dist/types-ts4.5/components/forward-ref-with-generic.d.ts +4 -0
- package/dist/types-ts4.5/components/list-item.d.ts +27 -0
- package/dist/types-ts4.5/components/list.d.ts +28 -0
- package/dist/types-ts4.5/components/skip-links/skip-link.d.ts +16 -0
- package/dist/types-ts4.5/components/skip-links/skip-links-container.d.ts +13 -0
- package/dist/types-ts4.5/context/skip-links/skip-links-context.d.ts +23 -0
- package/dist/types-ts4.5/context/skip-links/skip-links-data-context.d.ts +7 -0
- package/dist/types-ts4.5/context/skip-links/skip-links-provider.d.ts +7 -0
- package/dist/types-ts4.5/context/skip-links/types.d.ts +27 -0
- package/dist/types-ts4.5/context/top-nav-start/top-nav-start-context-provider.d.ts +17 -0
- package/dist/types-ts4.5/context/top-nav-start/top-nav-start-context.d.ts +17 -0
- package/dist/types-ts4.5/entry-points/experimental/color-utils/parse-hex.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/experimental/color-utils/parse-hsl.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/experimental/color-utils/parse-rgb.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/experimental/color-utils/parse-user-color.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/experimental/top-nav-button.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/experimental/use-has-custom-theme.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/experimental/use-legacy-search-theme.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/layout/aside.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/layout/banner.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/layout/main.d.ts +3 -0
- package/dist/types-ts4.5/entry-points/layout/panel-splitter.d.ts +3 -0
- package/dist/types-ts4.5/entry-points/layout/panel.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/layout/root.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/layout/side-nav.d.ts +7 -0
- package/dist/types-ts4.5/entry-points/layout/skip-links.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/layout/top-nav.d.ts +4 -0
- package/dist/types-ts4.5/entry-points/side-nav-items/button-menu-item.d.ts +3 -0
- package/dist/types-ts4.5/entry-points/side-nav-items/container-avatar.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/side-nav-items/drag-and-drop/drag-preview.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/side-nav-items/drag-and-drop/drop-indicator.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/side-nav-items/drag-and-drop/group-drop-indicator.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/side-nav-items/drag-and-drop/hitbox.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/side-nav-items/drag-and-drop/use-menu-item-drag-and-drop.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/side-nav-items/expandable-menu-item.d.ts +4 -0
- package/dist/types-ts4.5/entry-points/side-nav-items/flyout-menu-item.d.ts +3 -0
- package/dist/types-ts4.5/entry-points/side-nav-items/link-menu-item.d.ts +3 -0
- package/dist/types-ts4.5/entry-points/side-nav-items/menu-list-item.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/side-nav-items/menu-list.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/side-nav-items/menu-section.d.ts +3 -0
- package/dist/types-ts4.5/entry-points/side-nav-items/top-level-spacer.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/top-nav-items/create-button.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/top-nav-items/custom-title.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/top-nav-items/help.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/top-nav-items/index.d.ts +13 -0
- package/dist/types-ts4.5/entry-points/top-nav-items/log-in.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/top-nav-items/notifications.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/top-nav-items/profile.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/top-nav-items/settings.d.ts +1 -0
- package/dist/types-ts4.5/index.d.ts +47 -0
- package/dist/types-ts4.5/ui/menu-item/button-menu-item.d.ts +55 -0
- package/dist/types-ts4.5/ui/menu-item/constants.d.ts +15 -0
- package/dist/types-ts4.5/ui/menu-item/container-avatar.d.ts +19 -0
- package/dist/types-ts4.5/ui/menu-item/drag-and-drop/drag-preview.d.ts +24 -0
- package/dist/types-ts4.5/ui/menu-item/drag-and-drop/drop-indicator.d.ts +6 -0
- package/dist/types-ts4.5/ui/menu-item/drag-and-drop/group-drop-indicator.d.ts +6 -0
- package/dist/types-ts4.5/ui/menu-item/drag-and-drop/hitbox.d.ts +6 -0
- package/dist/types-ts4.5/ui/menu-item/drag-and-drop/use-menu-item-drag-and-drop.d.ts +62 -0
- package/dist/types-ts4.5/ui/menu-item/drag-handle.d.ts +7 -0
- package/dist/types-ts4.5/ui/menu-item/expandable-menu-item/expandable-menu-item-content.d.ts +17 -0
- package/dist/types-ts4.5/ui/menu-item/expandable-menu-item/expandable-menu-item-context.d.ts +37 -0
- package/dist/types-ts4.5/ui/menu-item/expandable-menu-item/expandable-menu-item-level-context.d.ts +5 -0
- package/dist/types-ts4.5/ui/menu-item/expandable-menu-item/expandable-menu-item-trigger.d.ts +121 -0
- package/dist/types-ts4.5/ui/menu-item/expandable-menu-item/expandable-menu-item.d.ts +61 -0
- package/dist/types-ts4.5/ui/menu-item/flyout-menu-item/flyout-menu-item-content.d.ts +32 -0
- package/dist/types-ts4.5/ui/menu-item/flyout-menu-item/flyout-menu-item-context.d.ts +15 -0
- package/dist/types-ts4.5/ui/menu-item/flyout-menu-item/flyout-menu-item-trigger.d.ts +86 -0
- package/dist/types-ts4.5/ui/menu-item/flyout-menu-item/flyout-menu-item.d.ts +52 -0
- package/dist/types-ts4.5/ui/menu-item/link-menu-item.d.ts +43 -0
- package/dist/types-ts4.5/ui/menu-item/menu-item-signals.d.ts +6 -0
- package/dist/types-ts4.5/ui/menu-item/menu-item.d.ts +42 -0
- package/dist/types-ts4.5/ui/menu-item/menu-list-item.d.ts +11 -0
- package/dist/types-ts4.5/ui/menu-item/menu-list.d.ts +9 -0
- package/dist/types-ts4.5/ui/menu-item/top-level-spacer.d.ts +21 -0
- package/dist/types-ts4.5/ui/menu-item/types.d.ts +160 -0
- package/dist/types-ts4.5/ui/menu-item/use-scroll-menu-item-into-view.d.ts +13 -0
- package/dist/types-ts4.5/ui/menu-section/divider.d.ts +7 -0
- package/dist/types-ts4.5/ui/menu-section/menu-section-context.d.ts +7 -0
- package/dist/types-ts4.5/ui/menu-section/menu-section-heading.d.ts +16 -0
- package/dist/types-ts4.5/ui/menu-section/menu-section.d.ts +41 -0
- package/dist/types-ts4.5/ui/page-layout/aside.d.ts +49 -0
- package/dist/types-ts4.5/ui/page-layout/banner.d.ts +23 -0
- package/dist/types-ts4.5/ui/page-layout/constants.d.ts +40 -0
- package/dist/types-ts4.5/ui/page-layout/hoist-slot-sizes-context.d.ts +6 -0
- package/dist/types-ts4.5/ui/page-layout/hoist-utils.d.ts +24 -0
- package/dist/types-ts4.5/ui/page-layout/id-utils.d.ts +17 -0
- package/dist/types-ts4.5/ui/page-layout/main/main-sticky-context.d.ts +5 -0
- package/dist/types-ts4.5/ui/page-layout/main/main-sticky-header.d.ts +23 -0
- package/dist/types-ts4.5/ui/page-layout/main/main.d.ts +38 -0
- package/dist/types-ts4.5/ui/page-layout/panel-splitter/context.d.ts +54 -0
- package/dist/types-ts4.5/ui/page-layout/panel-splitter/convert-resize-bound-to-pixels.d.ts +7 -0
- package/dist/types-ts4.5/ui/page-layout/panel-splitter/get-percentage-within-pixel-bounds.d.ts +18 -0
- package/dist/types-ts4.5/ui/page-layout/panel-splitter/get-width.d.ts +11 -0
- package/dist/types-ts4.5/ui/page-layout/panel-splitter/keyboard-resize-manager.d.ts +15 -0
- package/dist/types-ts4.5/ui/page-layout/panel-splitter/panel-splitter.d.ts +45 -0
- package/dist/types-ts4.5/ui/page-layout/panel-splitter/provider.d.ts +12 -0
- package/dist/types-ts4.5/ui/page-layout/panel-splitter/types.d.ts +23 -0
- package/dist/types-ts4.5/ui/page-layout/panel-splitter/use-text-direction.d.ts +10 -0
- package/dist/types-ts4.5/ui/page-layout/panel.d.ts +41 -0
- package/dist/types-ts4.5/ui/page-layout/root.d.ts +38 -0
- package/dist/types-ts4.5/ui/page-layout/side-nav/element-context.d.ts +10 -0
- package/dist/types-ts4.5/ui/page-layout/side-nav/flyout-close-delay-ms.d.ts +5 -0
- package/dist/types-ts4.5/ui/page-layout/side-nav/side-nav-content.d.ts +24 -0
- package/dist/types-ts4.5/ui/page-layout/side-nav/side-nav-footer.d.ts +19 -0
- package/dist/types-ts4.5/ui/page-layout/side-nav/side-nav-header.d.ts +14 -0
- package/dist/types-ts4.5/ui/page-layout/side-nav/side-nav.d.ts +57 -0
- package/dist/types-ts4.5/ui/page-layout/side-nav/toggle-button-context.d.ts +17 -0
- package/dist/types-ts4.5/ui/page-layout/side-nav/toggle-button-provider.d.ts +17 -0
- package/dist/types-ts4.5/ui/page-layout/side-nav/toggle-button.d.ts +45 -0
- package/dist/types-ts4.5/ui/page-layout/side-nav/types.d.ts +42 -0
- package/dist/types-ts4.5/ui/page-layout/side-nav/use-expand-side-nav.d.ts +12 -0
- package/dist/types-ts4.5/ui/page-layout/side-nav/use-side-nav-visibility-callbacks.d.ts +13 -0
- package/dist/types-ts4.5/ui/page-layout/side-nav/use-side-nav-visibility.d.ts +20 -0
- package/dist/types-ts4.5/ui/page-layout/side-nav/use-toggle-side-nav.d.ts +12 -0
- package/dist/types-ts4.5/ui/page-layout/side-nav/visibility-context.d.ts +11 -0
- package/dist/types-ts4.5/ui/page-layout/side-nav/visibility-provider.d.ts +7 -0
- package/dist/types-ts4.5/ui/page-layout/top-nav/top-nav-end.d.ts +29 -0
- package/dist/types-ts4.5/ui/page-layout/top-nav/top-nav-middle.d.ts +24 -0
- package/dist/types-ts4.5/ui/page-layout/top-nav/top-nav-start.d.ts +22 -0
- package/dist/types-ts4.5/ui/page-layout/top-nav/top-nav.d.ts +29 -0
- package/dist/types-ts4.5/ui/page-layout/types.d.ts +20 -0
- package/dist/types-ts4.5/ui/page-layout/use-resizing-width-css-var-on-root-element.d.ts +9 -0
- package/dist/types-ts4.5/ui/top-nav-items/app-switcher.d.ts +32 -0
- package/dist/types-ts4.5/ui/top-nav-items/chat-button.d.ts +25 -0
- package/dist/types-ts4.5/ui/top-nav-items/create-button.d.ts +30 -0
- package/dist/types-ts4.5/ui/top-nav-items/custom-title.d.ts +23 -0
- package/dist/types-ts4.5/ui/top-nav-items/end-item.d.ts +73 -0
- package/dist/types-ts4.5/ui/top-nav-items/help.d.ts +19 -0
- package/dist/types-ts4.5/ui/top-nav-items/log-in.d.ts +36 -0
- package/dist/types-ts4.5/ui/top-nav-items/nav-logo.d.ts +39 -0
- package/dist/types-ts4.5/ui/top-nav-items/notifications.d.ts +16 -0
- package/dist/types-ts4.5/ui/top-nav-items/profile.d.ts +15 -0
- package/dist/types-ts4.5/ui/top-nav-items/search.d.ts +35 -0
- package/dist/types-ts4.5/ui/top-nav-items/settings.d.ts +11 -0
- package/dist/types-ts4.5/ui/top-nav-items/themed/button.d.ts +128 -0
- package/dist/types-ts4.5/ui/top-nav-items/themed/color-utils/formats/hex.d.ts +9 -0
- package/dist/types-ts4.5/ui/top-nav-items/themed/color-utils/formats/hsl.d.ts +7 -0
- package/dist/types-ts4.5/ui/top-nav-items/themed/color-utils/formats/rgb.d.ts +7 -0
- package/dist/types-ts4.5/ui/top-nav-items/themed/color-utils/index.d.ts +21 -0
- package/dist/types-ts4.5/ui/top-nav-items/themed/color-utils/parse-user-color.d.ts +13 -0
- package/dist/types-ts4.5/ui/top-nav-items/themed/color-utils/types.d.ts +17 -0
- package/dist/types-ts4.5/ui/top-nav-items/themed/get-custom-theme-styles.d.ts +22 -0
- package/dist/types-ts4.5/ui/top-nav-items/themed/has-custom-theme-context.d.ts +9 -0
- package/dist/types-ts4.5/ui/top-nav-items/themed/migration.d.ts +10 -0
- package/dist/types-ts4.5/ui/top-nav-items/themed/palette.d.ts +62 -0
- package/dist/types-ts4.5/ui/top-nav-items/themed/search.d.ts +55 -0
- package/dist/types-ts4.5/ui/top-nav-items/themed/use-custom-theme.d.ts +13 -0
- package/examples/button-menu-item.tsx +426 -0
- package/examples/company-hub-mock.tsx +241 -0
- package/examples/composition.tsx +502 -0
- package/examples/confluence-mock.tsx +387 -0
- package/examples/constellation/integration.tsx +203 -0
- package/examples/constellation/layout/advanced-layout.tsx +141 -0
- package/examples/constellation/layout/aside.tsx +10 -0
- package/examples/constellation/layout/banner.tsx +16 -0
- package/examples/constellation/layout/custom-skip-links.tsx +10 -0
- package/examples/constellation/layout/expand-side-nav.tsx +15 -0
- package/examples/constellation/layout/main.tsx +10 -0
- package/examples/constellation/layout/panel-splitter.tsx +13 -0
- package/examples/constellation/layout/panel.tsx +10 -0
- package/examples/constellation/layout/side-nav-slots.tsx +19 -0
- package/examples/constellation/layout/side-nav.tsx +27 -0
- package/examples/constellation/layout/toggle-side-nav-keyboard-shortcut.tsx +23 -0
- package/examples/constellation/layout/top-nav.tsx +21 -0
- package/examples/constellation/side-navigation/button-menu-item-disabled.tsx +20 -0
- package/examples/constellation/side-navigation/common/global-app-icon-tile.tsx +43 -0
- package/examples/constellation/side-navigation/common/mock-side-nav.tsx +16 -0
- package/examples/constellation/side-navigation/composing-menus.tsx +87 -0
- package/examples/constellation/side-navigation/expandable-menu-item.tsx +44 -0
- package/examples/constellation/side-navigation/flyout-menu-item.tsx +96 -0
- package/examples/constellation/side-navigation/global-apps.tsx +97 -0
- package/examples/constellation/side-navigation/link-menu-item.tsx +45 -0
- package/examples/constellation/side-navigation/menu-section.tsx +70 -0
- package/examples/constellation/top-navigation/common/mock-content.tsx +39 -0
- package/examples/constellation/top-navigation/common/mock-top-bar.tsx +19 -0
- package/examples/constellation/top-navigation/custom-nav-logo.tsx +27 -0
- package/examples/constellation/top-navigation/custom-theming--buttons.tsx +25 -0
- package/examples/constellation/top-navigation/custom-theming--logo.tsx +25 -0
- package/examples/constellation/top-navigation/custom-theming--parse-hex.tsx +18 -0
- package/examples/constellation/top-navigation/custom-theming--parse-hsl.tsx +21 -0
- package/examples/constellation/top-navigation/custom-theming--parse-rgb.tsx +21 -0
- package/examples/constellation/top-navigation/custom-theming--parse-user-color.tsx +21 -0
- package/examples/constellation/top-navigation/custom-theming--rgb-object.tsx +20 -0
- package/examples/constellation/top-navigation/custom-theming--search.tsx +26 -0
- package/examples/constellation/top-navigation/nav-logo.tsx +22 -0
- package/examples/constellation/top-navigation/top-nav-end.tsx +23 -0
- package/examples/constellation/top-navigation/top-nav-middle.tsx +17 -0
- package/examples/constellation/top-navigation/top-nav-start.tsx +29 -0
- package/examples/drag-and-drop/jira/data.tsx +320 -0
- package/examples/drag-and-drop/jira/entry.tsx +89 -0
- package/examples/drag-and-drop/jira/filters/filter-move-modal.tsx +172 -0
- package/examples/drag-and-drop/jira/filters/filter-tree-utils.tsx +134 -0
- package/examples/drag-and-drop/jira/filters/filters-menu-item.tsx +470 -0
- package/examples/drag-and-drop/jira/for-you/for-you-menu-item.tsx +74 -0
- package/examples/drag-and-drop/jira/projects/project-tile.tsx +37 -0
- package/examples/drag-and-drop/jira/projects/project.tsx +260 -0
- package/examples/drag-and-drop/jira/projects/projects-menu-item.tsx +120 -0
- package/examples/drag-and-drop/jira/recent/recent-menu-item.tsx +30 -0
- package/examples/drag-and-drop/jira/reducer.tsx +78 -0
- package/examples/drag-and-drop/jira/registry.tsx +52 -0
- package/examples/drag-and-drop/jira/reorder-actions.tsx +75 -0
- package/examples/drag-and-drop/jira/shared-top-level-flyout.tsx +144 -0
- package/examples/drag-and-drop/jira/sidebar.tsx +361 -0
- package/examples/drag-and-drop/jira/starred/starred-menu-item.tsx +29 -0
- package/examples/drag-and-drop/jira/state-context.tsx +34 -0
- package/examples/drag-and-drop/jira/top-level-shared-more-menu.tsx +99 -0
- package/examples/drag-and-drop/sidebar-example-container.tsx +38 -0
- package/examples/drag-and-drop/simple.tsx +653 -0
- package/examples/drag-and-drop/standalone-jira-sidebar-centered.tsx +27 -0
- package/examples/drag-and-drop/standalone-jira-sidebar.tsx +18 -0
- package/examples/drag-and-drop-in-the-sidebar-flyout.tsx +160 -0
- package/examples/drag-and-drop-jira-sidebar-centered.tsx +1 -0
- package/examples/drag-and-drop-jira-sidebar-standalone.tsx +1 -0
- package/examples/drag-and-drop-jira.tsx +1 -0
- package/examples/drag-and-drop.tsx +1 -0
- package/examples/expandable-menu-item.tsx +761 -0
- package/examples/flyout-menu-item-multiple.tsx +180 -0
- package/examples/flyout-menu-item.tsx +269 -0
- package/examples/images/200x20.png +0 -0
- package/examples/images/200x200.png +0 -0
- package/examples/images/20x20.png +0 -0
- package/examples/images/20x200.png +0 -0
- package/examples/images/cd.svg +9 -0
- package/examples/images/koala.png +0 -0
- package/examples/images/koala.svg +9 -0
- package/examples/images/money.svg +9 -0
- package/examples/legacy-var-testing.tsx +173 -0
- package/examples/link-menu-item.tsx +382 -0
- package/examples/main-content-border.tsx +147 -0
- package/examples/menu-item-avatar.tsx +41 -0
- package/examples/menu-item-conditional-tooltip.tsx +304 -0
- package/examples/menu-item-focus-ring-bleed.tsx +50 -0
- package/examples/menu-item-integration.tsx +206 -0
- package/examples/menu-item-narrow.tsx +290 -0
- package/examples/menu-item-scroll-into-view.tsx +283 -0
- package/examples/menu-items-deeply-nested.tsx +330 -0
- package/examples/menu-list.tsx +62 -0
- package/examples/menu-section.tsx +78 -0
- package/examples/page-layout-all-slots-banner-height-zero.tsx +3 -0
- package/examples/page-layout-all-slots-custom-sizes.tsx +3 -0
- package/examples/page-layout-all-slots-rtl.tsx +3 -0
- package/examples/page-layout-all-slots-scrollable-fixed.tsx +3 -0
- package/examples/page-layout-all-slots-scrollable.tsx +3 -0
- package/examples/page-layout-all-slots.tsx +3 -0
- package/examples/page-layout-aside-border.tsx +148 -0
- package/examples/page-layout-content-is-iframes.tsx +3 -0
- package/examples/page-layout-edge-case-absolute-positioned-collapsed-custom-sizes.tsx +3 -0
- package/examples/page-layout-edge-case-absolute-positioned-collapsed.tsx +3 -0
- package/examples/page-layout-edge-case-absolute-positioned-panel-visible.tsx +3 -0
- package/examples/page-layout-edge-case-absolute-positioned-resizable.tsx +3 -0
- package/examples/page-layout-edge-case-absolute-positioned.tsx +3 -0
- package/examples/page-layout-edge-case-using-legacy-vars.tsx +3 -0
- package/examples/page-layout-full-screen.tsx +253 -0
- package/examples/page-layout-implicit-rows.tsx +33 -0
- package/examples/page-layout-main-aside-scrollable-fixed.tsx +3 -0
- package/examples/page-layout-main-aside-scrollable.tsx +3 -0
- package/examples/page-layout-main-aside.tsx +3 -0
- package/examples/page-layout-panel-aside-default-widths.tsx +243 -0
- package/examples/page-layout-resizable-rtl.tsx +3 -0
- package/examples/page-layout-resizable.tsx +3 -0
- package/examples/page-layout-side-nav-collapse-shortcut.tsx +47 -0
- package/examples/page-layout-side-nav-content-scroll-with-sticky.tsx +135 -0
- package/examples/page-layout-side-nav-custom-width-greater-than-max.tsx +3 -0
- package/examples/page-layout-side-nav-custom-width-smaller-than-min.tsx +3 -0
- package/examples/page-layout-side-nav-main-aside-scrollable-fixed.tsx +3 -0
- package/examples/page-layout-side-nav-main-aside-scrollable.tsx +3 -0
- package/examples/page-layout-side-nav-main-aside.tsx +3 -0
- package/examples/page-layout-side-nav-onboarding.tsx +154 -0
- package/examples/page-layout-side-nav-overflowing-children.tsx +3 -0
- package/examples/page-layout-side-nav-slots.tsx +173 -0
- package/examples/page-layout-side-nav-with-menu-items.tsx +3 -0
- package/examples/page-layout-top-bar-side-nav-main-aside-scrollable-fixed.tsx +3 -0
- package/examples/page-layout-top-bar-side-nav-main-aside-scrollable.tsx +3 -0
- package/examples/page-layout-top-bar-side-nav-main-aside.tsx +3 -0
- package/examples/page-layout-top-bar-side-nav-main-scrollable-fixed.tsx +3 -0
- package/examples/page-layout-top-bar-side-nav-main-scrollable.tsx +3 -0
- package/examples/page-layout-top-bar-side-nav-main.tsx +3 -0
- package/examples/page-layout.tsx +1063 -0
- package/examples/panel-splitter.tsx +198 -0
- package/examples/resizable-slots.tsx +359 -0
- package/examples/side-nav-flyout.tsx +255 -0
- package/examples/stand-alone-iframe.tsx +22 -0
- package/examples/temp-icons/app-switcher-legacy.tsx +14 -0
- package/examples/temp-icons/atlassian-intelligence.tsx +14 -0
- package/examples/temp-icons/help.tsx +18 -0
- package/examples/temp-icons/menu.tsx +14 -0
- package/examples/temp-icons/settings.tsx +14 -0
- package/examples/top-nav-custom-profile-image.tsx +71 -0
- package/examples/top-nav-side-nav-collapsed.tsx +74 -0
- package/examples/top-nav-with-temp-nav-app-icon.tsx +63 -0
- package/examples/top-navigation-custom-logo.tsx +74 -0
- package/examples/top-navigation-stress.tsx +242 -0
- package/examples/top-navigation-themed-buttons.tsx +63 -0
- package/examples/top-navigation-theming-logged-out.tsx +75 -0
- package/examples/top-navigation-theming-with-picker.tsx +130 -0
- package/examples/top-navigation-theming.tsx +173 -0
- package/examples/top-navigation.tsx +128 -0
- package/examples/utils/example-utils.tsx +14 -0
- package/examples/utils/mock-root.tsx +18 -0
- package/examples/utils/mock-search.tsx +67 -0
- package/experimental/color-utils/parse-hex/package.json +17 -0
- package/experimental/color-utils/parse-hsl/package.json +17 -0
- package/experimental/color-utils/parse-rgb/package.json +17 -0
- package/experimental/color-utils/parse-user-color/package.json +17 -0
- package/experimental/top-nav-button/package.json +17 -0
- package/experimental/use-has-custom-theme/package.json +17 -0
- package/experimental/use-legacy-search-theme/package.json +17 -0
- package/layout/aside/package.json +17 -0
- package/layout/banner/package.json +17 -0
- package/layout/main/package.json +17 -0
- package/layout/panel/package.json +17 -0
- package/layout/panel-splitter/package.json +17 -0
- package/layout/root/package.json +17 -0
- package/layout/side-nav/package.json +17 -0
- package/layout/skip-links/package.json +17 -0
- package/layout/top-nav/package.json +17 -0
- package/package.json +245 -0
- package/side-nav-items/button-menu-item/package.json +17 -0
- package/side-nav-items/container-avatar/package.json +17 -0
- package/side-nav-items/drag-and-drop/drag-preview/package.json +17 -0
- package/side-nav-items/drag-and-drop/drop-indicator/package.json +17 -0
- package/side-nav-items/drag-and-drop/group-drop-indicator/package.json +17 -0
- package/side-nav-items/drag-and-drop/hitbox/package.json +17 -0
- package/side-nav-items/drag-and-drop/use-menu-item-drag-and-drop/package.json +17 -0
- package/side-nav-items/expandable-menu-item/package.json +17 -0
- package/side-nav-items/flyout-menu-item/package.json +17 -0
- package/side-nav-items/link-menu-item/package.json +17 -0
- package/side-nav-items/menu-list/package.json +17 -0
- package/side-nav-items/menu-list-item/package.json +17 -0
- package/side-nav-items/menu-section/package.json +17 -0
- package/side-nav-items/top-level-spacer/package.json +17 -0
- package/src/__tests__/informational-vr-tests/__snapshots__/layering/side-nav-expanded-on-mobile--mobile.png +0 -0
- package/src/__tests__/informational-vr-tests/__snapshots__/layering/side-nav-expanded-on-mobile-without-panel--mobile.png +0 -0
- package/src/__tests__/informational-vr-tests/__snapshots__/menu-items-deeply-nested/side-nav-with-deeply-nested-menu-items---nested-menu-item-selected--default.png +0 -0
- package/src/__tests__/informational-vr-tests/__snapshots__/menu-items-deeply-nested/side-nav-with-deeply-nested-menu-items---scrolled-to-the-end--default.png +0 -0
- package/src/__tests__/informational-vr-tests/__snapshots__/menu-items-deeply-nested/side-nav-with-deeply-nested-menu-items--default.png +0 -0
- package/src/__tests__/informational-vr-tests/__snapshots__/sidebar-drag-and-drop/sidebar-drag-and-drop---hover-bug--desktop-chrome.png +0 -0
- package/src/__tests__/informational-vr-tests/__snapshots__/sidebar-drag-and-drop/sidebar-drag-and-drop---hover-bug--desktop-firefox.png +0 -0
- package/src/__tests__/informational-vr-tests/__snapshots__/sidebar-drag-and-drop/sidebar-drag-and-drop---hover-bug--desktop-webkit.png +0 -0
- package/src/__tests__/informational-vr-tests/__snapshots__/sidebar-drag-and-drop/sidebar-drag-and-drop--desktop-chrome.png +0 -0
- package/src/__tests__/informational-vr-tests/__snapshots__/sidebar-drag-and-drop/sidebar-drag-and-drop--desktop-firefox.png +0 -0
- package/src/__tests__/informational-vr-tests/__snapshots__/sidebar-drag-and-drop/sidebar-drag-and-drop--desktop-webkit.png +0 -0
- package/src/__tests__/informational-vr-tests/layering.vr.tsx +35 -0
- package/src/__tests__/informational-vr-tests/menu-items-deeply-nested.vr.tsx +33 -0
- package/src/__tests__/informational-vr-tests/sidebar-drag-and-drop.vr.tsx +100 -0
- package/src/__tests__/playwright/drag-and-drop-in-the-sidebar-flyout.spec.tsx +235 -0
- package/src/__tests__/playwright/expandable-menu-item.spec.tsx +20 -0
- package/src/__tests__/playwright/flyout-menu-item.spec.tsx +22 -0
- package/src/__tests__/playwright/legacy-vars.spec.tsx +533 -0
- package/src/__tests__/playwright/menu-item-in-sidebar-drag-and-drop.spec.tsx +70 -0
- package/src/__tests__/playwright/page-layout.spec.tsx +47 -0
- package/src/__tests__/playwright/panel.spec.tsx +243 -0
- package/src/__tests__/playwright/resizing.spec.tsx +541 -0
- package/src/__tests__/playwright/side-nav-flyout.spec.tsx +223 -0
- package/src/__tests__/playwright/side-nav-responsiveness.spec.tsx +208 -0
- package/src/__tests__/playwright/skip-links.spec.tsx +111 -0
- package/src/__tests__/playwright/top-nav-end.spec.tsx +96 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-fixed-no-panel-vr--desktop-large.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-fixed-no-panel-vr--desktop.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-fixed-no-panel-vr--mobile.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-fixed-vr--desktop-large-splitter.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-fixed-vr--desktop-large.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-fixed-vr--desktop.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-fixed-vr--mobile.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-no-panel-vr--desktop-large.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-no-panel-vr--desktop.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-no-panel-vr--mobile.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-no-panel-with-forced-isfixed-temp---desktop.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-scrolled-fixed-vr--desktop-large.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-scrolled-fixed-vr--desktop.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-scrolled-fixed-vr--mobile.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-scrolled-vr--desktop-large.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-scrolled-vr--desktop.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-scrolled-vr--mobile.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-scrolled-with-forced-isfixed-temp---desktop.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-vr--desktop-large-splitter.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-vr--desktop-large.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-vr--desktop.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-vr--mobile.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/scrollable-with-forced-isfixed-temp---desktop.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/unscrollable-fixed-vr--desktop-large.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/unscrollable-fixed-vr--desktop.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/unscrollable-fixed-vr--mobile.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/unscrollable-no-panel-fixed-vr--desktop-large.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/unscrollable-no-panel-fixed-vr--desktop.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/unscrollable-no-panel-fixed-vr--mobile.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/unscrollable-no-panel-vr--desktop-large.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/unscrollable-no-panel-vr--desktop.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/unscrollable-no-panel-vr--mobile.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/unscrollable-no-panel-with-forced-isfixed-temp---desktop.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/unscrollable-vr--desktop-large.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/unscrollable-vr--desktop.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/unscrollable-vr--mobile.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/layering/unscrollable-with-forced-isfixed-temp---desktop.png +0 -0
- package/src/__tests__/vr-tests/__snapshots__/skip-links/skip-links--light-mode.png +0 -0
- package/src/__tests__/vr-tests/layering.vr.tsx +226 -0
- package/src/__tests__/vr-tests/skip-links.vr.tsx +14 -0
- package/src/components/__tests__/unit/badge-container.test.tsx +62 -0
- package/src/components/__tests__/unit/list.test.tsx +74 -0
- package/src/components/badge-container.tsx +72 -0
- package/src/components/forward-ref-with-generic.tsx +8 -0
- package/src/components/list-item.tsx +39 -0
- package/src/components/list.tsx +44 -0
- package/src/components/skip-links/__tests__/unit/skip-links-container.test.tsx +411 -0
- package/src/components/skip-links/skip-link.tsx +139 -0
- package/src/components/skip-links/skip-links-container.tsx +111 -0
- package/src/context/skip-links/skip-links-context.tsx +74 -0
- package/src/context/skip-links/skip-links-data-context.tsx +41 -0
- package/src/context/skip-links/skip-links-provider.tsx +74 -0
- package/src/context/skip-links/types.tsx +29 -0
- package/src/context/top-nav-start/top-nav-start-context-provider.tsx +26 -0
- package/src/context/top-nav-start/top-nav-start-context.tsx +21 -0
- package/src/entry-points/experimental/color-utils/parse-hex.tsx +1 -0
- package/src/entry-points/experimental/color-utils/parse-hsl.tsx +1 -0
- package/src/entry-points/experimental/color-utils/parse-rgb.tsx +1 -0
- package/src/entry-points/experimental/color-utils/parse-user-color.tsx +1 -0
- package/src/entry-points/experimental/top-nav-button.tsx +6 -0
- package/src/entry-points/experimental/use-has-custom-theme.tsx +1 -0
- package/src/entry-points/experimental/use-legacy-search-theme.tsx +1 -0
- package/src/entry-points/layout/aside.tsx +1 -0
- package/src/entry-points/layout/banner.tsx +1 -0
- package/src/entry-points/layout/main.tsx +7 -0
- package/src/entry-points/layout/panel-splitter.tsx +3 -0
- package/src/entry-points/layout/panel.tsx +1 -0
- package/src/entry-points/layout/root.tsx +1 -0
- package/src/entry-points/layout/side-nav.tsx +7 -0
- package/src/entry-points/layout/skip-links.tsx +2 -0
- package/src/entry-points/layout/top-nav.tsx +4 -0
- package/src/entry-points/side-nav-items/button-menu-item.tsx +3 -0
- package/src/entry-points/side-nav-items/container-avatar.tsx +1 -0
- package/src/entry-points/side-nav-items/drag-and-drop/drag-preview.tsx +1 -0
- package/src/entry-points/side-nav-items/drag-and-drop/drop-indicator.tsx +5 -0
- package/src/entry-points/side-nav-items/drag-and-drop/group-drop-indicator.tsx +1 -0
- package/src/entry-points/side-nav-items/drag-and-drop/hitbox.tsx +7 -0
- package/src/entry-points/side-nav-items/drag-and-drop/use-menu-item-drag-and-drop.tsx +4 -0
- package/src/entry-points/side-nav-items/expandable-menu-item.tsx +13 -0
- package/src/entry-points/side-nav-items/flyout-menu-item.tsx +12 -0
- package/src/entry-points/side-nav-items/link-menu-item.tsx +3 -0
- package/src/entry-points/side-nav-items/menu-list-item.tsx +1 -0
- package/src/entry-points/side-nav-items/menu-list.tsx +1 -0
- package/src/entry-points/side-nav-items/menu-section.tsx +3 -0
- package/src/entry-points/side-nav-items/top-level-spacer.tsx +1 -0
- package/src/entry-points/top-nav-items/create-button.tsx +1 -0
- package/src/entry-points/top-nav-items/custom-title.tsx +1 -0
- package/src/entry-points/top-nav-items/help.tsx +1 -0
- package/src/entry-points/top-nav-items/index.tsx +13 -0
- package/src/entry-points/top-nav-items/log-in.tsx +1 -0
- package/src/entry-points/top-nav-items/notifications.tsx +1 -0
- package/src/entry-points/top-nav-items/profile.tsx +1 -0
- package/src/entry-points/top-nav-items/settings.tsx +1 -0
- package/src/index.tsx +73 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item/button-menu-item---disabled---pressed--default.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item/button-menu-item---pressed--default.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item/expandable-menu-item---not-selectable---pressed--default.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item/expandable-menu-item---selectable---pressed--default.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item/expandable-menu-item---selected---pressed--default.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item/flyout-menu-item---pressed--default.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item/flyout-menu-item---selected---pressed--default.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item/link-menu-item---pressed--default.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item/link-menu-item---scroll-into-view-behavior--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item/link-menu-item---scroll-into-view-behavior--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item/link-menu-item---scroll-into-view-behavior--desktop-safari.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item/link-menu-item---selected---pressed--default.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item-increased-hitbox/increasing-hitbox-for-nested-items-click-target---desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item-increased-hitbox/increasing-hitbox-for-nested-items-click-target---desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item-increased-hitbox/increasing-hitbox-for-nested-items-click-target---desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item-increased-hitbox/increasing-hitbox-for-nested-items-hover---desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item-increased-hitbox/increasing-hitbox-for-nested-items-hover---desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item-increased-hitbox/increasing-hitbox-for-nested-items-hover---desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item-increased-hitbox/increasing-hitbox-for-nested-items-too-far-back---desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item-increased-hitbox/increasing-hitbox-for-nested-items-too-far-back---desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/__snapshots__/menu-item-increased-hitbox/increasing-hitbox-for-nested-items-too-far-back---desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/menu-item-increased-hitbox.vr.tsx +79 -0
- package/src/ui/menu-item/__tests__/informational-vr-tests/menu-item.vr.tsx +151 -0
- package/src/ui/menu-item/__tests__/playwright/scroll-into-view.spec.tsx +92 -0
- package/src/ui/menu-item/__tests__/unit/_util.tsx +40 -0
- package/src/ui/menu-item/__tests__/unit/expandable-menu-item.test.tsx +1094 -0
- package/src/ui/menu-item/__tests__/unit/flyout-menu-item.test.tsx +422 -0
- package/src/ui/menu-item/__tests__/unit/menu-item.test.tsx +649 -0
- package/src/ui/menu-item/__tests__/unit/top-level-spacer.test.tsx +94 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/button-menu-item--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/button-menu-item--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/button-menu-item-combine--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/button-menu-item-combine--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/button-menu-item-reorder-after--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/button-menu-item-reorder-after--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/button-menu-item-reorder-before--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/button-menu-item-reorder-before--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/expandable-menu-item-combine--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/expandable-menu-item-combine--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/expandable-menu-item-reorder-after--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/expandable-menu-item-reorder-after--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/expandable-menu-item-reorder-before--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/expandable-menu-item-reorder-before--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/expandable-menu-item-trigger--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/expandable-menu-item-trigger--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/flyout-menu-item-combine--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/flyout-menu-item-combine--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/flyout-menu-item-reorder-after--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/flyout-menu-item-reorder-after--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/flyout-menu-item-reorder-before--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/flyout-menu-item-reorder-before--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/flyout-menu-item-trigger--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/flyout-menu-item-trigger--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/link-menu-item--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/link-menu-item--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/link-menu-item-combine--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/link-menu-item-combine--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/link-menu-item-combine-blocked--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/link-menu-item-combine-blocked--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/link-menu-item-reorder-after--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/link-menu-item-reorder-after--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/link-menu-item-reorder-after-blocked--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/link-menu-item-reorder-after-blocked--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/link-menu-item-reorder-before--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/link-menu-item-reorder-before--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/link-menu-item-reorder-before-blocked--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/drag-and-drop/link-menu-item-reorder-before-blocked--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item---custom-elembefore---action-focused--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item---custom-elembefore---action-hovered--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item---custom-elembefore---default-state--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item---custom-elembefore---elembefore-focused--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item---custom-elembefore---elembefore-hovered--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item---custom-elembefore---menu-item-focused--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item---custom-elembefore---menu-item-hovered--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item---selected-with-dropdown-action-open--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item---with-dropdown-action-open--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item---with-dropdown-action-open-and-hovered--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item-collapsed-with-selected-child--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item-expanded-with-actions-on-hover--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item-expanded-with-actions-on-hover-and-elem-after--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item-expanded-with-elem-after--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item-nested--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item-nested-rtl--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item-selected--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item-selected-with-icon--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item-with-actions--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item-with-actions-on-hover---hovered--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item-with-actions-on-hover---selected-and-hovered--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item-with-actions-on-hover--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item-with-actions-on-hover-and-elem-after---hovered--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/expandable/expandable-menu-item-with-actions-on-hover-and-elem-after--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/flyout-menu-item/a-flyout-menu-with-a-nested-popup-using-shouldrendertoparent---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/flyout-menu-item/flyout-menu-item-default-open-example--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/flyout-menu-item/flyout-menu-item-default-open-rtl--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/flyout-menu-item/flyout-menu-item-default-open-selected-vr--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/flyout-menu-item/flyout-menu-item-example--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/flyout-menu-item/flyout-menu-item-rtl--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item---disabled---hovered--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item---disabled---hovered--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item---disabled---hovered--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item---disabled--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item---disabled--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item---disabled--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item---disabled-with-actions--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item---disabled-with-actions--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item---disabled-with-actions--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item---with-dropdown-action-open--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item---with-dropdown-action-open--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item---with-dropdown-action-open--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-example--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-example--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-example--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-rtlexample--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-rtlexample--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-rtlexample--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-with-actions-on-hover-appearing-on-focus--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-with-actions-on-hover-appearing-on-focus--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-with-actions-on-hover-appearing-on-focus--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-with-actions-on-hover-appearing-on-hover--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-with-actions-on-hover-appearing-on-hover--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-with-actions-on-hover-appearing-on-hover--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-with-elem-after-and-hovered--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-with-elem-after-and-hovered--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-with-elem-after-and-hovered--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-with-popup--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-with-popup--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/button-menu-item-with-popup--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item---with-dropdown-action-open--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item---with-dropdown-action-open--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item---with-dropdown-action-open--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-bleed--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-bleed--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-bleed--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-example--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-example--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-example--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-rtlexample--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-rtlexample--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-rtlexample--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-with-actions-on-hover-appearing-on-focus--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-with-actions-on-hover-appearing-on-focus--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-with-actions-on-hover-appearing-on-focus--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-with-actions-on-hover-appearing-on-hover--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-with-actions-on-hover-appearing-on-hover--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-with-actions-on-hover-appearing-on-hover--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-with-elem-after-and-hovered--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-with-elem-after-and-hovered--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/link-menu-item-with-elem-after-and-hovered--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/menu-item-avatar-example--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/menu-item-avatar-example--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/menu-item-avatar-example--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/menu-items-in-a-narrow-container--desktop-chrome.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/menu-items-in-a-narrow-container--desktop-firefox.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item/menu-items-in-a-narrow-container--desktop-webkit.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/button-menu-item--content-long---description-long---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/button-menu-item--content-long---description-none---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/button-menu-item--content-long---description-short---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/button-menu-item--content-short---description-long---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/button-menu-item--content-short---description-none---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/button-menu-item--content-short---description-short---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/button-menu-item-add-action-button--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/button-menu-item-with-tooltip-disabled--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/expandable-menu-item--content-long---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/expandable-menu-item--content-short---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/expandable-menu-item-with-tooltip-disabled--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/flyout-menu-item--content-long---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/flyout-menu-item--content-short---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/flyout-menu-item-with-tooltip-disabled--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/link-menu-item--content-long---description-long---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/link-menu-item--content-long---description-none---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/link-menu-item--content-long---description-short---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/link-menu-item--content-short---description-long---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/link-menu-item--content-short---description-none---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/link-menu-item--content-short---description-short---default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/link-menu-item-with-tooltip-disabled--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/menu-item-conditional-tooltip/menu-item-button-with-nested-children--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/__snapshots__/top-level-spacer/global-apps-example--default.png +0 -0
- package/src/ui/menu-item/__tests__/vr-tests/drag-and-drop.vr.tsx +172 -0
- package/src/ui/menu-item/__tests__/vr-tests/expandable.vr.tsx +248 -0
- package/src/ui/menu-item/__tests__/vr-tests/flyout-menu-item.vr.tsx +46 -0
- package/src/ui/menu-item/__tests__/vr-tests/menu-item-conditional-tooltip.vr.tsx +312 -0
- package/src/ui/menu-item/__tests__/vr-tests/menu-item.vr.tsx +210 -0
- package/src/ui/menu-item/__tests__/vr-tests/top-level-spacer.vr.tsx +17 -0
- package/src/ui/menu-item/button-menu-item.tsx +87 -0
- package/src/ui/menu-item/constants.tsx +15 -0
- package/src/ui/menu-item/container-avatar.tsx +39 -0
- package/src/ui/menu-item/drag-and-drop/drag-preview.tsx +98 -0
- package/src/ui/menu-item/drag-and-drop/drop-indicator.tsx +11 -0
- package/src/ui/menu-item/drag-and-drop/group-drop-indicator.tsx +7 -0
- package/src/ui/menu-item/drag-and-drop/hitbox.tsx +13 -0
- package/src/ui/menu-item/drag-and-drop/use-menu-item-drag-and-drop.tsx +243 -0
- package/src/ui/menu-item/drag-handle.tsx +42 -0
- package/src/ui/menu-item/expandable-menu-item/expandable-menu-item-content.tsx +84 -0
- package/src/ui/menu-item/expandable-menu-item/expandable-menu-item-context.tsx +61 -0
- package/src/ui/menu-item/expandable-menu-item/expandable-menu-item-level-context.tsx +9 -0
- package/src/ui/menu-item/expandable-menu-item/expandable-menu-item-trigger.tsx +308 -0
- package/src/ui/menu-item/expandable-menu-item/expandable-menu-item.tsx +114 -0
- package/src/ui/menu-item/flyout-menu-item/flyout-menu-item-content.tsx +92 -0
- package/src/ui/menu-item/flyout-menu-item/flyout-menu-item-context.tsx +19 -0
- package/src/ui/menu-item/flyout-menu-item/flyout-menu-item-trigger.tsx +124 -0
- package/src/ui/menu-item/flyout-menu-item/flyout-menu-item.tsx +98 -0
- package/src/ui/menu-item/link-menu-item.tsx +119 -0
- package/src/ui/menu-item/menu-item-signals.tsx +6 -0
- package/src/ui/menu-item/menu-item.tsx +853 -0
- package/src/ui/menu-item/menu-list-item.tsx +12 -0
- package/src/ui/menu-item/menu-list.tsx +12 -0
- package/src/ui/menu-item/top-level-spacer.tsx +49 -0
- package/src/ui/menu-item/types.tsx +181 -0
- package/src/ui/menu-item/use-scroll-menu-item-into-view.tsx +78 -0
- package/src/ui/menu-section/__tests__/unit/menu-section.test.tsx +96 -0
- package/src/ui/menu-section/__tests__/vr-tests/__snapshots__/divider/divider--default.png +0 -0
- package/src/ui/menu-section/__tests__/vr-tests/__snapshots__/menu-section/menu-section-example--default.png +0 -0
- package/src/ui/menu-section/__tests__/vr-tests/divider.vr.tsx +14 -0
- package/src/ui/menu-section/__tests__/vr-tests/menu-section.vr.tsx +14 -0
- package/src/ui/menu-section/divider.tsx +33 -0
- package/src/ui/menu-section/menu-section-context.tsx +15 -0
- package/src/ui/menu-section/menu-section-heading.tsx +43 -0
- package/src/ui/menu-section/menu-section.tsx +70 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/page-layout/large-panel-default-width-on-mobile--desktop--platform-design-system-nav4-panel-mobile-width-fix-false.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/page-layout/large-panel-default-width-on-mobile--desktop--platform-design-system-nav4-panel-mobile-width-fix-true.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/page-layout/small-panel-default-width-on-mobile--desktop--platform-design-system-nav4-panel-mobile-width-fix-false.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/page-layout/small-panel-default-width-on-mobile--desktop--platform-design-system-nav4-panel-mobile-width-fix-true.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/slot-borders/above-md-breakpoint---side-nav-expanded--default--platform-design-system-nav4-panel-default-border-false-platform-design-system-nav4-sidenav-border-false.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/slot-borders/above-md-breakpoint---side-nav-expanded--default--platform-design-system-nav4-panel-default-border-false-platform-design-system-nav4-sidenav-border-true.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/slot-borders/above-md-breakpoint---side-nav-expanded--default--platform-design-system-nav4-panel-default-border-true-platform-design-system-nav4-sidenav-border-false.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/slot-borders/above-md-breakpoint---side-nav-expanded--default--platform-design-system-nav4-panel-default-border-true-platform-design-system-nav4-sidenav-border-true.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/slot-borders/above-md-breakpoint---side-nav-flyout--default--platform-design-system-nav4-panel-default-border-false-platform-design-system-nav4-sidenav-border-false.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/slot-borders/above-md-breakpoint---side-nav-flyout--default--platform-design-system-nav4-panel-default-border-false-platform-design-system-nav4-sidenav-border-true.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/slot-borders/above-md-breakpoint---side-nav-flyout--default--platform-design-system-nav4-panel-default-border-true-platform-design-system-nav4-sidenav-border-false.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/slot-borders/above-md-breakpoint---side-nav-flyout--default--platform-design-system-nav4-panel-default-border-true-platform-design-system-nav4-sidenav-border-true.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/slot-borders/below-md-breakpoint---side-nav-expanded--default--platform-design-system-nav4-panel-default-border-false-platform-design-system-nav4-sidenav-border-false.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/slot-borders/below-md-breakpoint---side-nav-expanded--default--platform-design-system-nav4-panel-default-border-false-platform-design-system-nav4-sidenav-border-true.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/slot-borders/below-md-breakpoint---side-nav-expanded--default--platform-design-system-nav4-panel-default-border-true-platform-design-system-nav4-sidenav-border-false.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/slot-borders/below-md-breakpoint---side-nav-expanded--default--platform-design-system-nav4-panel-default-border-true-platform-design-system-nav4-sidenav-border-true.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/top-nav/breakpoint-lg---composition--firefox.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/top-nav/breakpoint-lg---with-min-widths--firefox.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/top-nav/breakpoint-lg--firefox.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/top-nav/breakpoint-md---composition--firefox.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/top-nav/breakpoint-md---with-min-widths--firefox.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/top-nav/breakpoint-md--firefox.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/top-nav/breakpoint-sm---with-min-widths--firefox.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/top-nav/breakpoint-sm--firefox.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/top-nav/breakpoint-xl---composition--firefox.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/top-nav/breakpoint-xl---with-min-widths--firefox.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/top-nav/breakpoint-xl--firefox.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/top-nav/breakpoint-xs---with-min-widths--firefox.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/__snapshots__/top-nav/breakpoint-xs--firefox.png +0 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/page-layout.vr.tsx +53 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/slot-borders.vr.tsx +54 -0
- package/src/ui/page-layout/__tests__/informational-vr-tests/top-nav.vr.tsx +207 -0
- package/src/ui/page-layout/__tests__/unit/aside.test.tsx +21 -0
- package/src/ui/page-layout/__tests__/unit/banner.test.tsx +31 -0
- package/src/ui/page-layout/__tests__/unit/get-width.test.tsx +12 -0
- package/src/ui/page-layout/__tests__/unit/hoist-utils.test.tsx +85 -0
- package/src/ui/page-layout/__tests__/unit/page-layout.test.tsx +278 -0
- package/src/ui/page-layout/__tests__/unit/panel-splitter.test.tsx +771 -0
- package/src/ui/page-layout/__tests__/unit/panel.test.tsx +77 -0
- package/src/ui/page-layout/__tests__/unit/resizing.test.tsx +706 -0
- package/src/ui/page-layout/__tests__/unit/side-nav-flyout.test.tsx +1154 -0
- package/src/ui/page-layout/__tests__/unit/side-nav.test.tsx +771 -0
- package/src/ui/page-layout/__tests__/unit/sticky-header.test.tsx +57 -0
- package/src/ui/page-layout/__tests__/unit/test-utils.tsx +185 -0
- package/src/ui/page-layout/__tests__/unit/top-nav-end.test.tsx +132 -0
- package/src/ui/page-layout/__tests__/unit/top-nav.test.tsx +28 -0
- package/src/ui/page-layout/__tests__/unit/use-expand-side-nav.test.tsx +278 -0
- package/src/ui/page-layout/__tests__/unit/use-text-direction.test.tsx +37 -0
- package/src/ui/page-layout/__tests__/unit/use-toggle-side-nav.test.tsx +233 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/main-content-border/main-content-border---theming-disabled--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/main-content-border/main-content-border---theming-disabled--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/main-content-border/main-content-border---theming-disabled-side-nav-collapsed--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/main-content-border/main-content-border---theming-disabled-side-nav-collapsed--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/main-content-border/main-content-border---theming-enabled--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/main-content-border/main-content-border---theming-enabled--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/main-content-border/main-content-border---theming-enabled-full-screen-mode--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/main-content-border/main-content-border---theming-enabled-full-screen-mode--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/main-content-border/main-content-border---theming-enabled-side-nav-collapsed--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/main-content-border/main-content-border---theming-enabled-side-nav-collapsed--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/all-slots--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/all-slots--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/all-slots-banner-height-zero--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/all-slots-banner-height-zero--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/all-slots-custom-sizes--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/all-slots-custom-sizes--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/all-slots-rtl--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/all-slots-rtl--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/all-slots-scrollable--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/all-slots-scrollable--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/all-slots-scrollable-fixed--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/all-slots-scrollable-fixed--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/aside-composed-with-border--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/aside-composed-with-border--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/edge-case-sibling-absolute-positioned--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/edge-case-sibling-absolute-positioned--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/edge-case-sibling-absolute-positioned-collapsed--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/edge-case-sibling-absolute-positioned-collapsed--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/edge-case-sibling-absolute-positioned-custom-sizes--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/edge-case-sibling-absolute-positioned-custom-sizes--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/edge-case-sibling-absolute-positioned-panel-visible--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/edge-case-sibling-absolute-positioned-panel-visible--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/edge-case-sibling-absolute-positioned-resizable--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/edge-case-sibling-absolute-positioned-resizable--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/edge-case-using-legacy-vars--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/edge-case-using-legacy-vars--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/main-aside--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/main-aside--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/main-aside-scrollable--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/main-aside-scrollable--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/main-aside-scrollable-fixed--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/main-aside-scrollable-fixed--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/page-layout-implicit-rows--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/page-layout-implicit-rows--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/panel-and-aside---default-widths--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/panel-and-aside---default-widths--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/panel-and-aside---zero-widths--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/panel-and-aside---zero-widths--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/panel-default-background-color--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/panel-default-background-color--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/panel-should-have-correct-width-when-there-is-no-sidenav-mounted--desktop--platform-design-system-nav4-preview-panel-support-false.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/panel-should-have-correct-width-when-there-is-no-sidenav-mounted--desktop--platform-design-system-nav4-preview-panel-support-true.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/resizable--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/side-nav-content-slot---scroll-with-sticky-child--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/side-nav-custom-width-greater-than-max-width--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/side-nav-custom-width-smaller-than-min-width--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/side-nav-main-aside--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/side-nav-main-aside--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/side-nav-main-aside-scrollable--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/side-nav-main-aside-scrollable--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/side-nav-main-aside-scrollable-fixed--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/side-nav-main-aside-scrollable-fixed--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/side-nav-overflowing-children--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/side-nav-slots--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/side-nav-with-menu-items--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/side-nav-with-menu-items--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/top-bar-side-nav-main--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/top-bar-side-nav-main--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/top-bar-side-nav-main-aside--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/top-bar-side-nav-main-aside--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/top-bar-side-nav-main-aside-scrollable--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/top-bar-side-nav-main-aside-scrollable--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/top-bar-side-nav-main-aside-scrollable-fixed--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/top-bar-side-nav-main-aside-scrollable-fixed--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/top-bar-side-nav-main-scrollable--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/top-bar-side-nav-main-scrollable--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/top-bar-side-nav-main-scrollable-fixed--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/page-layout/top-bar-side-nav-main-scrollable-fixed--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/panel-splitter/focused-panel-splitter-with-position-end--default.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/panel-splitter/focused-panel-splitter-with-position-start--default.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/panel-splitter/hovered-panel-splitter-with-position-end--default--platform-nav4-panel-splitter-keyboard-a11y-false.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/panel-splitter/hovered-panel-splitter-with-position-end--default--platform-nav4-panel-splitter-keyboard-a11y-true.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/panel-splitter/hovered-panel-splitter-with-position-start--default--platform-nav4-panel-splitter-keyboard-a11y-false.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/panel-splitter/hovered-panel-splitter-with-position-start--default--platform-nav4-panel-splitter-keyboard-a11y-true.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/side-nav-flyout/side-nav-default-collapsed--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/side-nav-flyout/side-nav-default-collapsed--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/side-nav-flyout/side-nav-default-collapsed-toggle-button-hovered--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/side-nav-flyout/side-nav-default-collapsed-toggle-button-hovered--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/side-nav-flyout/side-nav-default-collapsed-with-open-child-layer--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/side-nav-flyout/side-nav-default-collapsed-with-open-child-layer--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/side-nav-flyout/side-nav-default-collapsed-with-open-child-layer-toggle-button-hovered--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/side-nav-flyout/side-nav-default-collapsed-with-open-child-layer-toggle-button-hovered--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/side-nav-flyout/side-nav-default-expanded--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/side-nav-flyout/side-nav-default-expanded--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/side-nav-flyout/side-nav-default-expanded-toggle-button-hovered--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/side-nav-flyout/side-nav-default-expanded-toggle-button-hovered--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/side-nav-flyout/side-nav-default-expanded-with-open-child-layer--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/side-nav-flyout/side-nav-default-expanded-with-open-child-layer--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/side-nav-flyout/side-nav-default-expanded-with-open-child-layer-toggle-button-hovered--desktop.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/__snapshots__/side-nav-flyout/side-nav-default-expanded-with-open-child-layer-toggle-button-hovered--mobile.png +0 -0
- package/src/ui/page-layout/__tests__/vr-tests/main-content-border.vr.tsx +47 -0
- package/src/ui/page-layout/__tests__/vr-tests/page-layout.vr.tsx +337 -0
- package/src/ui/page-layout/__tests__/vr-tests/panel-splitter.vr.tsx +72 -0
- package/src/ui/page-layout/__tests__/vr-tests/side-nav-flyout.vr.tsx +170 -0
- package/src/ui/page-layout/aside.tsx +246 -0
- package/src/ui/page-layout/banner.tsx +92 -0
- package/src/ui/page-layout/constants.tsx +56 -0
- package/src/ui/page-layout/hoist-slot-sizes-context.tsx +7 -0
- package/src/ui/page-layout/hoist-utils.tsx +64 -0
- package/src/ui/page-layout/id-utils.tsx +33 -0
- package/src/ui/page-layout/main/main-sticky-context.tsx +6 -0
- package/src/ui/page-layout/main/main-sticky-header.tsx +64 -0
- package/src/ui/page-layout/main/main.tsx +109 -0
- package/src/ui/page-layout/panel-splitter/context.tsx +60 -0
- package/src/ui/page-layout/panel-splitter/convert-resize-bound-to-pixels.tsx +20 -0
- package/src/ui/page-layout/panel-splitter/get-percentage-within-pixel-bounds.tsx +35 -0
- package/src/ui/page-layout/panel-splitter/get-width.tsx +33 -0
- package/src/ui/page-layout/panel-splitter/keyboard-resize-manager.tsx +89 -0
- package/src/ui/page-layout/panel-splitter/panel-splitter.tsx +469 -0
- package/src/ui/page-layout/panel-splitter/provider.tsx +65 -0
- package/src/ui/page-layout/panel-splitter/types.tsx +25 -0
- package/src/ui/page-layout/panel-splitter/use-text-direction.tsx +17 -0
- package/src/ui/page-layout/panel.tsx +338 -0
- package/src/ui/page-layout/root.tsx +162 -0
- package/src/ui/page-layout/side-nav/element-context.tsx +18 -0
- package/src/ui/page-layout/side-nav/flyout-close-delay-ms.tsx +12 -0
- package/src/ui/page-layout/side-nav/side-nav-content.tsx +57 -0
- package/src/ui/page-layout/side-nav/side-nav-footer.tsx +48 -0
- package/src/ui/page-layout/side-nav/side-nav-header.tsx +32 -0
- package/src/ui/page-layout/side-nav/side-nav.tsx +886 -0
- package/src/ui/page-layout/side-nav/toggle-button-context.tsx +21 -0
- package/src/ui/page-layout/side-nav/toggle-button-provider.tsx +28 -0
- package/src/ui/page-layout/side-nav/toggle-button.tsx +176 -0
- package/src/ui/page-layout/side-nav/types.tsx +18 -0
- package/src/ui/page-layout/side-nav/use-expand-side-nav.tsx +57 -0
- package/src/ui/page-layout/side-nav/use-side-nav-visibility-callbacks.tsx +75 -0
- package/src/ui/page-layout/side-nav/use-side-nav-visibility.tsx +43 -0
- package/src/ui/page-layout/side-nav/use-toggle-side-nav.tsx +47 -0
- package/src/ui/page-layout/side-nav/visibility-context.tsx +17 -0
- package/src/ui/page-layout/side-nav/visibility-provider.tsx +20 -0
- package/src/ui/page-layout/top-nav/top-nav-end.tsx +168 -0
- package/src/ui/page-layout/top-nav/top-nav-middle.tsx +111 -0
- package/src/ui/page-layout/top-nav/top-nav-start.tsx +96 -0
- package/src/ui/page-layout/top-nav/top-nav.tsx +142 -0
- package/src/ui/page-layout/types.tsx +20 -0
- package/src/ui/page-layout/use-resizing-width-css-var-on-root-element.tsx +70 -0
- package/src/ui/top-nav-items/__tests__/informational-vr-tests/__snapshots__/top-navigation/nav-logo-hover---custom-theming--desktop.png +0 -0
- package/src/ui/top-nav-items/__tests__/informational-vr-tests/__snapshots__/top-navigation/nav-logo-hover---custom-theming--mobile.png +0 -0
- package/src/ui/top-nav-items/__tests__/informational-vr-tests/__snapshots__/top-navigation/nav-logo-hover--desktop.png +0 -0
- package/src/ui/top-nav-items/__tests__/informational-vr-tests/__snapshots__/top-navigation/nav-logo-hover--mobile.png +0 -0
- package/src/ui/top-nav-items/__tests__/informational-vr-tests/__snapshots__/top-navigation/nav-logo-pressed---custom-theming--desktop.png +0 -0
- package/src/ui/top-nav-items/__tests__/informational-vr-tests/__snapshots__/top-navigation/nav-logo-pressed---custom-theming--mobile.png +0 -0
- package/src/ui/top-nav-items/__tests__/informational-vr-tests/__snapshots__/top-navigation/nav-logo-pressed--desktop.png +0 -0
- package/src/ui/top-nav-items/__tests__/informational-vr-tests/__snapshots__/top-navigation/nav-logo-pressed--mobile.png +0 -0
- package/src/ui/top-nav-items/__tests__/informational-vr-tests/__snapshots__/top-navigation/responsive-menu-items--mobile.png +0 -0
- package/src/ui/top-nav-items/__tests__/informational-vr-tests/__snapshots__/top-navigation/responsive-menu-items-on-click--mobile.png +0 -0
- package/src/ui/top-nav-items/__tests__/informational-vr-tests/top-navigation.vr.tsx +108 -0
- package/src/ui/top-nav-items/__tests__/playwright/theming.spec.tsx +21 -0
- package/src/ui/top-nav-items/__tests__/unit/chat-button.test.tsx +40 -0
- package/src/ui/top-nav-items/__tests__/unit/create-button.test.tsx +34 -0
- package/src/ui/top-nav-items/__tests__/unit/end-item.test.tsx +43 -0
- package/src/ui/top-nav-items/__tests__/unit/help.test.tsx +101 -0
- package/src/ui/top-nav-items/__tests__/unit/notifications.test.tsx +63 -0
- package/src/ui/top-nav-items/__tests__/unit/profile.test.tsx +65 -0
- package/src/ui/top-nav-items/__tests__/unit/settings.test.tsx +51 -0
- package/src/ui/top-nav-items/__tests__/unit/theming.test.tsx +76 -0
- package/src/ui/top-nav-items/__tests__/unit/top-nav-items.test.tsx +181 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/log-in-button--desktop.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/search-right-elem--default.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/theme-is-applied-with-an-hsl-color--desktop.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/theme-is-applied-with-an-rgb-color--desktop.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/themed-button-focus-state--default.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/themed-button-hover-state--default.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/themed-create-button-hover-state--desktop.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/themed-link-button-focus-state--default.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/themed-link-button-hover-state--default.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/themed-search-focus-state--default.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/theming-is-enabled--desktop--platform-team25-app-icon-tiles-false.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/theming-is-enabled--desktop--platform-team25-app-icon-tiles-true.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/top-nav-custom-profile-image--default.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/top-nav-side-nav-collapsed--desktop.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/top-nav-side-nav-collapsed--mobile.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/top-navigation-custom-logo200x200example--desktop.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/top-navigation-custom-logo200x200example--mobile.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/top-navigation-custom-logo200x20example--desktop.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/top-navigation-custom-logo200x20example--mobile.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/top-navigation-custom-logo20x200example--desktop.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/top-navigation-custom-logo20x200example--mobile.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/top-navigation-custom-logo20x20example--desktop.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/top-navigation-custom-logo20x20example--mobile.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/top-navigation-example--desktop--platform-team25-app-icon-tiles-false.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/top-navigation-example--desktop--platform-team25-app-icon-tiles-true.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/top-navigation-example--mobile--platform-team25-app-icon-tiles-false.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/top-navigation-example--mobile--platform-team25-app-icon-tiles-true.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/__snapshots__/top-navigation/top-navigation-with-a-large-search-input-in-focus-state--default.png +0 -0
- package/src/ui/top-nav-items/__tests__/vr-tests/top-navigation.vr.tsx +154 -0
- package/src/ui/top-nav-items/app-switcher.tsx +81 -0
- package/src/ui/top-nav-items/chat-button.tsx +49 -0
- package/src/ui/top-nav-items/create-button.tsx +51 -0
- package/src/ui/top-nav-items/custom-title.tsx +88 -0
- package/src/ui/top-nav-items/end-item.tsx +120 -0
- package/src/ui/top-nav-items/help.tsx +69 -0
- package/src/ui/top-nav-items/log-in.tsx +66 -0
- package/src/ui/top-nav-items/nav-logo.tsx +287 -0
- package/src/ui/top-nav-items/notifications.tsx +67 -0
- package/src/ui/top-nav-items/profile.tsx +26 -0
- package/src/ui/top-nav-items/search.tsx +120 -0
- package/src/ui/top-nav-items/settings.tsx +16 -0
- package/src/ui/top-nav-items/themed/__tests__/unit/button.test.tsx +57 -0
- package/src/ui/top-nav-items/themed/__tests__/unit/use-custom-theme.test.tsx +43 -0
- package/src/ui/top-nav-items/themed/button.tsx +576 -0
- package/src/ui/top-nav-items/themed/color-utils/__tests__/unit/hex.test.tsx +131 -0
- package/src/ui/top-nav-items/themed/color-utils/__tests__/unit/hsl.test.tsx +117 -0
- package/src/ui/top-nav-items/themed/color-utils/__tests__/unit/rgb.test.tsx +88 -0
- package/src/ui/top-nav-items/themed/color-utils/__tests__/unit/try-parse-user-color.test.tsx +35 -0
- package/src/ui/top-nav-items/themed/color-utils/formats/hex.tsx +47 -0
- package/src/ui/top-nav-items/themed/color-utils/formats/hsl.tsx +112 -0
- package/src/ui/top-nav-items/themed/color-utils/formats/rgb.tsx +41 -0
- package/src/ui/top-nav-items/themed/color-utils/index.tsx +111 -0
- package/src/ui/top-nav-items/themed/color-utils/parse-user-color.tsx +31 -0
- package/src/ui/top-nav-items/themed/color-utils/types.tsx +6 -0
- package/src/ui/top-nav-items/themed/get-custom-theme-styles.tsx +186 -0
- package/src/ui/top-nav-items/themed/has-custom-theme-context.tsx +13 -0
- package/src/ui/top-nav-items/themed/migration.tsx +70 -0
- package/src/ui/top-nav-items/themed/palette.tsx +53 -0
- package/src/ui/top-nav-items/themed/search.tsx +70 -0
- package/src/ui/top-nav-items/themed/use-custom-theme.tsx +51 -0
- package/top-nav-items/create-button/package.json +17 -0
- package/top-nav-items/custom-title/package.json +17 -0
- package/top-nav-items/help/package.json +17 -0
- package/top-nav-items/log-in/package.json +17 -0
- package/top-nav-items/notifications/package.json +17 -0
- package/top-nav-items/package.json +17 -0
- package/top-nav-items/profile/package.json +17 -0
- package/top-nav-items/settings/package.json +17 -0
- package/tsconfig.app.json +92 -0
- package/tsconfig.dev.json +173 -0
- package/tsconfig.json +16 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,3278 @@
|
|
|
1
|
+
# @atlassian/navigation-system
|
|
2
|
+
|
|
3
|
+
## 0.166.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#174616](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/174616)
|
|
8
|
+
[`ee906c44a058e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ee906c44a058e) -
|
|
9
|
+
The package has now been renamed to `"@atlaskit/navigation-system"` and made public.
|
|
10
|
+
|
|
11
|
+
## 0.165.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#173276](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/173276)
|
|
16
|
+
[`d2bd64e49cecd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d2bd64e49cecd) -
|
|
17
|
+
The package will be renamed to `@atlaskit/navigation-system` in the next release, and will be made
|
|
18
|
+
public and published to npm.
|
|
19
|
+
|
|
20
|
+
The existing `@atlassian/navigation-system` package will still be available in Atlassian's
|
|
21
|
+
internal registry, but will be deprecated. There will be no support for the private package going
|
|
22
|
+
forwards - you should migrate to the new `@atlaskit/navigation-system` package.
|
|
23
|
+
|
|
24
|
+
## 0.164.1
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
|
|
30
|
+
## 0.164.0
|
|
31
|
+
|
|
32
|
+
### Minor Changes
|
|
33
|
+
|
|
34
|
+
- [#172292](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/172292)
|
|
35
|
+
[`e14bf25b72dba`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e14bf25b72dba) -
|
|
36
|
+
The entrypoints under `@atlassian/navigation-system/side-nav/` have been renamed to use the prefix
|
|
37
|
+
`@atlassian/navigation-system/side-nav-items/`.
|
|
38
|
+
|
|
39
|
+
The full list of changes are:
|
|
40
|
+
|
|
41
|
+
### Before
|
|
42
|
+
|
|
43
|
+
```ts
|
|
44
|
+
'@atlassian/navigation-system/side-nav/container-avatar';
|
|
45
|
+
'@atlassian/navigation-system/side-nav/expandable-menu-item';
|
|
46
|
+
'@atlassian/navigation-system/side-nav/flyout-menu-item';
|
|
47
|
+
'@atlassian/navigation-system/side-nav/button-menu-item';
|
|
48
|
+
'@atlassian/navigation-system/side-nav/link-menu-item';
|
|
49
|
+
'@atlassian/navigation-system/side-nav/menu-list';
|
|
50
|
+
'@atlassian/navigation-system/side-nav/menu-list-item';
|
|
51
|
+
'@atlassian/navigation-system/side-nav/menu-section';
|
|
52
|
+
'@atlassian/navigation-system/side-nav/top-level-spacer';
|
|
53
|
+
'@atlassian/navigation-system/side-nav/drag-and-drop/hitbox';
|
|
54
|
+
'@atlassian/navigation-system/side-nav/drag-and-drop/drag-preview';
|
|
55
|
+
'@atlassian/navigation-system/side-nav/drag-and-drop/drop-indicator';
|
|
56
|
+
'@atlassian/navigation-system/side-nav/drag-and-drop/group-drop-indicator';
|
|
57
|
+
'@atlassian/navigation-system/side-nav/drag-and-drop/use-menu-item-drag-and-drop';
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
### After
|
|
61
|
+
|
|
62
|
+
```ts
|
|
63
|
+
'@atlassian/navigation-system/side-nav-items/container-avatar';
|
|
64
|
+
'@atlassian/navigation-system/side-nav-items/expandable-menu-item';
|
|
65
|
+
'@atlassian/navigation-system/side-nav-items/flyout-menu-item';
|
|
66
|
+
'@atlassian/navigation-system/side-nav-items/button-menu-item';
|
|
67
|
+
'@atlassian/navigation-system/side-nav-items/link-menu-item';
|
|
68
|
+
'@atlassian/navigation-system/side-nav-items/menu-list';
|
|
69
|
+
'@atlassian/navigation-system/side-nav-items/menu-list-item';
|
|
70
|
+
'@atlassian/navigation-system/side-nav-items/menu-section';
|
|
71
|
+
'@atlassian/navigation-system/side-nav-items/top-level-spacer';
|
|
72
|
+
'@atlassian/navigation-system/side-nav-items/drag-and-drop/hitbox';
|
|
73
|
+
'@atlassian/navigation-system/side-nav-items/drag-and-drop/drag-preview';
|
|
74
|
+
'@atlassian/navigation-system/side-nav-items/drag-and-drop/drop-indicator';
|
|
75
|
+
'@atlassian/navigation-system/side-nav-items/drag-and-drop/group-drop-indicator';
|
|
76
|
+
'@atlassian/navigation-system/side-nav-items/drag-and-drop/use-menu-item-drag-and-drop';
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
This change is part of a larger group of changes to the package to prepare it for early access.
|
|
80
|
+
|
|
81
|
+
## 0.163.1
|
|
82
|
+
|
|
83
|
+
### Patch Changes
|
|
84
|
+
|
|
85
|
+
- [#172208](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/172208)
|
|
86
|
+
[`b5882c76f99ca`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b5882c76f99ca) -
|
|
87
|
+
The jsdocs for the `children` prop in menu items has been updated to call out using the slot props
|
|
88
|
+
for non-textual content.
|
|
89
|
+
- Updated dependencies
|
|
90
|
+
|
|
91
|
+
## 0.163.0
|
|
92
|
+
|
|
93
|
+
### Minor Changes
|
|
94
|
+
|
|
95
|
+
- [#171544](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/171544)
|
|
96
|
+
[`855881697b291`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/855881697b291) -
|
|
97
|
+
The following components have been renamed:
|
|
98
|
+
|
|
99
|
+
- `MenuLinkItem` -> `LinkMenuItem`
|
|
100
|
+
- `MenuButtonItem` -> `ButtonMenuItem`
|
|
101
|
+
|
|
102
|
+
Their imports have been updated to use the new names.
|
|
103
|
+
|
|
104
|
+
- `@atlassian/navigation-system/side-nav/menu-link-item` ->
|
|
105
|
+
`@atlassian/navigation-system/side-nav/link-menu-item`
|
|
106
|
+
- `@atlassian/navigation-system/side-nav/menu-button-item` ->
|
|
107
|
+
`@atlassian/navigation-system/side-nav/button-menu-item`
|
|
108
|
+
|
|
109
|
+
This change is part of a larger group of changes to the package to prepare it for early access.
|
|
110
|
+
|
|
111
|
+
### Patch Changes
|
|
112
|
+
|
|
113
|
+
- [#171544](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/171544)
|
|
114
|
+
[`855881697b291`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/855881697b291) -
|
|
115
|
+
Internal refactors to accomodate for platform entrypoint changes and component renames.
|
|
116
|
+
|
|
117
|
+
## 0.162.0
|
|
118
|
+
|
|
119
|
+
### Minor Changes
|
|
120
|
+
|
|
121
|
+
- [#170180](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/170180)
|
|
122
|
+
[`de9396e49c569`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/de9396e49c569) -
|
|
123
|
+
Cleans up the `platform_design_system_side_nav_click_out_to_close` feature gate. Clicking outside
|
|
124
|
+
of the side nav on mobile will now always close the side nav.
|
|
125
|
+
- [#170203](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/170203)
|
|
126
|
+
[`877716a9cd880`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/877716a9cd880) -
|
|
127
|
+
Cleans up the `platform_design_system_nav4_skip_link_styling` feature gate. Skip links will now
|
|
128
|
+
have the updated styling for everyone.
|
|
129
|
+
|
|
130
|
+
## 0.161.0
|
|
131
|
+
|
|
132
|
+
### Minor Changes
|
|
133
|
+
|
|
134
|
+
- [#169983](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/169983)
|
|
135
|
+
[`c72e85f165c1b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c72e85f165c1b) -
|
|
136
|
+
A number of components have been renamed:
|
|
137
|
+
|
|
138
|
+
- `TopBar` -> `TopNav`
|
|
139
|
+
- `HomeActions` -> `TopNavStart`
|
|
140
|
+
- `CommonActions` -> `TopNavMiddle`
|
|
141
|
+
- `UserActions` -> `TopNavEnd`
|
|
142
|
+
- `UserAction` -> `EndItem`
|
|
143
|
+
|
|
144
|
+
The `@atlassian/navigation-system/layout/top-bar` entrypoint has been renamed to
|
|
145
|
+
`@atlassian/navigation-system/layout/top-nav`.
|
|
146
|
+
|
|
147
|
+
The following components have been moved from the `@atlassian/navigation-system/top-nav-items`
|
|
148
|
+
entrypoint to the `@atlassian/navigation-system/layout/top-nav` entrypoint:
|
|
149
|
+
|
|
150
|
+
- `TopNavStart`
|
|
151
|
+
- `TopNavMiddle`
|
|
152
|
+
- `TopNavEnd`
|
|
153
|
+
|
|
154
|
+
This change is part of a larger group of changes to the package to prepare it for early access.
|
|
155
|
+
|
|
156
|
+
## 0.160.0
|
|
157
|
+
|
|
158
|
+
### Minor Changes
|
|
159
|
+
|
|
160
|
+
- [#169332](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/169332)
|
|
161
|
+
[`d1551201c8a62`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d1551201c8a62) -
|
|
162
|
+
The `@atlassian/navigation-system/top-nav` entrypoint has been renamed to
|
|
163
|
+
`@atlassian/navigation-system/top-nav-items`. This also applies to child entrypoints of this path,
|
|
164
|
+
such as `@atlassian/navigation-system/top-nav-items/notifications`,
|
|
165
|
+
|
|
166
|
+
This change is part of a larger group of changes to the package to prepare it for early access.
|
|
167
|
+
|
|
168
|
+
### Patch Changes
|
|
169
|
+
|
|
170
|
+
- Updated dependencies
|
|
171
|
+
|
|
172
|
+
## 0.159.0
|
|
173
|
+
|
|
174
|
+
### Minor Changes
|
|
175
|
+
|
|
176
|
+
- [#169127](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/169127)
|
|
177
|
+
[`887e91e29c45d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/887e91e29c45d) -
|
|
178
|
+
The `UNSAFE_height` props for `Banner` and `TopBar` have been updated to remove the `UNSAFE_`
|
|
179
|
+
prefix. They are now just `height`.
|
|
180
|
+
|
|
181
|
+
### Patch Changes
|
|
182
|
+
|
|
183
|
+
- Updated dependencies
|
|
184
|
+
|
|
185
|
+
## 0.158.1
|
|
186
|
+
|
|
187
|
+
### Patch Changes
|
|
188
|
+
|
|
189
|
+
- [#162295](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/162295)
|
|
190
|
+
[`1fc0e5e1c0ebd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1fc0e5e1c0ebd) -
|
|
191
|
+
Adding some temporary test ids to the collapse toggle icons for a performance investigation
|
|
192
|
+
|
|
193
|
+
## 0.158.0
|
|
194
|
+
|
|
195
|
+
### Minor Changes
|
|
196
|
+
|
|
197
|
+
- [#167316](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/167316)
|
|
198
|
+
[`931d2609cecc6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/931d2609cecc6) -
|
|
199
|
+
Deprecates the `isFixed` prop on `Main` and `Aside` slots. This prop determines if the slot
|
|
200
|
+
scrolls with the body, or if it has its own scroll container.
|
|
201
|
+
|
|
202
|
+
Adds the `platform_dst_nav4_disable_is_fixed_prop` feature gate to disable existing usage. When
|
|
203
|
+
enabled the `isFixed` prop on the `Main` and `Aside` slots will be ignored and the
|
|
204
|
+
`isFixed={true}` behavior will always be applied. After rollout the `isFixed` prop will be
|
|
205
|
+
removed.
|
|
206
|
+
|
|
207
|
+
We are removing the `isFixed` prop because the `isFixed={false}` behavior has caused bugs, and we
|
|
208
|
+
believe that removing this prop will improve outcomes for users and lower our maintenance burden.
|
|
209
|
+
|
|
210
|
+
See https://hello.atlassian.net/wiki/spaces/DST/pages/5400167974 for more information.
|
|
211
|
+
|
|
212
|
+
### Patch Changes
|
|
213
|
+
|
|
214
|
+
- Updated dependencies
|
|
215
|
+
|
|
216
|
+
## 0.157.0
|
|
217
|
+
|
|
218
|
+
### Minor Changes
|
|
219
|
+
|
|
220
|
+
- [#161646](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/161646)
|
|
221
|
+
[`792ab09b5a38a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/792ab09b5a38a) -
|
|
222
|
+
Memoise NavLogoRenderer to improve performance. This is behind a feature gate targeting Jira.
|
|
223
|
+
|
|
224
|
+
### Patch Changes
|
|
225
|
+
|
|
226
|
+
- Updated dependencies
|
|
227
|
+
|
|
228
|
+
## 0.156.1
|
|
229
|
+
|
|
230
|
+
### Patch Changes
|
|
231
|
+
|
|
232
|
+
- [#158374](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/158374)
|
|
233
|
+
[`19e469038d7ed`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/19e469038d7ed) -
|
|
234
|
+
Removes transparent border when box shadow is visible. This change affects the
|
|
235
|
+
`platform_design_system_nav4_sidenav_border` and
|
|
236
|
+
`platform_design_system_nav4_panel_default_border` feature gates.
|
|
237
|
+
|
|
238
|
+
## 0.156.0
|
|
239
|
+
|
|
240
|
+
### Minor Changes
|
|
241
|
+
|
|
242
|
+
- [#165582](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/165582)
|
|
243
|
+
[`35cf9c1eb525b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/35cf9c1eb525b) -
|
|
244
|
+
The default height of the Banner layout area has been updated to `48px`, down from `64px`, to
|
|
245
|
+
align with the height of the `@atlaskit/banner` component. This change is behind a feature flag.
|
|
246
|
+
|
|
247
|
+
## 0.155.0
|
|
248
|
+
|
|
249
|
+
### Minor Changes
|
|
250
|
+
|
|
251
|
+
- [#157650](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/157650)
|
|
252
|
+
[`3696befec09c1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3696befec09c1) -
|
|
253
|
+
The feature flag for closing open layers (popups, dropdown menus, select menus, tooltips) when
|
|
254
|
+
resizing layout areas has now been cleaned up.
|
|
255
|
+
- [#164842](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/164842)
|
|
256
|
+
[`f39351a31c34f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f39351a31c34f) -
|
|
257
|
+
The `appearance` prop has been removed from `ContainerAvatar`.
|
|
258
|
+
|
|
259
|
+
The previous `appearance="default"` variant would apply a border. Now that the prop has been
|
|
260
|
+
removed, the new default and only style is equivalent to the previous `appearance="subtle"`
|
|
261
|
+
variant, which does not have a border.
|
|
262
|
+
|
|
263
|
+
This change was previously applied behind a feature flag, which has now been removed.
|
|
264
|
+
|
|
265
|
+
### Patch Changes
|
|
266
|
+
|
|
267
|
+
- Updated dependencies
|
|
268
|
+
|
|
269
|
+
## 0.154.7
|
|
270
|
+
|
|
271
|
+
### Patch Changes
|
|
272
|
+
|
|
273
|
+
- Updated dependencies
|
|
274
|
+
|
|
275
|
+
## 0.154.6
|
|
276
|
+
|
|
277
|
+
### Patch Changes
|
|
278
|
+
|
|
279
|
+
- [#160530](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/160530)
|
|
280
|
+
[`3d97095c489a5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3d97095c489a5) -
|
|
281
|
+
Internal change to align styling solutions.
|
|
282
|
+
- Updated dependencies
|
|
283
|
+
|
|
284
|
+
## 0.154.5
|
|
285
|
+
|
|
286
|
+
### Patch Changes
|
|
287
|
+
|
|
288
|
+
- Updated dependencies
|
|
289
|
+
|
|
290
|
+
## 0.154.4
|
|
291
|
+
|
|
292
|
+
### Patch Changes
|
|
293
|
+
|
|
294
|
+
- [#158346](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/158346)
|
|
295
|
+
[`3be3427559c4a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3be3427559c4a) -
|
|
296
|
+
Changes Panel width on mobile to better align with the default width of the panel. This change is
|
|
297
|
+
behind the `platform_design_system_nav4_panel_mobile_width_fix` flag.
|
|
298
|
+
- Updated dependencies
|
|
299
|
+
|
|
300
|
+
## 0.154.3
|
|
301
|
+
|
|
302
|
+
### Patch Changes
|
|
303
|
+
|
|
304
|
+
- [#155817](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/155817)
|
|
305
|
+
[`bc10db24ed567`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bc10db24ed567) -
|
|
306
|
+
Add `!important` to `NavLogo` pressed interaction states to workaround Compiled issue.
|
|
307
|
+
- Updated dependencies
|
|
308
|
+
|
|
309
|
+
## 0.154.2
|
|
310
|
+
|
|
311
|
+
### Patch Changes
|
|
312
|
+
|
|
313
|
+
- [#159929](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/159929)
|
|
314
|
+
[`a5db655a2be0f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a5db655a2be0f) -
|
|
315
|
+
Internal clean up of unused code. No change to public API.
|
|
316
|
+
- Updated dependencies
|
|
317
|
+
|
|
318
|
+
## 0.154.1
|
|
319
|
+
|
|
320
|
+
### Patch Changes
|
|
321
|
+
|
|
322
|
+
- [#154600](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/154600)
|
|
323
|
+
[`0b06dde976fe0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0b06dde976fe0) -
|
|
324
|
+
Internal updates to logo component usage
|
|
325
|
+
- Updated dependencies
|
|
326
|
+
|
|
327
|
+
## 0.154.0
|
|
328
|
+
|
|
329
|
+
### Minor Changes
|
|
330
|
+
|
|
331
|
+
- [#149822](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/149822)
|
|
332
|
+
[`f9ab0e846ae21`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f9ab0e846ae21) -
|
|
333
|
+
Updated to support `size` prop for new icons from `@atlaskit/icon`.
|
|
334
|
+
|
|
335
|
+
### Patch Changes
|
|
336
|
+
|
|
337
|
+
- Updated dependencies
|
|
338
|
+
|
|
339
|
+
## 0.153.0
|
|
340
|
+
|
|
341
|
+
### Minor Changes
|
|
342
|
+
|
|
343
|
+
- [#155926](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/155926)
|
|
344
|
+
[`00c9e21a20667`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/00c9e21a20667) -
|
|
345
|
+
[ux] FlyoutMenuItemTrigger and ExpandableMenuItemTrigger now display the correct chevron icon for
|
|
346
|
+
right-to-left languages.
|
|
347
|
+
|
|
348
|
+
### Patch Changes
|
|
349
|
+
|
|
350
|
+
- Updated dependencies
|
|
351
|
+
|
|
352
|
+
## 0.152.0
|
|
353
|
+
|
|
354
|
+
### Minor Changes
|
|
355
|
+
|
|
356
|
+
- [#156631](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/156631)
|
|
357
|
+
[`03d57647f8b39`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/03d57647f8b39) -
|
|
358
|
+
The margin and padding of NavLogo has been updated for improved spacing alignment with other top
|
|
359
|
+
nav buttons. This change is behind the feature gate
|
|
360
|
+
`platform_design_system_nav_logo_interaction_states`.
|
|
361
|
+
|
|
362
|
+
## 0.151.0
|
|
363
|
+
|
|
364
|
+
### Minor Changes
|
|
365
|
+
|
|
366
|
+
- [#154361](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/154361)
|
|
367
|
+
[`45b0d08584adf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/45b0d08584adf) -
|
|
368
|
+
Changes the unsafe legacy CSS variables for `Aside` and `Panel` to be live updated during
|
|
369
|
+
resizing. This change is behind the `platform_design_system_nav4_live_resizing_css_vars` feature
|
|
370
|
+
gate.
|
|
371
|
+
|
|
372
|
+
## 0.150.0
|
|
373
|
+
|
|
374
|
+
### Minor Changes
|
|
375
|
+
|
|
376
|
+
- [#155125](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/155125)
|
|
377
|
+
[`e7c9adbec6388`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e7c9adbec6388) -
|
|
378
|
+
`usePrefixedUID` has been replaced by `useSkipLinkId`. It was previously updated to remove the
|
|
379
|
+
unnecessary prefix, behind a feature flag. That feature flag is now being removed.
|
|
380
|
+
|
|
381
|
+
As part of cleaning up the feature flag, we are renaming the hook to reflect the new behavior.
|
|
382
|
+
|
|
383
|
+
## 0.149.0
|
|
384
|
+
|
|
385
|
+
### Minor Changes
|
|
386
|
+
|
|
387
|
+
- [#152796](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/152796)
|
|
388
|
+
[`530aa01e75ebe`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/530aa01e75ebe) -
|
|
389
|
+
Internal refactor of Pragmatic drag and drop usage
|
|
390
|
+
|
|
391
|
+
### Patch Changes
|
|
392
|
+
|
|
393
|
+
- Updated dependencies
|
|
394
|
+
|
|
395
|
+
## 0.148.1
|
|
396
|
+
|
|
397
|
+
### Patch Changes
|
|
398
|
+
|
|
399
|
+
- [#152909](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/152909)
|
|
400
|
+
[`11ca987900fad`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/11ca987900fad) -
|
|
401
|
+
[ux] Adds interaction states to the `NavLogo` component behind the
|
|
402
|
+
`platform_design_system_nav_logo_interaction_states` feature gate.
|
|
403
|
+
- Updated dependencies
|
|
404
|
+
|
|
405
|
+
## 0.148.0
|
|
406
|
+
|
|
407
|
+
### Minor Changes
|
|
408
|
+
|
|
409
|
+
- [#152893](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/152893)
|
|
410
|
+
[`f1c5db83c0cdc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f1c5db83c0cdc) -
|
|
411
|
+
The Notifications top nav component has been updated to support popup trigger `aria` attributes.
|
|
412
|
+
- [#152893](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/152893)
|
|
413
|
+
[`9aec1c2c46cef`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9aec1c2c46cef) -
|
|
414
|
+
`MenuListItem` is now exported from the `@atlassian/navigation-system/top-nav` entrypoint.
|
|
415
|
+
- [#152893](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/152893)
|
|
416
|
+
[`ffd9759e99c3e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ffd9759e99c3e) -
|
|
417
|
+
Notifications and Help now re-use `UserAction` internally, which means:
|
|
418
|
+
|
|
419
|
+
- They now support the `onMouseEnter` prop.
|
|
420
|
+
- They now support the `isListItem` prop. This allows you to disable the default list item
|
|
421
|
+
wrapper. It is intended for use with dropdown menus or popups, and requires you to render your
|
|
422
|
+
own `<MenuListItem>` wrapper. See the prop JSDocs for an example.
|
|
423
|
+
|
|
424
|
+
## 0.147.1
|
|
425
|
+
|
|
426
|
+
### Patch Changes
|
|
427
|
+
|
|
428
|
+
- Updated dependencies
|
|
429
|
+
|
|
430
|
+
## 0.147.0
|
|
431
|
+
|
|
432
|
+
### Minor Changes
|
|
433
|
+
|
|
434
|
+
- [#150849](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/150849)
|
|
435
|
+
[`24802ae5fc972`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/24802ae5fc972) -
|
|
436
|
+
Adding a workaround for a Safari bug that resulted in drag preview content being concatenated too
|
|
437
|
+
early.
|
|
438
|
+
|
|
439
|
+
## 0.146.0
|
|
440
|
+
|
|
441
|
+
### Minor Changes
|
|
442
|
+
|
|
443
|
+
- [#149907](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/149907)
|
|
444
|
+
[`178e3451a3c4b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/178e3451a3c4b) -
|
|
445
|
+
The border has been removed from ContainerAvatar. This change is behind a feature flag.
|
|
446
|
+
|
|
447
|
+
The default value of the `appearance` prop would previously apply a border. This will no longer be
|
|
448
|
+
the case when the feature flag is enabled. It will have the same style as the
|
|
449
|
+
`appearance="subtle"` variant. This will become the new default and only style.
|
|
450
|
+
|
|
451
|
+
The `appearance` prop will later be removed when the feature flag is cleaned up.
|
|
452
|
+
|
|
453
|
+
### Patch Changes
|
|
454
|
+
|
|
455
|
+
- [#150070](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/150070)
|
|
456
|
+
[`f6b33c15fc717`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f6b33c15fc717) -
|
|
457
|
+
Added JSDocs for the useSkipLink hook.
|
|
458
|
+
- Updated dependencies
|
|
459
|
+
|
|
460
|
+
## 0.145.0
|
|
461
|
+
|
|
462
|
+
### Minor Changes
|
|
463
|
+
|
|
464
|
+
- [#148808](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/148808)
|
|
465
|
+
[`32f756068ac52`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/32f756068ac52) -
|
|
466
|
+
Pressed state has been added for MenuLinkItem, the link variant of ExpandableMenuItemTrigger, and
|
|
467
|
+
selected FlyoutMenuItemTrigger.
|
|
468
|
+
- [#149808](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/149808)
|
|
469
|
+
[`27b15a97959bc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/27b15a97959bc) -
|
|
470
|
+
If drag and drop is enabled on a menu item (with `hasDragIndicator`) then the iOS context menu for
|
|
471
|
+
anchors will be disabled in order to enable a better drag and drop experience.
|
|
472
|
+
- [#146964](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/146964)
|
|
473
|
+
[`9d2e94598e036`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9d2e94598e036) -
|
|
474
|
+
Fixing layout issue in drag and drop interactions caused by a bug with subgrid in Safari.
|
|
475
|
+
- [#148674](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/148674)
|
|
476
|
+
[`483667dce6b0c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/483667dce6b0c) -
|
|
477
|
+
[ux] Adds a default background color to the `Panel` slot, behind the
|
|
478
|
+
`platform_design_system_nav4_panel_default_bg_color` gate.
|
|
479
|
+
|
|
480
|
+
### Patch Changes
|
|
481
|
+
|
|
482
|
+
- Updated dependencies
|
|
483
|
+
|
|
484
|
+
## 0.144.2
|
|
485
|
+
|
|
486
|
+
### Patch Changes
|
|
487
|
+
|
|
488
|
+
- Updated dependencies
|
|
489
|
+
|
|
490
|
+
## 0.144.1
|
|
491
|
+
|
|
492
|
+
### Patch Changes
|
|
493
|
+
|
|
494
|
+
- Updated dependencies
|
|
495
|
+
|
|
496
|
+
## 0.144.0
|
|
497
|
+
|
|
498
|
+
### Minor Changes
|
|
499
|
+
|
|
500
|
+
- [#144140](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/144140)
|
|
501
|
+
[`86019bb1ad72d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/86019bb1ad72d) -
|
|
502
|
+
Cleans up the `platform_design_system_nav4_hide_empty_skip_links` feature gate. Skip links to
|
|
503
|
+
slots with their height/width explicitly set to 0 will no longer be shown.
|
|
504
|
+
|
|
505
|
+
## 0.143.0
|
|
506
|
+
|
|
507
|
+
### Minor Changes
|
|
508
|
+
|
|
509
|
+
- [#146250](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/146250)
|
|
510
|
+
[`3b478dc40a087`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3b478dc40a087) -
|
|
511
|
+
Adds `TopNavIconButton` and `TopNavLinkIconButton` exports to the existing
|
|
512
|
+
`/experimental/top-nav-button` entrypoint.
|
|
513
|
+
|
|
514
|
+
### Patch Changes
|
|
515
|
+
|
|
516
|
+
- Updated dependencies
|
|
517
|
+
|
|
518
|
+
## 0.142.0
|
|
519
|
+
|
|
520
|
+
### Minor Changes
|
|
521
|
+
|
|
522
|
+
- [#146268](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/146268)
|
|
523
|
+
[`4373c928f93f2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4373c928f93f2) -
|
|
524
|
+
Adds `ref` forwarding to the `CreateButton` component.
|
|
525
|
+
|
|
526
|
+
### Patch Changes
|
|
527
|
+
|
|
528
|
+
- Updated dependencies
|
|
529
|
+
|
|
530
|
+
## 0.141.0
|
|
531
|
+
|
|
532
|
+
### Minor Changes
|
|
533
|
+
|
|
534
|
+
- [#141616](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/141616)
|
|
535
|
+
[`517662bb32ebd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/517662bb32ebd) -
|
|
536
|
+
Additional prop JSDocs has been added for the top nav components.
|
|
537
|
+
- [#142228](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/142228)
|
|
538
|
+
[`53cccf13c0d82`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/53cccf13c0d82) -
|
|
539
|
+
Additional prop JSDocs has been added for the menu item components.
|
|
540
|
+
|
|
541
|
+
## 0.140.1
|
|
542
|
+
|
|
543
|
+
### Patch Changes
|
|
544
|
+
|
|
545
|
+
- [#144681](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/144681)
|
|
546
|
+
[`f29b92c5b24cc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f29b92c5b24cc) -
|
|
547
|
+
Removes the implicit assumption that the `SideNav` is mounted, when calculating the `Panel` slot
|
|
548
|
+
`width` while `platform_design_system_nav4_preview_panel_support` is enabled.
|
|
549
|
+
|
|
550
|
+
## 0.140.0
|
|
551
|
+
|
|
552
|
+
### Minor Changes
|
|
553
|
+
|
|
554
|
+
- [#144065](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/144065)
|
|
555
|
+
[`dc8861feb9610`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/dc8861feb9610) -
|
|
556
|
+
Adds `ref` and `testId` props to new CustomTitle component.
|
|
557
|
+
- [#144065](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/144065)
|
|
558
|
+
[`e6e206809d5e5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e6e206809d5e5) -
|
|
559
|
+
[ux] Adds custom theming support to the new CustomTitle component. Adjusts padding of CustomTitle
|
|
560
|
+
component.
|
|
561
|
+
|
|
562
|
+
## 0.139.1
|
|
563
|
+
|
|
564
|
+
### Patch Changes
|
|
565
|
+
|
|
566
|
+
- [#139100](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/139100)
|
|
567
|
+
[`e9d667a80b265`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e9d667a80b265) -
|
|
568
|
+
[ux] The `Panel` slot will now have a border (or shadow on small screens) when the
|
|
569
|
+
`platform_design_system_nav4_panel_default_border` gate is enabled.
|
|
570
|
+
- [#139100](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/139100)
|
|
571
|
+
[`68c01adb6cfe2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/68c01adb6cfe2) -
|
|
572
|
+
[ux] The `SideNav` slot no longer has a border when it also has a shadow. This change is behind
|
|
573
|
+
the `platform_design_system_nav4_sidenav_border` gate.
|
|
574
|
+
|
|
575
|
+
## 0.139.0
|
|
576
|
+
|
|
577
|
+
### Minor Changes
|
|
578
|
+
|
|
579
|
+
- [#142999](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/142999)
|
|
580
|
+
[`aca8f629c9199`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/aca8f629c9199) -
|
|
581
|
+
Exposing `CustomTitle` topbar component to be used in `HomeActions`.
|
|
582
|
+
|
|
583
|
+
### Patch Changes
|
|
584
|
+
|
|
585
|
+
- [#139445](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/139445)
|
|
586
|
+
[`0f13df85731d6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0f13df85731d6) -
|
|
587
|
+
the component state update causes React Streming to have Suspense boundary received update before
|
|
588
|
+
hydrating finished error. Wrapping the state update in startTransition
|
|
589
|
+
- [#137059](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/137059)
|
|
590
|
+
[`8d6a3a75c70f1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8d6a3a75c70f1) -
|
|
591
|
+
[ux] Changes the resizing bounds of the `Panel` slot to have a:
|
|
592
|
+
|
|
593
|
+
- Minimum resizing width equal to the `defaultWidth` (up to a maximum of `400px`)
|
|
594
|
+
- Maximum resizing width of half the viewport width after the sidebar has been removed. This means
|
|
595
|
+
that the `Panel` will not be larger than the content.
|
|
596
|
+
|
|
597
|
+
Additionally, the `--leftSidebarWidth` CSS variable is now updated live during resizing.
|
|
598
|
+
|
|
599
|
+
These changes are behind the `platform_design_system_nav4_preview_panel_support` gate.
|
|
600
|
+
|
|
601
|
+
- Updated dependencies
|
|
602
|
+
|
|
603
|
+
## 0.138.0
|
|
604
|
+
|
|
605
|
+
### Minor Changes
|
|
606
|
+
|
|
607
|
+
- [#141596](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/141596)
|
|
608
|
+
[`b544669f5d156`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b544669f5d156) -
|
|
609
|
+
Exposing `type Availability` from `hitbox`. `Availability` is the `type` that is provided to
|
|
610
|
+
`attachInstruction`
|
|
611
|
+
|
|
612
|
+
```ts
|
|
613
|
+
type Availability = 'available' | 'not-available' | 'blocked';
|
|
614
|
+
```
|
|
615
|
+
|
|
616
|
+
```ts
|
|
617
|
+
import {
|
|
618
|
+
type Availability,
|
|
619
|
+
attachInstruction,
|
|
620
|
+
} from '@atlassian/navigation-system/side-nav/drag-and-drop/hitbox';
|
|
621
|
+
|
|
622
|
+
const value: Availability = 'available';
|
|
623
|
+
|
|
624
|
+
dropTargetForElements({
|
|
625
|
+
getData(args) {
|
|
626
|
+
const data = { type: 'menu-item' };
|
|
627
|
+
return attachInstruction(data, {
|
|
628
|
+
input: args.input,
|
|
629
|
+
element: args.element,
|
|
630
|
+
operations: {
|
|
631
|
+
'reorder-above': value,
|
|
632
|
+
// 👆 this is an `Availability`
|
|
633
|
+
},
|
|
634
|
+
});
|
|
635
|
+
},
|
|
636
|
+
});
|
|
637
|
+
```
|
|
638
|
+
|
|
639
|
+
## 0.137.0
|
|
640
|
+
|
|
641
|
+
### Minor Changes
|
|
642
|
+
|
|
643
|
+
- [#142177](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/142177)
|
|
644
|
+
[`2b5851d15adba`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2b5851d15adba) -
|
|
645
|
+
The inner wrapper element of Aside will now take up the full height of the layout slot (grid
|
|
646
|
+
item). This change is no longer behind a feature flag.
|
|
647
|
+
|
|
648
|
+
## 0.136.0
|
|
649
|
+
|
|
650
|
+
### Minor Changes
|
|
651
|
+
|
|
652
|
+
- [#142168](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/142168)
|
|
653
|
+
[`92095a01848e7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/92095a01848e7) -
|
|
654
|
+
FlyoutMenuItemContent padding styles have now been expanded to longhand properties.
|
|
655
|
+
|
|
656
|
+
### Patch Changes
|
|
657
|
+
|
|
658
|
+
- Updated dependencies
|
|
659
|
+
|
|
660
|
+
## 0.135.0
|
|
661
|
+
|
|
662
|
+
### Minor Changes
|
|
663
|
+
|
|
664
|
+
- [#141560](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/141560)
|
|
665
|
+
[`f4b0e7678d79f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f4b0e7678d79f) -
|
|
666
|
+
usePrefixedUID no longer attaches a string prefix to the generated ID. This change is behind a
|
|
667
|
+
feature flag. In a future release, the hook will be renamed as it will no longer apply a prefix.
|
|
668
|
+
|
|
669
|
+
## 0.134.0
|
|
670
|
+
|
|
671
|
+
### Minor Changes
|
|
672
|
+
|
|
673
|
+
- [#141047](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/141047)
|
|
674
|
+
[`0e55fa3632fe9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0e55fa3632fe9) -
|
|
675
|
+
Additional prop JSDocs has been added for the page layout components.
|
|
676
|
+
- [#141047](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/141047)
|
|
677
|
+
[`febe778c723f8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/febe778c723f8) -
|
|
678
|
+
A new entrypoint for skip links has been added - `@atlassian/navigation-system/layout/skip-links`.
|
|
679
|
+
`useSkipLink()` and `usePrefixedUID()` are no longer exposed from the root package entrypoint, and
|
|
680
|
+
are only exposed from the new entrypoint.
|
|
681
|
+
|
|
682
|
+
Before:
|
|
683
|
+
|
|
684
|
+
```tsx
|
|
685
|
+
import { useSkipLink, usePrefixedUID } from '@atlassian/navigation-system';
|
|
686
|
+
```
|
|
687
|
+
|
|
688
|
+
After:
|
|
689
|
+
|
|
690
|
+
```tsx
|
|
691
|
+
import { useSkipLink, usePrefixedUID } from '@atlassian/navigation-system/layout/skip-links';
|
|
692
|
+
```
|
|
693
|
+
|
|
694
|
+
### Patch Changes
|
|
695
|
+
|
|
696
|
+
- Updated dependencies
|
|
697
|
+
|
|
698
|
+
## 0.133.0
|
|
699
|
+
|
|
700
|
+
### Minor Changes
|
|
701
|
+
|
|
702
|
+
- [#140944](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/140944)
|
|
703
|
+
[`bb36840ea79f8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bb36840ea79f8) -
|
|
704
|
+
Added an optional `testId` to `ListItem`, `MenuList`, `MenuSection`, and `GroupDropIndicator`
|
|
705
|
+
components.
|
|
706
|
+
|
|
707
|
+
### Patch Changes
|
|
708
|
+
|
|
709
|
+
- Updated dependencies
|
|
710
|
+
|
|
711
|
+
## 0.132.0
|
|
712
|
+
|
|
713
|
+
### Minor Changes
|
|
714
|
+
|
|
715
|
+
- [#140214](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/140214)
|
|
716
|
+
[`7c8481b79231d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7c8481b79231d) -
|
|
717
|
+
The side navigation now supports drag and drop operations 🎉 .
|
|
718
|
+
[Technical documentation and guidance](http://staging.atlassian.design/components/navigation-system/side-navigation/drag-and-drop)
|
|
719
|
+
|
|
720
|
+
### Patch Changes
|
|
721
|
+
|
|
722
|
+
- Updated dependencies
|
|
723
|
+
|
|
724
|
+
## 0.131.0
|
|
725
|
+
|
|
726
|
+
### Minor Changes
|
|
727
|
+
|
|
728
|
+
- [#138535](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/138535)
|
|
729
|
+
[`5628220f4614e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5628220f4614e) -
|
|
730
|
+
The `resizeBounds` prop on the `PanelSplitterProvider` has been renamed to `getResizeBounds` and
|
|
731
|
+
accepts a function instead of an object. This allows for lazy evaluation. The `ResizeBounds` type
|
|
732
|
+
is now exposed for convenience.
|
|
733
|
+
|
|
734
|
+
## 0.130.1
|
|
735
|
+
|
|
736
|
+
### Patch Changes
|
|
737
|
+
|
|
738
|
+
- Updated dependencies
|
|
739
|
+
|
|
740
|
+
## 0.130.0
|
|
741
|
+
|
|
742
|
+
### Minor Changes
|
|
743
|
+
|
|
744
|
+
- [#136561](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/136561)
|
|
745
|
+
[`13fc310556e21`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/13fc310556e21) -
|
|
746
|
+
The inner wrapper element of Aside will now take up the full height of the layout slot (grid
|
|
747
|
+
item). This change is behind a feature flag.
|
|
748
|
+
|
|
749
|
+
## 0.129.0
|
|
750
|
+
|
|
751
|
+
### Minor Changes
|
|
752
|
+
|
|
753
|
+
- [#135853](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/135853)
|
|
754
|
+
[`e16b7a002f960`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e16b7a002f960) -
|
|
755
|
+
Resizing slots will now close any open @atlaskit/select menus. This change is behind a feature
|
|
756
|
+
flag.
|
|
757
|
+
|
|
758
|
+
### Patch Changes
|
|
759
|
+
|
|
760
|
+
- Updated dependencies
|
|
761
|
+
|
|
762
|
+
## 0.128.0
|
|
763
|
+
|
|
764
|
+
### Minor Changes
|
|
765
|
+
|
|
766
|
+
- [#135178](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/135178)
|
|
767
|
+
[`b2eb16f6d0658`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b2eb16f6d0658) -
|
|
768
|
+
Resizing slots with the keyboard will close any open layers. This change is behind a feature flag.
|
|
769
|
+
|
|
770
|
+
## 0.127.1
|
|
771
|
+
|
|
772
|
+
### Patch Changes
|
|
773
|
+
|
|
774
|
+
- Updated dependencies
|
|
775
|
+
|
|
776
|
+
## 0.127.0
|
|
777
|
+
|
|
778
|
+
### Minor Changes
|
|
779
|
+
|
|
780
|
+
- [#134955](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/134955)
|
|
781
|
+
[`74cad14449db0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/74cad14449db0) -
|
|
782
|
+
Resizing slots will now close any open layers, such as popups or dropdown menus. This change is
|
|
783
|
+
behind a feature flag.
|
|
784
|
+
|
|
785
|
+
### Patch Changes
|
|
786
|
+
|
|
787
|
+
- Updated dependencies
|
|
788
|
+
|
|
789
|
+
## 0.126.0
|
|
790
|
+
|
|
791
|
+
### Minor Changes
|
|
792
|
+
|
|
793
|
+
- [#132896](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/132896)
|
|
794
|
+
[`4b7bd573c4131`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4b7bd573c4131) -
|
|
795
|
+
`FlyoutMenuItem` has been updated to no longer call the `onOpenChange` callback on initial render.
|
|
796
|
+
This change is no longer behind a feature flag.
|
|
797
|
+
|
|
798
|
+
## 0.125.1
|
|
799
|
+
|
|
800
|
+
### Patch Changes
|
|
801
|
+
|
|
802
|
+
- Updated dependencies
|
|
803
|
+
|
|
804
|
+
## 0.125.0
|
|
805
|
+
|
|
806
|
+
### Minor Changes
|
|
807
|
+
|
|
808
|
+
- [#131507](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/131507)
|
|
809
|
+
[`ce2ab0826b877`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ce2ab0826b877) -
|
|
810
|
+
The `elemBefore` prop on `<ExpandableMenuItemTrigger>` has been widened from `ReactElement` to
|
|
811
|
+
`ReactNode` to improve consistency with other props in menu items.
|
|
812
|
+
|
|
813
|
+
```diff
|
|
814
|
+
type ExpandableMenuItemTriggerProps = {
|
|
815
|
+
- elemBefore?: ReactElement;
|
|
816
|
+
+ elemBefore?: ReactNode;
|
|
817
|
+
}
|
|
818
|
+
```
|
|
819
|
+
|
|
820
|
+
## 0.124.1
|
|
821
|
+
|
|
822
|
+
### Patch Changes
|
|
823
|
+
|
|
824
|
+
- Updated dependencies
|
|
825
|
+
|
|
826
|
+
## 0.124.0
|
|
827
|
+
|
|
828
|
+
### Minor Changes
|
|
829
|
+
|
|
830
|
+
- [#130149](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/130149)
|
|
831
|
+
[`d0b23591b1da2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d0b23591b1da2) -
|
|
832
|
+
Changes skip link styles to align with design spec, behind the
|
|
833
|
+
`platform_design_system_nav4_skip_link_styling` gate.
|
|
834
|
+
|
|
835
|
+
## 0.123.0
|
|
836
|
+
|
|
837
|
+
### Minor Changes
|
|
838
|
+
|
|
839
|
+
- [#130720](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/130720)
|
|
840
|
+
[`2b4555de9adf4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2b4555de9adf4) -
|
|
841
|
+
Minor type adjustment to support different logo types
|
|
842
|
+
|
|
843
|
+
### Patch Changes
|
|
844
|
+
|
|
845
|
+
- Updated dependencies
|
|
846
|
+
|
|
847
|
+
## 0.122.1
|
|
848
|
+
|
|
849
|
+
### Patch Changes
|
|
850
|
+
|
|
851
|
+
- [#129972](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/129972)
|
|
852
|
+
[`b2d69a39e6687`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b2d69a39e6687) -
|
|
853
|
+
Update `@compiled/react` dependency for improved type checking support.
|
|
854
|
+
- Updated dependencies
|
|
855
|
+
|
|
856
|
+
## 0.122.0
|
|
857
|
+
|
|
858
|
+
### Minor Changes
|
|
859
|
+
|
|
860
|
+
- [#130010](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/130010)
|
|
861
|
+
[`13d50a1e1cd5c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/13d50a1e1cd5c) -
|
|
862
|
+
Adds feature for side navigation to close when clicking outside of it on mobile. This change is
|
|
863
|
+
behind the `platform_design_system_side_nav_click_out_to_close` gate.
|
|
864
|
+
|
|
865
|
+
## 0.121.0
|
|
866
|
+
|
|
867
|
+
### Minor Changes
|
|
868
|
+
|
|
869
|
+
- [#129306](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/129306)
|
|
870
|
+
[`7529486f8fc1b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7529486f8fc1b) -
|
|
871
|
+
Removed `label` prop from slot prop types for slots which did not use it as the `aria-label`.
|
|
872
|
+
|
|
873
|
+
## 0.120.1
|
|
874
|
+
|
|
875
|
+
### Patch Changes
|
|
876
|
+
|
|
877
|
+
- [#128754](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/128754)
|
|
878
|
+
[`a0d3455350d79`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a0d3455350d79) -
|
|
879
|
+
Cleans up `platform_design_system_nav4_skip_link_cleanup` gate which made internal-only refactors
|
|
880
|
+
to skip links.
|
|
881
|
+
|
|
882
|
+
## 0.120.0
|
|
883
|
+
|
|
884
|
+
### Minor Changes
|
|
885
|
+
|
|
886
|
+
- [#127977](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/127977)
|
|
887
|
+
[`33e25fc7e77c9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/33e25fc7e77c9) -
|
|
888
|
+
Removes the `label` prop from the `Main` slot component. This slot will no longer apply an
|
|
889
|
+
`aria-label` to its element.
|
|
890
|
+
|
|
891
|
+
### Patch Changes
|
|
892
|
+
|
|
893
|
+
- [#127298](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/127298)
|
|
894
|
+
[`725e0f07a1c6c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/725e0f07a1c6c) -
|
|
895
|
+
Cleans up the `platform_design_system_nav4_banner_slot_role` feature gate. The banner slot no
|
|
896
|
+
longer has an ARIA role.
|
|
897
|
+
- Updated dependencies
|
|
898
|
+
|
|
899
|
+
## 0.119.1
|
|
900
|
+
|
|
901
|
+
### Patch Changes
|
|
902
|
+
|
|
903
|
+
- [#128699](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/128699)
|
|
904
|
+
[`b17d8bc2700bb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b17d8bc2700bb) -
|
|
905
|
+
Update to use logos from @atlaskit/temp-nav-app-icons
|
|
906
|
+
- Updated dependencies
|
|
907
|
+
|
|
908
|
+
## 0.119.0
|
|
909
|
+
|
|
910
|
+
### Minor Changes
|
|
911
|
+
|
|
912
|
+
- [#127254](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/127254)
|
|
913
|
+
[`664b2457a0d05`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/664b2457a0d05) -
|
|
914
|
+
Updated MenuButtonItem to support the disabled state. It now sets explicit disabled styles.
|
|
915
|
+
|
|
916
|
+
This change is no longer behind a feature flag.
|
|
917
|
+
|
|
918
|
+
When isDisabled is true, the actions and actionsOnHover are not supported. The component types
|
|
919
|
+
have been updated to enforce this.
|
|
920
|
+
|
|
921
|
+
## 0.118.0
|
|
922
|
+
|
|
923
|
+
### Minor Changes
|
|
924
|
+
|
|
925
|
+
- [#127412](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/127412)
|
|
926
|
+
[`7f49847550683`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7f49847550683) -
|
|
927
|
+
`FlyoutMenuItem` has been updated to no longer call the `onOpenChange` callback on initial render.
|
|
928
|
+
This change is behind the feature flag `platform_nav4_flyoutmenuitem_onopenchange_refactor`.
|
|
929
|
+
|
|
930
|
+
## 0.117.1
|
|
931
|
+
|
|
932
|
+
### Patch Changes
|
|
933
|
+
|
|
934
|
+
- [#126199](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/126199)
|
|
935
|
+
[`f58699367d980`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f58699367d980) -
|
|
936
|
+
Hides skip links for the Banner, Aside and Panel slots when they have an explicit width or height
|
|
937
|
+
of 0. This change is behind the `platform_design_system_nav4_hide_empty_skip_links` feature gate.
|
|
938
|
+
|
|
939
|
+
## 0.117.0
|
|
940
|
+
|
|
941
|
+
### Minor Changes
|
|
942
|
+
|
|
943
|
+
- [#126835](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/126835)
|
|
944
|
+
[`44a4c2b15175a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/44a4c2b15175a) -
|
|
945
|
+
ExpandableMenuItemTrigger will now show the chevron icon when the menu item or any of its
|
|
946
|
+
interactive elements are focused. This change is no longer behind a feature flag.
|
|
947
|
+
|
|
948
|
+
### Patch Changes
|
|
949
|
+
|
|
950
|
+
- Updated dependencies
|
|
951
|
+
|
|
952
|
+
## 0.116.0
|
|
953
|
+
|
|
954
|
+
### Minor Changes
|
|
955
|
+
|
|
956
|
+
- [#126083](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/126083)
|
|
957
|
+
[`df1bd2b7c3849`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/df1bd2b7c3849) -
|
|
958
|
+
Adds `skipLinkLabel` prop to page layout slots, which can be used to override the skip link label
|
|
959
|
+
registered for each slot.
|
|
960
|
+
|
|
961
|
+
## 0.115.5
|
|
962
|
+
|
|
963
|
+
### Patch Changes
|
|
964
|
+
|
|
965
|
+
- Updated dependencies
|
|
966
|
+
|
|
967
|
+
## 0.115.4
|
|
968
|
+
|
|
969
|
+
### Patch Changes
|
|
970
|
+
|
|
971
|
+
- [#125215](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/125215)
|
|
972
|
+
[`3c2efab149e6c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3c2efab149e6c) -
|
|
973
|
+
Fixes bug behind `platform_design_system_nav4_skip_link_cleanup` gate. The side navigation will
|
|
974
|
+
now expand (if necessary) when navigating to it via skip link.
|
|
975
|
+
- Updated dependencies
|
|
976
|
+
|
|
977
|
+
## 0.115.3
|
|
978
|
+
|
|
979
|
+
### Patch Changes
|
|
980
|
+
|
|
981
|
+
- Updated dependencies
|
|
982
|
+
|
|
983
|
+
## 0.115.2
|
|
984
|
+
|
|
985
|
+
### Patch Changes
|
|
986
|
+
|
|
987
|
+
- [#124259](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/124259)
|
|
988
|
+
[`844662c1f7113`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/844662c1f7113) -
|
|
989
|
+
Internal refactoring of skip links behind the `platform_design_system_nav4_skip_link_cleanup`
|
|
990
|
+
gate.
|
|
991
|
+
|
|
992
|
+
## 0.115.1
|
|
993
|
+
|
|
994
|
+
### Patch Changes
|
|
995
|
+
|
|
996
|
+
- [#123529](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/123529)
|
|
997
|
+
[`8a9a9ecca4148`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8a9a9ecca4148) -
|
|
998
|
+
Fixes skip links when ids contain `:` or other special characters, such as when ids are generated
|
|
999
|
+
using the React 18 `useId()` hook.
|
|
1000
|
+
|
|
1001
|
+
## 0.115.0
|
|
1002
|
+
|
|
1003
|
+
### Minor Changes
|
|
1004
|
+
|
|
1005
|
+
- [#119306](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/119306)
|
|
1006
|
+
[`19e403946c512`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/19e403946c512) -
|
|
1007
|
+
Adds minimum widths to the `HomeActions` and `UserActions` when the
|
|
1008
|
+
`platform_design_system_nav4_top_nav_min_widths` gate is enabled. This creates separation between
|
|
1009
|
+
them and the search bar, as well as ensuring the search bar aligns with the side nav when it is at
|
|
1010
|
+
its default width.
|
|
1011
|
+
- [#122155](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/122155)
|
|
1012
|
+
[`06903d0a6f3a4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/06903d0a6f3a4) -
|
|
1013
|
+
The FlyoutMenuItemTrigger `iconBefore` prop has been renamed to `elemBefore` to align with other
|
|
1014
|
+
menu items.
|
|
1015
|
+
|
|
1016
|
+
## 0.114.0
|
|
1017
|
+
|
|
1018
|
+
### Minor Changes
|
|
1019
|
+
|
|
1020
|
+
- [#121775](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/121775)
|
|
1021
|
+
[`eeb075e6d2f59`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/eeb075e6d2f59) -
|
|
1022
|
+
Updated MenuButtonItem to support the disabled state. It now sets explicit disabled styles.
|
|
1023
|
+
|
|
1024
|
+
When `isDisabled` is true, the `actions` and `actionsOnHover` are not supported. The component
|
|
1025
|
+
types have been updated to enforce this.
|
|
1026
|
+
|
|
1027
|
+
## 0.113.2
|
|
1028
|
+
|
|
1029
|
+
### Patch Changes
|
|
1030
|
+
|
|
1031
|
+
- [#122202](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/122202)
|
|
1032
|
+
[`38865fe230ab2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/38865fe230ab2) -
|
|
1033
|
+
Removes `role="banner"` from the Banner slot behind the
|
|
1034
|
+
`platform_design_system_nav4_banner_slot_role` gate. There should only be one element with
|
|
1035
|
+
`role="banner"` on the page and `TopBar` already has this role, and is the more suitable element.
|
|
1036
|
+
|
|
1037
|
+
## 0.113.1
|
|
1038
|
+
|
|
1039
|
+
### Patch Changes
|
|
1040
|
+
|
|
1041
|
+
- Updated dependencies
|
|
1042
|
+
|
|
1043
|
+
## 0.113.0
|
|
1044
|
+
|
|
1045
|
+
### Minor Changes
|
|
1046
|
+
|
|
1047
|
+
- [#121181](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/121181)
|
|
1048
|
+
[`367ea9a3e7b69`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/367ea9a3e7b69) -
|
|
1049
|
+
ExpandableMenuItemTrigger will now show the chevron icon when the menu item or any of its
|
|
1050
|
+
interactive elements are focused. This change is behind a feature flag.
|
|
1051
|
+
|
|
1052
|
+
## 0.112.0
|
|
1053
|
+
|
|
1054
|
+
### Minor Changes
|
|
1055
|
+
|
|
1056
|
+
- [#121064](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/121064)
|
|
1057
|
+
[`a22121b86e100`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a22121b86e100) -
|
|
1058
|
+
Removed the isChildSelected prop from ExpandableMenuItem.
|
|
1059
|
+
|
|
1060
|
+
### Patch Changes
|
|
1061
|
+
|
|
1062
|
+
- Updated dependencies
|
|
1063
|
+
|
|
1064
|
+
## 0.111.0
|
|
1065
|
+
|
|
1066
|
+
### Minor Changes
|
|
1067
|
+
|
|
1068
|
+
- [#120563](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/120563)
|
|
1069
|
+
[`f87e9e9b5c0c2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f87e9e9b5c0c2) -
|
|
1070
|
+
The isDisabled prop has been removed from FlyoutMenuItemTrigger.
|
|
1071
|
+
|
|
1072
|
+
It was unused and there are no real use cases for it. It was also not fully supported (with
|
|
1073
|
+
styles).
|
|
1074
|
+
|
|
1075
|
+
## 0.110.1
|
|
1076
|
+
|
|
1077
|
+
### Patch Changes
|
|
1078
|
+
|
|
1079
|
+
- Updated dependencies
|
|
1080
|
+
|
|
1081
|
+
## 0.110.0
|
|
1082
|
+
|
|
1083
|
+
### Minor Changes
|
|
1084
|
+
|
|
1085
|
+
- [#120414](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/120414)
|
|
1086
|
+
[`3722a78098896`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3722a78098896) -
|
|
1087
|
+
Adds `isListItem` prop to user action components such as `Profile`. This allows you to disable the
|
|
1088
|
+
default list item wrapper. It is intended for use with dropdown menus, and requires you to render
|
|
1089
|
+
your own `<MenuListItem>` wrapper. See the prop JSDocs for an example.
|
|
1090
|
+
|
|
1091
|
+
## 0.109.0
|
|
1092
|
+
|
|
1093
|
+
### Minor Changes
|
|
1094
|
+
|
|
1095
|
+
- [#119821](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/119821)
|
|
1096
|
+
[`82c4515546620`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/82c4515546620) -
|
|
1097
|
+
Expandable menu items will now keep the chevron icon displayed when there is a nested popup open,
|
|
1098
|
+
such as a "More" submenu.
|
|
1099
|
+
|
|
1100
|
+
This fixes a bug with the icon flickering between the custom elemBefore icon and the chevron icon
|
|
1101
|
+
when the user hovers over a nested popup.
|
|
1102
|
+
|
|
1103
|
+
This change is no longer behind a feature flag.
|
|
1104
|
+
|
|
1105
|
+
- [#119821](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/119821)
|
|
1106
|
+
[`0799b5b2e2848`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0799b5b2e2848) -
|
|
1107
|
+
Fixed a bug with menu items not keeping actionsOnHover visible when there is a nested, portalled
|
|
1108
|
+
popup open, such as a "More" submenu. This change is no longer behind a feature flag.
|
|
1109
|
+
|
|
1110
|
+
## 0.108.0
|
|
1111
|
+
|
|
1112
|
+
### Minor Changes
|
|
1113
|
+
|
|
1114
|
+
- [#119194](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/119194)
|
|
1115
|
+
[`3a3717ecc1175`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3a3717ecc1175) -
|
|
1116
|
+
[ux] Align items to the center in the common-actions section in the nav-bar
|
|
1117
|
+
|
|
1118
|
+
## 0.107.0
|
|
1119
|
+
|
|
1120
|
+
### Minor Changes
|
|
1121
|
+
|
|
1122
|
+
- [#119328](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/119328)
|
|
1123
|
+
[`da429b6cb74f4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/da429b6cb74f4) -
|
|
1124
|
+
Removed the MenuItemCommonProps type export from the package root entrypoint. This was an internal
|
|
1125
|
+
type and not required for external use.
|
|
1126
|
+
- [#119328](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/119328)
|
|
1127
|
+
[`d689466631935`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d689466631935) -
|
|
1128
|
+
Internal refactors to menu item types.
|
|
1129
|
+
- [#119328](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/119328)
|
|
1130
|
+
[`257449bfc371e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/257449bfc371e) -
|
|
1131
|
+
MenuLinkItem and MenuButtonItem onClick prop type has been refined to more accurately reflect the
|
|
1132
|
+
underlying element.
|
|
1133
|
+
|
|
1134
|
+
## 0.106.1
|
|
1135
|
+
|
|
1136
|
+
### Patch Changes
|
|
1137
|
+
|
|
1138
|
+
- Updated dependencies
|
|
1139
|
+
|
|
1140
|
+
## 0.106.0
|
|
1141
|
+
|
|
1142
|
+
### Minor Changes
|
|
1143
|
+
|
|
1144
|
+
- [#117363](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/117363)
|
|
1145
|
+
[`10a0f7f6c2027`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/10a0f7f6c2027) -
|
|
1146
|
+
This package's `peerDependencies` have been adjusted for `react` and/or `react-dom` to reflect the
|
|
1147
|
+
status of only supporting React 18 going forward. No explicit breaking change to React support has
|
|
1148
|
+
been made in this release, but this is to signify going forward, breaking changes for React 16 or
|
|
1149
|
+
React 17 may come via non-major semver releases.
|
|
1150
|
+
|
|
1151
|
+
Please refer this community post for more details:
|
|
1152
|
+
https://community.developer.atlassian.com/t/rfc-78-dropping-support-for-react-16-and-rendering-in-a-react-18-concurrent-root-in-jira-and-confluence/87026
|
|
1153
|
+
|
|
1154
|
+
### Patch Changes
|
|
1155
|
+
|
|
1156
|
+
- Updated dependencies
|
|
1157
|
+
|
|
1158
|
+
## 0.105.1
|
|
1159
|
+
|
|
1160
|
+
### Patch Changes
|
|
1161
|
+
|
|
1162
|
+
- [#113667](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/113667)
|
|
1163
|
+
[`26d85d05b7766`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/26d85d05b7766) -
|
|
1164
|
+
Simplify side nav label to Sidebar to avoid duplicated announcement
|
|
1165
|
+
|
|
1166
|
+
## 0.105.0
|
|
1167
|
+
|
|
1168
|
+
### Minor Changes
|
|
1169
|
+
|
|
1170
|
+
- [#116138](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/116138)
|
|
1171
|
+
[`b50c5d5d65ae2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b50c5d5d65ae2) -
|
|
1172
|
+
Bump to the latest version of @compiled/react
|
|
1173
|
+
|
|
1174
|
+
### Patch Changes
|
|
1175
|
+
|
|
1176
|
+
- [#116043](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/116043)
|
|
1177
|
+
[`0239c7fe5a185`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0239c7fe5a185) -
|
|
1178
|
+
[ux] Improved themed link button styles to be more resilient to global styles overriding color and
|
|
1179
|
+
text decoration for links
|
|
1180
|
+
- Updated dependencies
|
|
1181
|
+
|
|
1182
|
+
## 0.104.0
|
|
1183
|
+
|
|
1184
|
+
### Minor Changes
|
|
1185
|
+
|
|
1186
|
+
- [#115300](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/115300)
|
|
1187
|
+
[`a961fbeb6d9ad`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a961fbeb6d9ad) -
|
|
1188
|
+
[ux] The side nav flyout will now animate when expanding and collapsing, on supported browsers.
|
|
1189
|
+
Currently Firefox is not supported. This change is no longer behind a feature flag.
|
|
1190
|
+
|
|
1191
|
+
## 0.103.0
|
|
1192
|
+
|
|
1193
|
+
### Minor Changes
|
|
1194
|
+
|
|
1195
|
+
- [#114062](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/114062)
|
|
1196
|
+
[`dc5f5fc3db83d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/dc5f5fc3db83d) -
|
|
1197
|
+
Adds `useHasCustomTheme` export to new `/experimental/use-has-custom-theme` entrypoint, which can
|
|
1198
|
+
be used to check if a component is inside of a custom themed top bar.
|
|
1199
|
+
- [#114062](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/114062)
|
|
1200
|
+
[`0a60994d61baf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0a60994d61baf) -
|
|
1201
|
+
Adds `TopNavLinkButton` export to existing `/experimental/top-nav-button` entrypoint. This
|
|
1202
|
+
provides a `LinkButton` equivalent to the existing `TopNavButton`.
|
|
1203
|
+
- [#115006](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/115006)
|
|
1204
|
+
[`3d8e9a3f3f288`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3d8e9a3f3f288) -
|
|
1205
|
+
[ux] Expandable menu items will now keep the chevron icon displayed when there is a nested popup
|
|
1206
|
+
open, such as a "More" submenu.
|
|
1207
|
+
|
|
1208
|
+
This fixes a bug with the icon flickering between the custom elemBefore icon and the chevron icon
|
|
1209
|
+
when the user hovers over a nested popup.
|
|
1210
|
+
|
|
1211
|
+
This change is behind a feature flag.
|
|
1212
|
+
|
|
1213
|
+
### Patch Changes
|
|
1214
|
+
|
|
1215
|
+
- [#115086](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/115086)
|
|
1216
|
+
[`04714fe459ab4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/04714fe459ab4) -
|
|
1217
|
+
Fixes edge case in `platform_design_system_nav4_top_nav_columns` layout changes. Content that
|
|
1218
|
+
could wrap was causing columns to be squished.
|
|
1219
|
+
|
|
1220
|
+
## 0.102.0
|
|
1221
|
+
|
|
1222
|
+
### Minor Changes
|
|
1223
|
+
|
|
1224
|
+
- [#113860](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/113860)
|
|
1225
|
+
[`a4abb72bf5dde`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a4abb72bf5dde) -
|
|
1226
|
+
[ux] Expandable menu items will now keep the chevron icon displayed when there is a nested popup
|
|
1227
|
+
open, such as a "More" submenu.
|
|
1228
|
+
|
|
1229
|
+
This fixes a bug with the icon flickering between the custom elemBefore icon and the chevron icon
|
|
1230
|
+
when the user hovers over a nested popup.
|
|
1231
|
+
|
|
1232
|
+
This change is behind a feature flag.
|
|
1233
|
+
|
|
1234
|
+
## 0.101.0
|
|
1235
|
+
|
|
1236
|
+
### Minor Changes
|
|
1237
|
+
|
|
1238
|
+
- [#112708](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/112708)
|
|
1239
|
+
[`a309928983a25`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a309928983a25) -
|
|
1240
|
+
[ux] Fixed a bug with menu items not keeping actionsOnHover visible when there is a nested,
|
|
1241
|
+
portalled popup open, such as a "More" submenu. This change is behind a feature flag.
|
|
1242
|
+
|
|
1243
|
+
## 0.100.1
|
|
1244
|
+
|
|
1245
|
+
### Patch Changes
|
|
1246
|
+
|
|
1247
|
+
- [#112195](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/112195)
|
|
1248
|
+
[`f58e19aeae498`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f58e19aeae498) -
|
|
1249
|
+
Improves top bar layout and edge case behavior behind
|
|
1250
|
+
`platform_design_system_nav4_top_nav_columns` feature gate.
|
|
1251
|
+
|
|
1252
|
+
## 0.100.0
|
|
1253
|
+
|
|
1254
|
+
### Minor Changes
|
|
1255
|
+
|
|
1256
|
+
- [#112335](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/112335)
|
|
1257
|
+
[`d7dc0f36f7f96`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d7dc0f36f7f96) -
|
|
1258
|
+
[ux] The side nav flyout will now animate when expanding and collapsing, on supported browsers.
|
|
1259
|
+
Currently Firefox is not supported. This change is behind a feature flag.
|
|
1260
|
+
|
|
1261
|
+
## 0.99.0
|
|
1262
|
+
|
|
1263
|
+
### Minor Changes
|
|
1264
|
+
|
|
1265
|
+
- [#111319](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/111319)
|
|
1266
|
+
[`38bb379192046`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/38bb379192046) -
|
|
1267
|
+
Internal refactor to menu items.
|
|
1268
|
+
|
|
1269
|
+
## 0.98.0
|
|
1270
|
+
|
|
1271
|
+
### Minor Changes
|
|
1272
|
+
|
|
1273
|
+
- [#111236](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/111236)
|
|
1274
|
+
[`a4b934b5ad294`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a4b934b5ad294) -
|
|
1275
|
+
[ux] The notch has been removed from the hover state of menu item components.
|
|
1276
|
+
|
|
1277
|
+
## 0.97.0
|
|
1278
|
+
|
|
1279
|
+
### Minor Changes
|
|
1280
|
+
|
|
1281
|
+
- [#110562](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/110562)
|
|
1282
|
+
[`9a10f0cfa5ca7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9a10f0cfa5ca7) -
|
|
1283
|
+
The interactionName prop has been removed from PanelSplitter, as it is no longer a button element.
|
|
1284
|
+
|
|
1285
|
+
## 0.96.1
|
|
1286
|
+
|
|
1287
|
+
### Patch Changes
|
|
1288
|
+
|
|
1289
|
+
- Updated dependencies
|
|
1290
|
+
|
|
1291
|
+
## 0.96.0
|
|
1292
|
+
|
|
1293
|
+
### Minor Changes
|
|
1294
|
+
|
|
1295
|
+
- [#107712](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/107712)
|
|
1296
|
+
[`782dbfc224d3e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/782dbfc224d3e) -
|
|
1297
|
+
Adds `TopLevelSpacer` exposed via the `/side-nav/top-level-spacer` entrypoint.
|
|
1298
|
+
|
|
1299
|
+
This component is intended for creating visual separation around the global app shortcut section.
|
|
1300
|
+
|
|
1301
|
+
## 0.95.0
|
|
1302
|
+
|
|
1303
|
+
### Minor Changes
|
|
1304
|
+
|
|
1305
|
+
- [#109452](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/109452)
|
|
1306
|
+
[`2069ea4a654c9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2069ea4a654c9) -
|
|
1307
|
+
The resizing element (PanelSplitter) is now accessible for keyboard and screen reader use. This
|
|
1308
|
+
change is no longer behind a feature flag.
|
|
1309
|
+
|
|
1310
|
+
## 0.94.0
|
|
1311
|
+
|
|
1312
|
+
### Minor Changes
|
|
1313
|
+
|
|
1314
|
+
- [#109042](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/109042)
|
|
1315
|
+
[`d3dff0ed2d006`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d3dff0ed2d006) -
|
|
1316
|
+
Internal clean up. No outward changes.
|
|
1317
|
+
|
|
1318
|
+
## 0.93.0
|
|
1319
|
+
|
|
1320
|
+
### Minor Changes
|
|
1321
|
+
|
|
1322
|
+
- [#109060](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/109060)
|
|
1323
|
+
[`4660ec858a305`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4660ec858a305) -
|
|
1324
|
+
Update `React` from v16 to v18
|
|
1325
|
+
|
|
1326
|
+
### Patch Changes
|
|
1327
|
+
|
|
1328
|
+
- Updated dependencies
|
|
1329
|
+
|
|
1330
|
+
## 0.92.0
|
|
1331
|
+
|
|
1332
|
+
### Minor Changes
|
|
1333
|
+
|
|
1334
|
+
- [#106459](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/106459)
|
|
1335
|
+
[`173b99bfff61f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/173b99bfff61f) -
|
|
1336
|
+
Cleans up `platform_design_system_nav4_top_bar_theming` feature flag. Custom theming is now always
|
|
1337
|
+
enabled when a valid theme is passed to the `UNSAFE_theme` prop. This prop will be renamed in the
|
|
1338
|
+
future.
|
|
1339
|
+
|
|
1340
|
+
## 0.91.0
|
|
1341
|
+
|
|
1342
|
+
### Minor Changes
|
|
1343
|
+
|
|
1344
|
+
- [#105266](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/105266)
|
|
1345
|
+
[`a4dcf21e2a29d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a4dcf21e2a29d) -
|
|
1346
|
+
[ux] Updated flyout menu width
|
|
1347
|
+
|
|
1348
|
+
## 0.90.0
|
|
1349
|
+
|
|
1350
|
+
### Minor Changes
|
|
1351
|
+
|
|
1352
|
+
- [#104751](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/104751)
|
|
1353
|
+
[`49f324ec26500`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/49f324ec26500) -
|
|
1354
|
+
The top bar now has a full width bottom border. The border between the side nav and main slot is
|
|
1355
|
+
now applied to the side nav. This change is no longer behind a feature flag.
|
|
1356
|
+
|
|
1357
|
+
## 0.89.0
|
|
1358
|
+
|
|
1359
|
+
### Minor Changes
|
|
1360
|
+
|
|
1361
|
+
- [#104520](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/104520)
|
|
1362
|
+
[`c6f180b32ef0d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c6f180b32ef0d) -
|
|
1363
|
+
The fix for drag and drop in the sidebar flyout is now always applied and no longer behind a
|
|
1364
|
+
feature flag.
|
|
1365
|
+
- [#105706](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/105706)
|
|
1366
|
+
[`61a93e64e896a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/61a93e64e896a) -
|
|
1367
|
+
The panel splitter screen reader announcement has been updated to announce the width percentage
|
|
1368
|
+
first - e.g. XX% width
|
|
1369
|
+
|
|
1370
|
+
### Patch Changes
|
|
1371
|
+
|
|
1372
|
+
- Updated dependencies
|
|
1373
|
+
|
|
1374
|
+
## 0.88.0
|
|
1375
|
+
|
|
1376
|
+
### Minor Changes
|
|
1377
|
+
|
|
1378
|
+
- [#104417](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/104417)
|
|
1379
|
+
[`19de5443920ad`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/19de5443920ad) -
|
|
1380
|
+
We have reverted the recent addition of a main content slot from the grid pending further review
|
|
1381
|
+
|
|
1382
|
+
## 0.87.0
|
|
1383
|
+
|
|
1384
|
+
### Minor Changes
|
|
1385
|
+
|
|
1386
|
+
- [#103043](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/103043)
|
|
1387
|
+
[`3ad11458706d8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3ad11458706d8) -
|
|
1388
|
+
[ux] TC-11095: Add main content header to the navigation-system Layout grid
|
|
1389
|
+
|
|
1390
|
+
### Patch Changes
|
|
1391
|
+
|
|
1392
|
+
- [#103594](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/103594)
|
|
1393
|
+
[`7b1a8574e9c29`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7b1a8574e9c29) -
|
|
1394
|
+
Fix or temporarily ignore TypeScript errors that occur in internal React 18 suites.
|
|
1395
|
+
|
|
1396
|
+
## 0.86.0
|
|
1397
|
+
|
|
1398
|
+
### Minor Changes
|
|
1399
|
+
|
|
1400
|
+
- [#103025](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/103025)
|
|
1401
|
+
[`f067a78dbcfa0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f067a78dbcfa0) -
|
|
1402
|
+
[ux] The top bar now has a full width bottom border. The border between the side nav and main slot
|
|
1403
|
+
is now applied to the side nav. This change is behind a feature flag.
|
|
1404
|
+
|
|
1405
|
+
## 0.85.1
|
|
1406
|
+
|
|
1407
|
+
### Patch Changes
|
|
1408
|
+
|
|
1409
|
+
- Updated dependencies
|
|
1410
|
+
|
|
1411
|
+
## 0.85.0
|
|
1412
|
+
|
|
1413
|
+
### Minor Changes
|
|
1414
|
+
|
|
1415
|
+
- [#100405](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/100405)
|
|
1416
|
+
[`e042031781a96`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e042031781a96) -
|
|
1417
|
+
[ux] The curved border for the main slot has been removed. This change is behind a feature flag.
|
|
1418
|
+
|
|
1419
|
+
## 0.84.0
|
|
1420
|
+
|
|
1421
|
+
### Minor Changes
|
|
1422
|
+
|
|
1423
|
+
- [#181384](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/181384)
|
|
1424
|
+
[`2edad72d1f697`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2edad72d1f697) -
|
|
1425
|
+
The resizing element (PanelSplitter) is now accessible for keyboard and screen reader use. This
|
|
1426
|
+
change is behind a feature flag.
|
|
1427
|
+
|
|
1428
|
+
## 0.83.0
|
|
1429
|
+
|
|
1430
|
+
### Minor Changes
|
|
1431
|
+
|
|
1432
|
+
- [#178407](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/178407)
|
|
1433
|
+
[`76eac3bc4980d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/76eac3bc4980d) -
|
|
1434
|
+
Added autoFocus prop to FlyoutMenuItemContent to override the default autoFocus value of
|
|
1435
|
+
PopupContent
|
|
1436
|
+
|
|
1437
|
+
## 0.82.0
|
|
1438
|
+
|
|
1439
|
+
### Minor Changes
|
|
1440
|
+
|
|
1441
|
+
- [#179106](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/179106)
|
|
1442
|
+
[`58fdafc70836a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/58fdafc70836a) -
|
|
1443
|
+
MenuLinkItem and ExpandableMenuItemTrigger will now scroll into view when they become selected,
|
|
1444
|
+
and all its ancestor menu items are expanded. This change was previously behind a feature flag,
|
|
1445
|
+
which is now being removed.
|
|
1446
|
+
|
|
1447
|
+
## 0.81.1
|
|
1448
|
+
|
|
1449
|
+
### Patch Changes
|
|
1450
|
+
|
|
1451
|
+
- Updated dependencies
|
|
1452
|
+
|
|
1453
|
+
## 0.81.0
|
|
1454
|
+
|
|
1455
|
+
### Minor Changes
|
|
1456
|
+
|
|
1457
|
+
- [#178696](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/178696)
|
|
1458
|
+
[`3cabcfbd4725e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3cabcfbd4725e) -
|
|
1459
|
+
Top bar custom theming now accepts `RGB` color objects. Hex strings are still supported for
|
|
1460
|
+
backwards compatibility but may be removed in the future.
|
|
1461
|
+
|
|
1462
|
+
Color inputs should be parsed into `RGB` objects before providing them as the custom theme.
|
|
1463
|
+
|
|
1464
|
+
We now export multiple utility functions to assist with color parsing:
|
|
1465
|
+
|
|
1466
|
+
- Hex parsing with `parseHex` from
|
|
1467
|
+
`@atlassian/navigation-system/experimental/color-utils/parse-hex`
|
|
1468
|
+
- CSS `hsl()` parsing with `parseHsl` from
|
|
1469
|
+
`@atlassian/navigation-system/experimental/color-utils/parse-hsl`
|
|
1470
|
+
- CSS `rgb()` parsing with `parseRgb` from
|
|
1471
|
+
`@atlassian/navigation-system/experimental/color-utils/parse-rgb`
|
|
1472
|
+
|
|
1473
|
+
You can also use `parseUserColor` from
|
|
1474
|
+
`@atlassian/navigation-system/experimental/color-utils/parse-user-color` if you're not sure which
|
|
1475
|
+
color notation is used.
|
|
1476
|
+
|
|
1477
|
+
Example usage:
|
|
1478
|
+
|
|
1479
|
+
```tsx
|
|
1480
|
+
<TopBar
|
|
1481
|
+
UNSAFE_theme={{
|
|
1482
|
+
backgroundColor: parseRgb('rgb(200, 100, 0)'),
|
|
1483
|
+
highlightColor: parseHsl('hsl(90deg, 75%, 25%)'),
|
|
1484
|
+
}}
|
|
1485
|
+
/>
|
|
1486
|
+
```
|
|
1487
|
+
|
|
1488
|
+
## 0.80.0
|
|
1489
|
+
|
|
1490
|
+
### Minor Changes
|
|
1491
|
+
|
|
1492
|
+
- [#174375](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/174375)
|
|
1493
|
+
[`c5578097ac579`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c5578097ac579) -
|
|
1494
|
+
Some minor refactoring with no API or behaviour impact.
|
|
1495
|
+
|
|
1496
|
+
## 0.79.1
|
|
1497
|
+
|
|
1498
|
+
### Patch Changes
|
|
1499
|
+
|
|
1500
|
+
- Updated dependencies
|
|
1501
|
+
|
|
1502
|
+
## 0.79.0
|
|
1503
|
+
|
|
1504
|
+
### Minor Changes
|
|
1505
|
+
|
|
1506
|
+
- [#177059](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/177059)
|
|
1507
|
+
[`958b99e722dd2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/958b99e722dd2) -
|
|
1508
|
+
Fixing a bug in the side navigation flyout where dragging something in the flyout would cause the
|
|
1509
|
+
flyout to close. The fix is currently behind a feature flag.
|
|
1510
|
+
|
|
1511
|
+
## 0.78.2
|
|
1512
|
+
|
|
1513
|
+
### Patch Changes
|
|
1514
|
+
|
|
1515
|
+
- Updated dependencies
|
|
1516
|
+
|
|
1517
|
+
## 0.78.1
|
|
1518
|
+
|
|
1519
|
+
### Patch Changes
|
|
1520
|
+
|
|
1521
|
+
- Updated dependencies
|
|
1522
|
+
|
|
1523
|
+
## 0.78.0
|
|
1524
|
+
|
|
1525
|
+
### Minor Changes
|
|
1526
|
+
|
|
1527
|
+
- [#176005](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/176005)
|
|
1528
|
+
[`a7f4659856234`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a7f4659856234) -
|
|
1529
|
+
Adds `visualContentRef` prop to:
|
|
1530
|
+
|
|
1531
|
+
- `ExpandableMenuItemTrigger`
|
|
1532
|
+
- `FlyoutMenuItemTrigger`
|
|
1533
|
+
- `MenuButtonItem`
|
|
1534
|
+
- `MenuLinkItem`
|
|
1535
|
+
|
|
1536
|
+
Adds `listItemRef` to:
|
|
1537
|
+
|
|
1538
|
+
- `MenuButtonItem`
|
|
1539
|
+
- `MenuLinkItem`
|
|
1540
|
+
|
|
1541
|
+
These expose useful parts of the component's markup, in addition to the existing `ref` which
|
|
1542
|
+
exposes the main interactive element.
|
|
1543
|
+
|
|
1544
|
+
## 0.77.0
|
|
1545
|
+
|
|
1546
|
+
### Minor Changes
|
|
1547
|
+
|
|
1548
|
+
- [#175928](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/175928)
|
|
1549
|
+
[`60e8eb5be2e67`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/60e8eb5be2e67) -
|
|
1550
|
+
The top nav UserActions are now responsive by default. This behaviour was previously behind a
|
|
1551
|
+
feature flag.
|
|
1552
|
+
- [#173211](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/173211)
|
|
1553
|
+
[`736311c43b85f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/736311c43b85f) -
|
|
1554
|
+
[ux] MenuLinkItem and ExpandableMenuItemTrigger will now scroll into view whenever the
|
|
1555
|
+
`isSelected` prop is changed.
|
|
1556
|
+
|
|
1557
|
+
Previously MenuLinkItem would only scroll into view on mount (if it was selected).
|
|
1558
|
+
|
|
1559
|
+
### Patch Changes
|
|
1560
|
+
|
|
1561
|
+
- [#175575](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/175575)
|
|
1562
|
+
[`032efbe9dfbb0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/032efbe9dfbb0) -
|
|
1563
|
+
Internal optimisation to the menu item scroll into view behaviour.
|
|
1564
|
+
- Updated dependencies
|
|
1565
|
+
|
|
1566
|
+
## 0.76.1
|
|
1567
|
+
|
|
1568
|
+
### Patch Changes
|
|
1569
|
+
|
|
1570
|
+
- [#171994](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/171994)
|
|
1571
|
+
[`be58e4bb2e387`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/be58e4bb2e387) -
|
|
1572
|
+
Migrating usages of UNSAFE types and entrypoints that have been renamed in `@atlaskit/icon` and
|
|
1573
|
+
`@atlaskit/icon-lab`.
|
|
1574
|
+
- [#171499](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/171499)
|
|
1575
|
+
[`13d6fb7c618e3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/13d6fb7c618e3) -
|
|
1576
|
+
Flyout content will no longer use `transform` for positioning. This resolves some layering issues
|
|
1577
|
+
with nested popups using `shouldRenderToParent` that were unable to escape the flyout's scroll
|
|
1578
|
+
container.
|
|
1579
|
+
- Updated dependencies
|
|
1580
|
+
|
|
1581
|
+
## 0.76.0
|
|
1582
|
+
|
|
1583
|
+
### Minor Changes
|
|
1584
|
+
|
|
1585
|
+
- [#171400](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/171400)
|
|
1586
|
+
[`a00e4d1e4e1c5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a00e4d1e4e1c5) -
|
|
1587
|
+
Label props have been standardised across the components under
|
|
1588
|
+
@atlassian/navigation-system/top-nav.
|
|
1589
|
+
|
|
1590
|
+
The following components previously had an optional `label` prop, which has now been made
|
|
1591
|
+
required:
|
|
1592
|
+
|
|
1593
|
+
- Help
|
|
1594
|
+
- NavLogo
|
|
1595
|
+
- Notifications
|
|
1596
|
+
|
|
1597
|
+
The following components previously used the `children` prop as the label, but have now been
|
|
1598
|
+
updated to use a required `label` prop:
|
|
1599
|
+
|
|
1600
|
+
- Settings
|
|
1601
|
+
- Profile
|
|
1602
|
+
- UserAction
|
|
1603
|
+
|
|
1604
|
+
- [#171400](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/171400)
|
|
1605
|
+
[`ca52c3e39178a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ca52c3e39178a) -
|
|
1606
|
+
ShowMoreButton has been removed as an exported package. It is no longer needed. There is
|
|
1607
|
+
responsiveness built into the top nav UserActions component, to place the user action list inside
|
|
1608
|
+
a popup behind a "Show more" button.
|
|
1609
|
+
|
|
1610
|
+
### Patch Changes
|
|
1611
|
+
|
|
1612
|
+
- [#171562](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/171562)
|
|
1613
|
+
[`43749228390bf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/43749228390bf) -
|
|
1614
|
+
Adds explicit box sizing to menu item's elemBefore, to resolve issues with inconsistent sizing.
|
|
1615
|
+
- Updated dependencies
|
|
1616
|
+
|
|
1617
|
+
## 0.75.0
|
|
1618
|
+
|
|
1619
|
+
### Minor Changes
|
|
1620
|
+
|
|
1621
|
+
- [#171330](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/171330)
|
|
1622
|
+
[`f1a4f5985187f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f1a4f5985187f) -
|
|
1623
|
+
The focus ring is no longer clipped when focusing within menu item slots.
|
|
1624
|
+
|
|
1625
|
+
### Patch Changes
|
|
1626
|
+
|
|
1627
|
+
- [#170862](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/170862)
|
|
1628
|
+
[`cca540d19d05b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/cca540d19d05b) -
|
|
1629
|
+
Cleanup `platform_design_system_nav4_divider_a11y` gate. Menu section dividers now have
|
|
1630
|
+
`role="none"` applied.
|
|
1631
|
+
- Updated dependencies
|
|
1632
|
+
|
|
1633
|
+
## 0.74.0
|
|
1634
|
+
|
|
1635
|
+
### Minor Changes
|
|
1636
|
+
|
|
1637
|
+
- [#166034](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/166034)
|
|
1638
|
+
[`c390db5935a61`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c390db5935a61) -
|
|
1639
|
+
[ux] Conditional tooltips for sidebar menu item content is no longer behind a feature flag. These
|
|
1640
|
+
tooltips can be disabled with the `isContentTooltipDisabled` prop if they are not appropriate.
|
|
1641
|
+
|
|
1642
|
+
## 0.73.0
|
|
1643
|
+
|
|
1644
|
+
### Minor Changes
|
|
1645
|
+
|
|
1646
|
+
- [#165756](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/165756)
|
|
1647
|
+
[`fbbd859f9af2e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fbbd859f9af2e) -
|
|
1648
|
+
Add `isMenuListItem` prop to `MenuSection` which will render the section inside of a
|
|
1649
|
+
`MenuListItem`. This will become the default behaviour in the future.
|
|
1650
|
+
|
|
1651
|
+
## 0.72.1
|
|
1652
|
+
|
|
1653
|
+
### Patch Changes
|
|
1654
|
+
|
|
1655
|
+
- Updated dependencies
|
|
1656
|
+
|
|
1657
|
+
## 0.72.0
|
|
1658
|
+
|
|
1659
|
+
### Minor Changes
|
|
1660
|
+
|
|
1661
|
+
- [#166218](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/166218)
|
|
1662
|
+
[`07ba023378acb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/07ba023378acb) -
|
|
1663
|
+
Panel Splitter will now block dragging to iFrames. This was previously behind a feature flag.
|
|
1664
|
+
|
|
1665
|
+
## 0.71.0
|
|
1666
|
+
|
|
1667
|
+
### Minor Changes
|
|
1668
|
+
|
|
1669
|
+
- [#162526](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/162526)
|
|
1670
|
+
[`9a0c103641a2f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9a0c103641a2f) -
|
|
1671
|
+
Menu items are now more resilient to narrow widths and deep nesting.
|
|
1672
|
+
|
|
1673
|
+
- A minimum width of 72px has been set on menu items.
|
|
1674
|
+
- The menu item slots (elemBefore, elemAfter, actions, actionsOnHover) now hide overflowing
|
|
1675
|
+
content to prevent content spilling out or overlapping other slots when space is limited.
|
|
1676
|
+
|
|
1677
|
+
## 0.70.2
|
|
1678
|
+
|
|
1679
|
+
### Patch Changes
|
|
1680
|
+
|
|
1681
|
+
- [#165741](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/165741)
|
|
1682
|
+
[`91553c4ece667`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/91553c4ece667) -
|
|
1683
|
+
Internal refactor to the implementation of the extended clickable area styles. No consumer change
|
|
1684
|
+
required.
|
|
1685
|
+
|
|
1686
|
+
## 0.70.1
|
|
1687
|
+
|
|
1688
|
+
### Patch Changes
|
|
1689
|
+
|
|
1690
|
+
- [#165063](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/165063)
|
|
1691
|
+
[`c05f62deeac5a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c05f62deeac5a) -
|
|
1692
|
+
[ux] Removes the `separator` semantics from the menu section `Divider` component, when the
|
|
1693
|
+
`platform_design_system_nav4_divider_a11y` feature gate is enabled
|
|
1694
|
+
- Updated dependencies
|
|
1695
|
+
|
|
1696
|
+
## 0.70.0
|
|
1697
|
+
|
|
1698
|
+
### Minor Changes
|
|
1699
|
+
|
|
1700
|
+
- [#163245](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/163245)
|
|
1701
|
+
[`f8263c48df7df`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f8263c48df7df) -
|
|
1702
|
+
[ux] The icon change to the sidebar toggle button that was shipped in `0.60.0` behind a feature
|
|
1703
|
+
flag is no longer behind a feature flag.
|
|
1704
|
+
|
|
1705
|
+
## 0.69.0
|
|
1706
|
+
|
|
1707
|
+
### Minor Changes
|
|
1708
|
+
|
|
1709
|
+
- [#162544](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/162544)
|
|
1710
|
+
[`82e257cd98330`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/82e257cd98330) -
|
|
1711
|
+
[ux] Updated UserActions in the top nav to be responsive, controlled by the feature flag
|
|
1712
|
+
`platform_design_system_topnav_responsive_menuitems`. This wrapper collapses into a popup on
|
|
1713
|
+
smaller viewports. The list items are displayed in a row on desktop viewports and in a popup on
|
|
1714
|
+
smaller viewports.
|
|
1715
|
+
|
|
1716
|
+
## 0.68.0
|
|
1717
|
+
|
|
1718
|
+
### Minor Changes
|
|
1719
|
+
|
|
1720
|
+
- [#161029](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/161029)
|
|
1721
|
+
[`e19bcb7c6107b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e19bcb7c6107b) -
|
|
1722
|
+
[ux] Menu items that have an open nested popup will now use hover state background color tokens
|
|
1723
|
+
instead of pressed.
|
|
1724
|
+
- [#161029](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/161029)
|
|
1725
|
+
[`e19bcb7c6107b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e19bcb7c6107b) -
|
|
1726
|
+
Selected state has been added to flyout menu items. Use the `isSelected` prop on
|
|
1727
|
+
`FlyoutMenuItemTrigger`.
|
|
1728
|
+
|
|
1729
|
+
## 0.67.0
|
|
1730
|
+
|
|
1731
|
+
### Minor Changes
|
|
1732
|
+
|
|
1733
|
+
- [`f7d6d9fa3d9c3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f7d6d9fa3d9c3) -
|
|
1734
|
+
The indentation of expandable menu item content has been reduced. This was previously behind a
|
|
1735
|
+
feature flag as of version 0.49.1, and is no longer behind a feature flag.
|
|
1736
|
+
|
|
1737
|
+
## 0.66.0
|
|
1738
|
+
|
|
1739
|
+
### Minor Changes
|
|
1740
|
+
|
|
1741
|
+
- [`be6f923511512`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/be6f923511512) -
|
|
1742
|
+
`ExpandableMenuItemTrigger`, `FlyoutMenuItemTrigger`, `MenuLinkItem` and `MenuButtonItem` will now
|
|
1743
|
+
_conditionally_ show a tooltip when it's content is truncated. This can be disabled with the
|
|
1744
|
+
`isContentTooltipDisabled` prop. This change is currently behind a feature flag.
|
|
1745
|
+
|
|
1746
|
+
A `testId` prop added to `ExpandableMenuItemTrigger`.
|
|
1747
|
+
|
|
1748
|
+
### Patch Changes
|
|
1749
|
+
|
|
1750
|
+
- Updated dependencies
|
|
1751
|
+
|
|
1752
|
+
## 0.65.0
|
|
1753
|
+
|
|
1754
|
+
### Minor Changes
|
|
1755
|
+
|
|
1756
|
+
- [#161542](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/161542)
|
|
1757
|
+
[`72a19e7853807`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/72a19e7853807) -
|
|
1758
|
+
The `useSideNavVisibility` hook is no longer publically exported. If you need to programmatically
|
|
1759
|
+
expand or collapse the side nav, use either the `useToggleSideNav` or `useExpandSideNav` hooks.
|
|
1760
|
+
|
|
1761
|
+
## 0.64.1
|
|
1762
|
+
|
|
1763
|
+
### Patch Changes
|
|
1764
|
+
|
|
1765
|
+
- [#160884](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/160884)
|
|
1766
|
+
[`8aabde15b9662`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8aabde15b9662) -
|
|
1767
|
+
Themed buttons will now ignore props that affect styling, aligning with regular buttons
|
|
1768
|
+
|
|
1769
|
+
## 0.64.0
|
|
1770
|
+
|
|
1771
|
+
### Minor Changes
|
|
1772
|
+
|
|
1773
|
+
- [`024caade07488`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/024caade07488) -
|
|
1774
|
+
Cleans up the feature flag for internal changes for displaying the Main slot curved border.
|
|
1775
|
+
|
|
1776
|
+
## 0.63.0
|
|
1777
|
+
|
|
1778
|
+
### Minor Changes
|
|
1779
|
+
|
|
1780
|
+
- [#156108](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/156108)
|
|
1781
|
+
[`c3366ec919883`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c3366ec919883) -
|
|
1782
|
+
The side nav slots and scroll container feature flag has been cleaned up. The following changes
|
|
1783
|
+
are now available for all consumers:
|
|
1784
|
+
|
|
1785
|
+
- `PanelSplitterProvider` no longer renders a scroll container, and no longer adds a flex
|
|
1786
|
+
container.
|
|
1787
|
+
- `SideNavContent` renders a scroll container.
|
|
1788
|
+
- `SideNavContent` no longer renders a ul - it now renders a div. If you need a list element for
|
|
1789
|
+
semantics, compose in a `MenuList`.
|
|
1790
|
+
- `SideNav` now renders a flex container to control the layout of the header, content, and footer
|
|
1791
|
+
slots.
|
|
1792
|
+
|
|
1793
|
+
They were previously behind a feature flag in version 0.53.0.
|
|
1794
|
+
|
|
1795
|
+
- [#156108](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/156108)
|
|
1796
|
+
[`c3366ec919883`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c3366ec919883) -
|
|
1797
|
+
A testId prop has been added to SideNavContent.
|
|
1798
|
+
|
|
1799
|
+
## 0.62.1
|
|
1800
|
+
|
|
1801
|
+
### Patch Changes
|
|
1802
|
+
|
|
1803
|
+
- [#159997](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/159997)
|
|
1804
|
+
[`7d11c708c8d95`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7d11c708c8d95) -
|
|
1805
|
+
Fixes to text color for interaction states in themed buttons
|
|
1806
|
+
|
|
1807
|
+
## 0.62.0
|
|
1808
|
+
|
|
1809
|
+
### Minor Changes
|
|
1810
|
+
|
|
1811
|
+
- [#159818](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/159818)
|
|
1812
|
+
[`ca52b69f59975`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ca52b69f59975) -
|
|
1813
|
+
Fixing an event issue with new sidebar toggle (which is still behind a feature flag). The issue
|
|
1814
|
+
caused the flyout to sometimes open when it should not have for the new sidebar toggle.
|
|
1815
|
+
- [#159268](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/159268)
|
|
1816
|
+
[`b3e1a32a69a3a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b3e1a32a69a3a) -
|
|
1817
|
+
[ux] The side nav will always collapse when collapsed using the toggle button.
|
|
1818
|
+
|
|
1819
|
+
Previously, if the side nav was in flyout (peek) mode when the user hovered on the toggle button
|
|
1820
|
+
and clicked to expand, and then clicked to collapse, the side nav would go back to flyout mode.
|
|
1821
|
+
This is no longer the case.
|
|
1822
|
+
|
|
1823
|
+
### Patch Changes
|
|
1824
|
+
|
|
1825
|
+
- [#159268](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/159268)
|
|
1826
|
+
[`487d22f32a93f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/487d22f32a93f) -
|
|
1827
|
+
Trivial CSS changes to bring this inline with @atlaskit/css typing:
|
|
1828
|
+
|
|
1829
|
+
- We now allow certain `zIndex` values.
|
|
1830
|
+
- `background` is a banned property, use `backgroundColor` instead
|
|
1831
|
+
- Migrates a few things to the new `@atlaskit/css` JSX pragmas.
|
|
1832
|
+
|
|
1833
|
+
- Updated dependencies
|
|
1834
|
+
|
|
1835
|
+
## 0.61.0
|
|
1836
|
+
|
|
1837
|
+
### Minor Changes
|
|
1838
|
+
|
|
1839
|
+
- [#142733](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/142733)
|
|
1840
|
+
[`1dcf72d7115a4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1dcf72d7115a4) -
|
|
1841
|
+
Guidance for the callback props on ExpandableMenuItem and ExpandableMenuItemTrigger has been
|
|
1842
|
+
added.
|
|
1843
|
+
|
|
1844
|
+
## 0.60.0
|
|
1845
|
+
|
|
1846
|
+
### Minor Changes
|
|
1847
|
+
|
|
1848
|
+
- [#158756](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/158756)
|
|
1849
|
+
[`4a434042f05ad`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4a434042f05ad) -
|
|
1850
|
+
[ux] Updating the icon in the topbar for toggling the sidebar. Now using one icon for expanding,
|
|
1851
|
+
and another icon for collapsing. This change is behind a feature flag.
|
|
1852
|
+
|
|
1853
|
+
## 0.59.1
|
|
1854
|
+
|
|
1855
|
+
### Patch Changes
|
|
1856
|
+
|
|
1857
|
+
- [#158301](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/158301)
|
|
1858
|
+
[`157af47088d40`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/157af47088d40) -
|
|
1859
|
+
Internal changes to the SideNav and Main slots behind a feature gate, for displaying the Main slot
|
|
1860
|
+
curved border.
|
|
1861
|
+
|
|
1862
|
+
## 0.59.0
|
|
1863
|
+
|
|
1864
|
+
### Minor Changes
|
|
1865
|
+
|
|
1866
|
+
- [#157811](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/157811)
|
|
1867
|
+
[`f6f67d625c05a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f6f67d625c05a) -
|
|
1868
|
+
Adds `LogIn` component for use in the top navigation
|
|
1869
|
+
|
|
1870
|
+
## 0.58.1
|
|
1871
|
+
|
|
1872
|
+
### Patch Changes
|
|
1873
|
+
|
|
1874
|
+
- Updated dependencies
|
|
1875
|
+
|
|
1876
|
+
## 0.58.0
|
|
1877
|
+
|
|
1878
|
+
### Minor Changes
|
|
1879
|
+
|
|
1880
|
+
- [#157917](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/157917)
|
|
1881
|
+
[`016b8d2ebdde1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/016b8d2ebdde1) -
|
|
1882
|
+
Adds a `useExpandSideNav` hook, which can be used to expand the side nav. It is intended to be
|
|
1883
|
+
used for onboarding flows that require showing the side nav.
|
|
1884
|
+
|
|
1885
|
+
## 0.57.0
|
|
1886
|
+
|
|
1887
|
+
### Minor Changes
|
|
1888
|
+
|
|
1889
|
+
- [#157006](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/157006)
|
|
1890
|
+
[`1b8b690aefaee`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1b8b690aefaee) -
|
|
1891
|
+
We have added a temporary stopgap to Panel to support the jira migration. The element will be
|
|
1892
|
+
hidden on all viewports when the defaultWidth prop is set to 0.
|
|
1893
|
+
|
|
1894
|
+
## 0.56.2
|
|
1895
|
+
|
|
1896
|
+
### Patch Changes
|
|
1897
|
+
|
|
1898
|
+
- [#156341](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/156341)
|
|
1899
|
+
[`615c70d18f084`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/615c70d18f084) -
|
|
1900
|
+
Settings and UserAction now accept `onMouseEnter`, `aria-controls`, `aria-expanded`, and
|
|
1901
|
+
`aria-haspopup` props.
|
|
1902
|
+
|
|
1903
|
+
## 0.56.1
|
|
1904
|
+
|
|
1905
|
+
### Patch Changes
|
|
1906
|
+
|
|
1907
|
+
- [#154679](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/154679)
|
|
1908
|
+
[`e5ac221179777`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e5ac221179777) -
|
|
1909
|
+
Improves the selected states for themed top navigation buttons
|
|
1910
|
+
|
|
1911
|
+
## 0.56.0
|
|
1912
|
+
|
|
1913
|
+
### Minor Changes
|
|
1914
|
+
|
|
1915
|
+
- [#154357](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/154357)
|
|
1916
|
+
[`2c2e84d4a6825`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2c2e84d4a6825) -
|
|
1917
|
+
Performance improvement: will now only do the work to create a custom theme if the backgroundColor
|
|
1918
|
+
or highlightColor values change.
|
|
1919
|
+
|
|
1920
|
+
### Patch Changes
|
|
1921
|
+
|
|
1922
|
+
- [#156480](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/156480)
|
|
1923
|
+
[`619ef610bb782`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/619ef610bb782) -
|
|
1924
|
+
Updating `package.json` to help ensure the appropriate reviewers are added to pull requests.
|
|
1925
|
+
- [#155764](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/155764)
|
|
1926
|
+
[`410ddaf56ec50`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/410ddaf56ec50) -
|
|
1927
|
+
The NavLogo component will now restrict the maximum height of the logo
|
|
1928
|
+
|
|
1929
|
+
## 0.55.0
|
|
1930
|
+
|
|
1931
|
+
### Minor Changes
|
|
1932
|
+
|
|
1933
|
+
- [#155970](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/155970)
|
|
1934
|
+
[`d2e4456064db4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d2e4456064db4) -
|
|
1935
|
+
Menu link items will no longer scroll towards the center of the viewport when opened. This change
|
|
1936
|
+
is behind a feature flag.
|
|
1937
|
+
|
|
1938
|
+
### Patch Changes
|
|
1939
|
+
|
|
1940
|
+
- Updated dependencies
|
|
1941
|
+
|
|
1942
|
+
## 0.54.0
|
|
1943
|
+
|
|
1944
|
+
### Minor Changes
|
|
1945
|
+
|
|
1946
|
+
- [#154669](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/154669)
|
|
1947
|
+
[`20db78434becd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/20db78434becd) -
|
|
1948
|
+
Bump to the latest version of @compiled/\*
|
|
1949
|
+
|
|
1950
|
+
### Patch Changes
|
|
1951
|
+
|
|
1952
|
+
- [#155024](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/155024)
|
|
1953
|
+
[`e3b1e825c7dd0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e3b1e825c7dd0) -
|
|
1954
|
+
[ux] Updated flyout menu width, menu item description color and spacing, menu section heading
|
|
1955
|
+
color
|
|
1956
|
+
- [#155409](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/155409)
|
|
1957
|
+
[`c36d9768308ac`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c36d9768308ac) -
|
|
1958
|
+
remove unused analytics property from MenuLinkItem and MenuButtonItem (it was not used anywhere at
|
|
1959
|
+
platform/, except for the optional type property)
|
|
1960
|
+
- Updated dependencies
|
|
1961
|
+
|
|
1962
|
+
## 0.53.0
|
|
1963
|
+
|
|
1964
|
+
### Minor Changes
|
|
1965
|
+
|
|
1966
|
+
- [#154258](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/154258)
|
|
1967
|
+
[`c6076b62b62a3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c6076b62b62a3) -
|
|
1968
|
+
Adds experimental `useLegacySearchTheme` export
|
|
1969
|
+
- [#154274](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/154274)
|
|
1970
|
+
[`1c3d17bc6120a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1c3d17bc6120a) -
|
|
1971
|
+
[ux] Minimum width of the Nav4 side-nav component updated from 160px to 240px
|
|
1972
|
+
- [#153718](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/153718)
|
|
1973
|
+
[`b6738b5acfef0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b6738b5acfef0) -
|
|
1974
|
+
We are making changes to the side nav scroll container behind a feature flag, in order to support
|
|
1975
|
+
the new header and footer slot components.
|
|
1976
|
+
|
|
1977
|
+
- `PanelSplitterProvider` no longer renders a scroll container, and no longer adds a flex
|
|
1978
|
+
container.
|
|
1979
|
+
- `SideNavContent` renders a scroll container.
|
|
1980
|
+
- `SideNavContent` no longer renders a `ul` - it now renders a `div`. If you need a list element
|
|
1981
|
+
for semantics, compose in a `MenuList`.
|
|
1982
|
+
- `SideNav` now renders a flex container to control the layout of the header, content, and footer
|
|
1983
|
+
slots.
|
|
1984
|
+
|
|
1985
|
+
### Patch Changes
|
|
1986
|
+
|
|
1987
|
+
- [#152203](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/152203)
|
|
1988
|
+
[`c68542c9c1f6b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c68542c9c1f6b) -
|
|
1989
|
+
Internal changes to support theming
|
|
1990
|
+
- Updated dependencies
|
|
1991
|
+
|
|
1992
|
+
## 0.52.0
|
|
1993
|
+
|
|
1994
|
+
### Minor Changes
|
|
1995
|
+
|
|
1996
|
+
- [#153551](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/153551)
|
|
1997
|
+
[`debf8966419d6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/debf8966419d6) -
|
|
1998
|
+
return whether item was expanded or not from expandable-menu-item-trigger. E.g. to send it in
|
|
1999
|
+
analytics
|
|
2000
|
+
|
|
2001
|
+
## 0.51.1
|
|
2002
|
+
|
|
2003
|
+
### Patch Changes
|
|
2004
|
+
|
|
2005
|
+
- [#152881](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/152881)
|
|
2006
|
+
[`71f8f21c7ca95`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/71f8f21c7ca95) -
|
|
2007
|
+
Updating type of label for Notifications Button
|
|
2008
|
+
|
|
2009
|
+
## 0.51.0
|
|
2010
|
+
|
|
2011
|
+
### Minor Changes
|
|
2012
|
+
|
|
2013
|
+
- [#153558](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/153558)
|
|
2014
|
+
[`73fcbbd6ae2c6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/73fcbbd6ae2c6) -
|
|
2015
|
+
Update MainStickyHeader zIndex to fix the problem where its sibling will display on top when
|
|
2016
|
+
scrolling
|
|
2017
|
+
- [#154110](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/154110)
|
|
2018
|
+
[`4daa6146379d2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4daa6146379d2) -
|
|
2019
|
+
The peeking side nav (flyout) will stay locked open when layered components (popups, dropdown
|
|
2020
|
+
menus, tooltips, flyout menu items) are open within it, and automatically close when there are no
|
|
2021
|
+
more open layered components. This change was previously behind a feature flag from version 0.47.0
|
|
2022
|
+
but is no longer behind a feature flag.
|
|
2023
|
+
|
|
2024
|
+
### Patch Changes
|
|
2025
|
+
|
|
2026
|
+
- Updated dependencies
|
|
2027
|
+
|
|
2028
|
+
## 0.50.0
|
|
2029
|
+
|
|
2030
|
+
### Minor Changes
|
|
2031
|
+
|
|
2032
|
+
- [#149247](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/149247)
|
|
2033
|
+
[`6d0d753f79b0a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6d0d753f79b0a) -
|
|
2034
|
+
SideNavContent will grow to take free space in side nav, and act as scroll container, behind a
|
|
2035
|
+
feature flag.
|
|
2036
|
+
- [#149247](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/149247)
|
|
2037
|
+
[`6d0d753f79b0a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6d0d753f79b0a) -
|
|
2038
|
+
SideNavFooter and SideNavHeader components have been added, for placing content with the footer
|
|
2039
|
+
and header of the side nav.
|
|
2040
|
+
|
|
2041
|
+
## 0.49.1
|
|
2042
|
+
|
|
2043
|
+
### Patch Changes
|
|
2044
|
+
|
|
2045
|
+
- [#153020](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/153020)
|
|
2046
|
+
[`d8f0d2f0c5523`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d8f0d2f0c5523) -
|
|
2047
|
+
Adds experimental indentation change to nested items behind the
|
|
2048
|
+
`platform_design_system_nav4_indentation_change_1` feature flag.
|
|
2049
|
+
|
|
2050
|
+
## 0.49.0
|
|
2051
|
+
|
|
2052
|
+
### Minor Changes
|
|
2053
|
+
|
|
2054
|
+
- [#148799](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/148799)
|
|
2055
|
+
[`2900dcedb8cae`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2900dcedb8cae) -
|
|
2056
|
+
Adds export for experimental theme-aware top navigation button
|
|
2057
|
+
|
|
2058
|
+
## 0.48.0
|
|
2059
|
+
|
|
2060
|
+
### Minor Changes
|
|
2061
|
+
|
|
2062
|
+
- [#148762](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/148762)
|
|
2063
|
+
[`be91f679e4bb9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/be91f679e4bb9) -
|
|
2064
|
+
The peeking side nav (flyout) will now wait for the timeout duration to expire before
|
|
2065
|
+
automatically closing when the last open layer is closed.
|
|
2066
|
+
- [#151929](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/151929)
|
|
2067
|
+
[`309682d39cd1a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/309682d39cd1a) -
|
|
2068
|
+
The AppSwitcher now accepts `onMouseEnter`, `ref`, `aria-controls`, `aria-expanded`,
|
|
2069
|
+
`aria-haspopup`. This allows it to be used as a popup trigger and to be integrated with Jira.
|
|
2070
|
+
|
|
2071
|
+
## 0.47.1
|
|
2072
|
+
|
|
2073
|
+
### Patch Changes
|
|
2074
|
+
|
|
2075
|
+
- [`6c3939273a388`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6c3939273a388) -
|
|
2076
|
+
Internal changes to support search bar theming
|
|
2077
|
+
|
|
2078
|
+
## 0.47.0
|
|
2079
|
+
|
|
2080
|
+
### Minor Changes
|
|
2081
|
+
|
|
2082
|
+
- [#151707](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/151707)
|
|
2083
|
+
[`a2a509ab13335`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a2a509ab13335) -
|
|
2084
|
+
The peeking side nav (flyout) will now automatically close once there are no more layered
|
|
2085
|
+
components open within the side nav.
|
|
2086
|
+
|
|
2087
|
+
### Patch Changes
|
|
2088
|
+
|
|
2089
|
+
- Updated dependencies
|
|
2090
|
+
|
|
2091
|
+
## 0.46.0
|
|
2092
|
+
|
|
2093
|
+
### Minor Changes
|
|
2094
|
+
|
|
2095
|
+
- [#145232](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/145232)
|
|
2096
|
+
[`04641b5e6ed55`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/04641b5e6ed55) -
|
|
2097
|
+
Resizing with the `<PanelSplitter>` will now correctly work regardless of the placement of
|
|
2098
|
+
`<iframe>` elements. This change is behind a feature flag for this release.
|
|
2099
|
+
|
|
2100
|
+
### Patch Changes
|
|
2101
|
+
|
|
2102
|
+
- Updated dependencies
|
|
2103
|
+
|
|
2104
|
+
## 0.45.5
|
|
2105
|
+
|
|
2106
|
+
### Patch Changes
|
|
2107
|
+
|
|
2108
|
+
- [#150384](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/150384)
|
|
2109
|
+
[`100f001fd72f6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/100f001fd72f6) -
|
|
2110
|
+
Custom theming (hidden behind a feature flag) will now automatically invert colours for buttons
|
|
2111
|
+
and the logo.
|
|
2112
|
+
|
|
2113
|
+
## 0.45.4
|
|
2114
|
+
|
|
2115
|
+
### Patch Changes
|
|
2116
|
+
|
|
2117
|
+
- [#149596](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/149596)
|
|
2118
|
+
[`6ff0fa45857c7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6ff0fa45857c7) -
|
|
2119
|
+
Fixes the main content border not stretching over the panel slot in some products.
|
|
2120
|
+
|
|
2121
|
+
## 0.45.3
|
|
2122
|
+
|
|
2123
|
+
### Patch Changes
|
|
2124
|
+
|
|
2125
|
+
- [#144205](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/144205)
|
|
2126
|
+
[`11fd539edbe0f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/11fd539edbe0f) -
|
|
2127
|
+
Added and exposed isSideNavVisible and showSideNav for the ability to determine if the sidebar
|
|
2128
|
+
navigation is open on either desktop or mobile, and be able to launch them.
|
|
2129
|
+
|
|
2130
|
+
## 0.45.2
|
|
2131
|
+
|
|
2132
|
+
### Patch Changes
|
|
2133
|
+
|
|
2134
|
+
- [#149469](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/149469)
|
|
2135
|
+
[`c75edf6df890b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c75edf6df890b) -
|
|
2136
|
+
Updated icon types usage since there are now `NewCoreIconProps` and `NewUtilityIconProps`.
|
|
2137
|
+
- [#149555](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/149555)
|
|
2138
|
+
[`d83fe15d67945`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d83fe15d67945) -
|
|
2139
|
+
Increased specificity of nav logo styles to resolve double logo bug.
|
|
2140
|
+
- Updated dependencies
|
|
2141
|
+
|
|
2142
|
+
## 0.45.1
|
|
2143
|
+
|
|
2144
|
+
### Patch Changes
|
|
2145
|
+
|
|
2146
|
+
- Updated dependencies
|
|
2147
|
+
|
|
2148
|
+
## 0.45.0
|
|
2149
|
+
|
|
2150
|
+
### Minor Changes
|
|
2151
|
+
|
|
2152
|
+
- [#148601](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/148601)
|
|
2153
|
+
[`eff2b0c0e6815`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/eff2b0c0e6815) -
|
|
2154
|
+
Two required label props have been added to `SideNavToggleButton`:
|
|
2155
|
+
|
|
2156
|
+
- `collapseLabel`: used as the button label when the toggle button will collapse the side nav
|
|
2157
|
+
- `expandLabel`: used as the button label when the toggle button will expand the side nav
|
|
2158
|
+
|
|
2159
|
+
### Patch Changes
|
|
2160
|
+
|
|
2161
|
+
- [#148281](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/148281)
|
|
2162
|
+
[`3c4de48168ffe`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3c4de48168ffe) -
|
|
2163
|
+
Update the import path of `useId*` from `@atlaskit/ds-lib`
|
|
2164
|
+
- Updated dependencies
|
|
2165
|
+
|
|
2166
|
+
## 0.44.1
|
|
2167
|
+
|
|
2168
|
+
### Patch Changes
|
|
2169
|
+
|
|
2170
|
+
- [#148599](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/148599)
|
|
2171
|
+
[`15dd0178b86ad`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/15dd0178b86ad) -
|
|
2172
|
+
Add height 100% into the panel div wrapper
|
|
2173
|
+
|
|
2174
|
+
## 0.44.0
|
|
2175
|
+
|
|
2176
|
+
### Minor Changes
|
|
2177
|
+
|
|
2178
|
+
- [#147863](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/147863)
|
|
2179
|
+
[`144b13769c7df`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/144b13769c7df) -
|
|
2180
|
+
The `AppSwitcher` action for the top navigation now accepts an `isSelected` prop.
|
|
2181
|
+
- [#147863](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/147863)
|
|
2182
|
+
[`144b13769c7df`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/144b13769c7df) -
|
|
2183
|
+
Initial custom theming work for the top navigation has been added behind the
|
|
2184
|
+
'platform_design_system_nav4_top_bar_theming' feature flag.
|
|
2185
|
+
- [#147863](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/147863)
|
|
2186
|
+
[`dda1b73a13a9a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/dda1b73a13a9a) -
|
|
2187
|
+
NavMenuList has been renamed to SideNavContent to better align with its purpose.
|
|
2188
|
+
|
|
2189
|
+
It can be imported from the entrypoiint: "@atlassian/navigation-system/layout/side-nav"
|
|
2190
|
+
|
|
2191
|
+
## 0.43.0
|
|
2192
|
+
|
|
2193
|
+
### Minor Changes
|
|
2194
|
+
|
|
2195
|
+
- [#147340](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/147340)
|
|
2196
|
+
[`85a16c495a6f7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/85a16c495a6f7) -
|
|
2197
|
+
The deprecated AvatarDropdownAction component has been removed.
|
|
2198
|
+
- [#147187](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/147187)
|
|
2199
|
+
[`f3fc0c5bb919d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f3fc0c5bb919d) -
|
|
2200
|
+
[ux] Side nav flyout will stay locked when a composed popup or dropdown menu is open.
|
|
2201
|
+
|
|
2202
|
+
This change is behind a feature flag.
|
|
2203
|
+
|
|
2204
|
+
- [#147187](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/147187)
|
|
2205
|
+
[`f3fc0c5bb919d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f3fc0c5bb919d) -
|
|
2206
|
+
useSideNavFlyoutLock hook has been removed as an export. We are working on a transparent solution
|
|
2207
|
+
to keep the side nav flyout locked open if there are any supported layering components open within
|
|
2208
|
+
the side nav.
|
|
2209
|
+
|
|
2210
|
+
### Patch Changes
|
|
2211
|
+
|
|
2212
|
+
- Updated dependencies
|
|
2213
|
+
|
|
2214
|
+
## 0.42.1
|
|
2215
|
+
|
|
2216
|
+
### Patch Changes
|
|
2217
|
+
|
|
2218
|
+
- Updated dependencies
|
|
2219
|
+
|
|
2220
|
+
## 0.42.0
|
|
2221
|
+
|
|
2222
|
+
### Minor Changes
|
|
2223
|
+
|
|
2224
|
+
- [#145878](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/145878)
|
|
2225
|
+
[`72e885acee099`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/72e885acee099) -
|
|
2226
|
+
[ux] SideNav will fly out when the user hovers over the toggle button in the side bar, when the
|
|
2227
|
+
side nav is collapsed.
|
|
2228
|
+
- [#145878](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/145878)
|
|
2229
|
+
[`72e885acee099`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/72e885acee099) -
|
|
2230
|
+
useSideNavFlyoutLock hook has been added, for use with any popups or dropdowns that are composed
|
|
2231
|
+
with the side nav, to keep the side nav open
|
|
2232
|
+
- [#145878](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/145878)
|
|
2233
|
+
[`72e885acee099`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/72e885acee099) -
|
|
2234
|
+
Added `isEnabled` prop to PanelSplitterProvider, to conditionally render the panel splitter.
|
|
2235
|
+
- [#145878](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/145878)
|
|
2236
|
+
[`72e885acee099`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/72e885acee099) -
|
|
2237
|
+
[ux] Side nav buttons have been consolidated.
|
|
2238
|
+
|
|
2239
|
+
- `SideNavToggleButton` (used in the top bar) is now always visible. It no longer has built in
|
|
2240
|
+
visibility logic for showing/hiding itself based on whether the side nav is expanded or
|
|
2241
|
+
collapsed.
|
|
2242
|
+
- `SideNavCollapseButton` has been removed. It was previously displayed in the side nav, and would
|
|
2243
|
+
only be visible when the side nav was hovered over.
|
|
2244
|
+
- `collapseButton` prop on `SideNav` has been removed
|
|
2245
|
+
|
|
2246
|
+
## 0.41.0
|
|
2247
|
+
|
|
2248
|
+
### Minor Changes
|
|
2249
|
+
|
|
2250
|
+
- [#144033](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/144033)
|
|
2251
|
+
[`292f1ceddb35a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/292f1ceddb35a) -
|
|
2252
|
+
Removed deprecated components - MobileHamburger and TopNavigation
|
|
2253
|
+
|
|
2254
|
+
## 0.40.3
|
|
2255
|
+
|
|
2256
|
+
### Patch Changes
|
|
2257
|
+
|
|
2258
|
+
- [#143323](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/143323)
|
|
2259
|
+
[`4fdf6347eb506`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4fdf6347eb506) -
|
|
2260
|
+
Flyout menu item content components now appear as a modal on small viewports.
|
|
2261
|
+
- Updated dependencies
|
|
2262
|
+
|
|
2263
|
+
## 0.40.2
|
|
2264
|
+
|
|
2265
|
+
### Patch Changes
|
|
2266
|
+
|
|
2267
|
+
- Updated dependencies
|
|
2268
|
+
|
|
2269
|
+
## 0.40.1
|
|
2270
|
+
|
|
2271
|
+
### Patch Changes
|
|
2272
|
+
|
|
2273
|
+
- [#139469](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/139469)
|
|
2274
|
+
[`04ea74bfaf7bd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/04ea74bfaf7bd) -
|
|
2275
|
+
Top nav components have been internally moved into separate modules.
|
|
2276
|
+
- [#140915](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/140915)
|
|
2277
|
+
[`5741afa7baed6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5741afa7baed6) -
|
|
2278
|
+
Page layout components have been internally moved into separate modules.
|
|
2279
|
+
|
|
2280
|
+
## 0.40.0
|
|
2281
|
+
|
|
2282
|
+
### Minor Changes
|
|
2283
|
+
|
|
2284
|
+
- [#140701](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/140701)
|
|
2285
|
+
[`7dd088f58f9f1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7dd088f58f9f1) -
|
|
2286
|
+
The v4 platform package entrypoint has been removed. Instead of using
|
|
2287
|
+
@atlassian/navigation-system/v4, use @atlassian/navigation-system.
|
|
2288
|
+
|
|
2289
|
+
### Patch Changes
|
|
2290
|
+
|
|
2291
|
+
- [#140701](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/140701)
|
|
2292
|
+
[`7dd088f58f9f1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7dd088f58f9f1) -
|
|
2293
|
+
Side nav components have been split into separate modules
|
|
2294
|
+
- Updated dependencies
|
|
2295
|
+
|
|
2296
|
+
## 0.39.1
|
|
2297
|
+
|
|
2298
|
+
### Patch Changes
|
|
2299
|
+
|
|
2300
|
+
- [`1302e912153c9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1302e912153c9) -
|
|
2301
|
+
Panel splitter now has a zindex of 1 to allow it to be rendered above position sticky elements
|
|
2302
|
+
that also have a zindex of 1.
|
|
2303
|
+
|
|
2304
|
+
## 0.39.0
|
|
2305
|
+
|
|
2306
|
+
### Minor Changes
|
|
2307
|
+
|
|
2308
|
+
- [#139803](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/139803)
|
|
2309
|
+
[`f98e46fd3e776`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f98e46fd3e776) -
|
|
2310
|
+
[ux] Fixes content layering issues with page layout slots on small viewports.
|
|
2311
|
+
|
|
2312
|
+
## 0.38.0
|
|
2313
|
+
|
|
2314
|
+
### Minor Changes
|
|
2315
|
+
|
|
2316
|
+
- [#140022](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/140022)
|
|
2317
|
+
[`9757a63c70784`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9757a63c70784) -
|
|
2318
|
+
[ux] Clicking on the `<PanelSplitter>` inside the `<Sidebar>` will no longer collapse the
|
|
2319
|
+
`<Sidebar>`. Clicking on the `<PanelSplitter>` will now do nothing.
|
|
2320
|
+
|
|
2321
|
+
## 0.37.2
|
|
2322
|
+
|
|
2323
|
+
### Patch Changes
|
|
2324
|
+
|
|
2325
|
+
- [#139917](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/139917)
|
|
2326
|
+
[`5288d4af60a86`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5288d4af60a86) -
|
|
2327
|
+
The notification badge is now positioned further to the top right and continues to extend right
|
|
2328
|
+
instead of left if it grows in size.
|
|
2329
|
+
- [#139966](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/139966)
|
|
2330
|
+
[`966d5e56a6e7a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/966d5e56a6e7a) -
|
|
2331
|
+
Unneeded styles have been cleaned up - no visual change.
|
|
2332
|
+
|
|
2333
|
+
## 0.37.1
|
|
2334
|
+
|
|
2335
|
+
### Patch Changes
|
|
2336
|
+
|
|
2337
|
+
- [#139740](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/139740)
|
|
2338
|
+
[`3695b91fedcbe`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3695b91fedcbe) -
|
|
2339
|
+
Adds optional prop `onClose` to `FlyoutMenuItemContent`
|
|
2340
|
+
|
|
2341
|
+
## 0.37.0
|
|
2342
|
+
|
|
2343
|
+
### Minor Changes
|
|
2344
|
+
|
|
2345
|
+
- [#137888](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/137888)
|
|
2346
|
+
[`34b2e56d5de47`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/34b2e56d5de47) -
|
|
2347
|
+
Added onClick handlers in order to send analytic events from Jira
|
|
2348
|
+
|
|
2349
|
+
## 0.36.0
|
|
2350
|
+
|
|
2351
|
+
### Minor Changes
|
|
2352
|
+
|
|
2353
|
+
- [#137852](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/137852)
|
|
2354
|
+
[`e484ea0d5c1e2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e484ea0d5c1e2) -
|
|
2355
|
+
The `NavLogo` component logo and mobileLogo props have changed to prevent invalid and inaccessible
|
|
2356
|
+
states.
|
|
2357
|
+
|
|
2358
|
+
- `logo` now takes a component reference that matches `@atlaskit/logo` props instead of arbitrary
|
|
2359
|
+
JSX
|
|
2360
|
+
- `mobileLogo` has been renamed to `icon` and now takes a component reference that matches
|
|
2361
|
+
`@atlaskit/logo` props instead of arbitrary JSX
|
|
2362
|
+
|
|
2363
|
+
**Before**
|
|
2364
|
+
|
|
2365
|
+
```jsx
|
|
2366
|
+
<NavLogo
|
|
2367
|
+
href="/"
|
|
2368
|
+
logo={<AtlassianLogo label="Atlassian Design System" />}
|
|
2369
|
+
mobileLogo={<AtlassianIcon label="Atlassian Design System" appearance="brand" size="small" />}
|
|
2370
|
+
/>
|
|
2371
|
+
```
|
|
2372
|
+
|
|
2373
|
+
**After**
|
|
2374
|
+
|
|
2375
|
+
```jsx
|
|
2376
|
+
<NavLogo
|
|
2377
|
+
href="/"
|
|
2378
|
+
label="Atlassian Design System"
|
|
2379
|
+
icon={AtlassianLogo}
|
|
2380
|
+
mobileLogo={AtlassianIcon}
|
|
2381
|
+
/>
|
|
2382
|
+
```
|
|
2383
|
+
|
|
2384
|
+
## 0.35.0
|
|
2385
|
+
|
|
2386
|
+
### Minor Changes
|
|
2387
|
+
|
|
2388
|
+
- [#137247](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/137247)
|
|
2389
|
+
[`77307eedaedd5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/77307eedaedd5) -
|
|
2390
|
+
Padding styles have been removed from xcss prop in Aside and Panel components.
|
|
2391
|
+
|
|
2392
|
+
### Patch Changes
|
|
2393
|
+
|
|
2394
|
+
- [#137247](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/137247)
|
|
2395
|
+
[`77307eedaedd5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/77307eedaedd5) -
|
|
2396
|
+
The top bar is now visually centered and functional across small viewports.
|
|
2397
|
+
- [#137247](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/137247)
|
|
2398
|
+
[`77307eedaedd5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/77307eedaedd5) -
|
|
2399
|
+
The common actions component is now always visually aligned in the top bar when there is enough
|
|
2400
|
+
space.
|
|
2401
|
+
|
|
2402
|
+
## 0.34.2
|
|
2403
|
+
|
|
2404
|
+
### Patch Changes
|
|
2405
|
+
|
|
2406
|
+
- [#138688](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/138688)
|
|
2407
|
+
[`961d97994618c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/961d97994618c) -
|
|
2408
|
+
[ux] Flyout menu item popups are now contained within the viewport.
|
|
2409
|
+
- Updated dependencies
|
|
2410
|
+
|
|
2411
|
+
## 0.34.1
|
|
2412
|
+
|
|
2413
|
+
### Patch Changes
|
|
2414
|
+
|
|
2415
|
+
- [`4b6da1dad2471`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4b6da1dad2471) -
|
|
2416
|
+
[ux] The side nav collapse button is now correctly aligned even when the content overflows and a
|
|
2417
|
+
vertical scrollbar appears.
|
|
2418
|
+
|
|
2419
|
+
## 0.34.0
|
|
2420
|
+
|
|
2421
|
+
### Minor Changes
|
|
2422
|
+
|
|
2423
|
+
- [#135608](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/135608)
|
|
2424
|
+
[`4796d6b44cba2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4796d6b44cba2) -
|
|
2425
|
+
Remove the use of react-uid, to allow better support of R18. Also removed export `usePrefixedUID`
|
|
2426
|
+
|
|
2427
|
+
## 0.33.0
|
|
2428
|
+
|
|
2429
|
+
### Minor Changes
|
|
2430
|
+
|
|
2431
|
+
- [#135930](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/135930)
|
|
2432
|
+
[`4ba432807eed2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4ba432807eed2) -
|
|
2433
|
+
Adds `/side-nav/container-avatar` entrypoint
|
|
2434
|
+
|
|
2435
|
+
### Patch Changes
|
|
2436
|
+
|
|
2437
|
+
- [#135930](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/135930)
|
|
2438
|
+
[`1f39fe8e56436`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1f39fe8e56436) -
|
|
2439
|
+
[ux] The AppSwitcher component is now using `@atlaskit/icon/core/app-switcher` and will inherit
|
|
2440
|
+
the current text color.
|
|
2441
|
+
- [#135930](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/135930)
|
|
2442
|
+
[`c801457b57ee2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c801457b57ee2) -
|
|
2443
|
+
[ux] The AppSwitcher component now displays a tooltip.
|
|
2444
|
+
- Updated dependencies
|
|
2445
|
+
|
|
2446
|
+
## 0.32.0
|
|
2447
|
+
|
|
2448
|
+
### Minor Changes
|
|
2449
|
+
|
|
2450
|
+
- [#135036](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/135036)
|
|
2451
|
+
[`627bd9e8f974b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/627bd9e8f974b) -
|
|
2452
|
+
BLU-2783 Panel and Aside layout slots now support resizing with PanelSplitter.
|
|
2453
|
+
|
|
2454
|
+
## 0.31.0
|
|
2455
|
+
|
|
2456
|
+
### Minor Changes
|
|
2457
|
+
|
|
2458
|
+
- [#133727](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/133727)
|
|
2459
|
+
[`169f345f1da84`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/169f345f1da84) -
|
|
2460
|
+
[ux] Panel splitter no longer continues showing itself after a drag. It also has a different color
|
|
2461
|
+
while being pressed.
|
|
2462
|
+
|
|
2463
|
+
## 0.30.0
|
|
2464
|
+
|
|
2465
|
+
### Minor Changes
|
|
2466
|
+
|
|
2467
|
+
- [#132082](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/132082)
|
|
2468
|
+
[`7125120e9f31f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7125120e9f31f) -
|
|
2469
|
+
BLU-2783 Updates Aside and Panel layout slots to support resizing with PanelSplitter
|
|
2470
|
+
- [#132082](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/132082)
|
|
2471
|
+
[`7125120e9f31f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7125120e9f31f) -
|
|
2472
|
+
[ux] Panel splitter no longer continues showing itself after a drag. It also has a different color
|
|
2473
|
+
while being pressed.
|
|
2474
|
+
|
|
2475
|
+
## 0.29.1
|
|
2476
|
+
|
|
2477
|
+
### Patch Changes
|
|
2478
|
+
|
|
2479
|
+
- [#132113](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/132113)
|
|
2480
|
+
[`895a77387e320`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/895a77387e320) -
|
|
2481
|
+
Aside and panel components now have "box-sizing border-box" set on their elements.
|
|
2482
|
+
- [#132113](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/132113)
|
|
2483
|
+
[`895a77387e320`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/895a77387e320) -
|
|
2484
|
+
The content border has been refactored to prevent unexpected layering issues.
|
|
2485
|
+
- [#132113](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/132113)
|
|
2486
|
+
[`895a77387e320`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/895a77387e320) -
|
|
2487
|
+
Panel and aside components now support bounded typesafe styles through the xcss prop.
|
|
2488
|
+
|
|
2489
|
+
## 0.29.0
|
|
2490
|
+
|
|
2491
|
+
### Minor Changes
|
|
2492
|
+
|
|
2493
|
+
- [#131586](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/131586)
|
|
2494
|
+
[`28709385524a7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/28709385524a7) -
|
|
2495
|
+
[ux] BLU-3203 Remove fade animation from side nav collapse button
|
|
2496
|
+
|
|
2497
|
+
### Patch Changes
|
|
2498
|
+
|
|
2499
|
+
- Updated dependencies
|
|
2500
|
+
|
|
2501
|
+
## 0.28.0
|
|
2502
|
+
|
|
2503
|
+
### Minor Changes
|
|
2504
|
+
|
|
2505
|
+
- [#130337](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/130337)
|
|
2506
|
+
[`89890c9a3f906`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/89890c9a3f906) -
|
|
2507
|
+
[ux] BLU-3203 The side nav collapse button is now only visible on hover or focus of the side bar
|
|
2508
|
+
|
|
2509
|
+
### Patch Changes
|
|
2510
|
+
|
|
2511
|
+
- [#131099](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/131099)
|
|
2512
|
+
[`c34d5005999bc`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c34d5005999bc) -
|
|
2513
|
+
ExpandableMenuItemContent now renders list markup using ARIA roles, to align with our menu list
|
|
2514
|
+
components.
|
|
2515
|
+
- Updated dependencies
|
|
2516
|
+
|
|
2517
|
+
## 0.27.0
|
|
2518
|
+
|
|
2519
|
+
### Minor Changes
|
|
2520
|
+
|
|
2521
|
+
- [#131088](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/131088)
|
|
2522
|
+
[`bded9e74b2f3e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bded9e74b2f3e) -
|
|
2523
|
+
[ux] BLU-3263 Updates side nav min width to 160px, and max width for mobile to 320px
|
|
2524
|
+
|
|
2525
|
+
## 0.26.0
|
|
2526
|
+
|
|
2527
|
+
### Minor Changes
|
|
2528
|
+
|
|
2529
|
+
- [#130177](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/130177)
|
|
2530
|
+
[`12f65bc9c64ef`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/12f65bc9c64ef) -
|
|
2531
|
+
[ux] Pressing on an action in a menu item will not longer cause `:active` styles to be applied to
|
|
2532
|
+
the whole menu item. `:active` will only be applied to the action button.
|
|
2533
|
+
- [#128129](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/128129)
|
|
2534
|
+
[`b9c47badc1261`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b9c47badc1261) -
|
|
2535
|
+
Adds `interactionName` prop to all interactive components, to allow for Unified Frontend
|
|
2536
|
+
Observability (UFO) press interaction tracing.
|
|
2537
|
+
|
|
2538
|
+
### Patch Changes
|
|
2539
|
+
|
|
2540
|
+
- [#130413](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/130413)
|
|
2541
|
+
[`1a796c4acf4e9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1a796c4acf4e9) -
|
|
2542
|
+
Internal update to icons after dependency bump
|
|
2543
|
+
|
|
2544
|
+
## 0.25.4
|
|
2545
|
+
|
|
2546
|
+
### Patch Changes
|
|
2547
|
+
|
|
2548
|
+
- [#128022](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/128022)
|
|
2549
|
+
[`1495b8f9c9253`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1495b8f9c9253) -
|
|
2550
|
+
Modified popup trigger's aria-haspopup types to support the 'dialog' value.
|
|
2551
|
+
- Updated dependencies
|
|
2552
|
+
|
|
2553
|
+
## 0.25.3
|
|
2554
|
+
|
|
2555
|
+
### Patch Changes
|
|
2556
|
+
|
|
2557
|
+
- [#128225](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/128225)
|
|
2558
|
+
[`5c2e63abd10b0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5c2e63abd10b0) -
|
|
2559
|
+
The `MenuList` component will now print console errors in non-production environments if it has
|
|
2560
|
+
semantically invalid children.
|
|
2561
|
+
- Updated dependencies
|
|
2562
|
+
|
|
2563
|
+
## 0.25.2
|
|
2564
|
+
|
|
2565
|
+
### Patch Changes
|
|
2566
|
+
|
|
2567
|
+
- [#122510](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/122510)
|
|
2568
|
+
[`9ece2c8382e6e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9ece2c8382e6e) -
|
|
2569
|
+
Reverted introduced size prop which is no longer required
|
|
2570
|
+
|
|
2571
|
+
## 0.25.1
|
|
2572
|
+
|
|
2573
|
+
### Patch Changes
|
|
2574
|
+
|
|
2575
|
+
- [#129115](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/129115)
|
|
2576
|
+
[`ff588b0d31454`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ff588b0d31454) -
|
|
2577
|
+
The border around the top bar and side nav has been moved around the content area in anticipation
|
|
2578
|
+
of the visual refresh.
|
|
2579
|
+
|
|
2580
|
+
## 0.25.0
|
|
2581
|
+
|
|
2582
|
+
### Minor Changes
|
|
2583
|
+
|
|
2584
|
+
- [#128623](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/128623)
|
|
2585
|
+
[`d2f4a623b3f99`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d2f4a623b3f99) -
|
|
2586
|
+
BLU-3206 Adds useToggleSideNav hook for expanding and collapsing the side nav. Splits the side nav
|
|
2587
|
+
visibility context into smaller contexts for state and dispatch functions to optimise for
|
|
2588
|
+
re-renders.
|
|
2589
|
+
- [#129137](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/129137)
|
|
2590
|
+
[`2a84ee908bf4c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2a84ee908bf4c) -
|
|
2591
|
+
List items now use ARIA roles for semantics instead of `<ul>` and `<li>` elements. This enables
|
|
2592
|
+
more flexible composition by allowing elements to be rendered between lists and list items.
|
|
2593
|
+
|
|
2594
|
+
### Patch Changes
|
|
2595
|
+
|
|
2596
|
+
- [#128741](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/128741)
|
|
2597
|
+
[`bc84f3e270193`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bc84f3e270193) -
|
|
2598
|
+
Add `MainStickyHeader` component. This component is used for ensuring content inside the `Main`
|
|
2599
|
+
component remains visible at all times when scrolling. Use this for experiences such as Confluence
|
|
2600
|
+
page headers.
|
|
2601
|
+
|
|
2602
|
+
## 0.24.0
|
|
2603
|
+
|
|
2604
|
+
### Minor Changes
|
|
2605
|
+
|
|
2606
|
+
- [#127511](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/127511)
|
|
2607
|
+
[`db30e29344013`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/db30e29344013) -
|
|
2608
|
+
Widening range of `react` and `react-dom` peer dependencies from `^16.8.0 || ^17.0.0 || ~18.2.0`
|
|
2609
|
+
to the wider range of ``^16.8.0 || ^17.0.0 || ^18.0.0` (where applicable).
|
|
2610
|
+
|
|
2611
|
+
This change has been done to enable usage of `react@18.3` as well as to have a consistent peer
|
|
2612
|
+
dependency range for `react` and `react-dom` for `/platform` packages.
|
|
2613
|
+
|
|
2614
|
+
### Patch Changes
|
|
2615
|
+
|
|
2616
|
+
- Updated dependencies
|
|
2617
|
+
|
|
2618
|
+
## 0.23.1
|
|
2619
|
+
|
|
2620
|
+
### Patch Changes
|
|
2621
|
+
|
|
2622
|
+
- Updated dependencies
|
|
2623
|
+
|
|
2624
|
+
## 0.23.0
|
|
2625
|
+
|
|
2626
|
+
### Minor Changes
|
|
2627
|
+
|
|
2628
|
+
- [#128206](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/128206)
|
|
2629
|
+
[`4e908cefafbe6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4e908cefafbe6) -
|
|
2630
|
+
BLU-3417 Replace SideNavButton with SideNavCollapseButton for use with SideNav and collapseButton
|
|
2631
|
+
prop, and SideNavToggleButton for use with TopBar
|
|
2632
|
+
- [#128059](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/128059)
|
|
2633
|
+
[`42a35fd49b9c9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/42a35fd49b9c9) -
|
|
2634
|
+
export useSkipLink
|
|
2635
|
+
|
|
2636
|
+
### Patch Changes
|
|
2637
|
+
|
|
2638
|
+
- Updated dependencies
|
|
2639
|
+
|
|
2640
|
+
## 0.22.0
|
|
2641
|
+
|
|
2642
|
+
### Minor Changes
|
|
2643
|
+
|
|
2644
|
+
- [#124788](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/124788)
|
|
2645
|
+
[`df38aae1ec36c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/df38aae1ec36c) -
|
|
2646
|
+
Adding optional id and test ID fields, as well as a mechanic for layout to ignore console errors
|
|
2647
|
+
for script and style tags.
|
|
2648
|
+
|
|
2649
|
+
## 0.21.0
|
|
2650
|
+
|
|
2651
|
+
### Minor Changes
|
|
2652
|
+
|
|
2653
|
+
- [#127649](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/127649)
|
|
2654
|
+
[`c71c4fad72a1a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c71c4fad72a1a) -
|
|
2655
|
+
Internal refactor of how `MenuItem` styles are authored.
|
|
2656
|
+
|
|
2657
|
+
## 0.20.0
|
|
2658
|
+
|
|
2659
|
+
### Minor Changes
|
|
2660
|
+
|
|
2661
|
+
- [`7a2d242f4ca34`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7a2d242f4ca34) -
|
|
2662
|
+
BLU-3417 Add collapseButton slot to SideNav, for use with SideNavButton
|
|
2663
|
+
|
|
2664
|
+
## 0.19.0
|
|
2665
|
+
|
|
2666
|
+
### Minor Changes
|
|
2667
|
+
|
|
2668
|
+
- [`e099cccf48acc`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e099cccf48acc) -
|
|
2669
|
+
[ux] BLU-3404 Add tooltip to SideNavButton and update label copy
|
|
2670
|
+
|
|
2671
|
+
## 0.18.1
|
|
2672
|
+
|
|
2673
|
+
### Patch Changes
|
|
2674
|
+
|
|
2675
|
+
- [`13e9a02699427`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/13e9a02699427) -
|
|
2676
|
+
[ux] Fixes a hover state bug in MenuItem when it has a nested Popup
|
|
2677
|
+
- Updated dependencies
|
|
2678
|
+
|
|
2679
|
+
## 0.18.0
|
|
2680
|
+
|
|
2681
|
+
### Minor Changes
|
|
2682
|
+
|
|
2683
|
+
- [#125978](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/125978)
|
|
2684
|
+
[`97af4271e74d3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/97af4271e74d3) -
|
|
2685
|
+
Updates navigation icon to use productionized version
|
|
2686
|
+
|
|
2687
|
+
## 0.17.0
|
|
2688
|
+
|
|
2689
|
+
### Minor Changes
|
|
2690
|
+
|
|
2691
|
+
- [#125542](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/125542)
|
|
2692
|
+
[`55b87dacbee32`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/55b87dacbee32) -
|
|
2693
|
+
Adds `onResizeStart` and `onResizeEnd` callbacks to the `PanelSplitter`
|
|
2694
|
+
- [#125542](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/125542)
|
|
2695
|
+
[`55b87dacbee32`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/55b87dacbee32) -
|
|
2696
|
+
Adds `onExpand` and `onCollapse` callbacks to the `SideNav`
|
|
2697
|
+
- [#125735](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/125735)
|
|
2698
|
+
[`21b77561d773e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/21b77561d773e) -
|
|
2699
|
+
BLU-3335 Adds Profile, Settings, and ShowMoreButton top nav components. Adds testId to
|
|
2700
|
+
Notifications and Help components.
|
|
2701
|
+
- [#125735](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/125735)
|
|
2702
|
+
[`21b77561d773e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/21b77561d773e) -
|
|
2703
|
+
BLU-3335 Add separate entrypoints for top nav components
|
|
2704
|
+
|
|
2705
|
+
### Patch Changes
|
|
2706
|
+
|
|
2707
|
+
- Updated dependencies
|
|
2708
|
+
|
|
2709
|
+
## 0.16.0
|
|
2710
|
+
|
|
2711
|
+
### Minor Changes
|
|
2712
|
+
|
|
2713
|
+
- [#125606](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/125606)
|
|
2714
|
+
[`8faba4925ae98`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8faba4925ae98) -
|
|
2715
|
+
[ux] MenuItem's will now have `elemBefore` take up space by default in order to improve vertical
|
|
2716
|
+
alignment in the side navigation. You can opt out of this behaviour by using a special
|
|
2717
|
+
`COLLAPSE_ELEM_BEFORE` symbol as the argument for `elemBefore`.
|
|
2718
|
+
|
|
2719
|
+
```tsx
|
|
2720
|
+
import { MenuLinkItem, COLLAPSE_ELEM_BEFORE } from '@atlaskit/navigation/side-nav/menu-link-item';
|
|
2721
|
+
|
|
2722
|
+
function Example() {
|
|
2723
|
+
return (
|
|
2724
|
+
<MenuLinkItem elemBefore={COLLAPSE_ELEM_BEFORE} href="#">
|
|
2725
|
+
Hi
|
|
2726
|
+
</MenuLinkItem>
|
|
2727
|
+
);
|
|
2728
|
+
}
|
|
2729
|
+
```
|
|
2730
|
+
|
|
2731
|
+
## 0.15.2
|
|
2732
|
+
|
|
2733
|
+
### Patch Changes
|
|
2734
|
+
|
|
2735
|
+
- [#125240](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/125240)
|
|
2736
|
+
[`fa871e8163b39`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fa871e8163b39) -
|
|
2737
|
+
[ux] The `actionsOnHover` actions are now always visible on expanded menu items, even when they
|
|
2738
|
+
are not being hovered.
|
|
2739
|
+
|
|
2740
|
+
## 0.15.1
|
|
2741
|
+
|
|
2742
|
+
### Patch Changes
|
|
2743
|
+
|
|
2744
|
+
- [#125233](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/125233)
|
|
2745
|
+
[`7004985a6921a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7004985a6921a) -
|
|
2746
|
+
Introduced a size parameter to the FlyoutMenuItemContent to allow the consumer to opt-in for a
|
|
2747
|
+
larger menu width
|
|
2748
|
+
|
|
2749
|
+
## 0.15.0
|
|
2750
|
+
|
|
2751
|
+
### Minor Changes
|
|
2752
|
+
|
|
2753
|
+
- [`aebba1921b323`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/aebba1921b323) -
|
|
2754
|
+
Allow to pass test IDs to page layout components
|
|
2755
|
+
|
|
2756
|
+
## 0.14.1
|
|
2757
|
+
|
|
2758
|
+
### Patch Changes
|
|
2759
|
+
|
|
2760
|
+
- [#124715](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/124715)
|
|
2761
|
+
[`b90a1166176a6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b90a1166176a6) -
|
|
2762
|
+
[ux] Fixes the issue with broken TopBar layout for the JIRA EntryPoint pages
|
|
2763
|
+
|
|
2764
|
+
## 0.14.0
|
|
2765
|
+
|
|
2766
|
+
### Minor Changes
|
|
2767
|
+
|
|
2768
|
+
- [#124517](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/124517)
|
|
2769
|
+
[`2518f13ebc566`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2518f13ebc566) -
|
|
2770
|
+
[ux] BLU-3127 Hide elemAfter on hover and focus if actionsOnHover are provided
|
|
2771
|
+
- [#124517](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/124517)
|
|
2772
|
+
[`2518f13ebc566`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2518f13ebc566) -
|
|
2773
|
+
BLU-3127 Add testId prop to MenuButtonItem and MenuLinkItem
|
|
2774
|
+
|
|
2775
|
+
## 0.13.0
|
|
2776
|
+
|
|
2777
|
+
### Minor Changes
|
|
2778
|
+
|
|
2779
|
+
- [#124519](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/124519)
|
|
2780
|
+
[`31f85206f2625`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/31f85206f2625) -
|
|
2781
|
+
BLU-3210 Rename CreateButton text prop to children
|
|
2782
|
+
|
|
2783
|
+
### Patch Changes
|
|
2784
|
+
|
|
2785
|
+
- [#124134](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/124134)
|
|
2786
|
+
[`76664d193d06f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/76664d193d06f) -
|
|
2787
|
+
Adds performance optimisations for SkipLinks
|
|
2788
|
+
- [#124519](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/124519)
|
|
2789
|
+
[`31f85206f2625`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/31f85206f2625) -
|
|
2790
|
+
BLU-3210 Update top nav action components to include semantic list elements
|
|
2791
|
+
|
|
2792
|
+
## 0.12.0
|
|
2793
|
+
|
|
2794
|
+
### Minor Changes
|
|
2795
|
+
|
|
2796
|
+
- [#123809](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/123809)
|
|
2797
|
+
[`bada2c94db778`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bada2c94db778) -
|
|
2798
|
+
Adds the properties to control open/expanded state to FlyoutMenuItem/ExpandableMenuItem
|
|
2799
|
+
|
|
2800
|
+
## 0.11.4
|
|
2801
|
+
|
|
2802
|
+
### Patch Changes
|
|
2803
|
+
|
|
2804
|
+
- [#123415](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/123415)
|
|
2805
|
+
[`9cb9d8f61636a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9cb9d8f61636a) -
|
|
2806
|
+
MenuLinkItem now accepts Router Link Config generic typescript types
|
|
2807
|
+
|
|
2808
|
+
## 0.11.3
|
|
2809
|
+
|
|
2810
|
+
### Patch Changes
|
|
2811
|
+
|
|
2812
|
+
- [#123811](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/123811)
|
|
2813
|
+
[`9313dbcfe99df`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9313dbcfe99df) -
|
|
2814
|
+
[ux] ExpandableMenuItem components that are selectable will now expand and collapse as-normal (the
|
|
2815
|
+
same way that non-selectable components behave).
|
|
2816
|
+
|
|
2817
|
+
## 0.11.2
|
|
2818
|
+
|
|
2819
|
+
### Patch Changes
|
|
2820
|
+
|
|
2821
|
+
- [#117215](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/117215)
|
|
2822
|
+
[`239b6df44cfa3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/239b6df44cfa3) -
|
|
2823
|
+
[ux] Selected menu item scrolls into view on page load
|
|
2824
|
+
|
|
2825
|
+
## 0.11.1
|
|
2826
|
+
|
|
2827
|
+
### Patch Changes
|
|
2828
|
+
|
|
2829
|
+
- [#122895](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/122895)
|
|
2830
|
+
[`5d32f0e1cc92c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5d32f0e1cc92c) -
|
|
2831
|
+
BLU-2820 Remove usage of window.matchMedia in side nav button state initialiser
|
|
2832
|
+
- Updated dependencies
|
|
2833
|
+
|
|
2834
|
+
## 0.11.0
|
|
2835
|
+
|
|
2836
|
+
### Minor Changes
|
|
2837
|
+
|
|
2838
|
+
- [#123036](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/123036)
|
|
2839
|
+
[`3a456954b4396`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3a456954b4396) -
|
|
2840
|
+
[ux] Added skip links accessibility feature
|
|
2841
|
+
|
|
2842
|
+
## 0.10.0
|
|
2843
|
+
|
|
2844
|
+
### Minor Changes
|
|
2845
|
+
|
|
2846
|
+
- [#123151](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/123151)
|
|
2847
|
+
[`e254e1cee028a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e254e1cee028a) -
|
|
2848
|
+
Adds isDisabled prop to Flyout Menu Trigger
|
|
2849
|
+
|
|
2850
|
+
## 0.9.0
|
|
2851
|
+
|
|
2852
|
+
### Minor Changes
|
|
2853
|
+
|
|
2854
|
+
- [#122964](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/122964)
|
|
2855
|
+
[`aab73b798d006`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/aab73b798d006) -
|
|
2856
|
+
[ux] BLU-2820 Update side nav button to be visible or hidden based on side nav visibility and
|
|
2857
|
+
screen width; Add defaultCollapsed prop to button
|
|
2858
|
+
|
|
2859
|
+
## 0.8.2
|
|
2860
|
+
|
|
2861
|
+
### Patch Changes
|
|
2862
|
+
|
|
2863
|
+
- [`f16aa7b497c40`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f16aa7b497c40) -
|
|
2864
|
+
Removed `interactiveElemBefore` prop from menu items.
|
|
2865
|
+
|
|
2866
|
+
## 0.8.1
|
|
2867
|
+
|
|
2868
|
+
### Patch Changes
|
|
2869
|
+
|
|
2870
|
+
- [#121871](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/121871)
|
|
2871
|
+
[`ed19811e379f3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ed19811e379f3) -
|
|
2872
|
+
Remove unnecessary icon button from unselectable `ExpandableMenuItemTrigger`
|
|
2873
|
+
- [#122002](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/122002)
|
|
2874
|
+
[`c38c1e4f2659d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c38c1e4f2659d) -
|
|
2875
|
+
Code reverted for Fix zindex for content container in page-layout behind FF
|
|
2876
|
+
|
|
2877
|
+
## 0.8.0
|
|
2878
|
+
|
|
2879
|
+
### Minor Changes
|
|
2880
|
+
|
|
2881
|
+
- [#121452](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/121452)
|
|
2882
|
+
[`b49735b1f1e69`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b49735b1f1e69) -
|
|
2883
|
+
Fix zindex for content container in page-layout behind FF
|
|
2884
|
+
'ally-jira-team.issue-sideview.inaccurate-reading-order_yna0p'. If successful will remove flag in
|
|
2885
|
+
a cleanup PR.
|
|
2886
|
+
|
|
2887
|
+
### Patch Changes
|
|
2888
|
+
|
|
2889
|
+
- [#121529](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/121529)
|
|
2890
|
+
[`c3b801ce12d36`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c3b801ce12d36) -
|
|
2891
|
+
Script and style elements are now ignored during the dev time check for invalid page layout
|
|
2892
|
+
children.
|
|
2893
|
+
- [#121395](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/121395)
|
|
2894
|
+
[`f6225189cfe5d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f6225189cfe5d) -
|
|
2895
|
+
Export PanelSplitterProvider from navigation system
|
|
2896
|
+
- [#121474](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/121474)
|
|
2897
|
+
[`bb4e1953ec3b8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bb4e1953ec3b8) -
|
|
2898
|
+
[ux] Aligns sizing and spacing with designs
|
|
2899
|
+
- [#121395](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/121395)
|
|
2900
|
+
[`52c962d29a939`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/52c962d29a939) -
|
|
2901
|
+
Expose unsafe legacy page variables through the layout/main entrypoint.
|
|
2902
|
+
- [#121339](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/121339)
|
|
2903
|
+
[`487256292a80b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/487256292a80b) -
|
|
2904
|
+
Refactor menu item internals
|
|
2905
|
+
- Updated dependencies
|
|
2906
|
+
|
|
2907
|
+
## 0.7.0
|
|
2908
|
+
|
|
2909
|
+
### Minor Changes
|
|
2910
|
+
|
|
2911
|
+
- [#120444](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/120444)
|
|
2912
|
+
[`f06109aaf6708`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f06109aaf6708) -
|
|
2913
|
+
Transfer migration layer to Jira
|
|
2914
|
+
|
|
2915
|
+
### Patch Changes
|
|
2916
|
+
|
|
2917
|
+
- Updated dependencies
|
|
2918
|
+
|
|
2919
|
+
## 0.6.1
|
|
2920
|
+
|
|
2921
|
+
### Patch Changes
|
|
2922
|
+
|
|
2923
|
+
- [#120731](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/120731)
|
|
2924
|
+
[`ad9a39b61a207`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ad9a39b61a207) -
|
|
2925
|
+
Add isSelected prop to ChatButton in top navigation
|
|
2926
|
+
|
|
2927
|
+
## 0.6.0
|
|
2928
|
+
|
|
2929
|
+
### Minor Changes
|
|
2930
|
+
|
|
2931
|
+
- [#120434](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/120434)
|
|
2932
|
+
[`30047b14dcd7d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/30047b14dcd7d) -
|
|
2933
|
+
BLU-3151 Replace children prop with label in nav4 PanelSplitter
|
|
2934
|
+
|
|
2935
|
+
## 0.5.2
|
|
2936
|
+
|
|
2937
|
+
### Patch Changes
|
|
2938
|
+
|
|
2939
|
+
- [#119869](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/119869)
|
|
2940
|
+
[`c9fbedbef614e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c9fbedbef614e) -
|
|
2941
|
+
Panel splitter now delays showing itself on first hover.
|
|
2942
|
+
- [#119383](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/119383)
|
|
2943
|
+
[`b7e84dd7afd14`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b7e84dd7afd14) -
|
|
2944
|
+
Search trigger text is now visually centered.
|
|
2945
|
+
- [#119383](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/119383)
|
|
2946
|
+
[`b7e84dd7afd14`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b7e84dd7afd14) -
|
|
2947
|
+
Add label prop to nav logo and user actions components. User actions is now a nav element.
|
|
2948
|
+
- [#119383](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/119383)
|
|
2949
|
+
[`b7e84dd7afd14`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b7e84dd7afd14) -
|
|
2950
|
+
Move from xcss func to Compiled cssMap for the search trigger.
|
|
2951
|
+
- [#119259](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/119259)
|
|
2952
|
+
[`e6d3571e113c5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e6d3571e113c5) -
|
|
2953
|
+
Fix MenuLinkItem hover state style regression
|
|
2954
|
+
- [#119383](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/119383)
|
|
2955
|
+
[`b7e84dd7afd14`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b7e84dd7afd14) -
|
|
2956
|
+
Top bar and top navigtation components have been consolidated in anticipation of the visual
|
|
2957
|
+
refresh. Top navigation now renders a fragment and will be removed soon.
|
|
2958
|
+
- [#119524](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/119524)
|
|
2959
|
+
[`123bca7624d52`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/123bca7624d52) -
|
|
2960
|
+
Adding ref forwarding to Help button
|
|
2961
|
+
- [#119117](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/119117)
|
|
2962
|
+
[`ce745c15d2bdb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ce745c15d2bdb) -
|
|
2963
|
+
[ux] Update ExpandableMenuItemContent component and not render content initially
|
|
2964
|
+
- [#119383](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/119383)
|
|
2965
|
+
[`b7e84dd7afd14`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b7e84dd7afd14) -
|
|
2966
|
+
Search trigger now has two new props: `beforeIcon` and `afterElem`.
|
|
2967
|
+
- Updated dependencies
|
|
2968
|
+
|
|
2969
|
+
## 0.5.1
|
|
2970
|
+
|
|
2971
|
+
### Patch Changes
|
|
2972
|
+
|
|
2973
|
+
- [#119010](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/119010)
|
|
2974
|
+
[`237dfd6bfe9bc`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/237dfd6bfe9bc) -
|
|
2975
|
+
Fix sidenav being hidden when ran in PROD mode.
|
|
2976
|
+
- Updated dependencies
|
|
2977
|
+
|
|
2978
|
+
## 0.5.0
|
|
2979
|
+
|
|
2980
|
+
### Minor Changes
|
|
2981
|
+
|
|
2982
|
+
- [#118859](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/118859)
|
|
2983
|
+
[`58683f4c5aefa`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/58683f4c5aefa) -
|
|
2984
|
+
These APIs have been removed: `useToggleSideNavCollapsed`, `useSideNavCollapsedState`,
|
|
2985
|
+
`ShowSideNavInTestEnvironments`.
|
|
2986
|
+
- [#118859](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/118859)
|
|
2987
|
+
[`58683f4c5aefa`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/58683f4c5aefa) -
|
|
2988
|
+
Removed isDragDisabled prop from PanelSplitter
|
|
2989
|
+
|
|
2990
|
+
### Patch Changes
|
|
2991
|
+
|
|
2992
|
+
- [#118859](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/118859)
|
|
2993
|
+
[`58683f4c5aefa`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/58683f4c5aefa) -
|
|
2994
|
+
The side nav collapsed state has been refactored to support the new designs where the side nav is
|
|
2995
|
+
either visible or hidden.
|
|
2996
|
+
- [#118859](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/118859)
|
|
2997
|
+
[`58683f4c5aefa`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/58683f4c5aefa) -
|
|
2998
|
+
Fix `collapsedState` not being passed through in the migration layer.
|
|
2999
|
+
- [#118240](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/118240)
|
|
3000
|
+
[`f5f4a16aa8ae8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f5f4a16aa8ae8) -
|
|
3001
|
+
[ux] Add `aria-current` on selected menu link item.
|
|
3002
|
+
|
|
3003
|
+
## 0.4.4
|
|
3004
|
+
|
|
3005
|
+
### Patch Changes
|
|
3006
|
+
|
|
3007
|
+
- [#118638](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/118638)
|
|
3008
|
+
[`d7a232705b272`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d7a232705b272) -
|
|
3009
|
+
Updating entry-points
|
|
3010
|
+
|
|
3011
|
+
## 0.4.3
|
|
3012
|
+
|
|
3013
|
+
### Patch Changes
|
|
3014
|
+
|
|
3015
|
+
- [#118198](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/118198)
|
|
3016
|
+
[`9faab810fbd04`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9faab810fbd04) -
|
|
3017
|
+
[ux] Add `aria-expanded` to expandable menu item. Ensures `aria-expanded` is only added to buttons
|
|
3018
|
+
and not anchors in the `MenuItemBase`.
|
|
3019
|
+
|
|
3020
|
+
## 0.4.2
|
|
3021
|
+
|
|
3022
|
+
### Patch Changes
|
|
3023
|
+
|
|
3024
|
+
- [#117922](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/117922)
|
|
3025
|
+
[`6dad11af3300c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6dad11af3300c) -
|
|
3026
|
+
Adds a fixed width to FlyoutMenuItemContent.
|
|
3027
|
+
- [#117981](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/117981)
|
|
3028
|
+
[`3b87f835cdc58`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3b87f835cdc58) -
|
|
3029
|
+
Fixes stacking order of popups rendered within menu items
|
|
3030
|
+
|
|
3031
|
+
## 0.4.1
|
|
3032
|
+
|
|
3033
|
+
### Patch Changes
|
|
3034
|
+
|
|
3035
|
+
- [#116976](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/116976)
|
|
3036
|
+
[`1e4ac00498249`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1e4ac00498249) -
|
|
3037
|
+
Removes reference to feature flag for style hoisting fix
|
|
3038
|
+
- [#116949](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/116949)
|
|
3039
|
+
[`298f927e6009f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/298f927e6009f) -
|
|
3040
|
+
Fix spacing issue with user actions t end of top navigation component.
|
|
3041
|
+
- [#116594](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/116594)
|
|
3042
|
+
[`d43a6afccd6e6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d43a6afccd6e6) -
|
|
3043
|
+
Fixes issue where `hoverActions` were taking up space when menu items were in default (non-hover)
|
|
3044
|
+
state.
|
|
3045
|
+
- Updated dependencies
|
|
3046
|
+
|
|
3047
|
+
## 0.4.0
|
|
3048
|
+
|
|
3049
|
+
### Minor Changes
|
|
3050
|
+
|
|
3051
|
+
- [#116919](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/116919)
|
|
3052
|
+
[`ea3df676d3f03`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ea3df676d3f03) -
|
|
3053
|
+
Add ChatButton export.
|
|
3054
|
+
|
|
3055
|
+
## 0.3.15
|
|
3056
|
+
|
|
3057
|
+
### Patch Changes
|
|
3058
|
+
|
|
3059
|
+
- [`4709c6e8fcd8a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4709c6e8fcd8a) -
|
|
3060
|
+
Bump version to remove extra html comment in style tag in React SSR
|
|
3061
|
+
|
|
3062
|
+
## 0.3.14
|
|
3063
|
+
|
|
3064
|
+
### Patch Changes
|
|
3065
|
+
|
|
3066
|
+
- [#116409](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/116409)
|
|
3067
|
+
[`b9997b6e42dca`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b9997b6e42dca) -
|
|
3068
|
+
The page layout root now forcibly hides direct child elements that aren't page layout components.
|
|
3069
|
+
Only page layout components that are placed onto the page layout grid are supported. An error
|
|
3070
|
+
message is logged during dev if you've rendered a non-page layout element as a child of the page
|
|
3071
|
+
layout root.
|
|
3072
|
+
- Updated dependencies
|
|
3073
|
+
|
|
3074
|
+
## 0.3.13
|
|
3075
|
+
|
|
3076
|
+
### Patch Changes
|
|
3077
|
+
|
|
3078
|
+
- Updated dependencies
|
|
3079
|
+
|
|
3080
|
+
## 0.3.12
|
|
3081
|
+
|
|
3082
|
+
### Patch Changes
|
|
3083
|
+
|
|
3084
|
+
- Updated dependencies
|
|
3085
|
+
|
|
3086
|
+
## 0.3.11
|
|
3087
|
+
|
|
3088
|
+
### Patch Changes
|
|
3089
|
+
|
|
3090
|
+
- [#114761](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/114761)
|
|
3091
|
+
[`d1ffa1b968add`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d1ffa1b968add) -
|
|
3092
|
+
Remove primitive component usage in root top nav to resolve a hydration error.
|
|
3093
|
+
|
|
3094
|
+
## 0.3.10
|
|
3095
|
+
|
|
3096
|
+
### Patch Changes
|
|
3097
|
+
|
|
3098
|
+
- [#113897](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/113897)
|
|
3099
|
+
[`317a503f5adfa`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/317a503f5adfa) -
|
|
3100
|
+
Handle spacing for emojis passed to the elemBefore prop of menu items.
|
|
3101
|
+
- Updated dependencies
|
|
3102
|
+
|
|
3103
|
+
## 0.3.9
|
|
3104
|
+
|
|
3105
|
+
### Patch Changes
|
|
3106
|
+
|
|
3107
|
+
- [#114275](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/114275)
|
|
3108
|
+
[`4b0a6782d8b97`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4b0a6782d8b97) -
|
|
3109
|
+
Consolidate mobile and desktop actions together and update icons for the top navigation.
|
|
3110
|
+
|
|
3111
|
+
## 0.3.8
|
|
3112
|
+
|
|
3113
|
+
### Patch Changes
|
|
3114
|
+
|
|
3115
|
+
- Updated dependencies
|
|
3116
|
+
|
|
3117
|
+
## 0.3.7
|
|
3118
|
+
|
|
3119
|
+
### Patch Changes
|
|
3120
|
+
|
|
3121
|
+
- [#113039](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/113039)
|
|
3122
|
+
[`a08ae0c22daa3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a08ae0c22daa3) -
|
|
3123
|
+
Fix spacing of ExpandableMenuItem and FlyoutMenuItem by removing inherited margins.
|
|
3124
|
+
|
|
3125
|
+
## 0.3.6
|
|
3126
|
+
|
|
3127
|
+
### Patch Changes
|
|
3128
|
+
|
|
3129
|
+
- Updated dependencies
|
|
3130
|
+
|
|
3131
|
+
## 0.3.5
|
|
3132
|
+
|
|
3133
|
+
### Patch Changes
|
|
3134
|
+
|
|
3135
|
+
- [#112636](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/112636)
|
|
3136
|
+
[`017614e2e4477`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/017614e2e4477) -
|
|
3137
|
+
Updates `MenuSectionHeading` typography and spacing style.
|
|
3138
|
+
- Updated dependencies
|
|
3139
|
+
|
|
3140
|
+
## 0.3.4
|
|
3141
|
+
|
|
3142
|
+
### Patch Changes
|
|
3143
|
+
|
|
3144
|
+
- [#111845](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/111845)
|
|
3145
|
+
[`236b96dcc18ea`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/236b96dcc18ea) -
|
|
3146
|
+
BLU-2887 Add size props to page layout slot components
|
|
3147
|
+
- Updated dependencies
|
|
3148
|
+
|
|
3149
|
+
## 0.3.3
|
|
3150
|
+
|
|
3151
|
+
### Patch Changes
|
|
3152
|
+
|
|
3153
|
+
- Updated dependencies
|
|
3154
|
+
|
|
3155
|
+
## 0.3.2
|
|
3156
|
+
|
|
3157
|
+
### Patch Changes
|
|
3158
|
+
|
|
3159
|
+
- [#111260](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/111260)
|
|
3160
|
+
[`34872391864a7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/34872391864a7) -
|
|
3161
|
+
Small style changes to align with side navigation and design specification.
|
|
3162
|
+
|
|
3163
|
+
## 0.3.1
|
|
3164
|
+
|
|
3165
|
+
### Patch Changes
|
|
3166
|
+
|
|
3167
|
+
- [#102669](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/102669)
|
|
3168
|
+
[`b92a646065d85`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b92a646065d85) -
|
|
3169
|
+
Add css side effect flag to pkg json.
|
|
3170
|
+
|
|
3171
|
+
## 0.3.0
|
|
3172
|
+
|
|
3173
|
+
### Minor Changes
|
|
3174
|
+
|
|
3175
|
+
- [#111367](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/111367)
|
|
3176
|
+
[`df79fcab87bc5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/df79fcab87bc5) -
|
|
3177
|
+
Exports Menu Item types. Adds NavMenuList component.
|
|
3178
|
+
|
|
3179
|
+
### Patch Changes
|
|
3180
|
+
|
|
3181
|
+
- [#111427](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/111427)
|
|
3182
|
+
[`a030964187b87`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a030964187b87) -
|
|
3183
|
+
BLU-2850 Add new entrypoints for each component
|
|
3184
|
+
- Updated dependencies
|
|
3185
|
+
|
|
3186
|
+
## 0.2.2
|
|
3187
|
+
|
|
3188
|
+
### Patch Changes
|
|
3189
|
+
|
|
3190
|
+
- [#110867](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/110867)
|
|
3191
|
+
[`dc7e72da70ef7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/dc7e72da70ef7) -
|
|
3192
|
+
Migrating instances of `UNSAFE_ANCHOR` primitive imports to the new safe import `Anchor`, in
|
|
3193
|
+
preparation of Anchor open beta and removal of the unsafe export from `@atlaskit/primitives`
|
|
3194
|
+
|
|
3195
|
+
## 0.2.1
|
|
3196
|
+
|
|
3197
|
+
### Patch Changes
|
|
3198
|
+
|
|
3199
|
+
- [#107302](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/107302)
|
|
3200
|
+
[`e5e9625ef8a49`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e5e9625ef8a49) -
|
|
3201
|
+
BLU-2803 Update panel splitter line width to 3px; Add correct active state color token
|
|
3202
|
+
|
|
3203
|
+
## 0.2.0
|
|
3204
|
+
|
|
3205
|
+
### Minor Changes
|
|
3206
|
+
|
|
3207
|
+
- [`2e7d9897cef38`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2e7d9897cef38) -
|
|
3208
|
+
Add `target` prop to the menu link item, along with extra accessibility features for when `target`
|
|
3209
|
+
is `_blank`.
|
|
3210
|
+
|
|
3211
|
+
## 0.1.1
|
|
3212
|
+
|
|
3213
|
+
### Patch Changes
|
|
3214
|
+
|
|
3215
|
+
- [#110484](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/110484)
|
|
3216
|
+
[`87624d8890d70`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/87624d8890d70) -
|
|
3217
|
+
BLU-2803 Update side nav to support resizing up to 50% of viewport width
|
|
3218
|
+
|
|
3219
|
+
## 0.1.0
|
|
3220
|
+
|
|
3221
|
+
### Minor Changes
|
|
3222
|
+
|
|
3223
|
+
- [#110226](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/110226)
|
|
3224
|
+
[`713f495106667`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/713f495106667) -
|
|
3225
|
+
Add new top navigation in under feature flag.
|
|
3226
|
+
|
|
3227
|
+
### Patch Changes
|
|
3228
|
+
|
|
3229
|
+
- Updated dependencies
|
|
3230
|
+
|
|
3231
|
+
## 0.0.6
|
|
3232
|
+
|
|
3233
|
+
### Patch Changes
|
|
3234
|
+
|
|
3235
|
+
- [#107711](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/107711)
|
|
3236
|
+
[`200eec7e4d2f5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/200eec7e4d2f5) -
|
|
3237
|
+
[ux] BLU-2803 Remove resting state border shadow from resizable panel splitter
|
|
3238
|
+
- [#108799](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/108799)
|
|
3239
|
+
[`19624b276970d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/19624b276970d) -
|
|
3240
|
+
Prevent the focus ring of a menu item from being overlapped by sibling menu items.
|
|
3241
|
+
|
|
3242
|
+
## 0.0.5
|
|
3243
|
+
|
|
3244
|
+
### Patch Changes
|
|
3245
|
+
|
|
3246
|
+
- Updated dependencies
|
|
3247
|
+
|
|
3248
|
+
## 0.0.4
|
|
3249
|
+
|
|
3250
|
+
### Patch Changes
|
|
3251
|
+
|
|
3252
|
+
- [#107762](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/107762)
|
|
3253
|
+
[`432dbcf3bdbd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/432dbcf3bdbd) -
|
|
3254
|
+
Migrate latest code from Jira to platform.
|
|
3255
|
+
|
|
3256
|
+
## 0.0.3
|
|
3257
|
+
|
|
3258
|
+
### Patch Changes
|
|
3259
|
+
|
|
3260
|
+
- [#105685](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/105685)
|
|
3261
|
+
[`62358e655d4c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/62358e655d4c) -
|
|
3262
|
+
Remove private flag to publish internally.
|
|
3263
|
+
|
|
3264
|
+
## 0.0.2
|
|
3265
|
+
|
|
3266
|
+
### Patch Changes
|
|
3267
|
+
|
|
3268
|
+
- [#107116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/107116)
|
|
3269
|
+
[`9a038f5d3834`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9a038f5d3834) -
|
|
3270
|
+
Upgrade dependency @compiled/react to latest version
|
|
3271
|
+
|
|
3272
|
+
## 0.0.1
|
|
3273
|
+
|
|
3274
|
+
### Patch Changes
|
|
3275
|
+
|
|
3276
|
+
- [#104175](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/104175)
|
|
3277
|
+
[`3ef38cfcb0c3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3ef38cfcb0c3) -
|
|
3278
|
+
Initial release for experimentation.
|