@sps-woodland/tokens 8.17.2 → 8.18.0
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 +9 -1
- package/lib/css/utils.css +1 -1
- package/lib/dictionary.d.ts +402 -0
- package/lib/font.css +21 -21
- package/lib/index.cjs.js +1 -1
- package/lib/index.es.js +12 -2
- package/lib/scss/tokens.scss +9 -1
- package/lib/scss/utils.scss +1 -1
- package/lib/tokens.d.ts +16 -0
- package/lib/vanilla-extract/sprinkleValues.d.ts +16 -0
- package/lib/vanilla-extract/style.css +1 -1
- package/package.json +1 -1
- package/src/dictionary.ts +566 -0
- package/src/tokens.ts +10 -0
- package/src/vanilla-extract/sprinkleValues.ts +10 -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, 06 Sep 2024 19:06:06 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -439,6 +439,14 @@
|
|
|
439
439
|
--component-list-bar-sort-by-padding: 0.25rem;
|
|
440
440
|
--component-list-bar-search-field-select-height: 2rem;
|
|
441
441
|
--component-list-bar-search-field-select-line-height: 2rem;
|
|
442
|
+
--component-matrix-border-radius: 0.125rem;
|
|
443
|
+
--component-matrix-border-style: solid;
|
|
444
|
+
--component-matrix-border-width: 0.0625rem;
|
|
445
|
+
--component-matrix-color-background: #000000;
|
|
446
|
+
--component-matrix-color-border: #000000;
|
|
447
|
+
--component-matrix-font-size: 0.875rem;
|
|
448
|
+
--component-matrix-line-height: 1.25rem;
|
|
449
|
+
--component-matrix-padding: 0.5rem;
|
|
442
450
|
--component-modal-background-color: #000000;
|
|
443
451
|
--component-modal-border-style: solid;
|
|
444
452
|
--component-modal-border-radius: 0.25rem;
|
package/lib/css/utils.css
CHANGED
package/lib/dictionary.d.ts
CHANGED
|
@@ -7419,6 +7419,140 @@ export declare const dictionary: Readonly<{
|
|
|
7419
7419
|
};
|
|
7420
7420
|
};
|
|
7421
7421
|
};
|
|
7422
|
+
matrix: {
|
|
7423
|
+
border: {
|
|
7424
|
+
radius: {
|
|
7425
|
+
value: string;
|
|
7426
|
+
filePath: string;
|
|
7427
|
+
isSource: boolean;
|
|
7428
|
+
original: {
|
|
7429
|
+
value: string;
|
|
7430
|
+
};
|
|
7431
|
+
name: string;
|
|
7432
|
+
attributes: {
|
|
7433
|
+
category: string;
|
|
7434
|
+
type: string;
|
|
7435
|
+
item: string;
|
|
7436
|
+
subitem: string;
|
|
7437
|
+
};
|
|
7438
|
+
path: string[];
|
|
7439
|
+
};
|
|
7440
|
+
style: {
|
|
7441
|
+
value: string;
|
|
7442
|
+
filePath: string;
|
|
7443
|
+
isSource: boolean;
|
|
7444
|
+
original: {
|
|
7445
|
+
value: string;
|
|
7446
|
+
};
|
|
7447
|
+
name: string;
|
|
7448
|
+
attributes: {
|
|
7449
|
+
category: string;
|
|
7450
|
+
type: string;
|
|
7451
|
+
item: string;
|
|
7452
|
+
subitem: string;
|
|
7453
|
+
};
|
|
7454
|
+
path: string[];
|
|
7455
|
+
};
|
|
7456
|
+
width: {
|
|
7457
|
+
value: string;
|
|
7458
|
+
filePath: string;
|
|
7459
|
+
isSource: boolean;
|
|
7460
|
+
original: {
|
|
7461
|
+
value: string;
|
|
7462
|
+
};
|
|
7463
|
+
name: string;
|
|
7464
|
+
attributes: {
|
|
7465
|
+
category: string;
|
|
7466
|
+
type: string;
|
|
7467
|
+
item: string;
|
|
7468
|
+
subitem: string;
|
|
7469
|
+
};
|
|
7470
|
+
path: string[];
|
|
7471
|
+
};
|
|
7472
|
+
};
|
|
7473
|
+
color: {
|
|
7474
|
+
background: {
|
|
7475
|
+
value: string;
|
|
7476
|
+
filePath: string;
|
|
7477
|
+
isSource: boolean;
|
|
7478
|
+
original: {
|
|
7479
|
+
value: string;
|
|
7480
|
+
};
|
|
7481
|
+
name: string;
|
|
7482
|
+
attributes: {
|
|
7483
|
+
category: string;
|
|
7484
|
+
type: string;
|
|
7485
|
+
item: string;
|
|
7486
|
+
subitem: string;
|
|
7487
|
+
};
|
|
7488
|
+
path: string[];
|
|
7489
|
+
};
|
|
7490
|
+
border: {
|
|
7491
|
+
value: string;
|
|
7492
|
+
filePath: string;
|
|
7493
|
+
isSource: boolean;
|
|
7494
|
+
original: {
|
|
7495
|
+
value: string;
|
|
7496
|
+
};
|
|
7497
|
+
name: string;
|
|
7498
|
+
attributes: {
|
|
7499
|
+
category: string;
|
|
7500
|
+
type: string;
|
|
7501
|
+
item: string;
|
|
7502
|
+
subitem: string;
|
|
7503
|
+
};
|
|
7504
|
+
path: string[];
|
|
7505
|
+
};
|
|
7506
|
+
};
|
|
7507
|
+
font: {
|
|
7508
|
+
size: {
|
|
7509
|
+
value: string;
|
|
7510
|
+
filePath: string;
|
|
7511
|
+
isSource: boolean;
|
|
7512
|
+
original: {
|
|
7513
|
+
value: string;
|
|
7514
|
+
};
|
|
7515
|
+
name: string;
|
|
7516
|
+
attributes: {
|
|
7517
|
+
category: string;
|
|
7518
|
+
type: string;
|
|
7519
|
+
item: string;
|
|
7520
|
+
subitem: string;
|
|
7521
|
+
};
|
|
7522
|
+
path: string[];
|
|
7523
|
+
};
|
|
7524
|
+
};
|
|
7525
|
+
"line-height": {
|
|
7526
|
+
value: string;
|
|
7527
|
+
filePath: string;
|
|
7528
|
+
isSource: boolean;
|
|
7529
|
+
original: {
|
|
7530
|
+
value: string;
|
|
7531
|
+
};
|
|
7532
|
+
name: string;
|
|
7533
|
+
attributes: {
|
|
7534
|
+
category: string;
|
|
7535
|
+
type: string;
|
|
7536
|
+
item: string;
|
|
7537
|
+
};
|
|
7538
|
+
path: string[];
|
|
7539
|
+
};
|
|
7540
|
+
padding: {
|
|
7541
|
+
value: string;
|
|
7542
|
+
filePath: string;
|
|
7543
|
+
isSource: boolean;
|
|
7544
|
+
original: {
|
|
7545
|
+
value: string;
|
|
7546
|
+
};
|
|
7547
|
+
name: string;
|
|
7548
|
+
attributes: {
|
|
7549
|
+
category: string;
|
|
7550
|
+
type: string;
|
|
7551
|
+
item: string;
|
|
7552
|
+
};
|
|
7553
|
+
path: string[];
|
|
7554
|
+
};
|
|
7555
|
+
};
|
|
7422
7556
|
modal: {
|
|
7423
7557
|
"background-color": {
|
|
7424
7558
|
value: string;
|
|
@@ -28410,6 +28544,140 @@ export declare const dictionary: Readonly<{
|
|
|
28410
28544
|
};
|
|
28411
28545
|
};
|
|
28412
28546
|
};
|
|
28547
|
+
matrix: {
|
|
28548
|
+
border: {
|
|
28549
|
+
radius: {
|
|
28550
|
+
value: string;
|
|
28551
|
+
filePath: string;
|
|
28552
|
+
isSource: boolean;
|
|
28553
|
+
original: {
|
|
28554
|
+
value: string;
|
|
28555
|
+
};
|
|
28556
|
+
name: string;
|
|
28557
|
+
attributes: {
|
|
28558
|
+
category: string;
|
|
28559
|
+
type: string;
|
|
28560
|
+
item: string;
|
|
28561
|
+
subitem: string;
|
|
28562
|
+
};
|
|
28563
|
+
path: string[];
|
|
28564
|
+
};
|
|
28565
|
+
style: {
|
|
28566
|
+
value: string;
|
|
28567
|
+
filePath: string;
|
|
28568
|
+
isSource: boolean;
|
|
28569
|
+
original: {
|
|
28570
|
+
value: string;
|
|
28571
|
+
};
|
|
28572
|
+
name: string;
|
|
28573
|
+
attributes: {
|
|
28574
|
+
category: string;
|
|
28575
|
+
type: string;
|
|
28576
|
+
item: string;
|
|
28577
|
+
subitem: string;
|
|
28578
|
+
};
|
|
28579
|
+
path: string[];
|
|
28580
|
+
};
|
|
28581
|
+
width: {
|
|
28582
|
+
value: string;
|
|
28583
|
+
filePath: string;
|
|
28584
|
+
isSource: boolean;
|
|
28585
|
+
original: {
|
|
28586
|
+
value: string;
|
|
28587
|
+
};
|
|
28588
|
+
name: string;
|
|
28589
|
+
attributes: {
|
|
28590
|
+
category: string;
|
|
28591
|
+
type: string;
|
|
28592
|
+
item: string;
|
|
28593
|
+
subitem: string;
|
|
28594
|
+
};
|
|
28595
|
+
path: string[];
|
|
28596
|
+
};
|
|
28597
|
+
};
|
|
28598
|
+
color: {
|
|
28599
|
+
background: {
|
|
28600
|
+
value: string;
|
|
28601
|
+
filePath: string;
|
|
28602
|
+
isSource: boolean;
|
|
28603
|
+
original: {
|
|
28604
|
+
value: string;
|
|
28605
|
+
};
|
|
28606
|
+
name: string;
|
|
28607
|
+
attributes: {
|
|
28608
|
+
category: string;
|
|
28609
|
+
type: string;
|
|
28610
|
+
item: string;
|
|
28611
|
+
subitem: string;
|
|
28612
|
+
};
|
|
28613
|
+
path: string[];
|
|
28614
|
+
};
|
|
28615
|
+
border: {
|
|
28616
|
+
value: string;
|
|
28617
|
+
filePath: string;
|
|
28618
|
+
isSource: boolean;
|
|
28619
|
+
original: {
|
|
28620
|
+
value: string;
|
|
28621
|
+
};
|
|
28622
|
+
name: string;
|
|
28623
|
+
attributes: {
|
|
28624
|
+
category: string;
|
|
28625
|
+
type: string;
|
|
28626
|
+
item: string;
|
|
28627
|
+
subitem: string;
|
|
28628
|
+
};
|
|
28629
|
+
path: string[];
|
|
28630
|
+
};
|
|
28631
|
+
};
|
|
28632
|
+
font: {
|
|
28633
|
+
size: {
|
|
28634
|
+
value: string;
|
|
28635
|
+
filePath: string;
|
|
28636
|
+
isSource: boolean;
|
|
28637
|
+
original: {
|
|
28638
|
+
value: string;
|
|
28639
|
+
};
|
|
28640
|
+
name: string;
|
|
28641
|
+
attributes: {
|
|
28642
|
+
category: string;
|
|
28643
|
+
type: string;
|
|
28644
|
+
item: string;
|
|
28645
|
+
subitem: string;
|
|
28646
|
+
};
|
|
28647
|
+
path: string[];
|
|
28648
|
+
};
|
|
28649
|
+
};
|
|
28650
|
+
"line-height": {
|
|
28651
|
+
value: string;
|
|
28652
|
+
filePath: string;
|
|
28653
|
+
isSource: boolean;
|
|
28654
|
+
original: {
|
|
28655
|
+
value: string;
|
|
28656
|
+
};
|
|
28657
|
+
name: string;
|
|
28658
|
+
attributes: {
|
|
28659
|
+
category: string;
|
|
28660
|
+
type: string;
|
|
28661
|
+
item: string;
|
|
28662
|
+
};
|
|
28663
|
+
path: string[];
|
|
28664
|
+
};
|
|
28665
|
+
padding: {
|
|
28666
|
+
value: string;
|
|
28667
|
+
filePath: string;
|
|
28668
|
+
isSource: boolean;
|
|
28669
|
+
original: {
|
|
28670
|
+
value: string;
|
|
28671
|
+
};
|
|
28672
|
+
name: string;
|
|
28673
|
+
attributes: {
|
|
28674
|
+
category: string;
|
|
28675
|
+
type: string;
|
|
28676
|
+
item: string;
|
|
28677
|
+
};
|
|
28678
|
+
path: string[];
|
|
28679
|
+
};
|
|
28680
|
+
};
|
|
28413
28681
|
modal: {
|
|
28414
28682
|
"background-color": {
|
|
28415
28683
|
value: string;
|
|
@@ -49401,6 +49669,140 @@ export declare const dictionary: Readonly<{
|
|
|
49401
49669
|
};
|
|
49402
49670
|
};
|
|
49403
49671
|
};
|
|
49672
|
+
matrix: {
|
|
49673
|
+
border: {
|
|
49674
|
+
radius: {
|
|
49675
|
+
value: string;
|
|
49676
|
+
filePath: string;
|
|
49677
|
+
isSource: boolean;
|
|
49678
|
+
original: {
|
|
49679
|
+
value: string;
|
|
49680
|
+
};
|
|
49681
|
+
name: string;
|
|
49682
|
+
attributes: {
|
|
49683
|
+
category: string;
|
|
49684
|
+
type: string;
|
|
49685
|
+
item: string;
|
|
49686
|
+
subitem: string;
|
|
49687
|
+
};
|
|
49688
|
+
path: string[];
|
|
49689
|
+
};
|
|
49690
|
+
style: {
|
|
49691
|
+
value: string;
|
|
49692
|
+
filePath: string;
|
|
49693
|
+
isSource: boolean;
|
|
49694
|
+
original: {
|
|
49695
|
+
value: string;
|
|
49696
|
+
};
|
|
49697
|
+
name: string;
|
|
49698
|
+
attributes: {
|
|
49699
|
+
category: string;
|
|
49700
|
+
type: string;
|
|
49701
|
+
item: string;
|
|
49702
|
+
subitem: string;
|
|
49703
|
+
};
|
|
49704
|
+
path: string[];
|
|
49705
|
+
};
|
|
49706
|
+
width: {
|
|
49707
|
+
value: string;
|
|
49708
|
+
filePath: string;
|
|
49709
|
+
isSource: boolean;
|
|
49710
|
+
original: {
|
|
49711
|
+
value: string;
|
|
49712
|
+
};
|
|
49713
|
+
name: string;
|
|
49714
|
+
attributes: {
|
|
49715
|
+
category: string;
|
|
49716
|
+
type: string;
|
|
49717
|
+
item: string;
|
|
49718
|
+
subitem: string;
|
|
49719
|
+
};
|
|
49720
|
+
path: string[];
|
|
49721
|
+
};
|
|
49722
|
+
};
|
|
49723
|
+
color: {
|
|
49724
|
+
background: {
|
|
49725
|
+
value: string;
|
|
49726
|
+
filePath: string;
|
|
49727
|
+
isSource: boolean;
|
|
49728
|
+
original: {
|
|
49729
|
+
value: string;
|
|
49730
|
+
};
|
|
49731
|
+
name: string;
|
|
49732
|
+
attributes: {
|
|
49733
|
+
category: string;
|
|
49734
|
+
type: string;
|
|
49735
|
+
item: string;
|
|
49736
|
+
subitem: string;
|
|
49737
|
+
};
|
|
49738
|
+
path: string[];
|
|
49739
|
+
};
|
|
49740
|
+
border: {
|
|
49741
|
+
value: string;
|
|
49742
|
+
filePath: string;
|
|
49743
|
+
isSource: boolean;
|
|
49744
|
+
original: {
|
|
49745
|
+
value: string;
|
|
49746
|
+
};
|
|
49747
|
+
name: string;
|
|
49748
|
+
attributes: {
|
|
49749
|
+
category: string;
|
|
49750
|
+
type: string;
|
|
49751
|
+
item: string;
|
|
49752
|
+
subitem: string;
|
|
49753
|
+
};
|
|
49754
|
+
path: string[];
|
|
49755
|
+
};
|
|
49756
|
+
};
|
|
49757
|
+
font: {
|
|
49758
|
+
size: {
|
|
49759
|
+
value: string;
|
|
49760
|
+
filePath: string;
|
|
49761
|
+
isSource: boolean;
|
|
49762
|
+
original: {
|
|
49763
|
+
value: string;
|
|
49764
|
+
};
|
|
49765
|
+
name: string;
|
|
49766
|
+
attributes: {
|
|
49767
|
+
category: string;
|
|
49768
|
+
type: string;
|
|
49769
|
+
item: string;
|
|
49770
|
+
subitem: string;
|
|
49771
|
+
};
|
|
49772
|
+
path: string[];
|
|
49773
|
+
};
|
|
49774
|
+
};
|
|
49775
|
+
"line-height": {
|
|
49776
|
+
value: string;
|
|
49777
|
+
filePath: string;
|
|
49778
|
+
isSource: boolean;
|
|
49779
|
+
original: {
|
|
49780
|
+
value: string;
|
|
49781
|
+
};
|
|
49782
|
+
name: string;
|
|
49783
|
+
attributes: {
|
|
49784
|
+
category: string;
|
|
49785
|
+
type: string;
|
|
49786
|
+
item: string;
|
|
49787
|
+
};
|
|
49788
|
+
path: string[];
|
|
49789
|
+
};
|
|
49790
|
+
padding: {
|
|
49791
|
+
value: string;
|
|
49792
|
+
filePath: string;
|
|
49793
|
+
isSource: boolean;
|
|
49794
|
+
original: {
|
|
49795
|
+
value: string;
|
|
49796
|
+
};
|
|
49797
|
+
name: string;
|
|
49798
|
+
attributes: {
|
|
49799
|
+
category: string;
|
|
49800
|
+
type: string;
|
|
49801
|
+
item: string;
|
|
49802
|
+
};
|
|
49803
|
+
path: string[];
|
|
49804
|
+
};
|
|
49805
|
+
};
|
|
49404
49806
|
modal: {
|
|
49405
49807
|
"background-color": {
|
|
49406
49808
|
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, 06 Sep 2024 19:06:06 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.
|
|
10
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/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.
|
|
12
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/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.
|
|
20
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/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.
|
|
22
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/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.
|
|
30
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/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.
|
|
32
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/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.
|
|
40
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/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.
|
|
42
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/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.
|
|
50
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/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.
|
|
52
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/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.
|
|
60
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/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.
|
|
62
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/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.
|
|
70
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/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.
|
|
72
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/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.
|
|
80
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/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.
|
|
82
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/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.
|
|
90
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/assets/fonts/icomoon-sps-icons.svg")
|
|
91
91
|
format("svg"),
|
|
92
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.
|
|
92
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/assets/fonts/icomoon-sps-icons.truetype")
|
|
93
93
|
format("undefined"),
|
|
94
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.
|
|
94
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/assets/fonts/icomoon-sps-icons.woff")
|
|
95
95
|
format("woff"),
|
|
96
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.
|
|
96
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.18.0/assets/fonts/icomoon-sps-icons.woff2")
|
|
97
97
|
format("woff2");
|
|
98
98
|
font-display: fallback;
|
|
99
99
|
}
|