@sps-woodland/tokens 7.2.3 → 7.2.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 +8 -2
- package/lib/css/utils.css +1 -1
- package/lib/dictionary.d.ts +348 -33
- package/lib/font.css +21 -21
- package/lib/index.cjs.js +1 -1
- package/lib/index.es.js +9 -1
- package/lib/scss/tokens.scss +8 -2
- package/lib/scss/utils.scss +1 -1
- package/lib/tokens.d.ts +9 -1
- package/lib/vanilla-extract/sprinkleValues.d.ts +9 -1
- package/package.json +1 -1
- package/src/dictionary.ts +708 -52
- package/src/tokens.ts +9 -1
- package/src/vanilla-extract/sprinkleValues.ts +9 -1
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, 07 Mar 2023 14:27:09 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -233,7 +233,13 @@
|
|
|
233
233
|
--component-key-value-tag-value-section-background: #ffffff;
|
|
234
234
|
--component-key-value-tag-value-section-border-left-radius: 0;
|
|
235
235
|
--component-key-value-tag-value-section-border-right-radius: 0.125rem;
|
|
236
|
-
--component-key-value-tag-value-section-box-shadow-color: #
|
|
236
|
+
--component-key-value-tag-value-section-box-shadow-color-default: #e9e9ea;
|
|
237
|
+
--component-key-value-tag-value-section-box-shadow-color-key: #4b5356;
|
|
238
|
+
--component-key-value-tag-value-section-box-shadow-color-warning: #e7760b;
|
|
239
|
+
--component-key-value-tag-value-section-box-shadow-color-error: #de002e;
|
|
240
|
+
--component-key-value-tag-value-section-box-shadow-color-pending: #91467f;
|
|
241
|
+
--component-key-value-tag-value-section-box-shadow-color-success: #0b8940;
|
|
242
|
+
--component-key-value-tag-value-section-box-shadow-color-info: #007db8;
|
|
237
243
|
--component-key-value-tag-value-section-box-shadow-width: 0.0625rem;
|
|
238
244
|
--component-key-value-tag-value-section-padding-vertical: 0.125rem;
|
|
239
245
|
--component-key-value-tag-value-section-padding-horizontal: 0.25rem;
|
package/lib/css/utils.css
CHANGED
package/lib/dictionary.d.ts
CHANGED
|
@@ -3839,20 +3839,125 @@ export declare const dictionary: Readonly<{
|
|
|
3839
3839
|
path: string[];
|
|
3840
3840
|
};
|
|
3841
3841
|
"box-shadow-color": {
|
|
3842
|
-
|
|
3843
|
-
filePath: string;
|
|
3844
|
-
isSource: boolean;
|
|
3845
|
-
original: {
|
|
3842
|
+
default: {
|
|
3846
3843
|
value: string;
|
|
3844
|
+
filePath: string;
|
|
3845
|
+
isSource: boolean;
|
|
3846
|
+
original: {
|
|
3847
|
+
value: string;
|
|
3848
|
+
};
|
|
3849
|
+
name: string;
|
|
3850
|
+
attributes: {
|
|
3851
|
+
category: string;
|
|
3852
|
+
type: string;
|
|
3853
|
+
item: string;
|
|
3854
|
+
subitem: string;
|
|
3855
|
+
state: string;
|
|
3856
|
+
};
|
|
3857
|
+
path: string[];
|
|
3847
3858
|
};
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3859
|
+
key: {
|
|
3860
|
+
value: string;
|
|
3861
|
+
filePath: string;
|
|
3862
|
+
isSource: boolean;
|
|
3863
|
+
original: {
|
|
3864
|
+
value: string;
|
|
3865
|
+
};
|
|
3866
|
+
name: string;
|
|
3867
|
+
attributes: {
|
|
3868
|
+
category: string;
|
|
3869
|
+
type: string;
|
|
3870
|
+
item: string;
|
|
3871
|
+
subitem: string;
|
|
3872
|
+
state: string;
|
|
3873
|
+
};
|
|
3874
|
+
path: string[];
|
|
3875
|
+
};
|
|
3876
|
+
warning: {
|
|
3877
|
+
value: string;
|
|
3878
|
+
filePath: string;
|
|
3879
|
+
isSource: boolean;
|
|
3880
|
+
original: {
|
|
3881
|
+
value: string;
|
|
3882
|
+
};
|
|
3883
|
+
name: string;
|
|
3884
|
+
attributes: {
|
|
3885
|
+
category: string;
|
|
3886
|
+
type: string;
|
|
3887
|
+
item: string;
|
|
3888
|
+
subitem: string;
|
|
3889
|
+
state: string;
|
|
3890
|
+
};
|
|
3891
|
+
path: string[];
|
|
3892
|
+
};
|
|
3893
|
+
error: {
|
|
3894
|
+
value: string;
|
|
3895
|
+
filePath: string;
|
|
3896
|
+
isSource: boolean;
|
|
3897
|
+
original: {
|
|
3898
|
+
value: string;
|
|
3899
|
+
};
|
|
3900
|
+
name: string;
|
|
3901
|
+
attributes: {
|
|
3902
|
+
category: string;
|
|
3903
|
+
type: string;
|
|
3904
|
+
item: string;
|
|
3905
|
+
subitem: string;
|
|
3906
|
+
state: string;
|
|
3907
|
+
};
|
|
3908
|
+
path: string[];
|
|
3909
|
+
};
|
|
3910
|
+
pending: {
|
|
3911
|
+
value: string;
|
|
3912
|
+
filePath: string;
|
|
3913
|
+
isSource: boolean;
|
|
3914
|
+
original: {
|
|
3915
|
+
value: string;
|
|
3916
|
+
};
|
|
3917
|
+
name: string;
|
|
3918
|
+
attributes: {
|
|
3919
|
+
category: string;
|
|
3920
|
+
type: string;
|
|
3921
|
+
item: string;
|
|
3922
|
+
subitem: string;
|
|
3923
|
+
state: string;
|
|
3924
|
+
};
|
|
3925
|
+
path: string[];
|
|
3926
|
+
};
|
|
3927
|
+
success: {
|
|
3928
|
+
value: string;
|
|
3929
|
+
filePath: string;
|
|
3930
|
+
isSource: boolean;
|
|
3931
|
+
original: {
|
|
3932
|
+
value: string;
|
|
3933
|
+
};
|
|
3934
|
+
name: string;
|
|
3935
|
+
attributes: {
|
|
3936
|
+
category: string;
|
|
3937
|
+
type: string;
|
|
3938
|
+
item: string;
|
|
3939
|
+
subitem: string;
|
|
3940
|
+
state: string;
|
|
3941
|
+
};
|
|
3942
|
+
path: string[];
|
|
3943
|
+
};
|
|
3944
|
+
info: {
|
|
3945
|
+
value: string;
|
|
3946
|
+
filePath: string;
|
|
3947
|
+
isSource: boolean;
|
|
3948
|
+
original: {
|
|
3949
|
+
value: string;
|
|
3950
|
+
};
|
|
3951
|
+
name: string;
|
|
3952
|
+
attributes: {
|
|
3953
|
+
category: string;
|
|
3954
|
+
type: string;
|
|
3955
|
+
item: string;
|
|
3956
|
+
subitem: string;
|
|
3957
|
+
state: string;
|
|
3958
|
+
};
|
|
3959
|
+
path: string[];
|
|
3854
3960
|
};
|
|
3855
|
-
path: string[];
|
|
3856
3961
|
};
|
|
3857
3962
|
"box-shadow-width": {
|
|
3858
3963
|
value: string;
|
|
@@ -15215,20 +15320,125 @@ export declare const dictionary: Readonly<{
|
|
|
15215
15320
|
path: string[];
|
|
15216
15321
|
};
|
|
15217
15322
|
"box-shadow-color": {
|
|
15218
|
-
|
|
15219
|
-
|
|
15220
|
-
|
|
15221
|
-
|
|
15323
|
+
default: {
|
|
15324
|
+
value: string;
|
|
15325
|
+
filePath: string;
|
|
15326
|
+
isSource: boolean;
|
|
15327
|
+
original: {
|
|
15328
|
+
value: string;
|
|
15329
|
+
};
|
|
15330
|
+
name: string;
|
|
15331
|
+
attributes: {
|
|
15332
|
+
category: string;
|
|
15333
|
+
type: string;
|
|
15334
|
+
item: string;
|
|
15335
|
+
subitem: string;
|
|
15336
|
+
state: string;
|
|
15337
|
+
};
|
|
15338
|
+
path: string[];
|
|
15339
|
+
};
|
|
15340
|
+
key: {
|
|
15222
15341
|
value: string;
|
|
15342
|
+
filePath: string;
|
|
15343
|
+
isSource: boolean;
|
|
15344
|
+
original: {
|
|
15345
|
+
value: string;
|
|
15346
|
+
};
|
|
15347
|
+
name: string;
|
|
15348
|
+
attributes: {
|
|
15349
|
+
category: string;
|
|
15350
|
+
type: string;
|
|
15351
|
+
item: string;
|
|
15352
|
+
subitem: string;
|
|
15353
|
+
state: string;
|
|
15354
|
+
};
|
|
15355
|
+
path: string[];
|
|
15223
15356
|
};
|
|
15224
|
-
|
|
15225
|
-
|
|
15226
|
-
|
|
15227
|
-
|
|
15228
|
-
|
|
15229
|
-
|
|
15357
|
+
warning: {
|
|
15358
|
+
value: string;
|
|
15359
|
+
filePath: string;
|
|
15360
|
+
isSource: boolean;
|
|
15361
|
+
original: {
|
|
15362
|
+
value: string;
|
|
15363
|
+
};
|
|
15364
|
+
name: string;
|
|
15365
|
+
attributes: {
|
|
15366
|
+
category: string;
|
|
15367
|
+
type: string;
|
|
15368
|
+
item: string;
|
|
15369
|
+
subitem: string;
|
|
15370
|
+
state: string;
|
|
15371
|
+
};
|
|
15372
|
+
path: string[];
|
|
15373
|
+
};
|
|
15374
|
+
error: {
|
|
15375
|
+
value: string;
|
|
15376
|
+
filePath: string;
|
|
15377
|
+
isSource: boolean;
|
|
15378
|
+
original: {
|
|
15379
|
+
value: string;
|
|
15380
|
+
};
|
|
15381
|
+
name: string;
|
|
15382
|
+
attributes: {
|
|
15383
|
+
category: string;
|
|
15384
|
+
type: string;
|
|
15385
|
+
item: string;
|
|
15386
|
+
subitem: string;
|
|
15387
|
+
state: string;
|
|
15388
|
+
};
|
|
15389
|
+
path: string[];
|
|
15390
|
+
};
|
|
15391
|
+
pending: {
|
|
15392
|
+
value: string;
|
|
15393
|
+
filePath: string;
|
|
15394
|
+
isSource: boolean;
|
|
15395
|
+
original: {
|
|
15396
|
+
value: string;
|
|
15397
|
+
};
|
|
15398
|
+
name: string;
|
|
15399
|
+
attributes: {
|
|
15400
|
+
category: string;
|
|
15401
|
+
type: string;
|
|
15402
|
+
item: string;
|
|
15403
|
+
subitem: string;
|
|
15404
|
+
state: string;
|
|
15405
|
+
};
|
|
15406
|
+
path: string[];
|
|
15407
|
+
};
|
|
15408
|
+
success: {
|
|
15409
|
+
value: string;
|
|
15410
|
+
filePath: string;
|
|
15411
|
+
isSource: boolean;
|
|
15412
|
+
original: {
|
|
15413
|
+
value: string;
|
|
15414
|
+
};
|
|
15415
|
+
name: string;
|
|
15416
|
+
attributes: {
|
|
15417
|
+
category: string;
|
|
15418
|
+
type: string;
|
|
15419
|
+
item: string;
|
|
15420
|
+
subitem: string;
|
|
15421
|
+
state: string;
|
|
15422
|
+
};
|
|
15423
|
+
path: string[];
|
|
15424
|
+
};
|
|
15425
|
+
info: {
|
|
15426
|
+
value: string;
|
|
15427
|
+
filePath: string;
|
|
15428
|
+
isSource: boolean;
|
|
15429
|
+
original: {
|
|
15430
|
+
value: string;
|
|
15431
|
+
};
|
|
15432
|
+
name: string;
|
|
15433
|
+
attributes: {
|
|
15434
|
+
category: string;
|
|
15435
|
+
type: string;
|
|
15436
|
+
item: string;
|
|
15437
|
+
subitem: string;
|
|
15438
|
+
state: string;
|
|
15439
|
+
};
|
|
15440
|
+
path: string[];
|
|
15230
15441
|
};
|
|
15231
|
-
path: string[];
|
|
15232
15442
|
};
|
|
15233
15443
|
"box-shadow-width": {
|
|
15234
15444
|
value: string;
|
|
@@ -26591,20 +26801,125 @@ export declare const dictionary: Readonly<{
|
|
|
26591
26801
|
path: string[];
|
|
26592
26802
|
};
|
|
26593
26803
|
"box-shadow-color": {
|
|
26594
|
-
|
|
26595
|
-
filePath: string;
|
|
26596
|
-
isSource: boolean;
|
|
26597
|
-
original: {
|
|
26804
|
+
default: {
|
|
26598
26805
|
value: string;
|
|
26806
|
+
filePath: string;
|
|
26807
|
+
isSource: boolean;
|
|
26808
|
+
original: {
|
|
26809
|
+
value: string;
|
|
26810
|
+
};
|
|
26811
|
+
name: string;
|
|
26812
|
+
attributes: {
|
|
26813
|
+
category: string;
|
|
26814
|
+
type: string;
|
|
26815
|
+
item: string;
|
|
26816
|
+
subitem: string;
|
|
26817
|
+
state: string;
|
|
26818
|
+
};
|
|
26819
|
+
path: string[];
|
|
26599
26820
|
};
|
|
26600
|
-
|
|
26601
|
-
|
|
26602
|
-
|
|
26603
|
-
|
|
26604
|
-
|
|
26605
|
-
|
|
26821
|
+
key: {
|
|
26822
|
+
value: string;
|
|
26823
|
+
filePath: string;
|
|
26824
|
+
isSource: boolean;
|
|
26825
|
+
original: {
|
|
26826
|
+
value: string;
|
|
26827
|
+
};
|
|
26828
|
+
name: string;
|
|
26829
|
+
attributes: {
|
|
26830
|
+
category: string;
|
|
26831
|
+
type: string;
|
|
26832
|
+
item: string;
|
|
26833
|
+
subitem: string;
|
|
26834
|
+
state: string;
|
|
26835
|
+
};
|
|
26836
|
+
path: string[];
|
|
26837
|
+
};
|
|
26838
|
+
warning: {
|
|
26839
|
+
value: string;
|
|
26840
|
+
filePath: string;
|
|
26841
|
+
isSource: boolean;
|
|
26842
|
+
original: {
|
|
26843
|
+
value: string;
|
|
26844
|
+
};
|
|
26845
|
+
name: string;
|
|
26846
|
+
attributes: {
|
|
26847
|
+
category: string;
|
|
26848
|
+
type: string;
|
|
26849
|
+
item: string;
|
|
26850
|
+
subitem: string;
|
|
26851
|
+
state: string;
|
|
26852
|
+
};
|
|
26853
|
+
path: string[];
|
|
26854
|
+
};
|
|
26855
|
+
error: {
|
|
26856
|
+
value: string;
|
|
26857
|
+
filePath: string;
|
|
26858
|
+
isSource: boolean;
|
|
26859
|
+
original: {
|
|
26860
|
+
value: string;
|
|
26861
|
+
};
|
|
26862
|
+
name: string;
|
|
26863
|
+
attributes: {
|
|
26864
|
+
category: string;
|
|
26865
|
+
type: string;
|
|
26866
|
+
item: string;
|
|
26867
|
+
subitem: string;
|
|
26868
|
+
state: string;
|
|
26869
|
+
};
|
|
26870
|
+
path: string[];
|
|
26871
|
+
};
|
|
26872
|
+
pending: {
|
|
26873
|
+
value: string;
|
|
26874
|
+
filePath: string;
|
|
26875
|
+
isSource: boolean;
|
|
26876
|
+
original: {
|
|
26877
|
+
value: string;
|
|
26878
|
+
};
|
|
26879
|
+
name: string;
|
|
26880
|
+
attributes: {
|
|
26881
|
+
category: string;
|
|
26882
|
+
type: string;
|
|
26883
|
+
item: string;
|
|
26884
|
+
subitem: string;
|
|
26885
|
+
state: string;
|
|
26886
|
+
};
|
|
26887
|
+
path: string[];
|
|
26888
|
+
};
|
|
26889
|
+
success: {
|
|
26890
|
+
value: string;
|
|
26891
|
+
filePath: string;
|
|
26892
|
+
isSource: boolean;
|
|
26893
|
+
original: {
|
|
26894
|
+
value: string;
|
|
26895
|
+
};
|
|
26896
|
+
name: string;
|
|
26897
|
+
attributes: {
|
|
26898
|
+
category: string;
|
|
26899
|
+
type: string;
|
|
26900
|
+
item: string;
|
|
26901
|
+
subitem: string;
|
|
26902
|
+
state: string;
|
|
26903
|
+
};
|
|
26904
|
+
path: string[];
|
|
26905
|
+
};
|
|
26906
|
+
info: {
|
|
26907
|
+
value: string;
|
|
26908
|
+
filePath: string;
|
|
26909
|
+
isSource: boolean;
|
|
26910
|
+
original: {
|
|
26911
|
+
value: string;
|
|
26912
|
+
};
|
|
26913
|
+
name: string;
|
|
26914
|
+
attributes: {
|
|
26915
|
+
category: string;
|
|
26916
|
+
type: string;
|
|
26917
|
+
item: string;
|
|
26918
|
+
subitem: string;
|
|
26919
|
+
state: string;
|
|
26920
|
+
};
|
|
26921
|
+
path: string[];
|
|
26606
26922
|
};
|
|
26607
|
-
path: string[];
|
|
26608
26923
|
};
|
|
26609
26924
|
"box-shadow-width": {
|
|
26610
26925
|
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, 07 Mar 2023 14:27:09 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.2.
|
|
10
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.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/7.2.
|
|
12
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.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/7.2.
|
|
20
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.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/7.2.
|
|
22
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.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/7.2.
|
|
30
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.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/7.2.
|
|
32
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.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/7.2.
|
|
40
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.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/7.2.
|
|
42
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.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/7.2.
|
|
50
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.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/7.2.
|
|
52
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.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/7.2.
|
|
60
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.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/7.2.
|
|
62
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.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/7.2.
|
|
70
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.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/7.2.
|
|
72
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.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/7.2.
|
|
80
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.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/7.2.
|
|
82
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.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/7.2.
|
|
90
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.4/assets/fonts/icomoon-sps-icons.svg")
|
|
91
91
|
format("svg"),
|
|
92
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.
|
|
92
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.4/assets/fonts/icomoon-sps-icons.truetype")
|
|
93
93
|
format("undefined"),
|
|
94
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.
|
|
94
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.4/assets/fonts/icomoon-sps-icons.woff")
|
|
95
95
|
format("woff"),
|
|
96
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.
|
|
96
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.2.4/assets/fonts/icomoon-sps-icons.woff2")
|
|
97
97
|
format("woff2");
|
|
98
98
|
font-display: fallback;
|
|
99
99
|
}
|