@pantheon-systems/pds-design-tokens 2.0.0-alpha.1 → 2.0.0-alpha.10
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/README.md +111 -12
- package/build/css/breakpoints.css +13 -0
- package/build/css/variables.compact.css +14 -14
- package/build/css/variables.expanded.css +7 -7
- package/build/css/variables.global.css +39 -12
- package/build/figma/tokens.json +1062 -105
- package/build/js/variables.compact.d.ts +34 -0
- package/build/js/variables.compact.js +34 -0
- package/build/js/variables.expanded.d.ts +34 -0
- package/build/js/variables.expanded.js +34 -0
- package/build/js/variables.global.d.ts +138 -0
- package/build/js/{variables.js → variables.global.js} +60 -31
- package/build/json/tokens.json +684 -144
- package/package.json +22 -2
package/build/figma/tokens.json
CHANGED
|
@@ -1,6 +1,76 @@
|
|
|
1
1
|
{
|
|
2
2
|
"global-primitive": {
|
|
3
3
|
"primitive": {
|
|
4
|
+
"bp": {
|
|
5
|
+
"sm": {
|
|
6
|
+
"value": 0,
|
|
7
|
+
"type": "dimension",
|
|
8
|
+
"$extensions": {
|
|
9
|
+
"public": true,
|
|
10
|
+
"defaultUnit": "px",
|
|
11
|
+
"com.figma": {
|
|
12
|
+
"scopes": [
|
|
13
|
+
"WIDTH_HEIGHT"
|
|
14
|
+
],
|
|
15
|
+
"exportAs": "variable",
|
|
16
|
+
"codeSyntax": {
|
|
17
|
+
"WEB": "--pds-bp-sm"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"md": {
|
|
23
|
+
"value": 768,
|
|
24
|
+
"type": "dimension",
|
|
25
|
+
"$extensions": {
|
|
26
|
+
"public": true,
|
|
27
|
+
"defaultUnit": "px",
|
|
28
|
+
"com.figma": {
|
|
29
|
+
"scopes": [
|
|
30
|
+
"WIDTH_HEIGHT"
|
|
31
|
+
],
|
|
32
|
+
"exportAs": "variable",
|
|
33
|
+
"codeSyntax": {
|
|
34
|
+
"WEB": "--pds-bp-md"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"lg": {
|
|
40
|
+
"value": 1280,
|
|
41
|
+
"type": "dimension",
|
|
42
|
+
"$extensions": {
|
|
43
|
+
"public": true,
|
|
44
|
+
"defaultUnit": "px",
|
|
45
|
+
"com.figma": {
|
|
46
|
+
"scopes": [
|
|
47
|
+
"WIDTH_HEIGHT"
|
|
48
|
+
],
|
|
49
|
+
"exportAs": "variable",
|
|
50
|
+
"codeSyntax": {
|
|
51
|
+
"WEB": "--pds-bp-lg"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"xl": {
|
|
57
|
+
"value": 1440,
|
|
58
|
+
"type": "dimension",
|
|
59
|
+
"$extensions": {
|
|
60
|
+
"public": true,
|
|
61
|
+
"defaultUnit": "px",
|
|
62
|
+
"com.figma": {
|
|
63
|
+
"scopes": [
|
|
64
|
+
"WIDTH_HEIGHT"
|
|
65
|
+
],
|
|
66
|
+
"exportAs": "variable",
|
|
67
|
+
"codeSyntax": {
|
|
68
|
+
"WEB": "--pds-bp-xl"
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
},
|
|
4
74
|
"spacing": {
|
|
5
75
|
"8XL": {
|
|
6
76
|
"value": 82.56,
|
|
@@ -638,6 +708,23 @@
|
|
|
638
708
|
}
|
|
639
709
|
}
|
|
640
710
|
},
|
|
711
|
+
"thicker": {
|
|
712
|
+
"value": 2,
|
|
713
|
+
"type": "dimension",
|
|
714
|
+
"$extensions": {
|
|
715
|
+
"public": true,
|
|
716
|
+
"defaultUnit": "px",
|
|
717
|
+
"com.figma": {
|
|
718
|
+
"scopes": [
|
|
719
|
+
"STROKE_FLOAT"
|
|
720
|
+
],
|
|
721
|
+
"exportAs": "variable",
|
|
722
|
+
"codeSyntax": {
|
|
723
|
+
"WEB": "--pds-border-width-thicker"
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
},
|
|
641
728
|
"outline": {
|
|
642
729
|
"value": 1,
|
|
643
730
|
"type": "dimension",
|
|
@@ -815,37 +902,31 @@
|
|
|
815
902
|
}
|
|
816
903
|
}
|
|
817
904
|
}
|
|
818
|
-
}
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
"border": {
|
|
824
|
-
"width": {
|
|
825
|
-
"stepper": {
|
|
826
|
-
"value": 3,
|
|
905
|
+
},
|
|
906
|
+
"spacing": {
|
|
907
|
+
"input": {
|
|
908
|
+
"height": {
|
|
909
|
+
"value": "{spacing.4XL}",
|
|
827
910
|
"type": "dimension",
|
|
828
911
|
"$extensions": {
|
|
829
912
|
"public": true,
|
|
830
|
-
"defaultUnit": "
|
|
913
|
+
"defaultUnit": "rem",
|
|
831
914
|
"com.figma": {
|
|
832
915
|
"scopes": [
|
|
833
|
-
"
|
|
916
|
+
"WIDTH_HEIGHT"
|
|
834
917
|
],
|
|
835
918
|
"exportAs": "variable",
|
|
836
919
|
"codeSyntax": {
|
|
837
|
-
"WEB": "--pds-
|
|
920
|
+
"WEB": "--pds-spacing-input-height"
|
|
838
921
|
}
|
|
839
922
|
}
|
|
840
923
|
}
|
|
841
924
|
}
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
"small": {
|
|
848
|
-
"value": 400,
|
|
925
|
+
},
|
|
926
|
+
"button": {
|
|
927
|
+
"height": {
|
|
928
|
+
"xs": {
|
|
929
|
+
"value": "{spacing.XL}",
|
|
849
930
|
"type": "dimension",
|
|
850
931
|
"$extensions": {
|
|
851
932
|
"public": true,
|
|
@@ -856,13 +937,13 @@
|
|
|
856
937
|
],
|
|
857
938
|
"exportAs": "variable",
|
|
858
939
|
"codeSyntax": {
|
|
859
|
-
"WEB": "--pds-
|
|
940
|
+
"WEB": "--pds-spacing-button-height-xs"
|
|
860
941
|
}
|
|
861
942
|
}
|
|
862
943
|
}
|
|
863
944
|
},
|
|
864
|
-
"
|
|
865
|
-
"value":
|
|
945
|
+
"sm": {
|
|
946
|
+
"value": "{spacing.3XL}",
|
|
866
947
|
"type": "dimension",
|
|
867
948
|
"$extensions": {
|
|
868
949
|
"public": true,
|
|
@@ -873,13 +954,13 @@
|
|
|
873
954
|
],
|
|
874
955
|
"exportAs": "variable",
|
|
875
956
|
"codeSyntax": {
|
|
876
|
-
"WEB": "--pds-
|
|
957
|
+
"WEB": "--pds-spacing-button-height-sm"
|
|
877
958
|
}
|
|
878
959
|
}
|
|
879
960
|
}
|
|
880
961
|
},
|
|
881
|
-
"
|
|
882
|
-
"value":
|
|
962
|
+
"md": {
|
|
963
|
+
"value": "{spacing.4XL}",
|
|
883
964
|
"type": "dimension",
|
|
884
965
|
"$extensions": {
|
|
885
966
|
"public": true,
|
|
@@ -890,13 +971,13 @@
|
|
|
890
971
|
],
|
|
891
972
|
"exportAs": "variable",
|
|
892
973
|
"codeSyntax": {
|
|
893
|
-
"WEB": "--pds-
|
|
974
|
+
"WEB": "--pds-spacing-button-height-md"
|
|
894
975
|
}
|
|
895
976
|
}
|
|
896
977
|
}
|
|
897
978
|
},
|
|
898
|
-
"
|
|
899
|
-
"value":
|
|
979
|
+
"lg": {
|
|
980
|
+
"value": "{spacing.5XL}",
|
|
900
981
|
"type": "dimension",
|
|
901
982
|
"$extensions": {
|
|
902
983
|
"public": true,
|
|
@@ -907,81 +988,397 @@
|
|
|
907
988
|
],
|
|
908
989
|
"exportAs": "variable",
|
|
909
990
|
"codeSyntax": {
|
|
910
|
-
"WEB": "--pds-
|
|
991
|
+
"WEB": "--pds-spacing-button-height-lg"
|
|
911
992
|
}
|
|
912
993
|
}
|
|
913
994
|
}
|
|
914
995
|
}
|
|
915
|
-
}
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
996
|
+
},
|
|
997
|
+
"padding-block": {
|
|
998
|
+
"xs": {
|
|
999
|
+
"value": 4,
|
|
1000
|
+
"type": "dimension",
|
|
1001
|
+
"$extensions": {
|
|
1002
|
+
"public": true,
|
|
1003
|
+
"defaultUnit": "rem",
|
|
1004
|
+
"com.figma": {
|
|
1005
|
+
"scopes": [
|
|
1006
|
+
"GAP"
|
|
1007
|
+
],
|
|
1008
|
+
"exportAs": "variable",
|
|
1009
|
+
"codeSyntax": {
|
|
1010
|
+
"WEB": "--pds-spacing-button-padding-block-xs"
|
|
1011
|
+
}
|
|
1012
|
+
}
|
|
1013
|
+
}
|
|
1014
|
+
},
|
|
1015
|
+
"sm": {
|
|
1016
|
+
"value": "{spacing.3XS}",
|
|
1017
|
+
"type": "dimension",
|
|
1018
|
+
"$extensions": {
|
|
1019
|
+
"public": true,
|
|
1020
|
+
"defaultUnit": "rem",
|
|
1021
|
+
"com.figma": {
|
|
1022
|
+
"scopes": [
|
|
1023
|
+
"GAP"
|
|
1024
|
+
],
|
|
1025
|
+
"exportAs": "variable",
|
|
1026
|
+
"codeSyntax": {
|
|
1027
|
+
"WEB": "--pds-spacing-button-padding-block-sm"
|
|
1028
|
+
}
|
|
1029
|
+
}
|
|
1030
|
+
}
|
|
1031
|
+
},
|
|
1032
|
+
"md": {
|
|
1033
|
+
"value": "{spacing.2XS}",
|
|
1034
|
+
"type": "dimension",
|
|
1035
|
+
"$extensions": {
|
|
1036
|
+
"public": true,
|
|
1037
|
+
"defaultUnit": "rem",
|
|
1038
|
+
"com.figma": {
|
|
1039
|
+
"scopes": [
|
|
1040
|
+
"GAP"
|
|
1041
|
+
],
|
|
1042
|
+
"exportAs": "variable",
|
|
1043
|
+
"codeSyntax": {
|
|
1044
|
+
"WEB": "--pds-spacing-button-padding-block-md"
|
|
1045
|
+
}
|
|
1046
|
+
}
|
|
1047
|
+
}
|
|
1048
|
+
},
|
|
1049
|
+
"lg": {
|
|
1050
|
+
"value": "{spacing.S}",
|
|
1051
|
+
"type": "dimension",
|
|
1052
|
+
"$extensions": {
|
|
1053
|
+
"public": true,
|
|
1054
|
+
"defaultUnit": "rem",
|
|
1055
|
+
"com.figma": {
|
|
1056
|
+
"scopes": [
|
|
1057
|
+
"GAP"
|
|
1058
|
+
],
|
|
1059
|
+
"exportAs": "variable",
|
|
1060
|
+
"codeSyntax": {
|
|
1061
|
+
"WEB": "--pds-spacing-button-padding-block-lg"
|
|
1062
|
+
}
|
|
1063
|
+
}
|
|
1064
|
+
}
|
|
1065
|
+
}
|
|
1066
|
+
},
|
|
1067
|
+
"padding-inline": {
|
|
1068
|
+
"xs": {
|
|
1069
|
+
"value": "{spacing.XS}",
|
|
1070
|
+
"type": "dimension",
|
|
1071
|
+
"$extensions": {
|
|
1072
|
+
"public": true,
|
|
1073
|
+
"defaultUnit": "rem",
|
|
1074
|
+
"com.figma": {
|
|
1075
|
+
"scopes": [
|
|
1076
|
+
"GAP"
|
|
1077
|
+
],
|
|
1078
|
+
"exportAs": "variable",
|
|
1079
|
+
"codeSyntax": {
|
|
1080
|
+
"WEB": "--pds-spacing-button-padding-inline-xs"
|
|
1081
|
+
}
|
|
1082
|
+
}
|
|
1083
|
+
}
|
|
1084
|
+
},
|
|
1085
|
+
"sm": {
|
|
1086
|
+
"value": "{spacing.S}",
|
|
1087
|
+
"type": "dimension",
|
|
1088
|
+
"$extensions": {
|
|
1089
|
+
"public": true,
|
|
1090
|
+
"defaultUnit": "rem",
|
|
1091
|
+
"com.figma": {
|
|
1092
|
+
"scopes": [
|
|
1093
|
+
"GAP"
|
|
1094
|
+
],
|
|
1095
|
+
"exportAs": "variable",
|
|
1096
|
+
"codeSyntax": {
|
|
1097
|
+
"WEB": "--pds-spacing-button-padding-inline-sm"
|
|
1098
|
+
}
|
|
1099
|
+
}
|
|
1100
|
+
}
|
|
1101
|
+
},
|
|
1102
|
+
"md": {
|
|
1103
|
+
"value": "{spacing.L}",
|
|
1104
|
+
"type": "dimension",
|
|
1105
|
+
"$extensions": {
|
|
1106
|
+
"public": true,
|
|
1107
|
+
"defaultUnit": "rem",
|
|
1108
|
+
"com.figma": {
|
|
1109
|
+
"scopes": [
|
|
1110
|
+
"GAP"
|
|
1111
|
+
],
|
|
1112
|
+
"exportAs": "variable",
|
|
1113
|
+
"codeSyntax": {
|
|
1114
|
+
"WEB": "--pds-spacing-button-padding-inline-md"
|
|
1115
|
+
}
|
|
1116
|
+
}
|
|
1117
|
+
}
|
|
1118
|
+
},
|
|
1119
|
+
"lg": {
|
|
1120
|
+
"value": "{spacing.2XL}",
|
|
1121
|
+
"type": "dimension",
|
|
1122
|
+
"$extensions": {
|
|
1123
|
+
"public": true,
|
|
1124
|
+
"defaultUnit": "rem",
|
|
1125
|
+
"com.figma": {
|
|
1126
|
+
"scopes": [
|
|
1127
|
+
"GAP"
|
|
1128
|
+
],
|
|
1129
|
+
"exportAs": "variable",
|
|
1130
|
+
"codeSyntax": {
|
|
1131
|
+
"WEB": "--pds-spacing-button-padding-inline-lg"
|
|
1132
|
+
}
|
|
931
1133
|
}
|
|
932
1134
|
}
|
|
933
1135
|
}
|
|
934
1136
|
}
|
|
935
1137
|
}
|
|
936
1138
|
},
|
|
937
|
-
"
|
|
938
|
-
"
|
|
939
|
-
"
|
|
940
|
-
"value":
|
|
941
|
-
"type": "
|
|
1139
|
+
"typography": {
|
|
1140
|
+
"line-height (lh)": {
|
|
1141
|
+
"code": {
|
|
1142
|
+
"value": "180%",
|
|
1143
|
+
"type": "lineHeight",
|
|
942
1144
|
"$extensions": {
|
|
943
1145
|
"public": true,
|
|
944
|
-
"defaultUnit": "rem",
|
|
945
1146
|
"com.figma": {
|
|
946
1147
|
"scopes": [
|
|
947
|
-
"
|
|
1148
|
+
"LINE_HEIGHT"
|
|
948
1149
|
],
|
|
949
|
-
"exportAs": "
|
|
1150
|
+
"exportAs": "skip",
|
|
950
1151
|
"codeSyntax": {
|
|
951
|
-
"WEB": "--pds-
|
|
1152
|
+
"WEB": "--pds-typography-lh-code"
|
|
952
1153
|
}
|
|
953
1154
|
}
|
|
954
1155
|
}
|
|
955
|
-
}
|
|
956
|
-
|
|
957
|
-
|
|
1156
|
+
}
|
|
1157
|
+
}
|
|
1158
|
+
}
|
|
1159
|
+
}
|
|
1160
|
+
},
|
|
1161
|
+
"global-component": {
|
|
1162
|
+
"component": {
|
|
1163
|
+
"border": {
|
|
1164
|
+
"width": {
|
|
1165
|
+
"stepper": {
|
|
1166
|
+
"value": 3,
|
|
958
1167
|
"type": "dimension",
|
|
959
1168
|
"$extensions": {
|
|
960
1169
|
"public": true,
|
|
961
|
-
"defaultUnit": "
|
|
1170
|
+
"defaultUnit": "px",
|
|
962
1171
|
"com.figma": {
|
|
963
1172
|
"scopes": [
|
|
964
|
-
"
|
|
965
|
-
"GAP"
|
|
1173
|
+
"STROKE_FLOAT"
|
|
966
1174
|
],
|
|
967
1175
|
"exportAs": "variable",
|
|
968
1176
|
"codeSyntax": {
|
|
969
|
-
"WEB": "--pds-
|
|
1177
|
+
"WEB": "--pds-border-width-stepper"
|
|
970
1178
|
}
|
|
971
1179
|
}
|
|
972
1180
|
}
|
|
973
1181
|
}
|
|
974
1182
|
}
|
|
975
|
-
}
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
1183
|
+
},
|
|
1184
|
+
"container": {
|
|
1185
|
+
"modal": {
|
|
1186
|
+
"width": {
|
|
1187
|
+
"sm": {
|
|
1188
|
+
"value": 400,
|
|
1189
|
+
"type": "dimension",
|
|
1190
|
+
"$extensions": {
|
|
1191
|
+
"public": true,
|
|
1192
|
+
"defaultUnit": "rem",
|
|
1193
|
+
"com.figma": {
|
|
1194
|
+
"scopes": [
|
|
1195
|
+
"WIDTH_HEIGHT"
|
|
1196
|
+
],
|
|
1197
|
+
"exportAs": "variable",
|
|
1198
|
+
"codeSyntax": {
|
|
1199
|
+
"WEB": "--pds-container-modal-width-sm"
|
|
1200
|
+
}
|
|
1201
|
+
}
|
|
1202
|
+
}
|
|
1203
|
+
},
|
|
1204
|
+
"md": {
|
|
1205
|
+
"value": 600,
|
|
1206
|
+
"type": "dimension",
|
|
1207
|
+
"$extensions": {
|
|
1208
|
+
"public": true,
|
|
1209
|
+
"defaultUnit": "rem",
|
|
1210
|
+
"com.figma": {
|
|
1211
|
+
"scopes": [
|
|
1212
|
+
"WIDTH_HEIGHT"
|
|
1213
|
+
],
|
|
1214
|
+
"exportAs": "variable",
|
|
1215
|
+
"codeSyntax": {
|
|
1216
|
+
"WEB": "--pds-container-modal-width-md"
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
}
|
|
1220
|
+
},
|
|
1221
|
+
"lg": {
|
|
1222
|
+
"value": 760,
|
|
1223
|
+
"type": "dimension",
|
|
1224
|
+
"$extensions": {
|
|
1225
|
+
"public": true,
|
|
1226
|
+
"defaultUnit": "rem",
|
|
1227
|
+
"com.figma": {
|
|
1228
|
+
"scopes": [
|
|
1229
|
+
"WIDTH_HEIGHT"
|
|
1230
|
+
],
|
|
1231
|
+
"exportAs": "variable",
|
|
1232
|
+
"codeSyntax": {
|
|
1233
|
+
"WEB": "--pds-container-modal-width-lg"
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
}
|
|
1237
|
+
},
|
|
1238
|
+
"xl": {
|
|
1239
|
+
"value": 1080,
|
|
1240
|
+
"type": "dimension",
|
|
1241
|
+
"$extensions": {
|
|
1242
|
+
"public": true,
|
|
1243
|
+
"defaultUnit": "rem",
|
|
1244
|
+
"com.figma": {
|
|
1245
|
+
"scopes": [
|
|
1246
|
+
"WIDTH_HEIGHT"
|
|
1247
|
+
],
|
|
1248
|
+
"exportAs": "variable",
|
|
1249
|
+
"codeSyntax": {
|
|
1250
|
+
"WEB": "--pds-container-modal-width-xl"
|
|
1251
|
+
}
|
|
1252
|
+
}
|
|
1253
|
+
}
|
|
1254
|
+
}
|
|
1255
|
+
}
|
|
1256
|
+
},
|
|
1257
|
+
"tooltip": {
|
|
1258
|
+
"max-width": {
|
|
1259
|
+
"value": 200,
|
|
1260
|
+
"type": "dimension",
|
|
1261
|
+
"$extensions": {
|
|
1262
|
+
"public": true,
|
|
1263
|
+
"defaultUnit": "rem",
|
|
1264
|
+
"com.figma": {
|
|
1265
|
+
"scopes": [
|
|
1266
|
+
"WIDTH_HEIGHT"
|
|
1267
|
+
],
|
|
1268
|
+
"exportAs": "variable",
|
|
1269
|
+
"codeSyntax": {
|
|
1270
|
+
"WEB": "--pds-container-tooltip-max-width"
|
|
1271
|
+
}
|
|
1272
|
+
}
|
|
1273
|
+
}
|
|
1274
|
+
}
|
|
1275
|
+
},
|
|
1276
|
+
"dashboard": {
|
|
1277
|
+
"navbar": {
|
|
1278
|
+
"max-width": {
|
|
1279
|
+
"value": 1440,
|
|
1280
|
+
"type": "dimension",
|
|
1281
|
+
"$extensions": {
|
|
1282
|
+
"public": true,
|
|
1283
|
+
"defaultUnit": "px",
|
|
1284
|
+
"com.figma": {
|
|
1285
|
+
"scopes": [
|
|
1286
|
+
"WIDTH_HEIGHT"
|
|
1287
|
+
],
|
|
1288
|
+
"exportAs": "variable",
|
|
1289
|
+
"codeSyntax": {
|
|
1290
|
+
"WEB": "--pds-container-dashboard-navbar-max-width"
|
|
1291
|
+
}
|
|
1292
|
+
}
|
|
1293
|
+
}
|
|
1294
|
+
}
|
|
1295
|
+
}
|
|
1296
|
+
}
|
|
1297
|
+
},
|
|
1298
|
+
"spacing": {
|
|
1299
|
+
"dashboard-nav": {
|
|
1300
|
+
"item-height": {
|
|
1301
|
+
"value": 36,
|
|
1302
|
+
"type": "dimension",
|
|
1303
|
+
"$extensions": {
|
|
1304
|
+
"public": true,
|
|
1305
|
+
"defaultUnit": "rem",
|
|
1306
|
+
"com.figma": {
|
|
1307
|
+
"scopes": [
|
|
1308
|
+
"WIDTH_HEIGHT"
|
|
1309
|
+
],
|
|
1310
|
+
"exportAs": "variable",
|
|
1311
|
+
"codeSyntax": {
|
|
1312
|
+
"WEB": "--pds-spacing-dashboard-nav-item-height"
|
|
1313
|
+
}
|
|
1314
|
+
}
|
|
1315
|
+
}
|
|
1316
|
+
},
|
|
1317
|
+
"item-padding": {
|
|
1318
|
+
"value": 10,
|
|
1319
|
+
"type": "dimension",
|
|
1320
|
+
"$extensions": {
|
|
1321
|
+
"public": true,
|
|
1322
|
+
"defaultUnit": "rem",
|
|
1323
|
+
"com.figma": {
|
|
1324
|
+
"scopes": [
|
|
1325
|
+
"WIDTH_HEIGHT",
|
|
1326
|
+
"GAP"
|
|
1327
|
+
],
|
|
1328
|
+
"exportAs": "variable",
|
|
1329
|
+
"codeSyntax": {
|
|
1330
|
+
"WEB": "--pds-spacing-dashboard-nav-item-padding"
|
|
1331
|
+
}
|
|
1332
|
+
}
|
|
1333
|
+
}
|
|
1334
|
+
}
|
|
1335
|
+
},
|
|
1336
|
+
"stepper": {
|
|
1337
|
+
"indicator-size": {
|
|
1338
|
+
"value": "{spacing.L}",
|
|
1339
|
+
"type": "dimension",
|
|
1340
|
+
"$extensions": {
|
|
1341
|
+
"public": true,
|
|
1342
|
+
"defaultUnit": "rem",
|
|
1343
|
+
"com.figma": {
|
|
1344
|
+
"scopes": [
|
|
1345
|
+
"WIDTH_HEIGHT"
|
|
1346
|
+
],
|
|
1347
|
+
"exportAs": "variable",
|
|
1348
|
+
"codeSyntax": {
|
|
1349
|
+
"WEB": "--pds-spacing-stepper-indicator-size"
|
|
1350
|
+
}
|
|
1351
|
+
}
|
|
1352
|
+
}
|
|
1353
|
+
},
|
|
1354
|
+
"step-content-width": {
|
|
1355
|
+
"value": 112,
|
|
1356
|
+
"type": "dimension",
|
|
1357
|
+
"$extensions": {
|
|
1358
|
+
"public": true,
|
|
1359
|
+
"defaultUnit": "rem",
|
|
1360
|
+
"com.figma": {
|
|
1361
|
+
"scopes": [
|
|
1362
|
+
"WIDTH_HEIGHT"
|
|
1363
|
+
],
|
|
1364
|
+
"exportAs": "variable",
|
|
1365
|
+
"codeSyntax": {
|
|
1366
|
+
"WEB": "--pds-spacing-stepper-step-content-width"
|
|
1367
|
+
}
|
|
1368
|
+
}
|
|
1369
|
+
}
|
|
1370
|
+
}
|
|
1371
|
+
}
|
|
1372
|
+
}
|
|
1373
|
+
}
|
|
1374
|
+
},
|
|
1375
|
+
"composite-typography": {
|
|
1376
|
+
"typography": {
|
|
1377
|
+
"composite": {
|
|
1378
|
+
"body": {
|
|
1379
|
+
"anchor": {
|
|
1380
|
+
"value": {
|
|
1381
|
+
"fontFamily": "{typography.ff.sans}",
|
|
985
1382
|
"fontWeight": "{typography.fw.regular}",
|
|
986
1383
|
"fontSize": "{typography.size.M}",
|
|
987
1384
|
"lineHeight": "{typography.lh.L}",
|
|
@@ -1265,28 +1662,6 @@
|
|
|
1265
1662
|
}
|
|
1266
1663
|
}
|
|
1267
1664
|
},
|
|
1268
|
-
"menu": {
|
|
1269
|
-
"item-heading": {
|
|
1270
|
-
"value": {
|
|
1271
|
-
"fontFamily": "{typography.ff.sans}",
|
|
1272
|
-
"fontWeight": "{typography.fw.bold}",
|
|
1273
|
-
"fontSize": "{typography.size.S}",
|
|
1274
|
-
"lineHeight": "{typography.lh.S}",
|
|
1275
|
-
"letterSpacing": "{typography.ls.L}",
|
|
1276
|
-
"textCase": "upper"
|
|
1277
|
-
},
|
|
1278
|
-
"type": "typography",
|
|
1279
|
-
"$extensions": {
|
|
1280
|
-
"public": true,
|
|
1281
|
-
"com.figma": {
|
|
1282
|
-
"exportAs": "textStyle",
|
|
1283
|
-
"codeSyntax": {
|
|
1284
|
-
"WEB": "--pds-typography-composite-menu-item-heading"
|
|
1285
|
-
}
|
|
1286
|
-
}
|
|
1287
|
-
}
|
|
1288
|
-
}
|
|
1289
|
-
},
|
|
1290
1665
|
"type-scale": {
|
|
1291
1666
|
"light": {
|
|
1292
1667
|
"7XL": {
|
|
@@ -10764,7 +11139,7 @@
|
|
|
10764
11139
|
"typography": {
|
|
10765
11140
|
"size": {
|
|
10766
11141
|
"7XL": {
|
|
10767
|
-
"value":
|
|
11142
|
+
"value": 83.44,
|
|
10768
11143
|
"type": "fontSize",
|
|
10769
11144
|
"$extensions": {
|
|
10770
11145
|
"public": true,
|
|
@@ -10782,7 +11157,7 @@
|
|
|
10782
11157
|
}
|
|
10783
11158
|
},
|
|
10784
11159
|
"6XL": {
|
|
10785
|
-
"value":
|
|
11160
|
+
"value": 66.752,
|
|
10786
11161
|
"type": "fontSize",
|
|
10787
11162
|
"$extensions": {
|
|
10788
11163
|
"public": true,
|
|
@@ -10800,7 +11175,7 @@
|
|
|
10800
11175
|
}
|
|
10801
11176
|
},
|
|
10802
11177
|
"5XL": {
|
|
10803
|
-
"value":
|
|
11178
|
+
"value": 53.408,
|
|
10804
11179
|
"type": "fontSize",
|
|
10805
11180
|
"$extensions": {
|
|
10806
11181
|
"public": true,
|
|
@@ -10818,7 +11193,7 @@
|
|
|
10818
11193
|
}
|
|
10819
11194
|
},
|
|
10820
11195
|
"4XL": {
|
|
10821
|
-
"value":
|
|
11196
|
+
"value": 42.72,
|
|
10822
11197
|
"type": "fontSize",
|
|
10823
11198
|
"$extensions": {
|
|
10824
11199
|
"public": true,
|
|
@@ -10836,7 +11211,7 @@
|
|
|
10836
11211
|
}
|
|
10837
11212
|
},
|
|
10838
11213
|
"3XL": {
|
|
10839
|
-
"value":
|
|
11214
|
+
"value": 34.176,
|
|
10840
11215
|
"type": "fontSize",
|
|
10841
11216
|
"$extensions": {
|
|
10842
11217
|
"public": true,
|
|
@@ -10854,7 +11229,7 @@
|
|
|
10854
11229
|
}
|
|
10855
11230
|
},
|
|
10856
11231
|
"2XL": {
|
|
10857
|
-
"value": 27.
|
|
11232
|
+
"value": 27.344,
|
|
10858
11233
|
"type": "fontSize",
|
|
10859
11234
|
"$extensions": {
|
|
10860
11235
|
"public": true,
|
|
@@ -10872,7 +11247,7 @@
|
|
|
10872
11247
|
}
|
|
10873
11248
|
},
|
|
10874
11249
|
"XL": {
|
|
10875
|
-
"value":
|
|
11250
|
+
"value": 21.872,
|
|
10876
11251
|
"type": "fontSize",
|
|
10877
11252
|
"$extensions": {
|
|
10878
11253
|
"public": true,
|
|
@@ -10890,7 +11265,7 @@
|
|
|
10890
11265
|
}
|
|
10891
11266
|
},
|
|
10892
11267
|
"L": {
|
|
10893
|
-
"value":
|
|
11268
|
+
"value": 17.504,
|
|
10894
11269
|
"type": "fontSize",
|
|
10895
11270
|
"$extensions": {
|
|
10896
11271
|
"public": true,
|
|
@@ -10908,7 +11283,7 @@
|
|
|
10908
11283
|
}
|
|
10909
11284
|
},
|
|
10910
11285
|
"M": {
|
|
10911
|
-
"value":
|
|
11286
|
+
"value": 14,
|
|
10912
11287
|
"type": "fontSize",
|
|
10913
11288
|
"$extensions": {
|
|
10914
11289
|
"public": true,
|
|
@@ -10926,7 +11301,7 @@
|
|
|
10926
11301
|
}
|
|
10927
11302
|
},
|
|
10928
11303
|
"S": {
|
|
10929
|
-
"value":
|
|
11304
|
+
"value": 11.2,
|
|
10930
11305
|
"type": "fontSize",
|
|
10931
11306
|
"$extensions": {
|
|
10932
11307
|
"public": true,
|
|
@@ -10944,7 +11319,7 @@
|
|
|
10944
11319
|
}
|
|
10945
11320
|
},
|
|
10946
11321
|
"XS": {
|
|
10947
|
-
"value":
|
|
11322
|
+
"value": 8.96,
|
|
10948
11323
|
"type": "fontSize",
|
|
10949
11324
|
"$extensions": {
|
|
10950
11325
|
"public": true,
|
|
@@ -10962,7 +11337,7 @@
|
|
|
10962
11337
|
}
|
|
10963
11338
|
},
|
|
10964
11339
|
"2XS": {
|
|
10965
|
-
"value":
|
|
11340
|
+
"value": 7.168,
|
|
10966
11341
|
"type": "fontSize",
|
|
10967
11342
|
"$extensions": {
|
|
10968
11343
|
"public": true,
|
|
@@ -11341,6 +11716,588 @@
|
|
|
11341
11716
|
}
|
|
11342
11717
|
}
|
|
11343
11718
|
},
|
|
11719
|
+
"compact-mobile-primitive": {
|
|
11720
|
+
"primitive": {
|
|
11721
|
+
"typography": {
|
|
11722
|
+
"size": {
|
|
11723
|
+
"7XL": {
|
|
11724
|
+
"value": 66.752,
|
|
11725
|
+
"type": "fontSize",
|
|
11726
|
+
"$extensions": {
|
|
11727
|
+
"public": true,
|
|
11728
|
+
"defaultUnit": "rem",
|
|
11729
|
+
"mathExpression": true,
|
|
11730
|
+
"com.figma": {
|
|
11731
|
+
"scopes": [
|
|
11732
|
+
"FONT_SIZE"
|
|
11733
|
+
],
|
|
11734
|
+
"exportAs": "variable",
|
|
11735
|
+
"codeSyntax": {
|
|
11736
|
+
"WEB": "--pds-typography-size-7xl"
|
|
11737
|
+
}
|
|
11738
|
+
}
|
|
11739
|
+
}
|
|
11740
|
+
},
|
|
11741
|
+
"6XL": {
|
|
11742
|
+
"value": 53.402,
|
|
11743
|
+
"type": "fontSize",
|
|
11744
|
+
"$extensions": {
|
|
11745
|
+
"public": true,
|
|
11746
|
+
"defaultUnit": "rem",
|
|
11747
|
+
"mathExpression": true,
|
|
11748
|
+
"com.figma": {
|
|
11749
|
+
"scopes": [
|
|
11750
|
+
"FONT_SIZE"
|
|
11751
|
+
],
|
|
11752
|
+
"exportAs": "variable",
|
|
11753
|
+
"codeSyntax": {
|
|
11754
|
+
"WEB": "--pds-typography-size-6xl"
|
|
11755
|
+
}
|
|
11756
|
+
}
|
|
11757
|
+
}
|
|
11758
|
+
},
|
|
11759
|
+
"5XL": {
|
|
11760
|
+
"value": 42.726,
|
|
11761
|
+
"type": "fontSize",
|
|
11762
|
+
"$extensions": {
|
|
11763
|
+
"public": true,
|
|
11764
|
+
"defaultUnit": "rem",
|
|
11765
|
+
"mathExpression": true,
|
|
11766
|
+
"com.figma": {
|
|
11767
|
+
"scopes": [
|
|
11768
|
+
"FONT_SIZE"
|
|
11769
|
+
],
|
|
11770
|
+
"exportAs": "variable",
|
|
11771
|
+
"codeSyntax": {
|
|
11772
|
+
"WEB": "--pds-typography-size-5xl"
|
|
11773
|
+
}
|
|
11774
|
+
}
|
|
11775
|
+
}
|
|
11776
|
+
},
|
|
11777
|
+
"4XL": {
|
|
11778
|
+
"value": 34.176,
|
|
11779
|
+
"type": "fontSize",
|
|
11780
|
+
"$extensions": {
|
|
11781
|
+
"public": true,
|
|
11782
|
+
"defaultUnit": "rem",
|
|
11783
|
+
"mathExpression": true,
|
|
11784
|
+
"com.figma": {
|
|
11785
|
+
"scopes": [
|
|
11786
|
+
"FONT_SIZE"
|
|
11787
|
+
],
|
|
11788
|
+
"exportAs": "variable",
|
|
11789
|
+
"codeSyntax": {
|
|
11790
|
+
"WEB": "--pds-typography-size-4xl"
|
|
11791
|
+
}
|
|
11792
|
+
}
|
|
11793
|
+
}
|
|
11794
|
+
},
|
|
11795
|
+
"3XL": {
|
|
11796
|
+
"value": 27.341,
|
|
11797
|
+
"type": "fontSize",
|
|
11798
|
+
"$extensions": {
|
|
11799
|
+
"public": true,
|
|
11800
|
+
"defaultUnit": "rem",
|
|
11801
|
+
"mathExpression": true,
|
|
11802
|
+
"com.figma": {
|
|
11803
|
+
"scopes": [
|
|
11804
|
+
"FONT_SIZE"
|
|
11805
|
+
],
|
|
11806
|
+
"exportAs": "variable",
|
|
11807
|
+
"codeSyntax": {
|
|
11808
|
+
"WEB": "--pds-typography-size-3xl"
|
|
11809
|
+
}
|
|
11810
|
+
}
|
|
11811
|
+
}
|
|
11812
|
+
},
|
|
11813
|
+
"2XL": {
|
|
11814
|
+
"value": 21.875,
|
|
11815
|
+
"type": "fontSize",
|
|
11816
|
+
"$extensions": {
|
|
11817
|
+
"public": true,
|
|
11818
|
+
"defaultUnit": "rem",
|
|
11819
|
+
"mathExpression": true,
|
|
11820
|
+
"com.figma": {
|
|
11821
|
+
"scopes": [
|
|
11822
|
+
"FONT_SIZE"
|
|
11823
|
+
],
|
|
11824
|
+
"exportAs": "variable",
|
|
11825
|
+
"codeSyntax": {
|
|
11826
|
+
"WEB": "--pds-typography-size-2xl"
|
|
11827
|
+
}
|
|
11828
|
+
}
|
|
11829
|
+
}
|
|
11830
|
+
},
|
|
11831
|
+
"XL": {
|
|
11832
|
+
"value": 17.498,
|
|
11833
|
+
"type": "fontSize",
|
|
11834
|
+
"$extensions": {
|
|
11835
|
+
"public": true,
|
|
11836
|
+
"defaultUnit": "rem",
|
|
11837
|
+
"mathExpression": true,
|
|
11838
|
+
"com.figma": {
|
|
11839
|
+
"scopes": [
|
|
11840
|
+
"FONT_SIZE"
|
|
11841
|
+
],
|
|
11842
|
+
"exportAs": "variable",
|
|
11843
|
+
"codeSyntax": {
|
|
11844
|
+
"WEB": "--pds-typography-size-xl"
|
|
11845
|
+
}
|
|
11846
|
+
}
|
|
11847
|
+
}
|
|
11848
|
+
},
|
|
11849
|
+
"L": {
|
|
11850
|
+
"value": 17.504,
|
|
11851
|
+
"type": "fontSize",
|
|
11852
|
+
"$extensions": {
|
|
11853
|
+
"public": true,
|
|
11854
|
+
"defaultUnit": "rem",
|
|
11855
|
+
"mathExpression": true,
|
|
11856
|
+
"com.figma": {
|
|
11857
|
+
"scopes": [
|
|
11858
|
+
"FONT_SIZE"
|
|
11859
|
+
],
|
|
11860
|
+
"exportAs": "variable",
|
|
11861
|
+
"codeSyntax": {
|
|
11862
|
+
"WEB": "--pds-typography-size-l"
|
|
11863
|
+
}
|
|
11864
|
+
}
|
|
11865
|
+
}
|
|
11866
|
+
},
|
|
11867
|
+
"M": {
|
|
11868
|
+
"value": 14,
|
|
11869
|
+
"type": "fontSize",
|
|
11870
|
+
"$extensions": {
|
|
11871
|
+
"public": true,
|
|
11872
|
+
"defaultUnit": "rem",
|
|
11873
|
+
"mathExpression": true,
|
|
11874
|
+
"com.figma": {
|
|
11875
|
+
"scopes": [
|
|
11876
|
+
"FONT_SIZE"
|
|
11877
|
+
],
|
|
11878
|
+
"exportAs": "variable",
|
|
11879
|
+
"codeSyntax": {
|
|
11880
|
+
"WEB": "--pds-typography-size-m"
|
|
11881
|
+
}
|
|
11882
|
+
}
|
|
11883
|
+
}
|
|
11884
|
+
},
|
|
11885
|
+
"S": {
|
|
11886
|
+
"value": 11.2,
|
|
11887
|
+
"type": "fontSize",
|
|
11888
|
+
"$extensions": {
|
|
11889
|
+
"public": true,
|
|
11890
|
+
"defaultUnit": "rem",
|
|
11891
|
+
"mathExpression": true,
|
|
11892
|
+
"com.figma": {
|
|
11893
|
+
"scopes": [
|
|
11894
|
+
"FONT_SIZE"
|
|
11895
|
+
],
|
|
11896
|
+
"exportAs": "variable",
|
|
11897
|
+
"codeSyntax": {
|
|
11898
|
+
"WEB": "--pds-typography-size-s"
|
|
11899
|
+
}
|
|
11900
|
+
}
|
|
11901
|
+
}
|
|
11902
|
+
},
|
|
11903
|
+
"XS": {
|
|
11904
|
+
"value": 8.96,
|
|
11905
|
+
"type": "fontSize",
|
|
11906
|
+
"$extensions": {
|
|
11907
|
+
"public": true,
|
|
11908
|
+
"defaultUnit": "rem",
|
|
11909
|
+
"mathExpression": true,
|
|
11910
|
+
"com.figma": {
|
|
11911
|
+
"scopes": [
|
|
11912
|
+
"FONT_SIZE"
|
|
11913
|
+
],
|
|
11914
|
+
"exportAs": "variable",
|
|
11915
|
+
"codeSyntax": {
|
|
11916
|
+
"WEB": "--pds-typography-size-xs"
|
|
11917
|
+
}
|
|
11918
|
+
}
|
|
11919
|
+
}
|
|
11920
|
+
},
|
|
11921
|
+
"2XS": {
|
|
11922
|
+
"value": 7.168,
|
|
11923
|
+
"type": "fontSize",
|
|
11924
|
+
"$extensions": {
|
|
11925
|
+
"public": true,
|
|
11926
|
+
"defaultUnit": "rem",
|
|
11927
|
+
"mathExpression": true,
|
|
11928
|
+
"com.figma": {
|
|
11929
|
+
"scopes": [
|
|
11930
|
+
"FONT_SIZE"
|
|
11931
|
+
],
|
|
11932
|
+
"exportAs": "variable",
|
|
11933
|
+
"codeSyntax": {
|
|
11934
|
+
"WEB": "--pds-typography-size-2xs"
|
|
11935
|
+
}
|
|
11936
|
+
}
|
|
11937
|
+
}
|
|
11938
|
+
}
|
|
11939
|
+
}
|
|
11940
|
+
}
|
|
11941
|
+
}
|
|
11942
|
+
},
|
|
11943
|
+
"compact-mobile-semantic": {
|
|
11944
|
+
"semantic": {
|
|
11945
|
+
"typography": {
|
|
11946
|
+
"size": {
|
|
11947
|
+
"default": {
|
|
11948
|
+
"value": "{typography.size.compact-mode.M}",
|
|
11949
|
+
"type": "fontSize",
|
|
11950
|
+
"$extensions": {
|
|
11951
|
+
"public": true,
|
|
11952
|
+
"resolveValue": true,
|
|
11953
|
+
"com.figma": {
|
|
11954
|
+
"scopes": [
|
|
11955
|
+
"FONT_SIZE"
|
|
11956
|
+
],
|
|
11957
|
+
"exportAs": "variable",
|
|
11958
|
+
"codeSyntax": {
|
|
11959
|
+
"WEB": "--pds-typography-size-default"
|
|
11960
|
+
}
|
|
11961
|
+
}
|
|
11962
|
+
}
|
|
11963
|
+
},
|
|
11964
|
+
"input-label": {
|
|
11965
|
+
"value": "{typography.size.compact-mode.M}",
|
|
11966
|
+
"type": "fontSize",
|
|
11967
|
+
"$extensions": {
|
|
11968
|
+
"public": true,
|
|
11969
|
+
"resolveValue": true,
|
|
11970
|
+
"com.figma": {
|
|
11971
|
+
"scopes": [
|
|
11972
|
+
"FONT_SIZE"
|
|
11973
|
+
],
|
|
11974
|
+
"exportAs": "variable",
|
|
11975
|
+
"codeSyntax": {
|
|
11976
|
+
"WEB": "--pds-typography-size-input-label"
|
|
11977
|
+
}
|
|
11978
|
+
}
|
|
11979
|
+
}
|
|
11980
|
+
}
|
|
11981
|
+
}
|
|
11982
|
+
}
|
|
11983
|
+
}
|
|
11984
|
+
},
|
|
11985
|
+
"compact-mobile-component": {
|
|
11986
|
+
"component": {
|
|
11987
|
+
"typography": {
|
|
11988
|
+
"size": {
|
|
11989
|
+
"code-block": {
|
|
11990
|
+
"value": 14.4,
|
|
11991
|
+
"type": "fontSize",
|
|
11992
|
+
"$extensions": {
|
|
11993
|
+
"public": true,
|
|
11994
|
+
"defaultUnit": "rem",
|
|
11995
|
+
"com.figma": {
|
|
11996
|
+
"scopes": [
|
|
11997
|
+
"FONT_SIZE"
|
|
11998
|
+
],
|
|
11999
|
+
"exportAs": "variable",
|
|
12000
|
+
"codeSyntax": {
|
|
12001
|
+
"WEB": "--pds-typography-size-code-block"
|
|
12002
|
+
}
|
|
12003
|
+
}
|
|
12004
|
+
}
|
|
12005
|
+
}
|
|
12006
|
+
}
|
|
12007
|
+
}
|
|
12008
|
+
}
|
|
12009
|
+
},
|
|
12010
|
+
"expanded-mobile-primitive": {
|
|
12011
|
+
"primitive": {
|
|
12012
|
+
"typography": {
|
|
12013
|
+
"size": {
|
|
12014
|
+
"7XL": {
|
|
12015
|
+
"value": 127.603,
|
|
12016
|
+
"type": "fontSize",
|
|
12017
|
+
"$extensions": {
|
|
12018
|
+
"public": true,
|
|
12019
|
+
"defaultUnit": "rem",
|
|
12020
|
+
"mathExpression": true,
|
|
12021
|
+
"com.figma": {
|
|
12022
|
+
"scopes": [
|
|
12023
|
+
"FONT_SIZE"
|
|
12024
|
+
],
|
|
12025
|
+
"exportAs": "variable",
|
|
12026
|
+
"codeSyntax": {
|
|
12027
|
+
"WEB": "--pds-typography-size-7xl"
|
|
12028
|
+
}
|
|
12029
|
+
}
|
|
12030
|
+
}
|
|
12031
|
+
},
|
|
12032
|
+
"6XL": {
|
|
12033
|
+
"value": 95.718,
|
|
12034
|
+
"type": "fontSize",
|
|
12035
|
+
"$extensions": {
|
|
12036
|
+
"public": true,
|
|
12037
|
+
"defaultUnit": "rem",
|
|
12038
|
+
"mathExpression": true,
|
|
12039
|
+
"com.figma": {
|
|
12040
|
+
"scopes": [
|
|
12041
|
+
"FONT_SIZE"
|
|
12042
|
+
],
|
|
12043
|
+
"exportAs": "variable",
|
|
12044
|
+
"codeSyntax": {
|
|
12045
|
+
"WEB": "--pds-typography-size-6xl"
|
|
12046
|
+
}
|
|
12047
|
+
}
|
|
12048
|
+
}
|
|
12049
|
+
},
|
|
12050
|
+
"5XL": {
|
|
12051
|
+
"value": 71.808,
|
|
12052
|
+
"type": "fontSize",
|
|
12053
|
+
"$extensions": {
|
|
12054
|
+
"public": true,
|
|
12055
|
+
"defaultUnit": "rem",
|
|
12056
|
+
"mathExpression": true,
|
|
12057
|
+
"com.figma": {
|
|
12058
|
+
"scopes": [
|
|
12059
|
+
"FONT_SIZE"
|
|
12060
|
+
],
|
|
12061
|
+
"exportAs": "variable",
|
|
12062
|
+
"codeSyntax": {
|
|
12063
|
+
"WEB": "--pds-typography-size-5xl"
|
|
12064
|
+
}
|
|
12065
|
+
}
|
|
12066
|
+
}
|
|
12067
|
+
},
|
|
12068
|
+
"4XL": {
|
|
12069
|
+
"value": 53.875,
|
|
12070
|
+
"type": "fontSize",
|
|
12071
|
+
"$extensions": {
|
|
12072
|
+
"public": true,
|
|
12073
|
+
"defaultUnit": "rem",
|
|
12074
|
+
"mathExpression": true,
|
|
12075
|
+
"com.figma": {
|
|
12076
|
+
"scopes": [
|
|
12077
|
+
"FONT_SIZE"
|
|
12078
|
+
],
|
|
12079
|
+
"exportAs": "variable",
|
|
12080
|
+
"codeSyntax": {
|
|
12081
|
+
"WEB": "--pds-typography-size-4xl"
|
|
12082
|
+
}
|
|
12083
|
+
}
|
|
12084
|
+
}
|
|
12085
|
+
},
|
|
12086
|
+
"3XL": {
|
|
12087
|
+
"value": 40.41,
|
|
12088
|
+
"type": "fontSize",
|
|
12089
|
+
"$extensions": {
|
|
12090
|
+
"public": true,
|
|
12091
|
+
"defaultUnit": "rem",
|
|
12092
|
+
"mathExpression": true,
|
|
12093
|
+
"com.figma": {
|
|
12094
|
+
"scopes": [
|
|
12095
|
+
"FONT_SIZE"
|
|
12096
|
+
],
|
|
12097
|
+
"exportAs": "variable",
|
|
12098
|
+
"codeSyntax": {
|
|
12099
|
+
"WEB": "--pds-typography-size-3xl"
|
|
12100
|
+
}
|
|
12101
|
+
}
|
|
12102
|
+
}
|
|
12103
|
+
},
|
|
12104
|
+
"2XL": {
|
|
12105
|
+
"value": 30.323,
|
|
12106
|
+
"type": "fontSize",
|
|
12107
|
+
"$extensions": {
|
|
12108
|
+
"public": true,
|
|
12109
|
+
"defaultUnit": "rem",
|
|
12110
|
+
"mathExpression": true,
|
|
12111
|
+
"com.figma": {
|
|
12112
|
+
"scopes": [
|
|
12113
|
+
"FONT_SIZE"
|
|
12114
|
+
],
|
|
12115
|
+
"exportAs": "variable",
|
|
12116
|
+
"codeSyntax": {
|
|
12117
|
+
"WEB": "--pds-typography-size-2xl"
|
|
12118
|
+
}
|
|
12119
|
+
}
|
|
12120
|
+
}
|
|
12121
|
+
},
|
|
12122
|
+
"XL": {
|
|
12123
|
+
"value": 22.746,
|
|
12124
|
+
"type": "fontSize",
|
|
12125
|
+
"$extensions": {
|
|
12126
|
+
"public": true,
|
|
12127
|
+
"defaultUnit": "rem",
|
|
12128
|
+
"mathExpression": true,
|
|
12129
|
+
"com.figma": {
|
|
12130
|
+
"scopes": [
|
|
12131
|
+
"FONT_SIZE"
|
|
12132
|
+
],
|
|
12133
|
+
"exportAs": "variable",
|
|
12134
|
+
"codeSyntax": {
|
|
12135
|
+
"WEB": "--pds-typography-size-xl"
|
|
12136
|
+
}
|
|
12137
|
+
}
|
|
12138
|
+
}
|
|
12139
|
+
},
|
|
12140
|
+
"L": {
|
|
12141
|
+
"value": 21.328,
|
|
12142
|
+
"type": "fontSize",
|
|
12143
|
+
"$extensions": {
|
|
12144
|
+
"public": true,
|
|
12145
|
+
"defaultUnit": "rem",
|
|
12146
|
+
"mathExpression": true,
|
|
12147
|
+
"com.figma": {
|
|
12148
|
+
"scopes": [
|
|
12149
|
+
"FONT_SIZE"
|
|
12150
|
+
],
|
|
12151
|
+
"exportAs": "variable",
|
|
12152
|
+
"codeSyntax": {
|
|
12153
|
+
"WEB": "--pds-typography-size-l"
|
|
12154
|
+
}
|
|
12155
|
+
}
|
|
12156
|
+
}
|
|
12157
|
+
},
|
|
12158
|
+
"M": {
|
|
12159
|
+
"value": 16,
|
|
12160
|
+
"type": "fontSize",
|
|
12161
|
+
"$extensions": {
|
|
12162
|
+
"public": true,
|
|
12163
|
+
"defaultUnit": "rem",
|
|
12164
|
+
"mathExpression": true,
|
|
12165
|
+
"com.figma": {
|
|
12166
|
+
"scopes": [
|
|
12167
|
+
"FONT_SIZE"
|
|
12168
|
+
],
|
|
12169
|
+
"exportAs": "variable",
|
|
12170
|
+
"codeSyntax": {
|
|
12171
|
+
"WEB": "--pds-typography-size-m"
|
|
12172
|
+
}
|
|
12173
|
+
}
|
|
12174
|
+
}
|
|
12175
|
+
},
|
|
12176
|
+
"S": {
|
|
12177
|
+
"value": 12,
|
|
12178
|
+
"type": "fontSize",
|
|
12179
|
+
"$extensions": {
|
|
12180
|
+
"public": true,
|
|
12181
|
+
"defaultUnit": "rem",
|
|
12182
|
+
"mathExpression": true,
|
|
12183
|
+
"com.figma": {
|
|
12184
|
+
"scopes": [
|
|
12185
|
+
"FONT_SIZE"
|
|
12186
|
+
],
|
|
12187
|
+
"exportAs": "variable",
|
|
12188
|
+
"codeSyntax": {
|
|
12189
|
+
"WEB": "--pds-typography-size-s"
|
|
12190
|
+
}
|
|
12191
|
+
}
|
|
12192
|
+
}
|
|
12193
|
+
},
|
|
12194
|
+
"XS": {
|
|
12195
|
+
"value": 9.008,
|
|
12196
|
+
"type": "fontSize",
|
|
12197
|
+
"$extensions": {
|
|
12198
|
+
"public": true,
|
|
12199
|
+
"defaultUnit": "rem",
|
|
12200
|
+
"mathExpression": true,
|
|
12201
|
+
"com.figma": {
|
|
12202
|
+
"scopes": [
|
|
12203
|
+
"FONT_SIZE"
|
|
12204
|
+
],
|
|
12205
|
+
"exportAs": "variable",
|
|
12206
|
+
"codeSyntax": {
|
|
12207
|
+
"WEB": "--pds-typography-size-xs"
|
|
12208
|
+
}
|
|
12209
|
+
}
|
|
12210
|
+
}
|
|
12211
|
+
},
|
|
12212
|
+
"2XS": {
|
|
12213
|
+
"value": 6.752,
|
|
12214
|
+
"type": "fontSize",
|
|
12215
|
+
"$extensions": {
|
|
12216
|
+
"public": true,
|
|
12217
|
+
"defaultUnit": "rem",
|
|
12218
|
+
"mathExpression": true,
|
|
12219
|
+
"com.figma": {
|
|
12220
|
+
"scopes": [
|
|
12221
|
+
"FONT_SIZE"
|
|
12222
|
+
],
|
|
12223
|
+
"exportAs": "variable",
|
|
12224
|
+
"codeSyntax": {
|
|
12225
|
+
"WEB": "--pds-typography-size-2xs"
|
|
12226
|
+
}
|
|
12227
|
+
}
|
|
12228
|
+
}
|
|
12229
|
+
}
|
|
12230
|
+
}
|
|
12231
|
+
}
|
|
12232
|
+
}
|
|
12233
|
+
},
|
|
12234
|
+
"expanded-mobile-semantic": {
|
|
12235
|
+
"semantic": {
|
|
12236
|
+
"typography": {
|
|
12237
|
+
"size": {
|
|
12238
|
+
"default": {
|
|
12239
|
+
"value": "{typography.size.expanded-mode.M}",
|
|
12240
|
+
"type": "fontSize",
|
|
12241
|
+
"$extensions": {
|
|
12242
|
+
"public": true,
|
|
12243
|
+
"resolveValue": true,
|
|
12244
|
+
"com.figma": {
|
|
12245
|
+
"scopes": [
|
|
12246
|
+
"FONT_SIZE"
|
|
12247
|
+
],
|
|
12248
|
+
"exportAs": "variable",
|
|
12249
|
+
"codeSyntax": {
|
|
12250
|
+
"WEB": "--pds-typography-size-default"
|
|
12251
|
+
}
|
|
12252
|
+
}
|
|
12253
|
+
}
|
|
12254
|
+
},
|
|
12255
|
+
"input-label": {
|
|
12256
|
+
"value": "{typography.size.expanded-mode.M}",
|
|
12257
|
+
"type": "fontSize",
|
|
12258
|
+
"$extensions": {
|
|
12259
|
+
"public": true,
|
|
12260
|
+
"resolveValue": true,
|
|
12261
|
+
"com.figma": {
|
|
12262
|
+
"scopes": [
|
|
12263
|
+
"FONT_SIZE"
|
|
12264
|
+
],
|
|
12265
|
+
"exportAs": "variable",
|
|
12266
|
+
"codeSyntax": {
|
|
12267
|
+
"WEB": "--pds-typography-size-input-label"
|
|
12268
|
+
}
|
|
12269
|
+
}
|
|
12270
|
+
}
|
|
12271
|
+
}
|
|
12272
|
+
}
|
|
12273
|
+
}
|
|
12274
|
+
}
|
|
12275
|
+
},
|
|
12276
|
+
"expanded-mobile-component": {
|
|
12277
|
+
"component": {
|
|
12278
|
+
"typography": {
|
|
12279
|
+
"size": {
|
|
12280
|
+
"code-block": {
|
|
12281
|
+
"value": 14.4,
|
|
12282
|
+
"type": "fontSize",
|
|
12283
|
+
"$extensions": {
|
|
12284
|
+
"public": true,
|
|
12285
|
+
"defaultUnit": "rem",
|
|
12286
|
+
"com.figma": {
|
|
12287
|
+
"scopes": [
|
|
12288
|
+
"FONT_SIZE"
|
|
12289
|
+
],
|
|
12290
|
+
"exportAs": "variable",
|
|
12291
|
+
"codeSyntax": {
|
|
12292
|
+
"WEB": "--pds-typography-size-code-block"
|
|
12293
|
+
}
|
|
12294
|
+
}
|
|
12295
|
+
}
|
|
12296
|
+
}
|
|
12297
|
+
}
|
|
12298
|
+
}
|
|
12299
|
+
}
|
|
12300
|
+
},
|
|
11344
12301
|
"$themes": [
|
|
11345
12302
|
{
|
|
11346
12303
|
"id": "light-compact",
|