@pingux/astro 2.149.2-alpha.1 → 2.150.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/lib/cjs/components/AccordionGridGroup/AccordionGrid.styles.js +1 -1
  2. package/lib/cjs/components/AstroProvider/AstroProvider.js +4 -4
  3. package/lib/cjs/components/Box/Box.stories.d.ts +1 -0
  4. package/lib/cjs/components/Box/Box.stories.js +18 -1
  5. package/lib/cjs/components/DataTable/stories/DataTableNextGenComponent.js +1 -1
  6. package/lib/cjs/components/Icon/Icon.js +2 -2
  7. package/lib/cjs/components/IconButton/IconButton.stories.js +18 -28
  8. package/lib/cjs/components/ListView/stories/ListViewNextGenComponent.js +1 -1
  9. package/lib/cjs/components/Modal/Modal.styles.js +1 -1
  10. package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +2 -0
  11. package/lib/cjs/hooks/useTShirtSize/useTShirtSize.test.js +51 -1
  12. package/lib/cjs/styles/colors.d.ts +6 -0
  13. package/lib/cjs/styles/colors.js +6 -0
  14. package/lib/cjs/styles/theme.js +1 -3
  15. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.d.ts +5 -6
  16. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.js +11 -7
  17. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +1 -0
  18. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/buttons.d.ts +7 -45
  19. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/buttons.js +11 -24
  20. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/footer.js +1 -1
  21. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/forms.js +2 -2
  22. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/input.js +3 -3
  23. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/listview.js +1 -1
  24. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/message.js +6 -6
  25. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/navbar.js +1 -1
  26. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.d.ts +20 -0
  27. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.js +27 -7
  28. package/lib/cjs/styles/themes/astro/customProperties/index.d.ts +1 -0
  29. package/lib/cjs/styles/themes/astro/customProperties/index.js +2 -0
  30. package/lib/cjs/styles/themes/next-gen/colors/colors.d.ts +6 -7
  31. package/lib/cjs/styles/themes/next-gen/colors/colors.js +12 -8
  32. package/lib/cjs/styles/themes/next-gen/convertedComponentList.js +1 -1
  33. package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +4 -2
  34. package/lib/cjs/styles/themes/next-gen/customProperties/index.js +2 -0
  35. package/lib/cjs/styles/themes/next-gen/customProperties/tShirtSizes.js +13 -13
  36. package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +157 -252
  37. package/lib/cjs/styles/themes/next-gen/stories/StickerSheetComponent.js +1 -1
  38. package/lib/cjs/styles/themes/next-gen/variants/badges.d.ts +18 -20
  39. package/lib/cjs/styles/themes/next-gen/variants/button.d.ts +136 -235
  40. package/lib/cjs/styles/themes/next-gen/variants/button.js +48 -105
  41. package/lib/cjs/styles/themes/next-gen/variants/callout.js +1 -1
  42. package/lib/cjs/styles/themes/next-gen/variants/cards.js +1 -1
  43. package/lib/cjs/styles/themes/next-gen/variants/dataTable.js +1 -1
  44. package/lib/cjs/styles/themes/next-gen/variants/input.js +2 -2
  45. package/lib/cjs/styles/themes/next-gen/variants/listview.js +1 -1
  46. package/lib/cjs/styles/themes/next-gen/variants/navbar.js +1 -1
  47. package/lib/cjs/styles/themes/next-gen/variants/navigationHeader.js +3 -3
  48. package/lib/cjs/styles/themes/next-gen/variants/panelHeader.js +1 -1
  49. package/lib/cjs/styles/themes/next-gen/variants/stepper.js +3 -3
  50. package/lib/cjs/styles/themes/next-gen/variants/table.js +2 -2
  51. package/lib/cjs/styles/themes/next-gen/variants/tableBase.js +4 -4
  52. package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +15 -10
  53. package/lib/cjs/styles/themes/next-gen/variants/variants.js +18 -12
  54. package/lib/components/AccordionGridGroup/AccordionGrid.styles.js +1 -1
  55. package/lib/components/AstroProvider/AstroProvider.js +4 -4
  56. package/lib/components/Box/Box.stories.js +16 -0
  57. package/lib/components/DataTable/stories/DataTableNextGenComponent.js +1 -1
  58. package/lib/components/Icon/Icon.js +2 -2
  59. package/lib/components/IconButton/IconButton.stories.js +18 -28
  60. package/lib/components/ListView/stories/ListViewNextGenComponent.js +1 -1
  61. package/lib/components/Modal/Modal.styles.js +1 -1
  62. package/lib/hooks/useTShirtSize/useTShirtSize.test.js +51 -1
  63. package/lib/styles/colors.js +6 -0
  64. package/lib/styles/theme.js +1 -3
  65. package/lib/styles/themeOverrides/nextGenDarkMode/colors.js +11 -7
  66. package/lib/styles/themeOverrides/nextGenDarkMode/variants/buttons.js +11 -24
  67. package/lib/styles/themeOverrides/nextGenDarkMode/variants/footer.js +1 -1
  68. package/lib/styles/themeOverrides/nextGenDarkMode/variants/forms.js +2 -2
  69. package/lib/styles/themeOverrides/nextGenDarkMode/variants/input.js +3 -3
  70. package/lib/styles/themeOverrides/nextGenDarkMode/variants/listview.js +1 -1
  71. package/lib/styles/themeOverrides/nextGenDarkMode/variants/message.js +6 -6
  72. package/lib/styles/themeOverrides/nextGenDarkMode/variants/navbar.js +1 -1
  73. package/lib/styles/themeOverrides/nextGenDarkMode/variants/variants.js +27 -7
  74. package/lib/styles/themes/astro/customProperties/index.js +2 -0
  75. package/lib/styles/themes/next-gen/colors/colors.js +12 -8
  76. package/lib/styles/themes/next-gen/convertedComponentList.js +1 -1
  77. package/lib/styles/themes/next-gen/customProperties/index.js +2 -0
  78. package/lib/styles/themes/next-gen/customProperties/tShirtSizes.js +13 -13
  79. package/lib/styles/themes/next-gen/stories/StickerSheetComponent.js +1 -1
  80. package/lib/styles/themes/next-gen/variants/button.js +48 -105
  81. package/lib/styles/themes/next-gen/variants/callout.js +1 -1
  82. package/lib/styles/themes/next-gen/variants/cards.js +1 -1
  83. package/lib/styles/themes/next-gen/variants/dataTable.js +1 -1
  84. package/lib/styles/themes/next-gen/variants/input.js +2 -2
  85. package/lib/styles/themes/next-gen/variants/listview.js +1 -1
  86. package/lib/styles/themes/next-gen/variants/navbar.js +1 -1
  87. package/lib/styles/themes/next-gen/variants/navigationHeader.js +3 -3
  88. package/lib/styles/themes/next-gen/variants/panelHeader.js +1 -1
  89. package/lib/styles/themes/next-gen/variants/stepper.js +3 -3
  90. package/lib/styles/themes/next-gen/variants/table.js +2 -2
  91. package/lib/styles/themes/next-gen/variants/tableBase.js +4 -4
  92. package/lib/styles/themes/next-gen/variants/variants.js +18 -12
  93. package/package.json +1 -1
