stone-kit 0.0.1073 → 0.0.1074
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.
|
@@ -11,6 +11,7 @@ export declare const BUTTON_VARIANTS: {
|
|
|
11
11
|
volodiyaLight: string;
|
|
12
12
|
lightBlue: string;
|
|
13
13
|
transparent: string;
|
|
14
|
+
transparentBg: string;
|
|
14
15
|
};
|
|
15
16
|
export type btnVariant = keyof typeof BUTTON_VARIANTS;
|
|
16
17
|
type btnSizes = 'large' | 'preMedium' | 'medium' | 'small' | 'tiny';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
1
|
+
const t = {
|
|
2
2
|
blue: "blue",
|
|
3
3
|
gray: "gray",
|
|
4
4
|
whiteStroke: "whiteStroke",
|
|
@@ -8,8 +8,9 @@ const e = {
|
|
|
8
8
|
shade: "shade",
|
|
9
9
|
volodiyaLight: "volodiyaLight",
|
|
10
10
|
lightBlue: "lightBlue",
|
|
11
|
-
transparent: "transparent"
|
|
11
|
+
transparent: "transparent",
|
|
12
|
+
transparentBg: "transparentBg"
|
|
12
13
|
};
|
|
13
14
|
export {
|
|
14
|
-
|
|
15
|
+
t as BUTTON_VARIANTS
|
|
15
16
|
};
|