@sps-woodland/tokens 8.37.2 → 8.37.4
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.js +4 -2
- package/lib/index.umd.cjs +1 -1
- 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/lib/vanilla-extract/style.css +1 -1
- package/package.json +1 -1
- package/src/dictionary.ts +102 -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
|
|
3
|
+
* Generated on Fri, 23 Jan 2026 14:31:11 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -900,6 +900,7 @@
|
|
|
900
900
|
--grid-columns-standard: 12;
|
|
901
901
|
--grid-content-width: 1280px;
|
|
902
902
|
--icon-ai-character: \e9bd;
|
|
903
|
+
--icon-ai-color-character: ;
|
|
903
904
|
--icon-angle-left-character: \e900;
|
|
904
905
|
--icon-angle-right-character: \e901;
|
|
905
906
|
--icon-archive-character: \e902;
|
|
@@ -981,6 +982,7 @@
|
|
|
981
982
|
--icon-heart-character: \e949;
|
|
982
983
|
--icon-heart-outline-character: \e9b9;
|
|
983
984
|
--icon-history-character: \e94a;
|
|
985
|
+
--icon-home-character: ;
|
|
984
986
|
--icon-i-made-this-character: \e9be;
|
|
985
987
|
--icon-inbox-character: \e94b;
|
|
986
988
|
--icon-incoming-character: \e94c;
|
package/lib/css/utils.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Fri, 23 Jan 2026 14:31:11 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
.red-light {
|
|
@@ -412,6 +412,9 @@
|
|
|
412
412
|
.icon-ai::before {
|
|
413
413
|
content: var(--icon-ai-character) !important;
|
|
414
414
|
}
|
|
415
|
+
.icon-ai-color::before {
|
|
416
|
+
content: var(--icon-ai-color-character) !important;
|
|
417
|
+
}
|
|
415
418
|
.icon-angle-left::before {
|
|
416
419
|
content: var(--icon-angle-left-character) !important;
|
|
417
420
|
}
|
|
@@ -655,6 +658,9 @@
|
|
|
655
658
|
.icon-history::before {
|
|
656
659
|
content: var(--icon-history-character) !important;
|
|
657
660
|
}
|
|
661
|
+
.icon-home::before {
|
|
662
|
+
content: var(--icon-home-character) !important;
|
|
663
|
+
}
|
|
658
664
|
.icon-i-made-this::before {
|
|
659
665
|
content: var(--icon-i-made-this-character) !important;
|
|
660
666
|
}
|
package/lib/dictionary.d.ts
CHANGED
|
@@ -15076,6 +15076,23 @@ export declare const dictionary: Readonly<{
|
|
|
15076
15076
|
path: string[];
|
|
15077
15077
|
};
|
|
15078
15078
|
};
|
|
15079
|
+
"ai-color": {
|
|
15080
|
+
character: {
|
|
15081
|
+
value: string;
|
|
15082
|
+
filePath: string;
|
|
15083
|
+
isSource: boolean;
|
|
15084
|
+
original: {
|
|
15085
|
+
value: string;
|
|
15086
|
+
};
|
|
15087
|
+
name: string;
|
|
15088
|
+
attributes: {
|
|
15089
|
+
category: string;
|
|
15090
|
+
type: string;
|
|
15091
|
+
item: string;
|
|
15092
|
+
};
|
|
15093
|
+
path: string[];
|
|
15094
|
+
};
|
|
15095
|
+
};
|
|
15079
15096
|
"angle-left": {
|
|
15080
15097
|
character: {
|
|
15081
15098
|
value: string;
|
|
@@ -16453,6 +16470,23 @@ export declare const dictionary: Readonly<{
|
|
|
16453
16470
|
path: string[];
|
|
16454
16471
|
};
|
|
16455
16472
|
};
|
|
16473
|
+
home: {
|
|
16474
|
+
character: {
|
|
16475
|
+
value: string;
|
|
16476
|
+
filePath: string;
|
|
16477
|
+
isSource: boolean;
|
|
16478
|
+
original: {
|
|
16479
|
+
value: string;
|
|
16480
|
+
};
|
|
16481
|
+
name: string;
|
|
16482
|
+
attributes: {
|
|
16483
|
+
category: string;
|
|
16484
|
+
type: string;
|
|
16485
|
+
item: string;
|
|
16486
|
+
};
|
|
16487
|
+
path: string[];
|
|
16488
|
+
};
|
|
16489
|
+
};
|
|
16456
16490
|
"i-made-this": {
|
|
16457
16491
|
character: {
|
|
16458
16492
|
value: string;
|
|
@@ -37319,6 +37353,23 @@ export declare const dictionary: Readonly<{
|
|
|
37319
37353
|
path: string[];
|
|
37320
37354
|
};
|
|
37321
37355
|
};
|
|
37356
|
+
"ai-color": {
|
|
37357
|
+
character: {
|
|
37358
|
+
value: string;
|
|
37359
|
+
filePath: string;
|
|
37360
|
+
isSource: boolean;
|
|
37361
|
+
original: {
|
|
37362
|
+
value: string;
|
|
37363
|
+
};
|
|
37364
|
+
name: string;
|
|
37365
|
+
attributes: {
|
|
37366
|
+
category: string;
|
|
37367
|
+
type: string;
|
|
37368
|
+
item: string;
|
|
37369
|
+
};
|
|
37370
|
+
path: string[];
|
|
37371
|
+
};
|
|
37372
|
+
};
|
|
37322
37373
|
"angle-left": {
|
|
37323
37374
|
character: {
|
|
37324
37375
|
value: string;
|
|
@@ -38696,6 +38747,23 @@ export declare const dictionary: Readonly<{
|
|
|
38696
38747
|
path: string[];
|
|
38697
38748
|
};
|
|
38698
38749
|
};
|
|
38750
|
+
home: {
|
|
38751
|
+
character: {
|
|
38752
|
+
value: string;
|
|
38753
|
+
filePath: string;
|
|
38754
|
+
isSource: boolean;
|
|
38755
|
+
original: {
|
|
38756
|
+
value: string;
|
|
38757
|
+
};
|
|
38758
|
+
name: string;
|
|
38759
|
+
attributes: {
|
|
38760
|
+
category: string;
|
|
38761
|
+
type: string;
|
|
38762
|
+
item: string;
|
|
38763
|
+
};
|
|
38764
|
+
path: string[];
|
|
38765
|
+
};
|
|
38766
|
+
};
|
|
38699
38767
|
"i-made-this": {
|
|
38700
38768
|
character: {
|
|
38701
38769
|
value: string;
|
|
@@ -59562,6 +59630,23 @@ export declare const dictionary: Readonly<{
|
|
|
59562
59630
|
path: string[];
|
|
59563
59631
|
};
|
|
59564
59632
|
};
|
|
59633
|
+
"ai-color": {
|
|
59634
|
+
character: {
|
|
59635
|
+
value: string;
|
|
59636
|
+
filePath: string;
|
|
59637
|
+
isSource: boolean;
|
|
59638
|
+
original: {
|
|
59639
|
+
value: string;
|
|
59640
|
+
};
|
|
59641
|
+
name: string;
|
|
59642
|
+
attributes: {
|
|
59643
|
+
category: string;
|
|
59644
|
+
type: string;
|
|
59645
|
+
item: string;
|
|
59646
|
+
};
|
|
59647
|
+
path: string[];
|
|
59648
|
+
};
|
|
59649
|
+
};
|
|
59565
59650
|
"angle-left": {
|
|
59566
59651
|
character: {
|
|
59567
59652
|
value: string;
|
|
@@ -60939,6 +61024,23 @@ export declare const dictionary: Readonly<{
|
|
|
60939
61024
|
path: string[];
|
|
60940
61025
|
};
|
|
60941
61026
|
};
|
|
61027
|
+
home: {
|
|
61028
|
+
character: {
|
|
61029
|
+
value: string;
|
|
61030
|
+
filePath: string;
|
|
61031
|
+
isSource: boolean;
|
|
61032
|
+
original: {
|
|
61033
|
+
value: string;
|
|
61034
|
+
};
|
|
61035
|
+
name: string;
|
|
61036
|
+
attributes: {
|
|
61037
|
+
category: string;
|
|
61038
|
+
type: string;
|
|
61039
|
+
item: string;
|
|
61040
|
+
};
|
|
61041
|
+
path: string[];
|
|
61042
|
+
};
|
|
61043
|
+
};
|
|
60942
61044
|
"i-made-this": {
|
|
60943
61045
|
character: {
|
|
60944
61046
|
value: string;
|
package/lib/font.css
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Fri, 23 Jan 2026 14:31:10 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.37.
|
|
10
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/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.37.
|
|
12
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/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.37.
|
|
20
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/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.37.
|
|
22
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/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.37.
|
|
30
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/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.37.
|
|
32
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/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.37.
|
|
40
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/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.37.
|
|
42
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/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.37.
|
|
50
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/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.37.
|
|
52
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/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.37.
|
|
60
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/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.37.
|
|
62
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/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.37.
|
|
70
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/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.37.
|
|
72
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/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.37.
|
|
80
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/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.37.
|
|
82
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/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.37.
|
|
90
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/assets/fonts/icomoon-sps-icons.svg")
|
|
91
91
|
format("svg"),
|
|
92
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.
|
|
92
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/assets/fonts/icomoon-sps-icons.truetype")
|
|
93
93
|
format("undefined"),
|
|
94
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.
|
|
94
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/assets/fonts/icomoon-sps-icons.woff")
|
|
95
95
|
format("woff"),
|
|
96
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.
|
|
96
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.37.4/assets/fonts/icomoon-sps-icons.woff2")
|
|
97
97
|
format("woff2");
|
|
98
98
|
font-display: fallback;
|
|
99
99
|
}
|