@sps-woodland/tokens 8.4.1 → 8.4.3
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 +10 -2
- package/lib/css/utils.css +34 -1
- package/lib/dictionary.d.ts +472 -0
- package/lib/font.css +21 -21
- package/lib/index.cjs.js +1 -1
- package/lib/index.es.js +96 -83
- package/lib/scss/tokens.scss +10 -2
- package/lib/scss/utils.scss +34 -1
- package/lib/tokens.d.ts +20 -0
- package/lib/vanilla-extract/border.css.d.ts +1 -0
- package/lib/vanilla-extract/properties/border.css.d.ts +40 -0
- package/lib/vanilla-extract/properties/color.css.d.ts +16 -0
- package/lib/vanilla-extract/sprinkleValues.d.ts +20 -0
- package/lib/vanilla-extract/sprinkles.css.d.ts +65 -65
- package/lib/vanilla-extract/style.css +1 -1
- package/package.json +1 -1
- package/src/dictionary.ts +557 -10
- package/src/tokens.ts +14 -1
- 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 Wed, 27 Mar 2024 17:42:52 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
--color-yellow-light: #000000;
|
|
44
44
|
--color-yellow-medium: #000000;
|
|
45
45
|
--color-white: #000000;
|
|
46
|
+
--color-white-80: oklch(100% 0 0 / 0.8);
|
|
46
47
|
--color-black: #000000;
|
|
47
48
|
--color-none: rgba(0, 0, 0, 0);
|
|
48
49
|
--component-action-bar-background-color: #000000;
|
|
@@ -698,7 +699,7 @@
|
|
|
698
699
|
--component-spinner-color-secondary: #000000;
|
|
699
700
|
--component-spinner-color-white: #000000;
|
|
700
701
|
--component-spinner-light-color-primary: #000000;
|
|
701
|
-
--component-spinner-light-color-secondary:
|
|
702
|
+
--component-spinner-light-color-secondary: oklch(100% 0 0 / 0.8);
|
|
702
703
|
--component-spinner-sm-dimension: 1.125rem;
|
|
703
704
|
--component-spinner-sm-thickness: 0.125rem;
|
|
704
705
|
--component-spinner-md-dimension: 2.25rem;
|
|
@@ -882,6 +883,7 @@
|
|
|
882
883
|
--icon-file-character: \e93b;
|
|
883
884
|
--icon-filter-character: \e93c;
|
|
884
885
|
--icon-flag-character: \e93d;
|
|
886
|
+
--icon-flag-outline-character: \e9bb;
|
|
885
887
|
--icon-folder-open-character: \e93e;
|
|
886
888
|
--icon-folder-solid-open-character: \e93f;
|
|
887
889
|
--icon-folder-solid-character: \e940;
|
|
@@ -894,6 +896,7 @@
|
|
|
894
896
|
--icon-handshake-character: \e947;
|
|
895
897
|
--icon-hat-character: \e948;
|
|
896
898
|
--icon-heart-character: \e949;
|
|
899
|
+
--icon-heart-outline-character: \e9b9;
|
|
897
900
|
--icon-history-character: \e94a;
|
|
898
901
|
--icon-inbox-character: \e94b;
|
|
899
902
|
--icon-incoming-character: \e94c;
|
|
@@ -920,6 +923,8 @@
|
|
|
920
923
|
--icon-map-marker-character: \e95c;
|
|
921
924
|
--icon-map-character: \e95d;
|
|
922
925
|
--icon-maximize-character: \e95e;
|
|
926
|
+
--icon-microphone-off-character: \e9b7;
|
|
927
|
+
--icon-microphone-on-character: \e9b8;
|
|
923
928
|
--icon-minimize-character: \e95f;
|
|
924
929
|
--icon-minus-circle-character: \e960;
|
|
925
930
|
--icon-minus-character: \e961;
|
|
@@ -992,6 +997,7 @@
|
|
|
992
997
|
--icon-bell-filled-character: \e9a1;
|
|
993
998
|
--icon-nested-list-character: \e9a2;
|
|
994
999
|
--icon-pin-character: \e9a3;
|
|
1000
|
+
--icon-pin-outline-character: \e9bc;
|
|
995
1001
|
--icon-user-impersonation-character: \e9a4;
|
|
996
1002
|
--icon-volume-full-character: \e9b6;
|
|
997
1003
|
--icon-volume-low-character: \e9b3;
|
|
@@ -1019,6 +1025,8 @@
|
|
|
1019
1025
|
--icon-status-on-hold-color: #000000;
|
|
1020
1026
|
--icon-status-outdated-character: \e988;
|
|
1021
1027
|
--icon-status-outdated-color: #000000;
|
|
1028
|
+
--icon-status-preview-character: \e9ba;
|
|
1029
|
+
--icon-status-preview-color: #000000;
|
|
1022
1030
|
--icon-status-rejected-character: \e989;
|
|
1023
1031
|
--icon-status-rejected-color: #000000;
|
|
1024
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 Wed, 27 Mar 2024 17:42:53 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
.red-light {
|
|
@@ -322,6 +322,17 @@
|
|
|
322
322
|
border-style: solid;
|
|
323
323
|
border-width: var(--size-border-width-standard);
|
|
324
324
|
}
|
|
325
|
+
.white-80 {
|
|
326
|
+
color: var(--color-white-80) !important;
|
|
327
|
+
}
|
|
328
|
+
.bg-white-80 {
|
|
329
|
+
background-color: var(--color-white-80) !important;
|
|
330
|
+
}
|
|
331
|
+
.border-white-80 {
|
|
332
|
+
border-color: var(--color-white-80) !important;
|
|
333
|
+
border-style: solid;
|
|
334
|
+
border-width: var(--size-border-width-standard);
|
|
335
|
+
}
|
|
325
336
|
.black {
|
|
326
337
|
color: var(--color-black) !important;
|
|
327
338
|
}
|
|
@@ -584,6 +595,9 @@
|
|
|
584
595
|
.icon-flag::before {
|
|
585
596
|
content: var(--icon-flag-character) !important;
|
|
586
597
|
}
|
|
598
|
+
.icon-flag-outline::before {
|
|
599
|
+
content: var(--icon-flag-outline-character) !important;
|
|
600
|
+
}
|
|
587
601
|
.icon-folder-open::before {
|
|
588
602
|
content: var(--icon-folder-open-character) !important;
|
|
589
603
|
}
|
|
@@ -620,6 +634,9 @@
|
|
|
620
634
|
.icon-heart::before {
|
|
621
635
|
content: var(--icon-heart-character) !important;
|
|
622
636
|
}
|
|
637
|
+
.icon-heart-outline::before {
|
|
638
|
+
content: var(--icon-heart-outline-character) !important;
|
|
639
|
+
}
|
|
623
640
|
.icon-history::before {
|
|
624
641
|
content: var(--icon-history-character) !important;
|
|
625
642
|
}
|
|
@@ -698,6 +715,12 @@
|
|
|
698
715
|
.icon-maximize::before {
|
|
699
716
|
content: var(--icon-maximize-character) !important;
|
|
700
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
|
+
}
|
|
701
724
|
.icon-minimize::before {
|
|
702
725
|
content: var(--icon-minimize-character) !important;
|
|
703
726
|
}
|
|
@@ -914,6 +937,9 @@
|
|
|
914
937
|
.icon-pin::before {
|
|
915
938
|
content: var(--icon-pin-character) !important;
|
|
916
939
|
}
|
|
940
|
+
.icon-pin-outline::before {
|
|
941
|
+
content: var(--icon-pin-outline-character) !important;
|
|
942
|
+
}
|
|
917
943
|
.icon-user-impersonation::before {
|
|
918
944
|
content: var(--icon-user-impersonation-character) !important;
|
|
919
945
|
}
|
|
@@ -1005,6 +1031,13 @@
|
|
|
1005
1031
|
content: var(--icon-status-outdated-character) !important;
|
|
1006
1032
|
}
|
|
1007
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
|
+
|
|
1008
1041
|
.icon-status-rejected {
|
|
1009
1042
|
color: var(--icon-status-rejected-color) !important;
|
|
1010
1043
|
}
|