@sps-woodland/tokens 7.9.1 → 7.10.1
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 +7 -1
- package/lib/css/utils.css +1 -1
- package/lib/dictionary.d.ts +312 -0
- package/lib/font.css +21 -21
- package/lib/index.cjs.js +1 -1
- package/lib/index.es.js +34 -22
- package/lib/scss/tokens.scss +7 -1
- package/lib/scss/utils.scss +1 -1
- package/lib/tokens.d.ts +12 -0
- package/lib/vanilla-extract/sprinkleValues.d.ts +3 -13
- package/package.json +1 -1
- package/src/dictionary.ts +539 -0
- package/src/tokens.ts +12 -0
- package/src/vanilla-extract/sprinkleValues.ts +1 -14
package/lib/css/tokens.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Sat, 01 Jul 2023 16:51:10 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -364,6 +364,10 @@
|
|
|
364
364
|
--component-sorting-header-cell-padding: 0.5rem;
|
|
365
365
|
--component-sorting-header-cell-active-background-color: #d2d4d4;
|
|
366
366
|
--component-sorting-header-cell-hover-background-color: #f3f4f4;
|
|
367
|
+
--component-sorting-header-pinned-z-index: 999;
|
|
368
|
+
--component-sorting-header-pinned-border-radius: 0;
|
|
369
|
+
--component-sorting-header-pinned-shadow-height: 0.625rem;
|
|
370
|
+
--component-sorting-header-pinned-shadow-left-adjustment: -0.0625rem;
|
|
367
371
|
--component-spinner-color-primary: #91467f;
|
|
368
372
|
--component-spinner-color-secondary: #f4ecf2;
|
|
369
373
|
--component-spinner-sm-dimension: 1.125rem;
|
|
@@ -668,6 +672,8 @@
|
|
|
668
672
|
--size-component-spinner-md-thickness: 0.25rem;
|
|
669
673
|
--size-component-spinner-lg-dimension: 4.5rem;
|
|
670
674
|
--size-component-spinner-lg-thickness: 0.5rem;
|
|
675
|
+
--size-component-sorting-header-pinned-shadow-height: 0.625rem;
|
|
676
|
+
--size-component-sorting-header-pinned-shadow-left-adjustment: -0.0625rem;
|
|
671
677
|
--size-component-vertical-rule-thickness: 0.0625rem;
|
|
672
678
|
--size-component-content-tile-height: 8.625rem;
|
|
673
679
|
--size-component-content-tile-image-height: 3.75rem;
|
package/lib/css/utils.css
CHANGED
package/lib/dictionary.d.ts
CHANGED
|
@@ -6061,6 +6061,72 @@ export declare const dictionary: Readonly<{
|
|
|
6061
6061
|
path: string[];
|
|
6062
6062
|
};
|
|
6063
6063
|
};
|
|
6064
|
+
pinned: {
|
|
6065
|
+
zIndex: {
|
|
6066
|
+
value: number;
|
|
6067
|
+
filePath: string;
|
|
6068
|
+
isSource: boolean;
|
|
6069
|
+
original: {
|
|
6070
|
+
value: number;
|
|
6071
|
+
};
|
|
6072
|
+
name: string;
|
|
6073
|
+
attributes: {
|
|
6074
|
+
category: string;
|
|
6075
|
+
type: string;
|
|
6076
|
+
item: string;
|
|
6077
|
+
subitem: string;
|
|
6078
|
+
};
|
|
6079
|
+
path: string[];
|
|
6080
|
+
};
|
|
6081
|
+
borderRadius: {
|
|
6082
|
+
value: number;
|
|
6083
|
+
filePath: string;
|
|
6084
|
+
isSource: boolean;
|
|
6085
|
+
original: {
|
|
6086
|
+
value: number;
|
|
6087
|
+
};
|
|
6088
|
+
name: string;
|
|
6089
|
+
attributes: {
|
|
6090
|
+
category: string;
|
|
6091
|
+
type: string;
|
|
6092
|
+
item: string;
|
|
6093
|
+
subitem: string;
|
|
6094
|
+
};
|
|
6095
|
+
path: string[];
|
|
6096
|
+
};
|
|
6097
|
+
shadowHeight: {
|
|
6098
|
+
value: string;
|
|
6099
|
+
filePath: string;
|
|
6100
|
+
isSource: boolean;
|
|
6101
|
+
original: {
|
|
6102
|
+
value: string;
|
|
6103
|
+
};
|
|
6104
|
+
name: string;
|
|
6105
|
+
attributes: {
|
|
6106
|
+
category: string;
|
|
6107
|
+
type: string;
|
|
6108
|
+
item: string;
|
|
6109
|
+
subitem: string;
|
|
6110
|
+
};
|
|
6111
|
+
path: string[];
|
|
6112
|
+
};
|
|
6113
|
+
shadowLeftAdjustment: {
|
|
6114
|
+
value: string;
|
|
6115
|
+
filePath: string;
|
|
6116
|
+
isSource: boolean;
|
|
6117
|
+
original: {
|
|
6118
|
+
value: string;
|
|
6119
|
+
};
|
|
6120
|
+
name: string;
|
|
6121
|
+
attributes: {
|
|
6122
|
+
category: string;
|
|
6123
|
+
type: string;
|
|
6124
|
+
item: string;
|
|
6125
|
+
subitem: string;
|
|
6126
|
+
};
|
|
6127
|
+
path: string[];
|
|
6128
|
+
};
|
|
6129
|
+
};
|
|
6064
6130
|
};
|
|
6065
6131
|
spinner: {
|
|
6066
6132
|
color: {
|
|
@@ -11213,6 +11279,44 @@ export declare const dictionary: Readonly<{
|
|
|
11213
11279
|
};
|
|
11214
11280
|
};
|
|
11215
11281
|
};
|
|
11282
|
+
"sorting-header": {
|
|
11283
|
+
pinned: {
|
|
11284
|
+
shadowHeight: {
|
|
11285
|
+
value: string;
|
|
11286
|
+
filePath: string;
|
|
11287
|
+
isSource: boolean;
|
|
11288
|
+
original: {
|
|
11289
|
+
value: string;
|
|
11290
|
+
};
|
|
11291
|
+
name: string;
|
|
11292
|
+
attributes: {
|
|
11293
|
+
category: string;
|
|
11294
|
+
type: string;
|
|
11295
|
+
item: string;
|
|
11296
|
+
subitem: string;
|
|
11297
|
+
state: string;
|
|
11298
|
+
};
|
|
11299
|
+
path: string[];
|
|
11300
|
+
};
|
|
11301
|
+
shadowLeftAdjustment: {
|
|
11302
|
+
value: string;
|
|
11303
|
+
filePath: string;
|
|
11304
|
+
isSource: boolean;
|
|
11305
|
+
original: {
|
|
11306
|
+
value: string;
|
|
11307
|
+
};
|
|
11308
|
+
name: string;
|
|
11309
|
+
attributes: {
|
|
11310
|
+
category: string;
|
|
11311
|
+
type: string;
|
|
11312
|
+
item: string;
|
|
11313
|
+
subitem: string;
|
|
11314
|
+
state: string;
|
|
11315
|
+
};
|
|
11316
|
+
path: string[];
|
|
11317
|
+
};
|
|
11318
|
+
};
|
|
11319
|
+
};
|
|
11216
11320
|
"vertical-rule": {
|
|
11217
11321
|
thickness: {
|
|
11218
11322
|
value: string;
|
|
@@ -18644,6 +18748,72 @@ export declare const dictionary: Readonly<{
|
|
|
18644
18748
|
path: string[];
|
|
18645
18749
|
};
|
|
18646
18750
|
};
|
|
18751
|
+
pinned: {
|
|
18752
|
+
zIndex: {
|
|
18753
|
+
value: number;
|
|
18754
|
+
filePath: string;
|
|
18755
|
+
isSource: boolean;
|
|
18756
|
+
original: {
|
|
18757
|
+
value: number;
|
|
18758
|
+
};
|
|
18759
|
+
name: string;
|
|
18760
|
+
attributes: {
|
|
18761
|
+
category: string;
|
|
18762
|
+
type: string;
|
|
18763
|
+
item: string;
|
|
18764
|
+
subitem: string;
|
|
18765
|
+
};
|
|
18766
|
+
path: string[];
|
|
18767
|
+
};
|
|
18768
|
+
borderRadius: {
|
|
18769
|
+
value: number;
|
|
18770
|
+
filePath: string;
|
|
18771
|
+
isSource: boolean;
|
|
18772
|
+
original: {
|
|
18773
|
+
value: number;
|
|
18774
|
+
};
|
|
18775
|
+
name: string;
|
|
18776
|
+
attributes: {
|
|
18777
|
+
category: string;
|
|
18778
|
+
type: string;
|
|
18779
|
+
item: string;
|
|
18780
|
+
subitem: string;
|
|
18781
|
+
};
|
|
18782
|
+
path: string[];
|
|
18783
|
+
};
|
|
18784
|
+
shadowHeight: {
|
|
18785
|
+
value: string;
|
|
18786
|
+
filePath: string;
|
|
18787
|
+
isSource: boolean;
|
|
18788
|
+
original: {
|
|
18789
|
+
value: string;
|
|
18790
|
+
};
|
|
18791
|
+
name: string;
|
|
18792
|
+
attributes: {
|
|
18793
|
+
category: string;
|
|
18794
|
+
type: string;
|
|
18795
|
+
item: string;
|
|
18796
|
+
subitem: string;
|
|
18797
|
+
};
|
|
18798
|
+
path: string[];
|
|
18799
|
+
};
|
|
18800
|
+
shadowLeftAdjustment: {
|
|
18801
|
+
value: string;
|
|
18802
|
+
filePath: string;
|
|
18803
|
+
isSource: boolean;
|
|
18804
|
+
original: {
|
|
18805
|
+
value: string;
|
|
18806
|
+
};
|
|
18807
|
+
name: string;
|
|
18808
|
+
attributes: {
|
|
18809
|
+
category: string;
|
|
18810
|
+
type: string;
|
|
18811
|
+
item: string;
|
|
18812
|
+
subitem: string;
|
|
18813
|
+
};
|
|
18814
|
+
path: string[];
|
|
18815
|
+
};
|
|
18816
|
+
};
|
|
18647
18817
|
};
|
|
18648
18818
|
spinner: {
|
|
18649
18819
|
color: {
|
|
@@ -23796,6 +23966,44 @@ export declare const dictionary: Readonly<{
|
|
|
23796
23966
|
};
|
|
23797
23967
|
};
|
|
23798
23968
|
};
|
|
23969
|
+
"sorting-header": {
|
|
23970
|
+
pinned: {
|
|
23971
|
+
shadowHeight: {
|
|
23972
|
+
value: string;
|
|
23973
|
+
filePath: string;
|
|
23974
|
+
isSource: boolean;
|
|
23975
|
+
original: {
|
|
23976
|
+
value: string;
|
|
23977
|
+
};
|
|
23978
|
+
name: string;
|
|
23979
|
+
attributes: {
|
|
23980
|
+
category: string;
|
|
23981
|
+
type: string;
|
|
23982
|
+
item: string;
|
|
23983
|
+
subitem: string;
|
|
23984
|
+
state: string;
|
|
23985
|
+
};
|
|
23986
|
+
path: string[];
|
|
23987
|
+
};
|
|
23988
|
+
shadowLeftAdjustment: {
|
|
23989
|
+
value: string;
|
|
23990
|
+
filePath: string;
|
|
23991
|
+
isSource: boolean;
|
|
23992
|
+
original: {
|
|
23993
|
+
value: string;
|
|
23994
|
+
};
|
|
23995
|
+
name: string;
|
|
23996
|
+
attributes: {
|
|
23997
|
+
category: string;
|
|
23998
|
+
type: string;
|
|
23999
|
+
item: string;
|
|
24000
|
+
subitem: string;
|
|
24001
|
+
state: string;
|
|
24002
|
+
};
|
|
24003
|
+
path: string[];
|
|
24004
|
+
};
|
|
24005
|
+
};
|
|
24006
|
+
};
|
|
23799
24007
|
"vertical-rule": {
|
|
23800
24008
|
thickness: {
|
|
23801
24009
|
value: string;
|
|
@@ -31227,6 +31435,72 @@ export declare const dictionary: Readonly<{
|
|
|
31227
31435
|
path: string[];
|
|
31228
31436
|
};
|
|
31229
31437
|
};
|
|
31438
|
+
pinned: {
|
|
31439
|
+
zIndex: {
|
|
31440
|
+
value: number;
|
|
31441
|
+
filePath: string;
|
|
31442
|
+
isSource: boolean;
|
|
31443
|
+
original: {
|
|
31444
|
+
value: number;
|
|
31445
|
+
};
|
|
31446
|
+
name: string;
|
|
31447
|
+
attributes: {
|
|
31448
|
+
category: string;
|
|
31449
|
+
type: string;
|
|
31450
|
+
item: string;
|
|
31451
|
+
subitem: string;
|
|
31452
|
+
};
|
|
31453
|
+
path: string[];
|
|
31454
|
+
};
|
|
31455
|
+
borderRadius: {
|
|
31456
|
+
value: number;
|
|
31457
|
+
filePath: string;
|
|
31458
|
+
isSource: boolean;
|
|
31459
|
+
original: {
|
|
31460
|
+
value: number;
|
|
31461
|
+
};
|
|
31462
|
+
name: string;
|
|
31463
|
+
attributes: {
|
|
31464
|
+
category: string;
|
|
31465
|
+
type: string;
|
|
31466
|
+
item: string;
|
|
31467
|
+
subitem: string;
|
|
31468
|
+
};
|
|
31469
|
+
path: string[];
|
|
31470
|
+
};
|
|
31471
|
+
shadowHeight: {
|
|
31472
|
+
value: string;
|
|
31473
|
+
filePath: string;
|
|
31474
|
+
isSource: boolean;
|
|
31475
|
+
original: {
|
|
31476
|
+
value: string;
|
|
31477
|
+
};
|
|
31478
|
+
name: string;
|
|
31479
|
+
attributes: {
|
|
31480
|
+
category: string;
|
|
31481
|
+
type: string;
|
|
31482
|
+
item: string;
|
|
31483
|
+
subitem: string;
|
|
31484
|
+
};
|
|
31485
|
+
path: string[];
|
|
31486
|
+
};
|
|
31487
|
+
shadowLeftAdjustment: {
|
|
31488
|
+
value: string;
|
|
31489
|
+
filePath: string;
|
|
31490
|
+
isSource: boolean;
|
|
31491
|
+
original: {
|
|
31492
|
+
value: string;
|
|
31493
|
+
};
|
|
31494
|
+
name: string;
|
|
31495
|
+
attributes: {
|
|
31496
|
+
category: string;
|
|
31497
|
+
type: string;
|
|
31498
|
+
item: string;
|
|
31499
|
+
subitem: string;
|
|
31500
|
+
};
|
|
31501
|
+
path: string[];
|
|
31502
|
+
};
|
|
31503
|
+
};
|
|
31230
31504
|
};
|
|
31231
31505
|
spinner: {
|
|
31232
31506
|
color: {
|
|
@@ -36379,6 +36653,44 @@ export declare const dictionary: Readonly<{
|
|
|
36379
36653
|
};
|
|
36380
36654
|
};
|
|
36381
36655
|
};
|
|
36656
|
+
"sorting-header": {
|
|
36657
|
+
pinned: {
|
|
36658
|
+
shadowHeight: {
|
|
36659
|
+
value: string;
|
|
36660
|
+
filePath: string;
|
|
36661
|
+
isSource: boolean;
|
|
36662
|
+
original: {
|
|
36663
|
+
value: string;
|
|
36664
|
+
};
|
|
36665
|
+
name: string;
|
|
36666
|
+
attributes: {
|
|
36667
|
+
category: string;
|
|
36668
|
+
type: string;
|
|
36669
|
+
item: string;
|
|
36670
|
+
subitem: string;
|
|
36671
|
+
state: string;
|
|
36672
|
+
};
|
|
36673
|
+
path: string[];
|
|
36674
|
+
};
|
|
36675
|
+
shadowLeftAdjustment: {
|
|
36676
|
+
value: string;
|
|
36677
|
+
filePath: string;
|
|
36678
|
+
isSource: boolean;
|
|
36679
|
+
original: {
|
|
36680
|
+
value: string;
|
|
36681
|
+
};
|
|
36682
|
+
name: string;
|
|
36683
|
+
attributes: {
|
|
36684
|
+
category: string;
|
|
36685
|
+
type: string;
|
|
36686
|
+
item: string;
|
|
36687
|
+
subitem: string;
|
|
36688
|
+
state: string;
|
|
36689
|
+
};
|
|
36690
|
+
path: string[];
|
|
36691
|
+
};
|
|
36692
|
+
};
|
|
36693
|
+
};
|
|
36382
36694
|
"vertical-rule": {
|
|
36383
36695
|
thickness: {
|
|
36384
36696
|
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 Sat, 01 Jul 2023 16:51: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/7.
|
|
10
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/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.
|
|
12
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/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.
|
|
20
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/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.
|
|
22
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/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.
|
|
30
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/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.
|
|
32
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/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.
|
|
40
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/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.
|
|
42
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/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.
|
|
50
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/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.
|
|
52
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/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.
|
|
60
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/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.
|
|
62
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/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.
|
|
70
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/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.
|
|
72
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/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.
|
|
80
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/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.
|
|
82
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/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.
|
|
90
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/assets/fonts/icomoon-sps-icons.svg")
|
|
91
91
|
format("svg"),
|
|
92
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.
|
|
92
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/assets/fonts/icomoon-sps-icons.truetype")
|
|
93
93
|
format("undefined"),
|
|
94
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.
|
|
94
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/assets/fonts/icomoon-sps-icons.woff")
|
|
95
95
|
format("woff"),
|
|
96
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.
|
|
96
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/7.10.1/assets/fonts/icomoon-sps-icons.woff2")
|
|
97
97
|
format("woff2");
|
|
98
98
|
font-display: fallback;
|
|
99
99
|
}
|