@pingux/astro 2.161.1-alpha.5 → 2.161.1-alpha.6
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/lib/cjs/components/AstroProvider/AstroProvider.js +12 -7
- package/lib/cjs/components/NavBar/stories/NavBar.Onyx.stories.d.ts +5 -0
- package/lib/cjs/components/NavBar/stories/NavBar.Onyx.stories.js +21 -0
- package/lib/cjs/components/NavBar/stories/NavBarNextGenComponent.js +26 -30
- package/lib/cjs/components/NavBarSection/NavBarItemHeader.js +1 -1
- package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +74 -16
- package/lib/cjs/hooks/useGetTheme/useGetTheme.js +16 -12
- package/lib/cjs/index.d.ts +1 -0
- package/lib/cjs/index.js +8 -0
- package/lib/cjs/styles/theme.js +2 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/icons.d.ts +35 -7
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +36 -7
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/nextGenDarkModeOverride.js +2 -0
- package/lib/cjs/styles/themeOverrides/onyxSideNav.d.ts +269 -0
- package/lib/cjs/styles/themeOverrides/onyxSideNav.js +236 -0
- package/lib/cjs/styles/themeOverrides/uiLibraryOverride.d.ts +108 -0
- package/lib/cjs/styles/themes/astro/customProperties/icons.d.ts +35 -7
- package/lib/cjs/styles/themes/astro/customProperties/icons.js +25 -10
- package/lib/cjs/styles/themes/astro/customProperties/index.d.ts +36 -7
- package/lib/cjs/styles/themes/astro/customProperties/navBarIcons.d.ts +6 -0
- package/lib/cjs/styles/themes/astro/customProperties/navBarIcons.js +145 -0
- package/lib/cjs/styles/themes/astro/customProperties/tShirtSizes.d.ts +1 -0
- package/lib/cjs/styles/themes/astro/customProperties/tShirtSizes.js +1 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/icons.d.ts +37 -9
- package/lib/cjs/styles/themes/next-gen/customProperties/icons.js +28 -10
- package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +36 -7
- package/lib/cjs/styles/themes/next-gen/customProperties/tShirtSizes.d.ts +1 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/tShirtSizes.js +2 -1
- package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +44 -0
- package/lib/cjs/styles/themes/next-gen/next-gen.js +2 -0
- package/lib/cjs/styles/themes/next-gen/variants/navbar.d.ts +2 -0
- package/lib/cjs/styles/themes/next-gen/variants/navbar.js +2 -0
- package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +2 -0
- package/lib/cjs/types/shared/style.d.ts +1 -1
- package/lib/cjs/utils/devUtils/constants/tShirtSizes.d.ts +1 -0
- package/lib/cjs/utils/devUtils/constants/tShirtSizes.js +2 -1
- package/lib/components/AstroProvider/AstroProvider.js +12 -7
- package/lib/components/NavBar/stories/NavBar.Onyx.stories.js +13 -0
- package/lib/components/NavBar/stories/NavBarNextGenComponent.js +26 -30
- package/lib/components/NavBarSection/NavBarItemHeader.js +1 -1
- package/lib/hooks/useGetTheme/useGetTheme.js +14 -10
- package/lib/index.js +1 -0
- package/lib/styles/theme.js +2 -0
- package/lib/styles/themeOverrides/nextGenDarkMode/nextGenDarkModeOverride.js +2 -0
- package/lib/styles/themeOverrides/onyxSideNav.js +229 -0
- package/lib/styles/themes/astro/customProperties/icons.js +25 -10
- package/lib/styles/themes/astro/customProperties/navBarIcons.js +136 -0
- package/lib/styles/themes/astro/customProperties/tShirtSizes.js +1 -0
- package/lib/styles/themes/next-gen/customProperties/icons.js +28 -10
- package/lib/styles/themes/next-gen/customProperties/tShirtSizes.js +2 -1
- package/lib/styles/themes/next-gen/next-gen.js +2 -0
- package/lib/styles/themes/next-gen/variants/navbar.js +2 -0
- package/lib/tsconfig.lib.tsbuildinfo +1 -1
- package/lib/utils/devUtils/constants/tShirtSizes.js +2 -1
- package/package.json +1 -1