@sps-woodland/tokens 8.53.2 → 8.53.3
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 +4 -1
- package/lib/css/utils.css +10 -1
- package/lib/dictionary.d.ts +153 -0
- package/lib/font.css +21 -21
- package/lib/index.js +5 -2
- package/lib/index.umd.cjs +1 -1
- package/lib/scss/tokens.scss +4 -1
- package/lib/scss/utils.scss +10 -1
- package/lib/tokens.d.ts +9 -0
- package/lib/vanilla-extract/sprinkleValues.d.ts +9 -0
- package/lib/vanilla-extract/style.css +1 -1
- package/package.json +1 -1
- package/src/dictionary.ts +185 -0
- package/src/tokens.ts +3 -0
- package/src/vanilla-extract/sprinkleValues.ts +3 -0
package/lib/css/tokens.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Tue,
|
|
3
|
+
* Generated on Tue, 28 Jul 2026 20:44:13 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -901,6 +901,7 @@
|
|
|
901
901
|
--grid-content-width: 1280px;
|
|
902
902
|
--icon-ai-character: \e9bd;
|
|
903
903
|
--icon-ai-color-character: ;
|
|
904
|
+
--icon-ai-generic-character: ;
|
|
904
905
|
--icon-angle-left-character: \e900;
|
|
905
906
|
--icon-angle-right-character: \e901;
|
|
906
907
|
--icon-archive-character: \e902;
|
|
@@ -916,6 +917,8 @@
|
|
|
916
917
|
--icon-bold-character: \e9a5;
|
|
917
918
|
--icon-bolt-character: \e90c;
|
|
918
919
|
--icon-book-character: \e90d;
|
|
920
|
+
--icon-bookmark-character: ;
|
|
921
|
+
--icon-bookmark-outline-character: ;
|
|
919
922
|
--icon-building-character: \e90e;
|
|
920
923
|
--icon-burst-bolt-character: \e90f;
|
|
921
924
|
--icon-burst-character: \e910;
|
package/lib/css/utils.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Tue,
|
|
3
|
+
* Generated on Tue, 28 Jul 2026 20:44:13 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
.red-light {
|
|
@@ -415,6 +415,9 @@
|
|
|
415
415
|
.icon-ai-color::before {
|
|
416
416
|
content: var(--icon-ai-color-character) !important;
|
|
417
417
|
}
|
|
418
|
+
.icon-ai-generic::before {
|
|
419
|
+
content: var(--icon-ai-generic-character) !important;
|
|
420
|
+
}
|
|
418
421
|
.icon-angle-left::before {
|
|
419
422
|
content: var(--icon-angle-left-character) !important;
|
|
420
423
|
}
|
|
@@ -460,6 +463,12 @@
|
|
|
460
463
|
.icon-book::before {
|
|
461
464
|
content: var(--icon-book-character) !important;
|
|
462
465
|
}
|
|
466
|
+
.icon-bookmark::before {
|
|
467
|
+
content: var(--icon-bookmark-character) !important;
|
|
468
|
+
}
|
|
469
|
+
.icon-bookmark-outline::before {
|
|
470
|
+
content: var(--icon-bookmark-outline-character) !important;
|
|
471
|
+
}
|
|
463
472
|
.icon-building::before {
|
|
464
473
|
content: var(--icon-building-character) !important;
|
|
465
474
|
}
|
package/lib/dictionary.d.ts
CHANGED
|
@@ -15093,6 +15093,23 @@ export declare const dictionary: Readonly<{
|
|
|
15093
15093
|
path: string[];
|
|
15094
15094
|
};
|
|
15095
15095
|
};
|
|
15096
|
+
"ai-generic": {
|
|
15097
|
+
character: {
|
|
15098
|
+
value: string;
|
|
15099
|
+
filePath: string;
|
|
15100
|
+
isSource: boolean;
|
|
15101
|
+
original: {
|
|
15102
|
+
value: string;
|
|
15103
|
+
};
|
|
15104
|
+
name: string;
|
|
15105
|
+
attributes: {
|
|
15106
|
+
category: string;
|
|
15107
|
+
type: string;
|
|
15108
|
+
item: string;
|
|
15109
|
+
};
|
|
15110
|
+
path: string[];
|
|
15111
|
+
};
|
|
15112
|
+
};
|
|
15096
15113
|
"angle-left": {
|
|
15097
15114
|
character: {
|
|
15098
15115
|
value: string;
|
|
@@ -15348,6 +15365,40 @@ export declare const dictionary: Readonly<{
|
|
|
15348
15365
|
path: string[];
|
|
15349
15366
|
};
|
|
15350
15367
|
};
|
|
15368
|
+
bookmark: {
|
|
15369
|
+
character: {
|
|
15370
|
+
value: string;
|
|
15371
|
+
filePath: string;
|
|
15372
|
+
isSource: boolean;
|
|
15373
|
+
original: {
|
|
15374
|
+
value: string;
|
|
15375
|
+
};
|
|
15376
|
+
name: string;
|
|
15377
|
+
attributes: {
|
|
15378
|
+
category: string;
|
|
15379
|
+
type: string;
|
|
15380
|
+
item: string;
|
|
15381
|
+
};
|
|
15382
|
+
path: string[];
|
|
15383
|
+
};
|
|
15384
|
+
};
|
|
15385
|
+
"bookmark-outline": {
|
|
15386
|
+
character: {
|
|
15387
|
+
value: string;
|
|
15388
|
+
filePath: string;
|
|
15389
|
+
isSource: boolean;
|
|
15390
|
+
original: {
|
|
15391
|
+
value: string;
|
|
15392
|
+
};
|
|
15393
|
+
name: string;
|
|
15394
|
+
attributes: {
|
|
15395
|
+
category: string;
|
|
15396
|
+
type: string;
|
|
15397
|
+
item: string;
|
|
15398
|
+
};
|
|
15399
|
+
path: string[];
|
|
15400
|
+
};
|
|
15401
|
+
};
|
|
15351
15402
|
building: {
|
|
15352
15403
|
character: {
|
|
15353
15404
|
value: string;
|
|
@@ -37370,6 +37421,23 @@ export declare const dictionary: Readonly<{
|
|
|
37370
37421
|
path: string[];
|
|
37371
37422
|
};
|
|
37372
37423
|
};
|
|
37424
|
+
"ai-generic": {
|
|
37425
|
+
character: {
|
|
37426
|
+
value: string;
|
|
37427
|
+
filePath: string;
|
|
37428
|
+
isSource: boolean;
|
|
37429
|
+
original: {
|
|
37430
|
+
value: string;
|
|
37431
|
+
};
|
|
37432
|
+
name: string;
|
|
37433
|
+
attributes: {
|
|
37434
|
+
category: string;
|
|
37435
|
+
type: string;
|
|
37436
|
+
item: string;
|
|
37437
|
+
};
|
|
37438
|
+
path: string[];
|
|
37439
|
+
};
|
|
37440
|
+
};
|
|
37373
37441
|
"angle-left": {
|
|
37374
37442
|
character: {
|
|
37375
37443
|
value: string;
|
|
@@ -37625,6 +37693,40 @@ export declare const dictionary: Readonly<{
|
|
|
37625
37693
|
path: string[];
|
|
37626
37694
|
};
|
|
37627
37695
|
};
|
|
37696
|
+
bookmark: {
|
|
37697
|
+
character: {
|
|
37698
|
+
value: string;
|
|
37699
|
+
filePath: string;
|
|
37700
|
+
isSource: boolean;
|
|
37701
|
+
original: {
|
|
37702
|
+
value: string;
|
|
37703
|
+
};
|
|
37704
|
+
name: string;
|
|
37705
|
+
attributes: {
|
|
37706
|
+
category: string;
|
|
37707
|
+
type: string;
|
|
37708
|
+
item: string;
|
|
37709
|
+
};
|
|
37710
|
+
path: string[];
|
|
37711
|
+
};
|
|
37712
|
+
};
|
|
37713
|
+
"bookmark-outline": {
|
|
37714
|
+
character: {
|
|
37715
|
+
value: string;
|
|
37716
|
+
filePath: string;
|
|
37717
|
+
isSource: boolean;
|
|
37718
|
+
original: {
|
|
37719
|
+
value: string;
|
|
37720
|
+
};
|
|
37721
|
+
name: string;
|
|
37722
|
+
attributes: {
|
|
37723
|
+
category: string;
|
|
37724
|
+
type: string;
|
|
37725
|
+
item: string;
|
|
37726
|
+
};
|
|
37727
|
+
path: string[];
|
|
37728
|
+
};
|
|
37729
|
+
};
|
|
37628
37730
|
building: {
|
|
37629
37731
|
character: {
|
|
37630
37732
|
value: string;
|
|
@@ -59647,6 +59749,23 @@ export declare const dictionary: Readonly<{
|
|
|
59647
59749
|
path: string[];
|
|
59648
59750
|
};
|
|
59649
59751
|
};
|
|
59752
|
+
"ai-generic": {
|
|
59753
|
+
character: {
|
|
59754
|
+
value: string;
|
|
59755
|
+
filePath: string;
|
|
59756
|
+
isSource: boolean;
|
|
59757
|
+
original: {
|
|
59758
|
+
value: string;
|
|
59759
|
+
};
|
|
59760
|
+
name: string;
|
|
59761
|
+
attributes: {
|
|
59762
|
+
category: string;
|
|
59763
|
+
type: string;
|
|
59764
|
+
item: string;
|
|
59765
|
+
};
|
|
59766
|
+
path: string[];
|
|
59767
|
+
};
|
|
59768
|
+
};
|
|
59650
59769
|
"angle-left": {
|
|
59651
59770
|
character: {
|
|
59652
59771
|
value: string;
|
|
@@ -59902,6 +60021,40 @@ export declare const dictionary: Readonly<{
|
|
|
59902
60021
|
path: string[];
|
|
59903
60022
|
};
|
|
59904
60023
|
};
|
|
60024
|
+
bookmark: {
|
|
60025
|
+
character: {
|
|
60026
|
+
value: string;
|
|
60027
|
+
filePath: string;
|
|
60028
|
+
isSource: boolean;
|
|
60029
|
+
original: {
|
|
60030
|
+
value: string;
|
|
60031
|
+
};
|
|
60032
|
+
name: string;
|
|
60033
|
+
attributes: {
|
|
60034
|
+
category: string;
|
|
60035
|
+
type: string;
|
|
60036
|
+
item: string;
|
|
60037
|
+
};
|
|
60038
|
+
path: string[];
|
|
60039
|
+
};
|
|
60040
|
+
};
|
|
60041
|
+
"bookmark-outline": {
|
|
60042
|
+
character: {
|
|
60043
|
+
value: string;
|
|
60044
|
+
filePath: string;
|
|
60045
|
+
isSource: boolean;
|
|
60046
|
+
original: {
|
|
60047
|
+
value: string;
|
|
60048
|
+
};
|
|
60049
|
+
name: string;
|
|
60050
|
+
attributes: {
|
|
60051
|
+
category: string;
|
|
60052
|
+
type: string;
|
|
60053
|
+
item: string;
|
|
60054
|
+
};
|
|
60055
|
+
path: string[];
|
|
60056
|
+
};
|
|
60057
|
+
};
|
|
59905
60058
|
building: {
|
|
59906
60059
|
character: {
|
|
59907
60060
|
value: string;
|
package/lib/font.css
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Tue,
|
|
3
|
+
* Generated on Tue, 28 Jul 2026 20:44:13 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.53.
|
|
10
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/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.53.
|
|
12
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/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.53.
|
|
20
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/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.53.
|
|
22
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/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.53.
|
|
30
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/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.53.
|
|
32
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/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.53.
|
|
40
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/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.53.
|
|
42
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/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.53.
|
|
50
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/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.53.
|
|
52
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/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.53.
|
|
60
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/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.53.
|
|
62
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/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.53.
|
|
70
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/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.53.
|
|
72
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/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.53.
|
|
80
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/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.53.
|
|
82
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/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.53.
|
|
90
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/assets/fonts/icomoon-sps-icons.svg")
|
|
91
91
|
format("svg"),
|
|
92
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.
|
|
92
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/assets/fonts/icomoon-sps-icons.truetype")
|
|
93
93
|
format("undefined"),
|
|
94
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.
|
|
94
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/assets/fonts/icomoon-sps-icons.woff")
|
|
95
95
|
format("woff"),
|
|
96
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.
|
|
96
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.53.3/assets/fonts/icomoon-sps-icons.woff2")
|
|
97
97
|
format("woff2");
|
|
98
98
|
font-display: fallback;
|
|
99
99
|
}
|