@sps-woodland/tokens 8.4.0 → 8.4.2
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/css/tokens.css +3 -2
- package/lib/css/utils.css +12 -1
- package/lib/dictionary.d.ts +121 -0
- package/lib/font.css +21 -21
- package/lib/index.cjs.js +1 -1
- package/lib/index.es.js +7 -3
- package/lib/scss/tokens.scss +3 -2
- package/lib/scss/utils.scss +12 -1
- package/lib/tokens.d.ts +1 -0
- package/lib/vanilla-extract/border.css.d.ts +1 -0
- package/lib/vanilla-extract/properties/border.css.d.ts +40 -0
- package/lib/vanilla-extract/properties/color.css.d.ts +16 -0
- package/lib/vanilla-extract/sprinkleValues.d.ts +1 -0
- package/lib/vanilla-extract/sprinkles.css.d.ts +65 -65
- package/lib/vanilla-extract/style.css +1 -1
- package/package.json +1 -1
- package/src/dictionary.ts +90 -10
- package/src/tokens.ts +5 -1
- package/src/vanilla-extract/sprinkleValues.ts +1 -0
package/lib/css/tokens.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 26 Mar 2024 13:37:29 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
--color-yellow-light: #000000;
|
|
44
44
|
--color-yellow-medium: #000000;
|
|
45
45
|
--color-white: #000000;
|
|
46
|
+
--color-white-80: oklch(100% 0 0 / 0.8);
|
|
46
47
|
--color-black: #000000;
|
|
47
48
|
--color-none: rgba(0, 0, 0, 0);
|
|
48
49
|
--component-action-bar-background-color: #000000;
|
|
@@ -698,7 +699,7 @@
|
|
|
698
699
|
--component-spinner-color-secondary: #000000;
|
|
699
700
|
--component-spinner-color-white: #000000;
|
|
700
701
|
--component-spinner-light-color-primary: #000000;
|
|
701
|
-
--component-spinner-light-color-secondary:
|
|
702
|
+
--component-spinner-light-color-secondary: oklch(100% 0 0 / 0.8);
|
|
702
703
|
--component-spinner-sm-dimension: 1.125rem;
|
|
703
704
|
--component-spinner-sm-thickness: 0.125rem;
|
|
704
705
|
--component-spinner-md-dimension: 2.25rem;
|
package/lib/css/utils.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 26 Mar 2024 13:37:29 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
.red-light {
|
|
@@ -322,6 +322,17 @@
|
|
|
322
322
|
border-style: solid;
|
|
323
323
|
border-width: var(--size-border-width-standard);
|
|
324
324
|
}
|
|
325
|
+
.white-80 {
|
|
326
|
+
color: var(--color-white-80) !important;
|
|
327
|
+
}
|
|
328
|
+
.bg-white-80 {
|
|
329
|
+
background-color: var(--color-white-80) !important;
|
|
330
|
+
}
|
|
331
|
+
.border-white-80 {
|
|
332
|
+
border-color: var(--color-white-80) !important;
|
|
333
|
+
border-style: solid;
|
|
334
|
+
border-width: var(--size-border-width-standard);
|
|
335
|
+
}
|
|
325
336
|
.black {
|
|
326
337
|
color: var(--color-black) !important;
|
|
327
338
|
}
|
package/lib/dictionary.d.ts
CHANGED
|
@@ -809,6 +809,25 @@ export declare const dictionary: Readonly<{
|
|
|
809
809
|
};
|
|
810
810
|
path: string[];
|
|
811
811
|
};
|
|
812
|
+
"white-80": {
|
|
813
|
+
value: string;
|
|
814
|
+
filePath: string;
|
|
815
|
+
isSource: boolean;
|
|
816
|
+
original: {
|
|
817
|
+
value: {
|
|
818
|
+
l: string;
|
|
819
|
+
c: string;
|
|
820
|
+
h: string;
|
|
821
|
+
a: number;
|
|
822
|
+
};
|
|
823
|
+
};
|
|
824
|
+
name: string;
|
|
825
|
+
attributes: {
|
|
826
|
+
category: string;
|
|
827
|
+
type: string;
|
|
828
|
+
};
|
|
829
|
+
path: string[];
|
|
830
|
+
};
|
|
812
831
|
black: {
|
|
813
832
|
value: string;
|
|
814
833
|
filePath: string;
|
|
@@ -20092,6 +20111,38 @@ export declare const dictionary: Readonly<{
|
|
|
20092
20111
|
};
|
|
20093
20112
|
path: string[];
|
|
20094
20113
|
formats?: undefined;
|
|
20114
|
+
} | {
|
|
20115
|
+
value: string;
|
|
20116
|
+
filePath: string;
|
|
20117
|
+
isSource: boolean;
|
|
20118
|
+
original: {
|
|
20119
|
+
value: {
|
|
20120
|
+
l: string;
|
|
20121
|
+
c: string;
|
|
20122
|
+
h: string;
|
|
20123
|
+
a: number;
|
|
20124
|
+
offsetY?: undefined;
|
|
20125
|
+
color?: undefined;
|
|
20126
|
+
inset?: undefined;
|
|
20127
|
+
blur?: undefined;
|
|
20128
|
+
spread?: undefined;
|
|
20129
|
+
};
|
|
20130
|
+
formats?: undefined;
|
|
20131
|
+
};
|
|
20132
|
+
name: string;
|
|
20133
|
+
attributes: {
|
|
20134
|
+
category: string;
|
|
20135
|
+
type: string;
|
|
20136
|
+
item?: undefined;
|
|
20137
|
+
subitem?: undefined;
|
|
20138
|
+
state?: undefined;
|
|
20139
|
+
family?: undefined;
|
|
20140
|
+
weight?: undefined;
|
|
20141
|
+
style?: undefined;
|
|
20142
|
+
cssValue?: undefined;
|
|
20143
|
+
};
|
|
20144
|
+
path: string[];
|
|
20145
|
+
formats?: undefined;
|
|
20095
20146
|
} | {
|
|
20096
20147
|
value: string;
|
|
20097
20148
|
filePath: string;
|
|
@@ -21281,6 +21332,25 @@ export declare const dictionary: Readonly<{
|
|
|
21281
21332
|
};
|
|
21282
21333
|
path: string[];
|
|
21283
21334
|
};
|
|
21335
|
+
"white-80": {
|
|
21336
|
+
value: string;
|
|
21337
|
+
filePath: string;
|
|
21338
|
+
isSource: boolean;
|
|
21339
|
+
original: {
|
|
21340
|
+
value: {
|
|
21341
|
+
l: string;
|
|
21342
|
+
c: string;
|
|
21343
|
+
h: string;
|
|
21344
|
+
a: number;
|
|
21345
|
+
};
|
|
21346
|
+
};
|
|
21347
|
+
name: string;
|
|
21348
|
+
attributes: {
|
|
21349
|
+
category: string;
|
|
21350
|
+
type: string;
|
|
21351
|
+
};
|
|
21352
|
+
path: string[];
|
|
21353
|
+
};
|
|
21284
21354
|
black: {
|
|
21285
21355
|
value: string;
|
|
21286
21356
|
filePath: string;
|
|
@@ -40564,6 +40634,38 @@ export declare const dictionary: Readonly<{
|
|
|
40564
40634
|
};
|
|
40565
40635
|
path: string[];
|
|
40566
40636
|
formats?: undefined;
|
|
40637
|
+
} | {
|
|
40638
|
+
value: string;
|
|
40639
|
+
filePath: string;
|
|
40640
|
+
isSource: boolean;
|
|
40641
|
+
original: {
|
|
40642
|
+
value: {
|
|
40643
|
+
l: string;
|
|
40644
|
+
c: string;
|
|
40645
|
+
h: string;
|
|
40646
|
+
a: number;
|
|
40647
|
+
offsetY?: undefined;
|
|
40648
|
+
color?: undefined;
|
|
40649
|
+
inset?: undefined;
|
|
40650
|
+
blur?: undefined;
|
|
40651
|
+
spread?: undefined;
|
|
40652
|
+
};
|
|
40653
|
+
formats?: undefined;
|
|
40654
|
+
};
|
|
40655
|
+
name: string;
|
|
40656
|
+
attributes: {
|
|
40657
|
+
category: string;
|
|
40658
|
+
type: string;
|
|
40659
|
+
item?: undefined;
|
|
40660
|
+
subitem?: undefined;
|
|
40661
|
+
state?: undefined;
|
|
40662
|
+
family?: undefined;
|
|
40663
|
+
weight?: undefined;
|
|
40664
|
+
style?: undefined;
|
|
40665
|
+
cssValue?: undefined;
|
|
40666
|
+
};
|
|
40667
|
+
path: string[];
|
|
40668
|
+
formats?: undefined;
|
|
40567
40669
|
} | {
|
|
40568
40670
|
value: string;
|
|
40569
40671
|
filePath: string;
|
|
@@ -41753,6 +41855,25 @@ export declare const dictionary: Readonly<{
|
|
|
41753
41855
|
};
|
|
41754
41856
|
path: string[];
|
|
41755
41857
|
};
|
|
41858
|
+
"white-80": {
|
|
41859
|
+
value: string;
|
|
41860
|
+
filePath: string;
|
|
41861
|
+
isSource: boolean;
|
|
41862
|
+
original: {
|
|
41863
|
+
value: {
|
|
41864
|
+
l: string;
|
|
41865
|
+
c: string;
|
|
41866
|
+
h: string;
|
|
41867
|
+
a: number;
|
|
41868
|
+
};
|
|
41869
|
+
};
|
|
41870
|
+
name: string;
|
|
41871
|
+
attributes: {
|
|
41872
|
+
category: string;
|
|
41873
|
+
type: string;
|
|
41874
|
+
};
|
|
41875
|
+
path: string[];
|
|
41876
|
+
};
|
|
41756
41877
|
black: {
|
|
41757
41878
|
value: string;
|
|
41758
41879
|
filePath: string;
|
package/lib/font.css
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 26 Mar 2024 13:37:28 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
@font-face {
|
|
7
7
|
font-family: "Source Sans Pro";
|
|
8
8
|
font-style: normal;
|
|
9
9
|
font-weight: 400;
|
|
10
|
-
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
10
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/source-sans-pro-v9-latin-regular.woff2")
|
|
11
11
|
format("woff2"),
|
|
12
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
12
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/source-sans-pro-v9-latin-regular.woff")
|
|
13
13
|
format("woff");
|
|
14
14
|
font-display: fallback;
|
|
15
15
|
}
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
font-family: "Source Sans Pro";
|
|
18
18
|
font-style: italic;
|
|
19
19
|
font-weight: 400;
|
|
20
|
-
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
20
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/source-sans-pro-v9-latin-italic.woff2")
|
|
21
21
|
format("woff2"),
|
|
22
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
22
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/source-sans-pro-v9-latin-italic.woff")
|
|
23
23
|
format("woff");
|
|
24
24
|
font-display: fallback;
|
|
25
25
|
}
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
font-family: "Source Sans Pro";
|
|
28
28
|
font-style: normal;
|
|
29
29
|
font-weight: 600;
|
|
30
|
-
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
30
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/source-sans-pro-v9-latin-600.woff2")
|
|
31
31
|
format("woff2"),
|
|
32
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
32
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/source-sans-pro-v9-latin-600.woff")
|
|
33
33
|
format("woff");
|
|
34
34
|
font-display: fallback;
|
|
35
35
|
}
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
font-family: "Source Sans Pro";
|
|
38
38
|
font-style: italic;
|
|
39
39
|
font-weight: 600;
|
|
40
|
-
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
40
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/source-sans-pro-v9-latin-600italic.woff2")
|
|
41
41
|
format("woff2"),
|
|
42
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
42
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/source-sans-pro-v9-latin-600italic.woff")
|
|
43
43
|
format("woff");
|
|
44
44
|
font-display: fallback;
|
|
45
45
|
}
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
font-family: "Source Code Pro";
|
|
48
48
|
font-style: normal;
|
|
49
49
|
font-weight: 400;
|
|
50
|
-
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
50
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/source-code-pro-v6-latin-regular.woff2")
|
|
51
51
|
format("woff2"),
|
|
52
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
52
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/source-code-pro-v6-latin-regular.woff")
|
|
53
53
|
format("woff");
|
|
54
54
|
font-display: fallback;
|
|
55
55
|
}
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
font-family: "Source Code Pro";
|
|
58
58
|
font-style: italic;
|
|
59
59
|
font-weight: 400;
|
|
60
|
-
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
60
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/source-code-pro-v6-latin-italic.woff2")
|
|
61
61
|
format("woff2"),
|
|
62
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
62
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/source-code-pro-v6-latin-italic.woff")
|
|
63
63
|
format("woff");
|
|
64
64
|
font-display: fallback;
|
|
65
65
|
}
|
|
@@ -67,9 +67,9 @@
|
|
|
67
67
|
font-family: "Source Code Pro";
|
|
68
68
|
font-style: normal;
|
|
69
69
|
font-weight: 600;
|
|
70
|
-
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
70
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/source-code-pro-v6-latin-600.woff2")
|
|
71
71
|
format("woff2"),
|
|
72
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
72
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/source-code-pro-v6-latin-600.woff")
|
|
73
73
|
format("woff");
|
|
74
74
|
font-display: fallback;
|
|
75
75
|
}
|
|
@@ -77,9 +77,9 @@
|
|
|
77
77
|
font-family: "Source Code Pro";
|
|
78
78
|
font-style: italic;
|
|
79
79
|
font-weight: 600;
|
|
80
|
-
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
80
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/source-code-pro-v6-latin-600italic.woff2")
|
|
81
81
|
format("woff2"),
|
|
82
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
82
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/source-code-pro-v6-latin-600italic.woff")
|
|
83
83
|
format("woff");
|
|
84
84
|
font-display: fallback;
|
|
85
85
|
}
|
|
@@ -87,13 +87,13 @@
|
|
|
87
87
|
font-family: "SPS-Icons";
|
|
88
88
|
font-style: normal;
|
|
89
89
|
font-weight: 400;
|
|
90
|
-
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
90
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/icomoon-sps-icons.svg")
|
|
91
91
|
format("svg"),
|
|
92
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
92
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/icomoon-sps-icons.truetype")
|
|
93
93
|
format("undefined"),
|
|
94
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
94
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/icomoon-sps-icons.woff")
|
|
95
95
|
format("woff"),
|
|
96
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
96
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.2/assets/fonts/icomoon-sps-icons.woff2")
|
|
97
97
|
format("woff2");
|
|
98
98
|
font-display: fallback;
|
|
99
99
|
}
|