@sps-woodland/tokens 8.4.2 → 8.4.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 -1
- package/lib/css/utils.css +23 -1
- package/lib/dictionary.d.ts +351 -0
- package/lib/font.css +21 -21
- package/lib/index.cjs.js +1 -1
- package/lib/index.es.js +89 -80
- package/lib/scss/tokens.scss +8 -1
- package/lib/scss/utils.scss +23 -1
- package/lib/tokens.d.ts +19 -0
- package/lib/vanilla-extract/sprinkleValues.d.ts +19 -0
- package/package.json +1 -1
- package/src/dictionary.ts +467 -0
- package/src/tokens.ts +9 -0
- package/src/vanilla-extract/sprinkleValues.ts +9 -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 Thu, 28 Mar 2024 15:13:51 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -883,6 +883,7 @@
|
|
|
883
883
|
--icon-file-character: \e93b;
|
|
884
884
|
--icon-filter-character: \e93c;
|
|
885
885
|
--icon-flag-character: \e93d;
|
|
886
|
+
--icon-flag-outline-character: \e9bb;
|
|
886
887
|
--icon-folder-open-character: \e93e;
|
|
887
888
|
--icon-folder-solid-open-character: \e93f;
|
|
888
889
|
--icon-folder-solid-character: \e940;
|
|
@@ -895,6 +896,7 @@
|
|
|
895
896
|
--icon-handshake-character: \e947;
|
|
896
897
|
--icon-hat-character: \e948;
|
|
897
898
|
--icon-heart-character: \e949;
|
|
899
|
+
--icon-heart-outline-character: \e9b9;
|
|
898
900
|
--icon-history-character: \e94a;
|
|
899
901
|
--icon-inbox-character: \e94b;
|
|
900
902
|
--icon-incoming-character: \e94c;
|
|
@@ -921,6 +923,8 @@
|
|
|
921
923
|
--icon-map-marker-character: \e95c;
|
|
922
924
|
--icon-map-character: \e95d;
|
|
923
925
|
--icon-maximize-character: \e95e;
|
|
926
|
+
--icon-microphone-off-character: \e9b7;
|
|
927
|
+
--icon-microphone-on-character: \e9b8;
|
|
924
928
|
--icon-minimize-character: \e95f;
|
|
925
929
|
--icon-minus-circle-character: \e960;
|
|
926
930
|
--icon-minus-character: \e961;
|
|
@@ -993,6 +997,7 @@
|
|
|
993
997
|
--icon-bell-filled-character: \e9a1;
|
|
994
998
|
--icon-nested-list-character: \e9a2;
|
|
995
999
|
--icon-pin-character: \e9a3;
|
|
1000
|
+
--icon-pin-outline-character: \e9bc;
|
|
996
1001
|
--icon-user-impersonation-character: \e9a4;
|
|
997
1002
|
--icon-volume-full-character: \e9b6;
|
|
998
1003
|
--icon-volume-low-character: \e9b3;
|
|
@@ -1020,6 +1025,8 @@
|
|
|
1020
1025
|
--icon-status-on-hold-color: #000000;
|
|
1021
1026
|
--icon-status-outdated-character: \e988;
|
|
1022
1027
|
--icon-status-outdated-color: #000000;
|
|
1028
|
+
--icon-status-preview-character: \e9ba;
|
|
1029
|
+
--icon-status-preview-color: #000000;
|
|
1023
1030
|
--icon-status-rejected-character: \e989;
|
|
1024
1031
|
--icon-status-rejected-color: #000000;
|
|
1025
1032
|
--icon-status-saved-character: \e98b;
|
package/lib/css/utils.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 28 Mar 2024 15:13:51 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
.red-light {
|
|
@@ -595,6 +595,9 @@
|
|
|
595
595
|
.icon-flag::before {
|
|
596
596
|
content: var(--icon-flag-character) !important;
|
|
597
597
|
}
|
|
598
|
+
.icon-flag-outline::before {
|
|
599
|
+
content: var(--icon-flag-outline-character) !important;
|
|
600
|
+
}
|
|
598
601
|
.icon-folder-open::before {
|
|
599
602
|
content: var(--icon-folder-open-character) !important;
|
|
600
603
|
}
|
|
@@ -631,6 +634,9 @@
|
|
|
631
634
|
.icon-heart::before {
|
|
632
635
|
content: var(--icon-heart-character) !important;
|
|
633
636
|
}
|
|
637
|
+
.icon-heart-outline::before {
|
|
638
|
+
content: var(--icon-heart-outline-character) !important;
|
|
639
|
+
}
|
|
634
640
|
.icon-history::before {
|
|
635
641
|
content: var(--icon-history-character) !important;
|
|
636
642
|
}
|
|
@@ -709,6 +715,12 @@
|
|
|
709
715
|
.icon-maximize::before {
|
|
710
716
|
content: var(--icon-maximize-character) !important;
|
|
711
717
|
}
|
|
718
|
+
.icon-microphone-off::before {
|
|
719
|
+
content: var(--icon-microphone-off-character) !important;
|
|
720
|
+
}
|
|
721
|
+
.icon-microphone-on::before {
|
|
722
|
+
content: var(--icon-microphone-on-character) !important;
|
|
723
|
+
}
|
|
712
724
|
.icon-minimize::before {
|
|
713
725
|
content: var(--icon-minimize-character) !important;
|
|
714
726
|
}
|
|
@@ -925,6 +937,9 @@
|
|
|
925
937
|
.icon-pin::before {
|
|
926
938
|
content: var(--icon-pin-character) !important;
|
|
927
939
|
}
|
|
940
|
+
.icon-pin-outline::before {
|
|
941
|
+
content: var(--icon-pin-outline-character) !important;
|
|
942
|
+
}
|
|
928
943
|
.icon-user-impersonation::before {
|
|
929
944
|
content: var(--icon-user-impersonation-character) !important;
|
|
930
945
|
}
|
|
@@ -1016,6 +1031,13 @@
|
|
|
1016
1031
|
content: var(--icon-status-outdated-character) !important;
|
|
1017
1032
|
}
|
|
1018
1033
|
|
|
1034
|
+
.icon-status-preview {
|
|
1035
|
+
color: var(--icon-status-preview-color) !important;
|
|
1036
|
+
}
|
|
1037
|
+
.icon-status-preview::before {
|
|
1038
|
+
content: var(--icon-status-preview-character) !important;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1019
1041
|
.icon-status-rejected {
|
|
1020
1042
|
color: var(--icon-status-rejected-color) !important;
|
|
1021
1043
|
}
|
package/lib/dictionary.d.ts
CHANGED
|
@@ -14941,6 +14941,23 @@ export declare const dictionary: Readonly<{
|
|
|
14941
14941
|
path: string[];
|
|
14942
14942
|
};
|
|
14943
14943
|
};
|
|
14944
|
+
"flag-outline": {
|
|
14945
|
+
character: {
|
|
14946
|
+
value: string;
|
|
14947
|
+
filePath: string;
|
|
14948
|
+
isSource: boolean;
|
|
14949
|
+
original: {
|
|
14950
|
+
value: string;
|
|
14951
|
+
};
|
|
14952
|
+
name: string;
|
|
14953
|
+
attributes: {
|
|
14954
|
+
category: string;
|
|
14955
|
+
type: string;
|
|
14956
|
+
item: string;
|
|
14957
|
+
};
|
|
14958
|
+
path: string[];
|
|
14959
|
+
};
|
|
14960
|
+
};
|
|
14944
14961
|
"folder-open": {
|
|
14945
14962
|
character: {
|
|
14946
14963
|
value: string;
|
|
@@ -15145,6 +15162,23 @@ export declare const dictionary: Readonly<{
|
|
|
15145
15162
|
path: string[];
|
|
15146
15163
|
};
|
|
15147
15164
|
};
|
|
15165
|
+
"heart-outline": {
|
|
15166
|
+
character: {
|
|
15167
|
+
value: string;
|
|
15168
|
+
filePath: string;
|
|
15169
|
+
isSource: boolean;
|
|
15170
|
+
original: {
|
|
15171
|
+
value: string;
|
|
15172
|
+
};
|
|
15173
|
+
name: string;
|
|
15174
|
+
attributes: {
|
|
15175
|
+
category: string;
|
|
15176
|
+
type: string;
|
|
15177
|
+
item: string;
|
|
15178
|
+
};
|
|
15179
|
+
path: string[];
|
|
15180
|
+
};
|
|
15181
|
+
};
|
|
15148
15182
|
history: {
|
|
15149
15183
|
character: {
|
|
15150
15184
|
value: string;
|
|
@@ -15587,6 +15621,40 @@ export declare const dictionary: Readonly<{
|
|
|
15587
15621
|
path: string[];
|
|
15588
15622
|
};
|
|
15589
15623
|
};
|
|
15624
|
+
"microphone-off": {
|
|
15625
|
+
character: {
|
|
15626
|
+
value: string;
|
|
15627
|
+
filePath: string;
|
|
15628
|
+
isSource: boolean;
|
|
15629
|
+
original: {
|
|
15630
|
+
value: string;
|
|
15631
|
+
};
|
|
15632
|
+
name: string;
|
|
15633
|
+
attributes: {
|
|
15634
|
+
category: string;
|
|
15635
|
+
type: string;
|
|
15636
|
+
item: string;
|
|
15637
|
+
};
|
|
15638
|
+
path: string[];
|
|
15639
|
+
};
|
|
15640
|
+
};
|
|
15641
|
+
"microphone-on": {
|
|
15642
|
+
character: {
|
|
15643
|
+
value: string;
|
|
15644
|
+
filePath: string;
|
|
15645
|
+
isSource: boolean;
|
|
15646
|
+
original: {
|
|
15647
|
+
value: string;
|
|
15648
|
+
};
|
|
15649
|
+
name: string;
|
|
15650
|
+
attributes: {
|
|
15651
|
+
category: string;
|
|
15652
|
+
type: string;
|
|
15653
|
+
item: string;
|
|
15654
|
+
};
|
|
15655
|
+
path: string[];
|
|
15656
|
+
};
|
|
15657
|
+
};
|
|
15590
15658
|
minimize: {
|
|
15591
15659
|
character: {
|
|
15592
15660
|
value: string;
|
|
@@ -16811,6 +16879,23 @@ export declare const dictionary: Readonly<{
|
|
|
16811
16879
|
path: string[];
|
|
16812
16880
|
};
|
|
16813
16881
|
};
|
|
16882
|
+
"pin-outline": {
|
|
16883
|
+
character: {
|
|
16884
|
+
value: string;
|
|
16885
|
+
filePath: string;
|
|
16886
|
+
isSource: boolean;
|
|
16887
|
+
original: {
|
|
16888
|
+
value: string;
|
|
16889
|
+
};
|
|
16890
|
+
name: string;
|
|
16891
|
+
attributes: {
|
|
16892
|
+
category: string;
|
|
16893
|
+
type: string;
|
|
16894
|
+
item: string;
|
|
16895
|
+
};
|
|
16896
|
+
path: string[];
|
|
16897
|
+
};
|
|
16898
|
+
};
|
|
16814
16899
|
"user-impersonation": {
|
|
16815
16900
|
character: {
|
|
16816
16901
|
value: string;
|
|
@@ -17250,6 +17335,38 @@ export declare const dictionary: Readonly<{
|
|
|
17250
17335
|
path: string[];
|
|
17251
17336
|
};
|
|
17252
17337
|
};
|
|
17338
|
+
"status-preview": {
|
|
17339
|
+
character: {
|
|
17340
|
+
value: string;
|
|
17341
|
+
filePath: string;
|
|
17342
|
+
isSource: boolean;
|
|
17343
|
+
original: {
|
|
17344
|
+
value: string;
|
|
17345
|
+
};
|
|
17346
|
+
name: string;
|
|
17347
|
+
attributes: {
|
|
17348
|
+
category: string;
|
|
17349
|
+
type: string;
|
|
17350
|
+
item: string;
|
|
17351
|
+
};
|
|
17352
|
+
path: string[];
|
|
17353
|
+
};
|
|
17354
|
+
color: {
|
|
17355
|
+
value: string;
|
|
17356
|
+
filePath: string;
|
|
17357
|
+
isSource: boolean;
|
|
17358
|
+
original: {
|
|
17359
|
+
value: string;
|
|
17360
|
+
};
|
|
17361
|
+
name: string;
|
|
17362
|
+
attributes: {
|
|
17363
|
+
category: string;
|
|
17364
|
+
type: string;
|
|
17365
|
+
item: string;
|
|
17366
|
+
};
|
|
17367
|
+
path: string[];
|
|
17368
|
+
};
|
|
17369
|
+
};
|
|
17253
17370
|
"status-rejected": {
|
|
17254
17371
|
character: {
|
|
17255
17372
|
value: string;
|
|
@@ -35464,6 +35581,23 @@ export declare const dictionary: Readonly<{
|
|
|
35464
35581
|
path: string[];
|
|
35465
35582
|
};
|
|
35466
35583
|
};
|
|
35584
|
+
"flag-outline": {
|
|
35585
|
+
character: {
|
|
35586
|
+
value: string;
|
|
35587
|
+
filePath: string;
|
|
35588
|
+
isSource: boolean;
|
|
35589
|
+
original: {
|
|
35590
|
+
value: string;
|
|
35591
|
+
};
|
|
35592
|
+
name: string;
|
|
35593
|
+
attributes: {
|
|
35594
|
+
category: string;
|
|
35595
|
+
type: string;
|
|
35596
|
+
item: string;
|
|
35597
|
+
};
|
|
35598
|
+
path: string[];
|
|
35599
|
+
};
|
|
35600
|
+
};
|
|
35467
35601
|
"folder-open": {
|
|
35468
35602
|
character: {
|
|
35469
35603
|
value: string;
|
|
@@ -35668,6 +35802,23 @@ export declare const dictionary: Readonly<{
|
|
|
35668
35802
|
path: string[];
|
|
35669
35803
|
};
|
|
35670
35804
|
};
|
|
35805
|
+
"heart-outline": {
|
|
35806
|
+
character: {
|
|
35807
|
+
value: string;
|
|
35808
|
+
filePath: string;
|
|
35809
|
+
isSource: boolean;
|
|
35810
|
+
original: {
|
|
35811
|
+
value: string;
|
|
35812
|
+
};
|
|
35813
|
+
name: string;
|
|
35814
|
+
attributes: {
|
|
35815
|
+
category: string;
|
|
35816
|
+
type: string;
|
|
35817
|
+
item: string;
|
|
35818
|
+
};
|
|
35819
|
+
path: string[];
|
|
35820
|
+
};
|
|
35821
|
+
};
|
|
35671
35822
|
history: {
|
|
35672
35823
|
character: {
|
|
35673
35824
|
value: string;
|
|
@@ -36110,6 +36261,40 @@ export declare const dictionary: Readonly<{
|
|
|
36110
36261
|
path: string[];
|
|
36111
36262
|
};
|
|
36112
36263
|
};
|
|
36264
|
+
"microphone-off": {
|
|
36265
|
+
character: {
|
|
36266
|
+
value: string;
|
|
36267
|
+
filePath: string;
|
|
36268
|
+
isSource: boolean;
|
|
36269
|
+
original: {
|
|
36270
|
+
value: string;
|
|
36271
|
+
};
|
|
36272
|
+
name: string;
|
|
36273
|
+
attributes: {
|
|
36274
|
+
category: string;
|
|
36275
|
+
type: string;
|
|
36276
|
+
item: string;
|
|
36277
|
+
};
|
|
36278
|
+
path: string[];
|
|
36279
|
+
};
|
|
36280
|
+
};
|
|
36281
|
+
"microphone-on": {
|
|
36282
|
+
character: {
|
|
36283
|
+
value: string;
|
|
36284
|
+
filePath: string;
|
|
36285
|
+
isSource: boolean;
|
|
36286
|
+
original: {
|
|
36287
|
+
value: string;
|
|
36288
|
+
};
|
|
36289
|
+
name: string;
|
|
36290
|
+
attributes: {
|
|
36291
|
+
category: string;
|
|
36292
|
+
type: string;
|
|
36293
|
+
item: string;
|
|
36294
|
+
};
|
|
36295
|
+
path: string[];
|
|
36296
|
+
};
|
|
36297
|
+
};
|
|
36113
36298
|
minimize: {
|
|
36114
36299
|
character: {
|
|
36115
36300
|
value: string;
|
|
@@ -37334,6 +37519,23 @@ export declare const dictionary: Readonly<{
|
|
|
37334
37519
|
path: string[];
|
|
37335
37520
|
};
|
|
37336
37521
|
};
|
|
37522
|
+
"pin-outline": {
|
|
37523
|
+
character: {
|
|
37524
|
+
value: string;
|
|
37525
|
+
filePath: string;
|
|
37526
|
+
isSource: boolean;
|
|
37527
|
+
original: {
|
|
37528
|
+
value: string;
|
|
37529
|
+
};
|
|
37530
|
+
name: string;
|
|
37531
|
+
attributes: {
|
|
37532
|
+
category: string;
|
|
37533
|
+
type: string;
|
|
37534
|
+
item: string;
|
|
37535
|
+
};
|
|
37536
|
+
path: string[];
|
|
37537
|
+
};
|
|
37538
|
+
};
|
|
37337
37539
|
"user-impersonation": {
|
|
37338
37540
|
character: {
|
|
37339
37541
|
value: string;
|
|
@@ -37773,6 +37975,38 @@ export declare const dictionary: Readonly<{
|
|
|
37773
37975
|
path: string[];
|
|
37774
37976
|
};
|
|
37775
37977
|
};
|
|
37978
|
+
"status-preview": {
|
|
37979
|
+
character: {
|
|
37980
|
+
value: string;
|
|
37981
|
+
filePath: string;
|
|
37982
|
+
isSource: boolean;
|
|
37983
|
+
original: {
|
|
37984
|
+
value: string;
|
|
37985
|
+
};
|
|
37986
|
+
name: string;
|
|
37987
|
+
attributes: {
|
|
37988
|
+
category: string;
|
|
37989
|
+
type: string;
|
|
37990
|
+
item: string;
|
|
37991
|
+
};
|
|
37992
|
+
path: string[];
|
|
37993
|
+
};
|
|
37994
|
+
color: {
|
|
37995
|
+
value: string;
|
|
37996
|
+
filePath: string;
|
|
37997
|
+
isSource: boolean;
|
|
37998
|
+
original: {
|
|
37999
|
+
value: string;
|
|
38000
|
+
};
|
|
38001
|
+
name: string;
|
|
38002
|
+
attributes: {
|
|
38003
|
+
category: string;
|
|
38004
|
+
type: string;
|
|
38005
|
+
item: string;
|
|
38006
|
+
};
|
|
38007
|
+
path: string[];
|
|
38008
|
+
};
|
|
38009
|
+
};
|
|
37776
38010
|
"status-rejected": {
|
|
37777
38011
|
character: {
|
|
37778
38012
|
value: string;
|
|
@@ -55987,6 +56221,23 @@ export declare const dictionary: Readonly<{
|
|
|
55987
56221
|
path: string[];
|
|
55988
56222
|
};
|
|
55989
56223
|
};
|
|
56224
|
+
"flag-outline": {
|
|
56225
|
+
character: {
|
|
56226
|
+
value: string;
|
|
56227
|
+
filePath: string;
|
|
56228
|
+
isSource: boolean;
|
|
56229
|
+
original: {
|
|
56230
|
+
value: string;
|
|
56231
|
+
};
|
|
56232
|
+
name: string;
|
|
56233
|
+
attributes: {
|
|
56234
|
+
category: string;
|
|
56235
|
+
type: string;
|
|
56236
|
+
item: string;
|
|
56237
|
+
};
|
|
56238
|
+
path: string[];
|
|
56239
|
+
};
|
|
56240
|
+
};
|
|
55990
56241
|
"folder-open": {
|
|
55991
56242
|
character: {
|
|
55992
56243
|
value: string;
|
|
@@ -56191,6 +56442,23 @@ export declare const dictionary: Readonly<{
|
|
|
56191
56442
|
path: string[];
|
|
56192
56443
|
};
|
|
56193
56444
|
};
|
|
56445
|
+
"heart-outline": {
|
|
56446
|
+
character: {
|
|
56447
|
+
value: string;
|
|
56448
|
+
filePath: string;
|
|
56449
|
+
isSource: boolean;
|
|
56450
|
+
original: {
|
|
56451
|
+
value: string;
|
|
56452
|
+
};
|
|
56453
|
+
name: string;
|
|
56454
|
+
attributes: {
|
|
56455
|
+
category: string;
|
|
56456
|
+
type: string;
|
|
56457
|
+
item: string;
|
|
56458
|
+
};
|
|
56459
|
+
path: string[];
|
|
56460
|
+
};
|
|
56461
|
+
};
|
|
56194
56462
|
history: {
|
|
56195
56463
|
character: {
|
|
56196
56464
|
value: string;
|
|
@@ -56633,6 +56901,40 @@ export declare const dictionary: Readonly<{
|
|
|
56633
56901
|
path: string[];
|
|
56634
56902
|
};
|
|
56635
56903
|
};
|
|
56904
|
+
"microphone-off": {
|
|
56905
|
+
character: {
|
|
56906
|
+
value: string;
|
|
56907
|
+
filePath: string;
|
|
56908
|
+
isSource: boolean;
|
|
56909
|
+
original: {
|
|
56910
|
+
value: string;
|
|
56911
|
+
};
|
|
56912
|
+
name: string;
|
|
56913
|
+
attributes: {
|
|
56914
|
+
category: string;
|
|
56915
|
+
type: string;
|
|
56916
|
+
item: string;
|
|
56917
|
+
};
|
|
56918
|
+
path: string[];
|
|
56919
|
+
};
|
|
56920
|
+
};
|
|
56921
|
+
"microphone-on": {
|
|
56922
|
+
character: {
|
|
56923
|
+
value: string;
|
|
56924
|
+
filePath: string;
|
|
56925
|
+
isSource: boolean;
|
|
56926
|
+
original: {
|
|
56927
|
+
value: string;
|
|
56928
|
+
};
|
|
56929
|
+
name: string;
|
|
56930
|
+
attributes: {
|
|
56931
|
+
category: string;
|
|
56932
|
+
type: string;
|
|
56933
|
+
item: string;
|
|
56934
|
+
};
|
|
56935
|
+
path: string[];
|
|
56936
|
+
};
|
|
56937
|
+
};
|
|
56636
56938
|
minimize: {
|
|
56637
56939
|
character: {
|
|
56638
56940
|
value: string;
|
|
@@ -57857,6 +58159,23 @@ export declare const dictionary: Readonly<{
|
|
|
57857
58159
|
path: string[];
|
|
57858
58160
|
};
|
|
57859
58161
|
};
|
|
58162
|
+
"pin-outline": {
|
|
58163
|
+
character: {
|
|
58164
|
+
value: string;
|
|
58165
|
+
filePath: string;
|
|
58166
|
+
isSource: boolean;
|
|
58167
|
+
original: {
|
|
58168
|
+
value: string;
|
|
58169
|
+
};
|
|
58170
|
+
name: string;
|
|
58171
|
+
attributes: {
|
|
58172
|
+
category: string;
|
|
58173
|
+
type: string;
|
|
58174
|
+
item: string;
|
|
58175
|
+
};
|
|
58176
|
+
path: string[];
|
|
58177
|
+
};
|
|
58178
|
+
};
|
|
57860
58179
|
"user-impersonation": {
|
|
57861
58180
|
character: {
|
|
57862
58181
|
value: string;
|
|
@@ -58296,6 +58615,38 @@ export declare const dictionary: Readonly<{
|
|
|
58296
58615
|
path: string[];
|
|
58297
58616
|
};
|
|
58298
58617
|
};
|
|
58618
|
+
"status-preview": {
|
|
58619
|
+
character: {
|
|
58620
|
+
value: string;
|
|
58621
|
+
filePath: string;
|
|
58622
|
+
isSource: boolean;
|
|
58623
|
+
original: {
|
|
58624
|
+
value: string;
|
|
58625
|
+
};
|
|
58626
|
+
name: string;
|
|
58627
|
+
attributes: {
|
|
58628
|
+
category: string;
|
|
58629
|
+
type: string;
|
|
58630
|
+
item: string;
|
|
58631
|
+
};
|
|
58632
|
+
path: string[];
|
|
58633
|
+
};
|
|
58634
|
+
color: {
|
|
58635
|
+
value: string;
|
|
58636
|
+
filePath: string;
|
|
58637
|
+
isSource: boolean;
|
|
58638
|
+
original: {
|
|
58639
|
+
value: string;
|
|
58640
|
+
};
|
|
58641
|
+
name: string;
|
|
58642
|
+
attributes: {
|
|
58643
|
+
category: string;
|
|
58644
|
+
type: string;
|
|
58645
|
+
item: string;
|
|
58646
|
+
};
|
|
58647
|
+
path: string[];
|
|
58648
|
+
};
|
|
58649
|
+
};
|
|
58299
58650
|
"status-rejected": {
|
|
58300
58651
|
character: {
|
|
58301
58652
|
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 Thu, 28 Mar 2024 15:13:50 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.4.
|
|
10
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.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/8.4.
|
|
12
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.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/8.4.
|
|
20
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.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/8.4.
|
|
22
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.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/8.4.
|
|
30
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.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/8.4.
|
|
32
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.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/8.4.
|
|
40
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.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/8.4.
|
|
42
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.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/8.4.
|
|
50
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.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/8.4.
|
|
52
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.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/8.4.
|
|
60
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.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/8.4.
|
|
62
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.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/8.4.
|
|
70
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.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/8.4.
|
|
72
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.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/8.4.
|
|
80
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.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/8.4.
|
|
82
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.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/8.4.
|
|
90
|
+
src: url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.4/assets/fonts/icomoon-sps-icons.svg")
|
|
91
91
|
format("svg"),
|
|
92
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
92
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.4/assets/fonts/icomoon-sps-icons.truetype")
|
|
93
93
|
format("undefined"),
|
|
94
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
94
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.4/assets/fonts/icomoon-sps-icons.woff")
|
|
95
95
|
format("woff"),
|
|
96
|
-
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.
|
|
96
|
+
url("https://cdn.dev.spsc.io/web/framework/design-system/ds/8.4.4/assets/fonts/icomoon-sps-icons.woff2")
|
|
97
97
|
format("woff2");
|
|
98
98
|
font-display: fallback;
|
|
99
99
|
}
|