@kvell-group/ui 1.12.6 → 1.12.7
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/dist/components/theme.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const BODY_M_MEDIUM_FONT_VARIANT: "body-m-medium";
|
|
2
2
|
export declare const BODY_S_MEDIUM_FONT_VARIANT: "body-s-medium";
|
|
3
|
+
export declare const BODY_L_BOLD_FONT_VARIANT: "body-l-bold";
|
|
3
4
|
export declare const CAPTION_L_MEDIUM_FONT_VARIANT: "caption-l-medium";
|
|
4
5
|
export declare const CAPTION_L_REGULAR_FONT_VARIANT: "caption-l-regular";
|
|
5
|
-
export declare const FontVariants: ("body-s-medium" | "body-m-medium" | "caption-l-medium" | "caption-l-regular")[];
|
|
6
|
+
export declare const FontVariants: ("body-s-medium" | "body-m-medium" | "body-l-bold" | "caption-l-medium" | "caption-l-regular")[];
|
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
const _ = "body-m-medium", o = "body-s-medium", A = "caption-l-medium",
|
|
1
|
+
const _ = "body-m-medium", o = "body-s-medium", A = "body-l-bold", N = "caption-l-medium", T = "caption-l-regular", t = [
|
|
2
2
|
_,
|
|
3
3
|
o,
|
|
4
4
|
A,
|
|
5
|
-
|
|
5
|
+
N,
|
|
6
|
+
T
|
|
6
7
|
];
|
|
7
8
|
export {
|
|
9
|
+
A as BODY_L_BOLD_FONT_VARIANT,
|
|
8
10
|
_ as BODY_M_MEDIUM_FONT_VARIANT,
|
|
9
11
|
o as BODY_S_MEDIUM_FONT_VARIANT,
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
12
|
+
N as CAPTION_L_MEDIUM_FONT_VARIANT,
|
|
13
|
+
T as CAPTION_L_REGULAR_FONT_VARIANT,
|
|
14
|
+
t as FontVariants
|
|
13
15
|
};
|