@sps-woodland/tokens 7.16.7 → 7.16.9
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 +5 -1
- package/lib/css/utils.css +21 -1
- package/lib/dictionary.d.ts +204 -0
- package/lib/font.css +21 -21
- package/lib/index.cjs.js +1 -1
- package/lib/index.es.js +3 -1
- package/lib/scss/tokens.scss +5 -1
- package/lib/scss/utils.scss +21 -1
- package/lib/tokens.d.ts +8 -0
- package/lib/vanilla-extract/properties/type.css.d.ts +12 -0
- package/lib/vanilla-extract/sprinkleValues.d.ts +4 -0
- package/lib/vanilla-extract/sprinkles.css.d.ts +10 -10
- package/lib/vanilla-extract/style.css +1 -1
- package/package.json +1 -1
- package/src/dictionary.ts +292 -0
- package/src/tokens.ts +2 -0
- package/src/vanilla-extract/sprinkleValues.ts +4 -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, 21 Nov 2023 20:02:57 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -734,6 +734,10 @@
|
|
|
734
734
|
--size-type-body-md-line: 1.25rem;
|
|
735
735
|
--size-type-component-sm-font: 0.75rem;
|
|
736
736
|
--size-type-component-sm-line: 0.875rem;
|
|
737
|
+
--size-type-title-xxs-font: 0.75rem;
|
|
738
|
+
--size-type-title-xxs-line: 0.75rem;
|
|
739
|
+
--size-type-title-xs-font: 0.875rem;
|
|
740
|
+
--size-type-title-xs-line: 0.875rem;
|
|
737
741
|
--size-type-title-sm-font: 1rem;
|
|
738
742
|
--size-type-title-sm-line: 1rem;
|
|
739
743
|
--size-type-title-md-font: 1.125rem;
|
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, 21 Nov 2023 20:02:57 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
.red-light {
|
|
@@ -1177,6 +1177,26 @@
|
|
|
1177
1177
|
.lh-component-sm {
|
|
1178
1178
|
line-height: var(--size-type-component-sm-line) !important;
|
|
1179
1179
|
}
|
|
1180
|
+
.fs-title-xxs {
|
|
1181
|
+
font-size: var(--size-type-title-xxs-font) !important;
|
|
1182
|
+
}
|
|
1183
|
+
.type-title-xxs {
|
|
1184
|
+
font-size: var(--size-type-title-xxs-font) !important;
|
|
1185
|
+
line-height: var(--size-type-title-xxs-line) !important;
|
|
1186
|
+
}
|
|
1187
|
+
.lh-title-xxs {
|
|
1188
|
+
line-height: var(--size-type-title-xxs-line) !important;
|
|
1189
|
+
}
|
|
1190
|
+
.fs-title-xs {
|
|
1191
|
+
font-size: var(--size-type-title-xs-font) !important;
|
|
1192
|
+
}
|
|
1193
|
+
.type-title-xs {
|
|
1194
|
+
font-size: var(--size-type-title-xs-font) !important;
|
|
1195
|
+
line-height: var(--size-type-title-xs-line) !important;
|
|
1196
|
+
}
|
|
1197
|
+
.lh-title-xs {
|
|
1198
|
+
line-height: var(--size-type-title-xs-line) !important;
|
|
1199
|
+
}
|
|
1180
1200
|
.fs-title-sm {
|
|
1181
1201
|
font-size: var(--size-type-title-sm-font) !important;
|
|
1182
1202
|
}
|
package/lib/dictionary.d.ts
CHANGED
|
@@ -12322,6 +12322,74 @@ export declare const dictionary: Readonly<{
|
|
|
12322
12322
|
path: string[];
|
|
12323
12323
|
};
|
|
12324
12324
|
};
|
|
12325
|
+
"title-xxs": {
|
|
12326
|
+
font: {
|
|
12327
|
+
value: string;
|
|
12328
|
+
filePath: string;
|
|
12329
|
+
isSource: boolean;
|
|
12330
|
+
original: {
|
|
12331
|
+
value: number;
|
|
12332
|
+
};
|
|
12333
|
+
name: string;
|
|
12334
|
+
attributes: {
|
|
12335
|
+
category: string;
|
|
12336
|
+
type: string;
|
|
12337
|
+
item: string;
|
|
12338
|
+
subitem: string;
|
|
12339
|
+
};
|
|
12340
|
+
path: string[];
|
|
12341
|
+
};
|
|
12342
|
+
line: {
|
|
12343
|
+
value: string;
|
|
12344
|
+
filePath: string;
|
|
12345
|
+
isSource: boolean;
|
|
12346
|
+
original: {
|
|
12347
|
+
value: number;
|
|
12348
|
+
};
|
|
12349
|
+
name: string;
|
|
12350
|
+
attributes: {
|
|
12351
|
+
category: string;
|
|
12352
|
+
type: string;
|
|
12353
|
+
item: string;
|
|
12354
|
+
subitem: string;
|
|
12355
|
+
};
|
|
12356
|
+
path: string[];
|
|
12357
|
+
};
|
|
12358
|
+
};
|
|
12359
|
+
"title-xs": {
|
|
12360
|
+
font: {
|
|
12361
|
+
value: string;
|
|
12362
|
+
filePath: string;
|
|
12363
|
+
isSource: boolean;
|
|
12364
|
+
original: {
|
|
12365
|
+
value: number;
|
|
12366
|
+
};
|
|
12367
|
+
name: string;
|
|
12368
|
+
attributes: {
|
|
12369
|
+
category: string;
|
|
12370
|
+
type: string;
|
|
12371
|
+
item: string;
|
|
12372
|
+
subitem: string;
|
|
12373
|
+
};
|
|
12374
|
+
path: string[];
|
|
12375
|
+
};
|
|
12376
|
+
line: {
|
|
12377
|
+
value: string;
|
|
12378
|
+
filePath: string;
|
|
12379
|
+
isSource: boolean;
|
|
12380
|
+
original: {
|
|
12381
|
+
value: number;
|
|
12382
|
+
};
|
|
12383
|
+
name: string;
|
|
12384
|
+
attributes: {
|
|
12385
|
+
category: string;
|
|
12386
|
+
type: string;
|
|
12387
|
+
item: string;
|
|
12388
|
+
subitem: string;
|
|
12389
|
+
};
|
|
12390
|
+
path: string[];
|
|
12391
|
+
};
|
|
12392
|
+
};
|
|
12325
12393
|
"title-sm": {
|
|
12326
12394
|
font: {
|
|
12327
12395
|
value: string;
|
|
@@ -25162,6 +25230,74 @@ export declare const dictionary: Readonly<{
|
|
|
25162
25230
|
path: string[];
|
|
25163
25231
|
};
|
|
25164
25232
|
};
|
|
25233
|
+
"title-xxs": {
|
|
25234
|
+
font: {
|
|
25235
|
+
value: string;
|
|
25236
|
+
filePath: string;
|
|
25237
|
+
isSource: boolean;
|
|
25238
|
+
original: {
|
|
25239
|
+
value: number;
|
|
25240
|
+
};
|
|
25241
|
+
name: string;
|
|
25242
|
+
attributes: {
|
|
25243
|
+
category: string;
|
|
25244
|
+
type: string;
|
|
25245
|
+
item: string;
|
|
25246
|
+
subitem: string;
|
|
25247
|
+
};
|
|
25248
|
+
path: string[];
|
|
25249
|
+
};
|
|
25250
|
+
line: {
|
|
25251
|
+
value: string;
|
|
25252
|
+
filePath: string;
|
|
25253
|
+
isSource: boolean;
|
|
25254
|
+
original: {
|
|
25255
|
+
value: number;
|
|
25256
|
+
};
|
|
25257
|
+
name: string;
|
|
25258
|
+
attributes: {
|
|
25259
|
+
category: string;
|
|
25260
|
+
type: string;
|
|
25261
|
+
item: string;
|
|
25262
|
+
subitem: string;
|
|
25263
|
+
};
|
|
25264
|
+
path: string[];
|
|
25265
|
+
};
|
|
25266
|
+
};
|
|
25267
|
+
"title-xs": {
|
|
25268
|
+
font: {
|
|
25269
|
+
value: string;
|
|
25270
|
+
filePath: string;
|
|
25271
|
+
isSource: boolean;
|
|
25272
|
+
original: {
|
|
25273
|
+
value: number;
|
|
25274
|
+
};
|
|
25275
|
+
name: string;
|
|
25276
|
+
attributes: {
|
|
25277
|
+
category: string;
|
|
25278
|
+
type: string;
|
|
25279
|
+
item: string;
|
|
25280
|
+
subitem: string;
|
|
25281
|
+
};
|
|
25282
|
+
path: string[];
|
|
25283
|
+
};
|
|
25284
|
+
line: {
|
|
25285
|
+
value: string;
|
|
25286
|
+
filePath: string;
|
|
25287
|
+
isSource: boolean;
|
|
25288
|
+
original: {
|
|
25289
|
+
value: number;
|
|
25290
|
+
};
|
|
25291
|
+
name: string;
|
|
25292
|
+
attributes: {
|
|
25293
|
+
category: string;
|
|
25294
|
+
type: string;
|
|
25295
|
+
item: string;
|
|
25296
|
+
subitem: string;
|
|
25297
|
+
};
|
|
25298
|
+
path: string[];
|
|
25299
|
+
};
|
|
25300
|
+
};
|
|
25165
25301
|
"title-sm": {
|
|
25166
25302
|
font: {
|
|
25167
25303
|
value: string;
|
|
@@ -38002,6 +38138,74 @@ export declare const dictionary: Readonly<{
|
|
|
38002
38138
|
path: string[];
|
|
38003
38139
|
};
|
|
38004
38140
|
};
|
|
38141
|
+
"title-xxs": {
|
|
38142
|
+
font: {
|
|
38143
|
+
value: string;
|
|
38144
|
+
filePath: string;
|
|
38145
|
+
isSource: boolean;
|
|
38146
|
+
original: {
|
|
38147
|
+
value: number;
|
|
38148
|
+
};
|
|
38149
|
+
name: string;
|
|
38150
|
+
attributes: {
|
|
38151
|
+
category: string;
|
|
38152
|
+
type: string;
|
|
38153
|
+
item: string;
|
|
38154
|
+
subitem: string;
|
|
38155
|
+
};
|
|
38156
|
+
path: string[];
|
|
38157
|
+
};
|
|
38158
|
+
line: {
|
|
38159
|
+
value: string;
|
|
38160
|
+
filePath: string;
|
|
38161
|
+
isSource: boolean;
|
|
38162
|
+
original: {
|
|
38163
|
+
value: number;
|
|
38164
|
+
};
|
|
38165
|
+
name: string;
|
|
38166
|
+
attributes: {
|
|
38167
|
+
category: string;
|
|
38168
|
+
type: string;
|
|
38169
|
+
item: string;
|
|
38170
|
+
subitem: string;
|
|
38171
|
+
};
|
|
38172
|
+
path: string[];
|
|
38173
|
+
};
|
|
38174
|
+
};
|
|
38175
|
+
"title-xs": {
|
|
38176
|
+
font: {
|
|
38177
|
+
value: string;
|
|
38178
|
+
filePath: string;
|
|
38179
|
+
isSource: boolean;
|
|
38180
|
+
original: {
|
|
38181
|
+
value: number;
|
|
38182
|
+
};
|
|
38183
|
+
name: string;
|
|
38184
|
+
attributes: {
|
|
38185
|
+
category: string;
|
|
38186
|
+
type: string;
|
|
38187
|
+
item: string;
|
|
38188
|
+
subitem: string;
|
|
38189
|
+
};
|
|
38190
|
+
path: string[];
|
|
38191
|
+
};
|
|
38192
|
+
line: {
|
|
38193
|
+
value: string;
|
|
38194
|
+
filePath: string;
|
|
38195
|
+
isSource: boolean;
|
|
38196
|
+
original: {
|
|
38197
|
+
value: number;
|
|
38198
|
+
};
|
|
38199
|
+
name: string;
|
|
38200
|
+
attributes: {
|
|
38201
|
+
category: string;
|
|
38202
|
+
type: string;
|
|
38203
|
+
item: string;
|
|
38204
|
+
subitem: string;
|
|
38205
|
+
};
|
|
38206
|
+
path: string[];
|
|
38207
|
+
};
|
|
38208
|
+
};
|
|
38005
38209
|
"title-sm": {
|
|
38006
38210
|
font: {
|
|
38007
38211
|
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 Tue, 21 Nov 2023 20:02:57 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/7.16.
|
|
10
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/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/7.16.
|
|
12
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/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/7.16.
|
|
20
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/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/7.16.
|
|
22
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/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/7.16.
|
|
30
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/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/7.16.
|
|
32
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/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/7.16.
|
|
40
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/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/7.16.
|
|
42
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/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/7.16.
|
|
50
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/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/7.16.
|
|
52
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/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/7.16.
|
|
60
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/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/7.16.
|
|
62
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/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/7.16.
|
|
70
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/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/7.16.
|
|
72
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/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/7.16.
|
|
80
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/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/7.16.
|
|
82
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/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/7.16.
|
|
90
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/assets/fonts/icomoon-sps-icons.svg")
|
|
91
91
|
format("svg"),
|
|
92
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.
|
|
92
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/assets/fonts/icomoon-sps-icons.truetype")
|
|
93
93
|
format("undefined"),
|
|
94
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.
|
|
94
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/assets/fonts/icomoon-sps-icons.woff")
|
|
95
95
|
format("woff"),
|
|
96
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.
|
|
96
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.16.9/assets/fonts/icomoon-sps-icons.woff2")
|
|
97
97
|
format("woff2");
|
|
98
98
|
font-display: fallback;
|
|
99
99
|
}
|