@20minutes/hela 0.1.107 → 0.1.108
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/constants/cssProperties/typography.d.ts +1 -1
- package/dist/constants/tokenVariables.d.ts +10 -0
- package/dist/index.es.js +308 -299
- package/dist/index.umd.js +2 -2
- package/dist/js/scripts.es.js +84 -82
- package/dist/js/scripts.umd.js +1 -1
- package/dist/scss/abstracts/variables/_token-variables.scss +2 -1
- package/dist/scss/abstracts/variables/_variables.scss +1 -1
- package/dist/style.css +1 -1
- package/package.json +6 -6
|
@@ -2,6 +2,6 @@ export declare const textDecorationList: readonly ["underline", "dotted", "wavy"
|
|
|
2
2
|
export declare const textAlignList: readonly ["left", "center", "right", "justify"];
|
|
3
3
|
export declare const textTransformList: readonly ["capitalize", "uppercase", "lowercase"];
|
|
4
4
|
export declare const fontFamilyTokenNameList: readonly ("oswald" | "source-serif-pro")[];
|
|
5
|
-
export declare const fontWeightTokenNameList: readonly ("regular" | "bold")[];
|
|
5
|
+
export declare const fontWeightTokenNameList: readonly ("regular" | "semi-bold" | "bold")[];
|
|
6
6
|
export declare const headingSizeTokenNameList: readonly ("xs" | "xxs-2" | "xxs" | "s" | "m" | "l" | "xl" | "xxl" | "xxl-2")[];
|
|
7
7
|
export declare const textSizeTokenNameList: readonly ("xs" | "xxs-3" | "xxs-2" | "xxs" | "s" | "m" | "l" | "xl" | "xxl")[];
|
|
@@ -29,6 +29,13 @@ export declare const tokenVariables: {
|
|
|
29
29
|
style: string;
|
|
30
30
|
extensions: string[];
|
|
31
31
|
};
|
|
32
|
+
'SourceSerifPro-SemiBold': {
|
|
33
|
+
value: string;
|
|
34
|
+
family: string;
|
|
35
|
+
weight: string;
|
|
36
|
+
style: string;
|
|
37
|
+
extensions: string[];
|
|
38
|
+
};
|
|
32
39
|
};
|
|
33
40
|
icon: {
|
|
34
41
|
'20mn-achat': {
|
|
@@ -473,6 +480,9 @@ export declare const tokenVariables: {
|
|
|
473
480
|
regular: {
|
|
474
481
|
value: string;
|
|
475
482
|
};
|
|
483
|
+
'semi-bold': {
|
|
484
|
+
value: string;
|
|
485
|
+
};
|
|
476
486
|
bold: {
|
|
477
487
|
value: string;
|
|
478
488
|
};
|