@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.
- package/lib/cjs/components/AccordionGridGroup/AccordionGrid.styles.js +1 -1
- package/lib/cjs/components/AstroProvider/AstroProvider.js +4 -4
- package/lib/cjs/components/Box/Box.stories.d.ts +1 -0
- package/lib/cjs/components/Box/Box.stories.js +18 -1
- package/lib/cjs/components/DataTable/stories/DataTableNextGenComponent.js +1 -1
- package/lib/cjs/components/Icon/Icon.js +2 -2
- package/lib/cjs/components/IconButton/IconButton.stories.js +18 -28
- package/lib/cjs/components/ListView/stories/ListViewNextGenComponent.js +1 -1
- package/lib/cjs/components/Modal/Modal.styles.js +1 -1
- package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +2 -0
- package/lib/cjs/hooks/useTShirtSize/useTShirtSize.test.js +51 -1
- package/lib/cjs/styles/colors.d.ts +6 -0
- package/lib/cjs/styles/colors.js +6 -0
- package/lib/cjs/styles/theme.js +1 -3
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.d.ts +5 -6
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.js +11 -7
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +1 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/buttons.d.ts +7 -45
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/buttons.js +11 -24
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/footer.js +1 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/forms.js +2 -2
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/input.js +3 -3
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/listview.js +1 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/message.js +6 -6
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/navbar.js +1 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.d.ts +20 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.js +27 -7
- package/lib/cjs/styles/themes/astro/customProperties/index.d.ts +1 -0
- package/lib/cjs/styles/themes/astro/customProperties/index.js +2 -0
- package/lib/cjs/styles/themes/next-gen/colors/colors.d.ts +6 -7
- package/lib/cjs/styles/themes/next-gen/colors/colors.js +12 -8
- package/lib/cjs/styles/themes/next-gen/convertedComponentList.js +1 -1
- package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +4 -2
- package/lib/cjs/styles/themes/next-gen/customProperties/index.js +2 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/tShirtSizes.js +13 -13
- package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +157 -252
- package/lib/cjs/styles/themes/next-gen/stories/StickerSheetComponent.js +1 -1
- package/lib/cjs/styles/themes/next-gen/variants/badges.d.ts +18 -20
- package/lib/cjs/styles/themes/next-gen/variants/button.d.ts +136 -235
- package/lib/cjs/styles/themes/next-gen/variants/button.js +48 -105
- package/lib/cjs/styles/themes/next-gen/variants/callout.js +1 -1
- package/lib/cjs/styles/themes/next-gen/variants/cards.js +1 -1
- package/lib/cjs/styles/themes/next-gen/variants/dataTable.js +1 -1
- package/lib/cjs/styles/themes/next-gen/variants/input.js +2 -2
- package/lib/cjs/styles/themes/next-gen/variants/listview.js +1 -1
- package/lib/cjs/styles/themes/next-gen/variants/navbar.js +1 -1
- package/lib/cjs/styles/themes/next-gen/variants/navigationHeader.js +3 -3
- package/lib/cjs/styles/themes/next-gen/variants/panelHeader.js +1 -1
- package/lib/cjs/styles/themes/next-gen/variants/stepper.js +3 -3
- package/lib/cjs/styles/themes/next-gen/variants/table.js +2 -2
- package/lib/cjs/styles/themes/next-gen/variants/tableBase.js +4 -4
- package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +15 -10
- package/lib/cjs/styles/themes/next-gen/variants/variants.js +18 -12
- package/lib/components/AccordionGridGroup/AccordionGrid.styles.js +1 -1
- package/lib/components/AstroProvider/AstroProvider.js +4 -4
- package/lib/components/Box/Box.stories.js +16 -0
- package/lib/components/DataTable/stories/DataTableNextGenComponent.js +1 -1
- package/lib/components/Icon/Icon.js +2 -2
- package/lib/components/IconButton/IconButton.stories.js +18 -28
- package/lib/components/ListView/stories/ListViewNextGenComponent.js +1 -1
- package/lib/components/Modal/Modal.styles.js +1 -1
- package/lib/hooks/useTShirtSize/useTShirtSize.test.js +51 -1
- package/lib/styles/colors.js +6 -0
- package/lib/styles/theme.js +1 -3
- package/lib/styles/themeOverrides/nextGenDarkMode/colors.js +11 -7
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/buttons.js +11 -24
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/footer.js +1 -1
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/forms.js +2 -2
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/input.js +3 -3
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/listview.js +1 -1
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/message.js +6 -6
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/navbar.js +1 -1
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/variants.js +27 -7
- package/lib/styles/themes/astro/customProperties/index.js +2 -0
- package/lib/styles/themes/next-gen/colors/colors.js +12 -8
- package/lib/styles/themes/next-gen/convertedComponentList.js +1 -1
- package/lib/styles/themes/next-gen/customProperties/index.js +2 -0
- package/lib/styles/themes/next-gen/customProperties/tShirtSizes.js +13 -13
- package/lib/styles/themes/next-gen/stories/StickerSheetComponent.js +1 -1
- package/lib/styles/themes/next-gen/variants/button.js +48 -105
- package/lib/styles/themes/next-gen/variants/callout.js +1 -1
- package/lib/styles/themes/next-gen/variants/cards.js +1 -1
- package/lib/styles/themes/next-gen/variants/dataTable.js +1 -1
- package/lib/styles/themes/next-gen/variants/input.js +2 -2
- package/lib/styles/themes/next-gen/variants/listview.js +1 -1
- package/lib/styles/themes/next-gen/variants/navbar.js +1 -1
- package/lib/styles/themes/next-gen/variants/navigationHeader.js +3 -3
- package/lib/styles/themes/next-gen/variants/panelHeader.js +1 -1
- package/lib/styles/themes/next-gen/variants/stepper.js +3 -3
- package/lib/styles/themes/next-gen/variants/table.js +2 -2
- package/lib/styles/themes/next-gen/variants/tableBase.js +4 -4
- package/lib/styles/themes/next-gen/variants/variants.js +18 -12
- 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: '
|
|
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;
|