@pingux/astro 2.161.1-alpha.5 → 2.162.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.
Files changed (55) hide show
  1. package/lib/cjs/components/AstroProvider/AstroProvider.js +12 -7
  2. package/lib/cjs/components/NavBar/stories/NavBar.Onyx.stories.d.ts +5 -0
  3. package/lib/cjs/components/NavBar/stories/NavBar.Onyx.stories.js +21 -0
  4. package/lib/cjs/components/NavBar/stories/NavBarNextGenComponent.js +26 -30
  5. package/lib/cjs/components/NavBarSection/NavBarItemHeader.js +1 -1
  6. package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +74 -16
  7. package/lib/cjs/hooks/useGetTheme/useGetTheme.js +16 -12
  8. package/lib/cjs/index.d.ts +1 -0
  9. package/lib/cjs/index.js +8 -0
  10. package/lib/cjs/styles/theme.js +2 -0
  11. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/icons.d.ts +35 -7
  12. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +36 -7
  13. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/nextGenDarkModeOverride.js +2 -0
  14. package/lib/cjs/styles/themeOverrides/onyxSideNav.d.ts +269 -0
  15. package/lib/cjs/styles/themeOverrides/onyxSideNav.js +236 -0
  16. package/lib/cjs/styles/themeOverrides/uiLibraryOverride.d.ts +108 -0
  17. package/lib/cjs/styles/themes/astro/customProperties/icons.d.ts +35 -7
  18. package/lib/cjs/styles/themes/astro/customProperties/icons.js +25 -10
  19. package/lib/cjs/styles/themes/astro/customProperties/index.d.ts +36 -7
  20. package/lib/cjs/styles/themes/astro/customProperties/navBarIcons.d.ts +6 -0
  21. package/lib/cjs/styles/themes/astro/customProperties/navBarIcons.js +145 -0
  22. package/lib/cjs/styles/themes/astro/customProperties/tShirtSizes.d.ts +1 -0
  23. package/lib/cjs/styles/themes/astro/customProperties/tShirtSizes.js +1 -0
  24. package/lib/cjs/styles/themes/next-gen/customProperties/icons.d.ts +37 -9
  25. package/lib/cjs/styles/themes/next-gen/customProperties/icons.js +28 -10
  26. package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +36 -7
  27. package/lib/cjs/styles/themes/next-gen/customProperties/tShirtSizes.d.ts +1 -0
  28. package/lib/cjs/styles/themes/next-gen/customProperties/tShirtSizes.js +2 -1
  29. package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +44 -0
  30. package/lib/cjs/styles/themes/next-gen/next-gen.js +2 -0
  31. package/lib/cjs/styles/themes/next-gen/variants/navbar.d.ts +2 -0
  32. package/lib/cjs/styles/themes/next-gen/variants/navbar.js +2 -0
  33. package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +2 -0
  34. package/lib/cjs/types/shared/style.d.ts +1 -1
  35. package/lib/cjs/utils/devUtils/constants/tShirtSizes.d.ts +1 -0
  36. package/lib/cjs/utils/devUtils/constants/tShirtSizes.js +2 -1
  37. package/lib/components/AstroProvider/AstroProvider.js +12 -7
  38. package/lib/components/NavBar/stories/NavBar.Onyx.stories.js +13 -0
  39. package/lib/components/NavBar/stories/NavBarNextGenComponent.js +26 -30
  40. package/lib/components/NavBarSection/NavBarItemHeader.js +1 -1
  41. package/lib/hooks/useGetTheme/useGetTheme.js +14 -10
  42. package/lib/index.js +1 -0
  43. package/lib/styles/theme.js +2 -0
  44. package/lib/styles/themeOverrides/nextGenDarkMode/nextGenDarkModeOverride.js +2 -0
  45. package/lib/styles/themeOverrides/onyxSideNav.js +229 -0
  46. package/lib/styles/themes/astro/customProperties/icons.js +25 -10
  47. package/lib/styles/themes/astro/customProperties/navBarIcons.js +136 -0
  48. package/lib/styles/themes/astro/customProperties/tShirtSizes.js +1 -0
  49. package/lib/styles/themes/next-gen/customProperties/icons.js +28 -10
  50. package/lib/styles/themes/next-gen/customProperties/tShirtSizes.js +2 -1
  51. package/lib/styles/themes/next-gen/next-gen.js +2 -0
  52. package/lib/styles/themes/next-gen/variants/navbar.js +2 -0
  53. package/lib/tsconfig.lib.tsbuildinfo +1 -1
  54. package/lib/utils/devUtils/constants/tShirtSizes.js +2 -1
  55. package/package.json +1 -1
@@ -2,7 +2,8 @@ export var tShirtSizes = {
2
2
  xxs: 9,
3
3
  xs: 15,
4
4
  sm: 20,
5
- md: 25
5
+ md: 25,
6
+ xsm: 20
6
7
  };
7
8
  export var iconWrapperSizes = {
8
9
  sm: 18,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "2.161.1-alpha.5",
3
+ "version": "2.162.0",
4
4
  "description": "React component library for Ping Identity's design system",
5
5
  "repository": {
6
6
  "type": "git",