@@ -63,7 +63,7 @@ var iconSizes = ['icon-100', 'icon-200', 'icon-300', 'icon-400', 'icon-500', 'ic
63
63
  var StickerSheetComponent = function StickerSheetComponent() {
64
64
  return (0, _react2.jsx)(_index.Box, {
65
65
  sx: {
66
- backgroundColor: 'background.base'
66
+ backgroundColor: 'backgroundBase'
67
67
  },
68
68
  height: "100%",
69
69
  p: "lg",
@@ -4,18 +4,9 @@ export declare const badgeDeleteButton: {
4
4
  height: number;
5
5
  p: number;
6
6
  width: number;
7
- transition: string;
8
- outline: string;
9
- border: string;
10
- borderColor: string;
11
7
  path: {
12
8
  fill: string;
13
9
  };
14
- '&.is-focused': {
15
- outline: string;
16
- outlineColor: string;
17
- outlineOffset: string;
18
- };
19
10
  '&.is-hovered': {
20
11
  backgroundColor: string;
21
12
  path: {
@@ -24,11 +15,19 @@ export declare const badgeDeleteButton: {
24
15
  };
25
16
  '&.is-pressed': {
26
17
  backgroundColor: string;
27
- borderColor: string;
28
18
  path: {
29
19
  fill: string;
30
20
  };
31
21
  };
22
+ '&.is-focused': {
23
+ outline: string;
24
+ outlineColor: string;
25
+ outlineOffset: string;
26
+ };
27
+ transition: string;
28
+ outline: string;
29
+ border: string;
30
+ boxShadow: string;
32
31
  };
33
32
  export declare const badges: {
34
33
  baseBadge: {
@@ -753,18 +752,9 @@ export declare const badges: {
753
752
  height: number;
754
753
  p: number;
755
754
  width: number;
756
- transition: string;
757
- outline: string;
758
- border: string;
759
- borderColor: string;
760
755
  path: {
761
756
  fill: string;
762
757
  };
763
- '&.is-focused': {
764
- outline: string;
765
- outlineColor: string;
766
- outlineOffset: string;
767
- };
768
758
  '&.is-hovered': {
769
759
  backgroundColor: string;
770
760
  path: {
@@ -773,11 +763,19 @@ export declare const badges: {
773
763
  };
774
764
  '&.is-pressed': {
775
765
  backgroundColor: string;
776
- borderColor: string;
777
766
  path: {
778
767
  fill: string;
779
768
  };
780
769
  };
770
+ '&.is-focused': {
771
+ outline: string;
772
+ outlineColor: string;
773
+ outlineOffset: string;
774
+ };
775
+ transition: string;
776
+ outline: string;
777
+ border: string;
778
+ boxShadow: string;
781
779
  };
782
780
  itemBadgeWithSlot: {
783
781
  bg: string;