@sps-woodland/tokens 8.7.0 → 8.7.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 -1
- package/lib/css/utils.css +7 -1
- package/lib/dictionary.d.ts +102 -0
- package/lib/font.css +21 -21
- package/lib/index.cjs.js +1 -1
- package/lib/index.es.js +2 -0
- package/lib/scss/tokens.scss +3 -1
- package/lib/scss/utils.scss +7 -1
- package/lib/tokens.d.ts +6 -0
- package/lib/vanilla-extract/sprinkleValues.d.ts +6 -0
- package/package.json +1 -1
- package/src/dictionary.ts +114 -0
- package/src/tokens.ts +2 -0
- package/src/vanilla-extract/sprinkleValues.ts +2 -0
package/lib/css/tokens.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Thu,
|
|
3
|
+
* Generated on Thu, 02 May 2024 20:48:24 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -818,6 +818,7 @@
|
|
|
818
818
|
--component-zero-state-icon-line-height: 3rem;
|
|
819
819
|
--component-zero-state-icon-padding-bottom: 0.25rem;
|
|
820
820
|
--grid-columns-standard: 12;
|
|
821
|
+
--icon-ai-character: \e9bd;
|
|
821
822
|
--icon-angle-left-character: \e900;
|
|
822
823
|
--icon-angle-right-character: \e901;
|
|
823
824
|
--icon-archive-character: \e902;
|
|
@@ -899,6 +900,7 @@
|
|
|
899
900
|
--icon-heart-character: \e949;
|
|
900
901
|
--icon-heart-outline-character: \e9b9;
|
|
901
902
|
--icon-history-character: \e94a;
|
|
903
|
+
--icon-i-made-this-character: \e9be;
|
|
902
904
|
--icon-inbox-character: \e94b;
|
|
903
905
|
--icon-incoming-character: \e94c;
|
|
904
906
|
--icon-info-circle-character: \e94d;
|
package/lib/css/utils.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Thu,
|
|
3
|
+
* Generated on Thu, 02 May 2024 20:48:24 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
.red-light {
|
|
@@ -397,6 +397,9 @@
|
|
|
397
397
|
.grid-12 {
|
|
398
398
|
grid-column: span 12 !important;
|
|
399
399
|
}
|
|
400
|
+
.icon-ai::before {
|
|
401
|
+
content: var(--icon-ai-character) !important;
|
|
402
|
+
}
|
|
400
403
|
.icon-angle-left::before {
|
|
401
404
|
content: var(--icon-angle-left-character) !important;
|
|
402
405
|
}
|
|
@@ -640,6 +643,9 @@
|
|
|
640
643
|
.icon-history::before {
|
|
641
644
|
content: var(--icon-history-character) !important;
|
|
642
645
|
}
|
|
646
|
+
.icon-i-made-this::before {
|
|
647
|
+
content: var(--icon-i-made-this-character) !important;
|
|
648
|
+
}
|
|
643
649
|
.icon-inbox::before {
|
|
644
650
|
content: var(--icon-inbox-character) !important;
|
|
645
651
|
}
|
package/lib/dictionary.d.ts
CHANGED
|
@@ -13834,6 +13834,23 @@ export declare const dictionary: Readonly<{
|
|
|
13834
13834
|
};
|
|
13835
13835
|
};
|
|
13836
13836
|
icon: {
|
|
13837
|
+
ai: {
|
|
13838
|
+
character: {
|
|
13839
|
+
value: string;
|
|
13840
|
+
filePath: string;
|
|
13841
|
+
isSource: boolean;
|
|
13842
|
+
original: {
|
|
13843
|
+
value: string;
|
|
13844
|
+
};
|
|
13845
|
+
name: string;
|
|
13846
|
+
attributes: {
|
|
13847
|
+
category: string;
|
|
13848
|
+
type: string;
|
|
13849
|
+
item: string;
|
|
13850
|
+
};
|
|
13851
|
+
path: string[];
|
|
13852
|
+
};
|
|
13853
|
+
};
|
|
13837
13854
|
"angle-left": {
|
|
13838
13855
|
character: {
|
|
13839
13856
|
value: string;
|
|
@@ -15211,6 +15228,23 @@ export declare const dictionary: Readonly<{
|
|
|
15211
15228
|
path: string[];
|
|
15212
15229
|
};
|
|
15213
15230
|
};
|
|
15231
|
+
"i-made-this": {
|
|
15232
|
+
character: {
|
|
15233
|
+
value: string;
|
|
15234
|
+
filePath: string;
|
|
15235
|
+
isSource: boolean;
|
|
15236
|
+
original: {
|
|
15237
|
+
value: string;
|
|
15238
|
+
};
|
|
15239
|
+
name: string;
|
|
15240
|
+
attributes: {
|
|
15241
|
+
category: string;
|
|
15242
|
+
type: string;
|
|
15243
|
+
item: string;
|
|
15244
|
+
};
|
|
15245
|
+
path: string[];
|
|
15246
|
+
};
|
|
15247
|
+
};
|
|
15214
15248
|
inbox: {
|
|
15215
15249
|
character: {
|
|
15216
15250
|
value: string;
|
|
@@ -34489,6 +34523,23 @@ export declare const dictionary: Readonly<{
|
|
|
34489
34523
|
};
|
|
34490
34524
|
};
|
|
34491
34525
|
icon: {
|
|
34526
|
+
ai: {
|
|
34527
|
+
character: {
|
|
34528
|
+
value: string;
|
|
34529
|
+
filePath: string;
|
|
34530
|
+
isSource: boolean;
|
|
34531
|
+
original: {
|
|
34532
|
+
value: string;
|
|
34533
|
+
};
|
|
34534
|
+
name: string;
|
|
34535
|
+
attributes: {
|
|
34536
|
+
category: string;
|
|
34537
|
+
type: string;
|
|
34538
|
+
item: string;
|
|
34539
|
+
};
|
|
34540
|
+
path: string[];
|
|
34541
|
+
};
|
|
34542
|
+
};
|
|
34492
34543
|
"angle-left": {
|
|
34493
34544
|
character: {
|
|
34494
34545
|
value: string;
|
|
@@ -35866,6 +35917,23 @@ export declare const dictionary: Readonly<{
|
|
|
35866
35917
|
path: string[];
|
|
35867
35918
|
};
|
|
35868
35919
|
};
|
|
35920
|
+
"i-made-this": {
|
|
35921
|
+
character: {
|
|
35922
|
+
value: string;
|
|
35923
|
+
filePath: string;
|
|
35924
|
+
isSource: boolean;
|
|
35925
|
+
original: {
|
|
35926
|
+
value: string;
|
|
35927
|
+
};
|
|
35928
|
+
name: string;
|
|
35929
|
+
attributes: {
|
|
35930
|
+
category: string;
|
|
35931
|
+
type: string;
|
|
35932
|
+
item: string;
|
|
35933
|
+
};
|
|
35934
|
+
path: string[];
|
|
35935
|
+
};
|
|
35936
|
+
};
|
|
35869
35937
|
inbox: {
|
|
35870
35938
|
character: {
|
|
35871
35939
|
value: string;
|
|
@@ -55144,6 +55212,23 @@ export declare const dictionary: Readonly<{
|
|
|
55144
55212
|
};
|
|
55145
55213
|
};
|
|
55146
55214
|
icon: {
|
|
55215
|
+
ai: {
|
|
55216
|
+
character: {
|
|
55217
|
+
value: string;
|
|
55218
|
+
filePath: string;
|
|
55219
|
+
isSource: boolean;
|
|
55220
|
+
original: {
|
|
55221
|
+
value: string;
|
|
55222
|
+
};
|
|
55223
|
+
name: string;
|
|
55224
|
+
attributes: {
|
|
55225
|
+
category: string;
|
|
55226
|
+
type: string;
|
|
55227
|
+
item: string;
|
|
55228
|
+
};
|
|
55229
|
+
path: string[];
|
|
55230
|
+
};
|
|
55231
|
+
};
|
|
55147
55232
|
"angle-left": {
|
|
55148
55233
|
character: {
|
|
55149
55234
|
value: string;
|
|
@@ -56521,6 +56606,23 @@ export declare const dictionary: Readonly<{
|
|
|
56521
56606
|
path: string[];
|
|
56522
56607
|
};
|
|
56523
56608
|
};
|
|
56609
|
+
"i-made-this": {
|
|
56610
|
+
character: {
|
|
56611
|
+
value: string;
|
|
56612
|
+
filePath: string;
|
|
56613
|
+
isSource: boolean;
|
|
56614
|
+
original: {
|
|
56615
|
+
value: string;
|
|
56616
|
+
};
|
|
56617
|
+
name: string;
|
|
56618
|
+
attributes: {
|
|
56619
|
+
category: string;
|
|
56620
|
+
type: string;
|
|
56621
|
+
item: string;
|
|
56622
|
+
};
|
|
56623
|
+
path: string[];
|
|
56624
|
+
};
|
|
56625
|
+
};
|
|
56524
56626
|
inbox: {
|
|
56525
56627
|
character: {
|
|
56526
56628
|
value: string;
|
package/lib/font.css
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Thu,
|
|
3
|
+
* Generated on Thu, 02 May 2024 20:48:23 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.7.
|
|
10
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.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.7.
|
|
12
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.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.7.
|
|
20
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.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.7.
|
|
22
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.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.7.
|
|
30
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.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.7.
|
|
32
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.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.7.
|
|
40
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.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.7.
|
|
42
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.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.7.
|
|
50
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.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.7.
|
|
52
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.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.7.
|
|
60
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.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.7.
|
|
62
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.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.7.
|
|
70
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.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.7.
|
|
72
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.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.7.
|
|
80
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.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.7.
|
|
82
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.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.7.
|
|
90
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.2/assets/fonts/icomoon-sps-icons.svg")
|
|
91
91
|
format("svg"),
|
|
92
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.
|
|
92
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.2/assets/fonts/icomoon-sps-icons.truetype")
|
|
93
93
|
format("undefined"),
|
|
94
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.
|
|
94
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.2/assets/fonts/icomoon-sps-icons.woff")
|
|
95
95
|
format("woff"),
|
|
96
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.
|
|
96
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.7.2/assets/fonts/icomoon-sps-icons.woff2")
|
|
97
97
|
format("woff2");
|
|
98
98
|
font-display: fallback;
|
|
99
99
|
}
|