@telus-uds/theme-koodo 4.2.0 → 4.4.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/build/android/schema.json +880 -618
- package/build/android/theme.json +446 -216
- package/build/ios/schema.json +880 -618
- package/build/ios/theme.json +446 -216
- package/build/rn/schema.json +880 -618
- package/build/rn/theme.js +340 -133
- package/package.json +4 -4
- package/theme.json +360 -137
package/build/android/theme.json
CHANGED
|
@@ -1207,22 +1207,27 @@
|
|
|
1207
1207
|
},
|
|
1208
1208
|
"tokens": {
|
|
1209
1209
|
"backgroundColor": {
|
|
1210
|
-
"red": 0.
|
|
1211
|
-
"green": 0.
|
|
1212
|
-
"blue": 0.
|
|
1210
|
+
"red": 0.93725,
|
|
1211
|
+
"green": 0.93725,
|
|
1212
|
+
"blue": 0.93725,
|
|
1213
|
+
"alpha": 1
|
|
1214
|
+
},
|
|
1215
|
+
"borderColor": {
|
|
1216
|
+
"red": 0.93725,
|
|
1217
|
+
"green": 0.93725,
|
|
1218
|
+
"blue": 0.93725,
|
|
1213
1219
|
"alpha": 1
|
|
1214
1220
|
},
|
|
1215
|
-
"borderWidth": 0,
|
|
1216
1221
|
"color": {
|
|
1217
|
-
"red":
|
|
1218
|
-
"green":
|
|
1219
|
-
"blue":
|
|
1222
|
+
"red": 0.78824,
|
|
1223
|
+
"green": 0.78431,
|
|
1224
|
+
"blue": 0.78431,
|
|
1220
1225
|
"alpha": 1
|
|
1221
1226
|
},
|
|
1222
1227
|
"iconColor": {
|
|
1223
|
-
"red": 0.
|
|
1224
|
-
"green": 0.
|
|
1225
|
-
"blue": 0.
|
|
1228
|
+
"red": 0.78824,
|
|
1229
|
+
"green": 0.78431,
|
|
1230
|
+
"blue": 0.78431,
|
|
1226
1231
|
"alpha": 1
|
|
1227
1232
|
}
|
|
1228
1233
|
}
|
|
@@ -1257,31 +1262,6 @@
|
|
|
1257
1262
|
"alpha": 0
|
|
1258
1263
|
}
|
|
1259
1264
|
}
|
|
1260
|
-
},
|
|
1261
|
-
{
|
|
1262
|
-
"if": {
|
|
1263
|
-
"inactive": true
|
|
1264
|
-
},
|
|
1265
|
-
"tokens": {
|
|
1266
|
-
"backgroundColor": {
|
|
1267
|
-
"red": 0.93725,
|
|
1268
|
-
"green": 0.93725,
|
|
1269
|
-
"blue": 0.93725,
|
|
1270
|
-
"alpha": 1
|
|
1271
|
-
},
|
|
1272
|
-
"color": {
|
|
1273
|
-
"red": 0.78824,
|
|
1274
|
-
"green": 0.78431,
|
|
1275
|
-
"blue": 0.78431,
|
|
1276
|
-
"alpha": 1
|
|
1277
|
-
},
|
|
1278
|
-
"iconColor": {
|
|
1279
|
-
"red": 0.78824,
|
|
1280
|
-
"green": 0.78431,
|
|
1281
|
-
"blue": 0.78431,
|
|
1282
|
-
"alpha": 1
|
|
1283
|
-
}
|
|
1284
|
-
}
|
|
1285
1265
|
}
|
|
1286
1266
|
],
|
|
1287
1267
|
"tokens": {
|
|
@@ -1626,6 +1606,15 @@
|
|
|
1626
1606
|
"description": "Defines background related attributes of Card",
|
|
1627
1607
|
"type": "variant",
|
|
1628
1608
|
"values": ["alternative", "subtle", "grid", "feature"]
|
|
1609
|
+
},
|
|
1610
|
+
"padding": {
|
|
1611
|
+
"type": "variant",
|
|
1612
|
+
"values": ["custom"]
|
|
1613
|
+
},
|
|
1614
|
+
"viewport": {
|
|
1615
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
1616
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
1617
|
+
"type": "state"
|
|
1629
1618
|
}
|
|
1630
1619
|
},
|
|
1631
1620
|
"rules": [
|
|
@@ -1683,6 +1672,28 @@
|
|
|
1683
1672
|
"alpha": 1
|
|
1684
1673
|
}
|
|
1685
1674
|
}
|
|
1675
|
+
},
|
|
1676
|
+
{
|
|
1677
|
+
"if": {
|
|
1678
|
+
"viewport": ["md", "lg", "xl"]
|
|
1679
|
+
},
|
|
1680
|
+
"tokens": {
|
|
1681
|
+
"paddingBottom": 48,
|
|
1682
|
+
"paddingLeft": 32,
|
|
1683
|
+
"paddingRight": 32,
|
|
1684
|
+
"paddingTop": 48
|
|
1685
|
+
}
|
|
1686
|
+
},
|
|
1687
|
+
{
|
|
1688
|
+
"if": {
|
|
1689
|
+
"padding": "custom"
|
|
1690
|
+
},
|
|
1691
|
+
"tokens": {
|
|
1692
|
+
"paddingBottom": 0,
|
|
1693
|
+
"paddingLeft": 0,
|
|
1694
|
+
"paddingRight": 0,
|
|
1695
|
+
"paddingTop": 0
|
|
1696
|
+
}
|
|
1686
1697
|
}
|
|
1687
1698
|
],
|
|
1688
1699
|
"tokens": {
|
|
@@ -1706,10 +1717,10 @@
|
|
|
1706
1717
|
"contentJustifyContent": "flex-start",
|
|
1707
1718
|
"flex": 1,
|
|
1708
1719
|
"minWidth": null,
|
|
1709
|
-
"paddingBottom":
|
|
1710
|
-
"paddingLeft":
|
|
1711
|
-
"paddingRight":
|
|
1712
|
-
"paddingTop":
|
|
1720
|
+
"paddingBottom": 32,
|
|
1721
|
+
"paddingLeft": 24,
|
|
1722
|
+
"paddingRight": 24,
|
|
1723
|
+
"paddingTop": 32,
|
|
1713
1724
|
"shadow": null
|
|
1714
1725
|
}
|
|
1715
1726
|
},
|
|
@@ -2048,9 +2059,9 @@
|
|
|
2048
2059
|
},
|
|
2049
2060
|
"tokens": {
|
|
2050
2061
|
"color": {
|
|
2051
|
-
"red": 0
|
|
2052
|
-
"green": 0
|
|
2053
|
-
"blue": 0
|
|
2062
|
+
"red": 0,
|
|
2063
|
+
"green": 0,
|
|
2064
|
+
"blue": 0,
|
|
2054
2065
|
"alpha": 1
|
|
2055
2066
|
}
|
|
2056
2067
|
}
|
|
@@ -2133,7 +2144,7 @@
|
|
|
2133
2144
|
},
|
|
2134
2145
|
"fontSize": 16,
|
|
2135
2146
|
"iconDisplace": 0,
|
|
2136
|
-
"iconSize":
|
|
2147
|
+
"iconSize": 24,
|
|
2137
2148
|
"iconSpace": 1,
|
|
2138
2149
|
"leftIcon": "PaletteIconChevronLeft",
|
|
2139
2150
|
"outerBorderColor": {
|
|
@@ -2185,48 +2196,57 @@
|
|
|
2185
2196
|
},
|
|
2186
2197
|
{
|
|
2187
2198
|
"if": {
|
|
2188
|
-
"
|
|
2189
|
-
"viewport": ["xs"]
|
|
2199
|
+
"feature": true
|
|
2190
2200
|
},
|
|
2191
2201
|
"tokens": {
|
|
2192
|
-
"
|
|
2202
|
+
"containerBorderColor": {
|
|
2203
|
+
"red": 0.00392,
|
|
2204
|
+
"green": 0.41961,
|
|
2205
|
+
"blue": 0.41569,
|
|
2206
|
+
"alpha": 1
|
|
2207
|
+
},
|
|
2208
|
+
"labelBorderColor": {
|
|
2209
|
+
"red": 0.00392,
|
|
2210
|
+
"green": 0.41961,
|
|
2211
|
+
"blue": 0.41569,
|
|
2212
|
+
"alpha": 1
|
|
2213
|
+
},
|
|
2214
|
+
"textFontSize": 70,
|
|
2215
|
+
"textLineHeight": 1.2,
|
|
2216
|
+
"textTimerFontName": "StagSans",
|
|
2217
|
+
"textTimerFontWeight": 700
|
|
2193
2218
|
}
|
|
2194
2219
|
},
|
|
2195
2220
|
{
|
|
2196
2221
|
"if": {
|
|
2197
|
-
"
|
|
2198
|
-
"viewport": ["xs"]
|
|
2222
|
+
"large": true
|
|
2199
2223
|
},
|
|
2200
2224
|
"tokens": {
|
|
2201
|
-
"
|
|
2225
|
+
"labelFontName": "StagSans",
|
|
2226
|
+
"labelFontSize": 16,
|
|
2227
|
+
"labelFontWeight": 400,
|
|
2228
|
+
"textFontSize": 70,
|
|
2229
|
+
"textLineHeight": 1.2,
|
|
2230
|
+
"textTimerFontName": "StagSans",
|
|
2231
|
+
"textTimerFontWeight": 700
|
|
2202
2232
|
}
|
|
2203
2233
|
},
|
|
2204
2234
|
{
|
|
2205
2235
|
"if": {
|
|
2206
|
-
"
|
|
2236
|
+
"large": true,
|
|
2237
|
+
"viewport": ["xs"]
|
|
2207
2238
|
},
|
|
2208
2239
|
"tokens": {
|
|
2209
|
-
"
|
|
2210
|
-
"red": 0,
|
|
2211
|
-
"green": 0,
|
|
2212
|
-
"blue": 0,
|
|
2213
|
-
"alpha": 0
|
|
2214
|
-
},
|
|
2215
|
-
"textFontSize": 64,
|
|
2216
|
-
"textLineHeight": 1.14285714286,
|
|
2217
|
-
"textTimerFontName": "StagSans",
|
|
2218
|
-
"textTimerFontWeight": 300
|
|
2240
|
+
"textFontSize": 44
|
|
2219
2241
|
}
|
|
2220
2242
|
},
|
|
2221
2243
|
{
|
|
2222
2244
|
"if": {
|
|
2223
|
-
"
|
|
2245
|
+
"feature": true,
|
|
2246
|
+
"viewport": ["xs"]
|
|
2224
2247
|
},
|
|
2225
2248
|
"tokens": {
|
|
2226
|
-
"textFontSize":
|
|
2227
|
-
"textLineHeight": 1.14285714286,
|
|
2228
|
-
"textTimerFontName": "StagSans",
|
|
2229
|
-
"textTimerFontWeight": 300
|
|
2249
|
+
"textFontSize": 44
|
|
2230
2250
|
}
|
|
2231
2251
|
},
|
|
2232
2252
|
{
|
|
@@ -2234,17 +2254,30 @@
|
|
|
2234
2254
|
"inverse": true
|
|
2235
2255
|
},
|
|
2236
2256
|
"tokens": {
|
|
2257
|
+
"containerBorderColor": {
|
|
2258
|
+
"red": 1,
|
|
2259
|
+
"green": 1,
|
|
2260
|
+
"blue": 1,
|
|
2261
|
+
"alpha": 1
|
|
2262
|
+
},
|
|
2237
2263
|
"labelBorderColor": {
|
|
2238
|
-
"red":
|
|
2239
|
-
"green":
|
|
2240
|
-
"blue":
|
|
2241
|
-
"alpha":
|
|
2264
|
+
"red": 1,
|
|
2265
|
+
"green": 1,
|
|
2266
|
+
"blue": 1,
|
|
2267
|
+
"alpha": 1
|
|
2242
2268
|
}
|
|
2243
2269
|
}
|
|
2244
2270
|
}
|
|
2245
2271
|
],
|
|
2246
2272
|
"tokens": {
|
|
2273
|
+
"containerBorderColor": {
|
|
2274
|
+
"red": 0,
|
|
2275
|
+
"green": 0,
|
|
2276
|
+
"blue": 0,
|
|
2277
|
+
"alpha": 0
|
|
2278
|
+
},
|
|
2247
2279
|
"containerBorderRadius": 6,
|
|
2280
|
+
"containerBorderWidth": 2,
|
|
2248
2281
|
"containerGradient": null,
|
|
2249
2282
|
"containerInverseBorder": 2,
|
|
2250
2283
|
"containerInverseBorderColor": {
|
|
@@ -2267,7 +2300,9 @@
|
|
|
2267
2300
|
"blue": 0,
|
|
2268
2301
|
"alpha": 0
|
|
2269
2302
|
},
|
|
2303
|
+
"labelFontName": "StagSans",
|
|
2270
2304
|
"labelFontSize": 16,
|
|
2305
|
+
"labelFontWeight": 400,
|
|
2271
2306
|
"labelLineHeight": 1.5,
|
|
2272
2307
|
"textFontSize": 16,
|
|
2273
2308
|
"textLineHeight": 1.14285714286,
|
|
@@ -2384,37 +2419,6 @@
|
|
|
2384
2419
|
"calendarMonthCaptionFontWeight": 700,
|
|
2385
2420
|
"calendarMonthCaptionLineHeight": 1.2,
|
|
2386
2421
|
"calendarMonthCaptionPaddingBottom": 48,
|
|
2387
|
-
"dateInputBorderColor": {
|
|
2388
|
-
"red": 0,
|
|
2389
|
-
"green": 0,
|
|
2390
|
-
"blue": 0,
|
|
2391
|
-
"alpha": 0
|
|
2392
|
-
},
|
|
2393
|
-
"dateInputBorderRadius": 4,
|
|
2394
|
-
"dateInputFocusBorderColor": {
|
|
2395
|
-
"red": 0.00392,
|
|
2396
|
-
"green": 0.41961,
|
|
2397
|
-
"blue": 0.41569,
|
|
2398
|
-
"alpha": 1
|
|
2399
|
-
},
|
|
2400
|
-
"dateInputHoverBorderColor": {
|
|
2401
|
-
"red": 0.78824,
|
|
2402
|
-
"green": 0.78431,
|
|
2403
|
-
"blue": 0.78431,
|
|
2404
|
-
"alpha": 1
|
|
2405
|
-
},
|
|
2406
|
-
"dateInputInsideBorderColor": {
|
|
2407
|
-
"red": 0.4,
|
|
2408
|
-
"green": 0.4,
|
|
2409
|
-
"blue": 0.4,
|
|
2410
|
-
"alpha": 1
|
|
2411
|
-
},
|
|
2412
|
-
"dateInputInsideColor": {
|
|
2413
|
-
"red": 0,
|
|
2414
|
-
"green": 0,
|
|
2415
|
-
"blue": 0,
|
|
2416
|
-
"alpha": 0
|
|
2417
|
-
},
|
|
2418
2422
|
"dateInputStrokeColor": {
|
|
2419
2423
|
"red": 0.4,
|
|
2420
2424
|
"green": 0.4,
|
|
@@ -2952,6 +2956,12 @@
|
|
|
2952
2956
|
"appearances": {},
|
|
2953
2957
|
"rules": [],
|
|
2954
2958
|
"tokens": {
|
|
2959
|
+
"closeButtonBackgroundColor": {
|
|
2960
|
+
"red": 1,
|
|
2961
|
+
"green": 1,
|
|
2962
|
+
"blue": 1,
|
|
2963
|
+
"alpha": 1
|
|
2964
|
+
},
|
|
2955
2965
|
"closeButtonBorderColor": {
|
|
2956
2966
|
"red": 0,
|
|
2957
2967
|
"green": 0,
|
|
@@ -2959,13 +2969,13 @@
|
|
|
2959
2969
|
"alpha": 1
|
|
2960
2970
|
},
|
|
2961
2971
|
"closeButtonBorderSize": 0,
|
|
2962
|
-
"closeButtonHeight":
|
|
2972
|
+
"closeButtonHeight": 16,
|
|
2963
2973
|
"closeButtonIconSize": 16,
|
|
2964
2974
|
"closeButtonMarginBottom": 4,
|
|
2965
2975
|
"closeButtonMarginLeft": 4,
|
|
2966
2976
|
"closeButtonMarginRight": 12,
|
|
2967
2977
|
"closeButtonMarginTop": 4,
|
|
2968
|
-
"closeButtonWidth":
|
|
2978
|
+
"closeButtonWidth": 16,
|
|
2969
2979
|
"closeIcon": "PaletteIconClose",
|
|
2970
2980
|
"footnoteBackground": {
|
|
2971
2981
|
"red": 1,
|
|
@@ -2982,7 +2992,7 @@
|
|
|
2982
2992
|
"footnoteBodyPaddingBottom": 32,
|
|
2983
2993
|
"footnoteBodyPaddingLeft": 16,
|
|
2984
2994
|
"footnoteBodyPaddingRight": 16,
|
|
2985
|
-
"footnoteBodyPaddingTop":
|
|
2995
|
+
"footnoteBodyPaddingTop": 0,
|
|
2986
2996
|
"footnoteBorderColorMd": {
|
|
2987
2997
|
"red": 0.78824,
|
|
2988
2998
|
"green": 0.78431,
|
|
@@ -2997,7 +3007,7 @@
|
|
|
2997
3007
|
"headerFontName": "StagSans",
|
|
2998
3008
|
"headerFontSize": 16,
|
|
2999
3009
|
"headerFontWeight": 700,
|
|
3000
|
-
"headerLineHeight":
|
|
3010
|
+
"headerLineHeight": 1.25,
|
|
3001
3011
|
"headerMargin": 16,
|
|
3002
3012
|
"listItemColor": {
|
|
3003
3013
|
"red": 0,
|
|
@@ -3006,9 +3016,9 @@
|
|
|
3006
3016
|
"alpha": 1
|
|
3007
3017
|
},
|
|
3008
3018
|
"listItemFontSize": 14,
|
|
3009
|
-
"listItemLineHeight": 1.
|
|
3019
|
+
"listItemLineHeight": 1.45,
|
|
3010
3020
|
"listItemMarkerFontSize": 14,
|
|
3011
|
-
"listItemMarkerLineHeight": 1.
|
|
3021
|
+
"listItemMarkerLineHeight": 1.45,
|
|
3012
3022
|
"listItemPaddingLeft": 8,
|
|
3013
3023
|
"listPaddingLeft": 32
|
|
3014
3024
|
}
|
|
@@ -3858,9 +3868,9 @@
|
|
|
3858
3868
|
},
|
|
3859
3869
|
"tokens": {
|
|
3860
3870
|
"color": {
|
|
3861
|
-
"red": 0
|
|
3862
|
-
"green": 0
|
|
3863
|
-
"blue": 0
|
|
3871
|
+
"red": 0,
|
|
3872
|
+
"green": 0,
|
|
3873
|
+
"blue": 0,
|
|
3864
3874
|
"alpha": 1
|
|
3865
3875
|
}
|
|
3866
3876
|
}
|
|
@@ -3872,9 +3882,9 @@
|
|
|
3872
3882
|
},
|
|
3873
3883
|
"tokens": {
|
|
3874
3884
|
"color": {
|
|
3875
|
-
"red": 0.
|
|
3876
|
-
"green": 0.
|
|
3877
|
-
"blue": 0.
|
|
3885
|
+
"red": 0.31373,
|
|
3886
|
+
"green": 0.31373,
|
|
3887
|
+
"blue": 0.31373,
|
|
3878
3888
|
"alpha": 1
|
|
3879
3889
|
}
|
|
3880
3890
|
}
|
|
@@ -3944,7 +3954,7 @@
|
|
|
3944
3954
|
"blockFontName": "StagSans",
|
|
3945
3955
|
"blockFontSize": 16,
|
|
3946
3956
|
"blockFontWeight": 600,
|
|
3947
|
-
"blockLineHeight": 1.
|
|
3957
|
+
"blockLineHeight": 1.5,
|
|
3948
3958
|
"borderRadius": 4,
|
|
3949
3959
|
"color": {
|
|
3950
3960
|
"red": 0.00392,
|
|
@@ -4346,6 +4356,76 @@
|
|
|
4346
4356
|
"subHeadingMarginTop": 8
|
|
4347
4357
|
}
|
|
4348
4358
|
},
|
|
4359
|
+
"MultiSelectFilter": {
|
|
4360
|
+
"appearances": {
|
|
4361
|
+
"maxHeight": {
|
|
4362
|
+
"description": "Whether MultiselectFilter modal should expand responsively to content or a set maximu height",
|
|
4363
|
+
"values": [true],
|
|
4364
|
+
"type": "state"
|
|
4365
|
+
},
|
|
4366
|
+
"maxWidth": {
|
|
4367
|
+
"description": "Whether MultiselectFilter modal should expand to content or a set maximuh width",
|
|
4368
|
+
"values": [true],
|
|
4369
|
+
"type": "state"
|
|
4370
|
+
},
|
|
4371
|
+
"viewport": {
|
|
4372
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
4373
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
4374
|
+
"type": "state"
|
|
4375
|
+
}
|
|
4376
|
+
},
|
|
4377
|
+
"rules": [
|
|
4378
|
+
{
|
|
4379
|
+
"if": {
|
|
4380
|
+
"viewport": ["xs"]
|
|
4381
|
+
},
|
|
4382
|
+
"tokens": {
|
|
4383
|
+
"buttonDirection": "column",
|
|
4384
|
+
"minHeight": "100%",
|
|
4385
|
+
"minWidth": "100%"
|
|
4386
|
+
}
|
|
4387
|
+
},
|
|
4388
|
+
{
|
|
4389
|
+
"if": {
|
|
4390
|
+
"maxHeight": true,
|
|
4391
|
+
"viewport": ["sm", "md", "lg", "xl"]
|
|
4392
|
+
},
|
|
4393
|
+
"tokens": {
|
|
4394
|
+
"maxHeightSize": 480
|
|
4395
|
+
}
|
|
4396
|
+
},
|
|
4397
|
+
{
|
|
4398
|
+
"if": {
|
|
4399
|
+
"maxWidth": true,
|
|
4400
|
+
"viewport": ["sm", "md", "lg", "xl"]
|
|
4401
|
+
},
|
|
4402
|
+
"tokens": {
|
|
4403
|
+
"maxWidthSize": 544
|
|
4404
|
+
}
|
|
4405
|
+
}
|
|
4406
|
+
],
|
|
4407
|
+
"tokens": {
|
|
4408
|
+
"buttonDirection": "row",
|
|
4409
|
+
"headerFontColor": {
|
|
4410
|
+
"red": 0,
|
|
4411
|
+
"green": 0,
|
|
4412
|
+
"blue": 0,
|
|
4413
|
+
"alpha": 1
|
|
4414
|
+
},
|
|
4415
|
+
"headerFontName": "StagSans",
|
|
4416
|
+
"headerFontSize": 24,
|
|
4417
|
+
"headerFontWeight": 700,
|
|
4418
|
+
"headerLineHeight": 1.33333333333,
|
|
4419
|
+
"maxHeightSize": 0,
|
|
4420
|
+
"maxWidthSize": 0,
|
|
4421
|
+
"minHeight": 412,
|
|
4422
|
+
"minWidth": 320,
|
|
4423
|
+
"subHeaderFontName": "StagSans",
|
|
4424
|
+
"subHeaderFontSize": 16,
|
|
4425
|
+
"subHeaderFontWeight": 400,
|
|
4426
|
+
"subHeaderLineHeight": 1.5
|
|
4427
|
+
}
|
|
4428
|
+
},
|
|
4349
4429
|
"NavigationBar": {
|
|
4350
4430
|
"appearances": {
|
|
4351
4431
|
"expanded": {
|
|
@@ -5076,19 +5156,19 @@
|
|
|
5076
5156
|
"alpha": 1
|
|
5077
5157
|
},
|
|
5078
5158
|
"borderColor": {
|
|
5079
|
-
"red":
|
|
5080
|
-
"green":
|
|
5081
|
-
"blue":
|
|
5159
|
+
"red": 0.78824,
|
|
5160
|
+
"green": 0.78431,
|
|
5161
|
+
"blue": 0.78431,
|
|
5082
5162
|
"alpha": 1
|
|
5083
5163
|
},
|
|
5084
|
-
"borderRadius":
|
|
5164
|
+
"borderRadius": 8,
|
|
5085
5165
|
"borderWidth": 1,
|
|
5086
5166
|
"flex": 1,
|
|
5087
5167
|
"outerBorderColor": {
|
|
5088
|
-
"red":
|
|
5089
|
-
"green":
|
|
5090
|
-
"blue":
|
|
5091
|
-
"alpha":
|
|
5168
|
+
"red": 0,
|
|
5169
|
+
"green": 0,
|
|
5170
|
+
"blue": 0,
|
|
5171
|
+
"alpha": 0
|
|
5092
5172
|
},
|
|
5093
5173
|
"outerBorderGap": 0,
|
|
5094
5174
|
"outerBorderWidth": 0,
|
|
@@ -5559,6 +5639,11 @@
|
|
|
5559
5639
|
},
|
|
5560
5640
|
"QuickLinksFeatureItem": {
|
|
5561
5641
|
"appearances": {
|
|
5642
|
+
"pressed": {
|
|
5643
|
+
"description": "Applies while an interactive component is being physically pressed. Most visible on touchscreen taps; in React Native Web, this is visible on web mouse clicks only if the pressable is held down.",
|
|
5644
|
+
"values": [true],
|
|
5645
|
+
"type": "state"
|
|
5646
|
+
},
|
|
5562
5647
|
"viewport": {
|
|
5563
5648
|
"description": "The size label for the current screen viewport based on the current screen width",
|
|
5564
5649
|
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
@@ -5574,19 +5659,43 @@
|
|
|
5574
5659
|
"contentMaxDimension": 184,
|
|
5575
5660
|
"imageDimension": 168
|
|
5576
5661
|
}
|
|
5577
|
-
}
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
5581
|
-
|
|
5582
|
-
"
|
|
5583
|
-
|
|
5662
|
+
},
|
|
5663
|
+
{
|
|
5664
|
+
"if": {
|
|
5665
|
+
"pressed": true
|
|
5666
|
+
},
|
|
5667
|
+
"tokens": {
|
|
5668
|
+
"color": {
|
|
5669
|
+
"red": 0.34902,
|
|
5670
|
+
"green": 0.34902,
|
|
5671
|
+
"blue": 0.34902,
|
|
5672
|
+
"alpha": 1
|
|
5673
|
+
},
|
|
5674
|
+
"outerBorderColor": {
|
|
5675
|
+
"red": 0.34902,
|
|
5676
|
+
"green": 0.34902,
|
|
5677
|
+
"blue": 0.34902,
|
|
5678
|
+
"alpha": 1
|
|
5679
|
+
},
|
|
5680
|
+
"textLine": "underline"
|
|
5681
|
+
}
|
|
5682
|
+
}
|
|
5683
|
+
],
|
|
5684
|
+
"tokens": {
|
|
5685
|
+
"color": {
|
|
5686
|
+
"red": 0.00392,
|
|
5687
|
+
"green": 0.41961,
|
|
5688
|
+
"blue": 0.41569,
|
|
5584
5689
|
"alpha": 1
|
|
5585
5690
|
},
|
|
5586
5691
|
"contentAlignItems": "center",
|
|
5587
5692
|
"contentDirection": "column",
|
|
5588
|
-
"contentMaxDimension":
|
|
5693
|
+
"contentMaxDimension": 168,
|
|
5589
5694
|
"contentSpace": 3,
|
|
5695
|
+
"fontName": "StagSans",
|
|
5696
|
+
"fontSize": 16,
|
|
5697
|
+
"fontWeight": 600,
|
|
5698
|
+
"gap": 32,
|
|
5590
5699
|
"imageDimension": 128,
|
|
5591
5700
|
"outerBorderColor": {
|
|
5592
5701
|
"red": 0,
|
|
@@ -5595,7 +5704,7 @@
|
|
|
5595
5704
|
"alpha": 0
|
|
5596
5705
|
},
|
|
5597
5706
|
"textAlign": "center",
|
|
5598
|
-
"textLine": "
|
|
5707
|
+
"textLine": "none"
|
|
5599
5708
|
}
|
|
5600
5709
|
},
|
|
5601
5710
|
"QuickLinksList": {
|
|
@@ -7088,6 +7197,12 @@
|
|
|
7088
7197
|
"inverse": true
|
|
7089
7198
|
},
|
|
7090
7199
|
"tokens": {
|
|
7200
|
+
"completedIconColor": {
|
|
7201
|
+
"red": 0.4,
|
|
7202
|
+
"green": 0.4,
|
|
7203
|
+
"blue": 0.4,
|
|
7204
|
+
"alpha": 1
|
|
7205
|
+
},
|
|
7091
7206
|
"connectorColor": {
|
|
7092
7207
|
"red": 1,
|
|
7093
7208
|
"green": 1,
|
|
@@ -7178,7 +7293,7 @@
|
|
|
7178
7293
|
"blue": 0.41569,
|
|
7179
7294
|
"alpha": 1
|
|
7180
7295
|
},
|
|
7181
|
-
"connectorCompletedHeight":
|
|
7296
|
+
"connectorCompletedHeight": 3,
|
|
7182
7297
|
"connectorHeight": 1,
|
|
7183
7298
|
"connectorMinWidth": 16,
|
|
7184
7299
|
"containerPaddingBottom": null,
|
|
@@ -7210,7 +7325,7 @@
|
|
|
7210
7325
|
"blue": 0.41569,
|
|
7211
7326
|
"alpha": 1
|
|
7212
7327
|
},
|
|
7213
|
-
"knobCompletedPaddingLeft":
|
|
7328
|
+
"knobCompletedPaddingLeft": 1,
|
|
7214
7329
|
"knobCompletedPaddingTop": 2,
|
|
7215
7330
|
"knobCurrentBackgroundColor": {
|
|
7216
7331
|
"red": 0.00392,
|
|
@@ -7248,11 +7363,11 @@
|
|
|
7248
7363
|
"alpha": 1
|
|
7249
7364
|
},
|
|
7250
7365
|
"labelCurrentFontName": "StagSans",
|
|
7251
|
-
"labelCurrentFontWeight":
|
|
7366
|
+
"labelCurrentFontWeight": 600,
|
|
7252
7367
|
"labelDirection": "row",
|
|
7253
7368
|
"labelFontName": "StagSans",
|
|
7254
7369
|
"labelFontSize": 16,
|
|
7255
|
-
"labelFontWeight":
|
|
7370
|
+
"labelFontWeight": 600,
|
|
7256
7371
|
"labelGap": 4,
|
|
7257
7372
|
"labelLineHeight": 1.5,
|
|
7258
7373
|
"labelMarginTop": 10,
|
|
@@ -7260,7 +7375,18 @@
|
|
|
7260
7375
|
"labelPaddingRight": 16,
|
|
7261
7376
|
"showStepLabel": false,
|
|
7262
7377
|
"showStepName": true,
|
|
7263
|
-
"showStepTrackerLabel": true
|
|
7378
|
+
"showStepTrackerLabel": true,
|
|
7379
|
+
"stepLabelColor": {
|
|
7380
|
+
"red": 0.00392,
|
|
7381
|
+
"green": 0.41961,
|
|
7382
|
+
"blue": 0.41569,
|
|
7383
|
+
"alpha": 1
|
|
7384
|
+
},
|
|
7385
|
+
"stepLabelFontName": "StagSans",
|
|
7386
|
+
"stepLabelFontSize": 16,
|
|
7387
|
+
"stepLabelFontWeight": 600,
|
|
7388
|
+
"stepLabelLineHeight": 1.5,
|
|
7389
|
+
"textStepTrackerLabel": 2
|
|
7264
7390
|
}
|
|
7265
7391
|
},
|
|
7266
7392
|
"StoryCard": {
|
|
@@ -7294,12 +7420,12 @@
|
|
|
7294
7420
|
"alpha": 1
|
|
7295
7421
|
},
|
|
7296
7422
|
"borderColor": {
|
|
7297
|
-
"red": 0.
|
|
7298
|
-
"green": 0.
|
|
7299
|
-
"blue": 0.
|
|
7423
|
+
"red": 0.78824,
|
|
7424
|
+
"green": 0.78431,
|
|
7425
|
+
"blue": 0.78431,
|
|
7300
7426
|
"alpha": 1
|
|
7301
7427
|
},
|
|
7302
|
-
"borderRadius":
|
|
7428
|
+
"borderRadius": 8,
|
|
7303
7429
|
"borderWidth": 1,
|
|
7304
7430
|
"contentAlignItems": "stretch",
|
|
7305
7431
|
"contentFlexGrow": 0,
|
|
@@ -7593,15 +7719,30 @@
|
|
|
7593
7719
|
}
|
|
7594
7720
|
},
|
|
7595
7721
|
"Tags": {
|
|
7596
|
-
"appearances": {
|
|
7597
|
-
|
|
7722
|
+
"appearances": {
|
|
7723
|
+
"viewport": {
|
|
7724
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
7725
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
7726
|
+
"type": "state"
|
|
7727
|
+
}
|
|
7728
|
+
},
|
|
7729
|
+
"rules": [
|
|
7730
|
+
{
|
|
7731
|
+
"if": {
|
|
7732
|
+
"viewport": ["lg", "xl"]
|
|
7733
|
+
},
|
|
7734
|
+
"tokens": {
|
|
7735
|
+
"space": 3
|
|
7736
|
+
}
|
|
7737
|
+
}
|
|
7738
|
+
],
|
|
7598
7739
|
"tokens": {
|
|
7599
7740
|
"alignItems": "center",
|
|
7600
7741
|
"direction": "row",
|
|
7601
7742
|
"flexGrow": 0,
|
|
7602
7743
|
"flexShrink": 0,
|
|
7603
7744
|
"justifyContent": "flex-start",
|
|
7604
|
-
"space":
|
|
7745
|
+
"space": 1
|
|
7605
7746
|
}
|
|
7606
7747
|
},
|
|
7607
7748
|
"TagsItem": {
|
|
@@ -7629,23 +7770,43 @@
|
|
|
7629
7770
|
},
|
|
7630
7771
|
"tokens": {
|
|
7631
7772
|
"backgroundColor": {
|
|
7632
|
-
"red": 0.
|
|
7633
|
-
"green": 0.
|
|
7634
|
-
"blue": 0.
|
|
7773
|
+
"red": 0.10588,
|
|
7774
|
+
"green": 0.27843,
|
|
7775
|
+
"blue": 0.27451,
|
|
7635
7776
|
"alpha": 1
|
|
7636
7777
|
},
|
|
7637
7778
|
"borderColor": {
|
|
7638
|
-
"red": 0.
|
|
7639
|
-
"green": 0.
|
|
7640
|
-
"blue": 0.
|
|
7779
|
+
"red": 0.10588,
|
|
7780
|
+
"green": 0.27843,
|
|
7781
|
+
"blue": 0.27451,
|
|
7641
7782
|
"alpha": 1
|
|
7642
7783
|
},
|
|
7784
|
+
"borderWidth": 0,
|
|
7643
7785
|
"color": {
|
|
7644
7786
|
"red": 1,
|
|
7645
7787
|
"green": 1,
|
|
7646
7788
|
"blue": 1,
|
|
7647
7789
|
"alpha": 1
|
|
7648
|
-
}
|
|
7790
|
+
},
|
|
7791
|
+
"iconBackground": {
|
|
7792
|
+
"red": 0.10588,
|
|
7793
|
+
"green": 0.27843,
|
|
7794
|
+
"blue": 0.27451,
|
|
7795
|
+
"alpha": 1
|
|
7796
|
+
},
|
|
7797
|
+
"iconColor": {
|
|
7798
|
+
"red": 1,
|
|
7799
|
+
"green": 1,
|
|
7800
|
+
"blue": 1,
|
|
7801
|
+
"alpha": 1
|
|
7802
|
+
},
|
|
7803
|
+
"outerBorderColor": {
|
|
7804
|
+
"red": 0,
|
|
7805
|
+
"green": 0,
|
|
7806
|
+
"blue": 0,
|
|
7807
|
+
"alpha": 0
|
|
7808
|
+
},
|
|
7809
|
+
"outerBorderWidth": 0
|
|
7649
7810
|
}
|
|
7650
7811
|
},
|
|
7651
7812
|
{
|
|
@@ -7653,87 +7814,105 @@
|
|
|
7653
7814
|
"selected": true
|
|
7654
7815
|
},
|
|
7655
7816
|
"tokens": {
|
|
7656
|
-
"
|
|
7657
|
-
"opacity": 0.8,
|
|
7658
|
-
"outerBorderColor": {
|
|
7817
|
+
"backgroundColor": {
|
|
7659
7818
|
"red": 0.00392,
|
|
7660
7819
|
"green": 0.41961,
|
|
7661
7820
|
"blue": 0.41569,
|
|
7662
7821
|
"alpha": 1
|
|
7663
7822
|
},
|
|
7664
|
-
"
|
|
7665
|
-
|
|
7666
|
-
|
|
7667
|
-
|
|
7668
|
-
{
|
|
7669
|
-
"if": {
|
|
7670
|
-
"inactive": true
|
|
7671
|
-
},
|
|
7672
|
-
"tokens": {
|
|
7673
|
-
"backgroundColor": {
|
|
7674
|
-
"red": 0.4,
|
|
7675
|
-
"green": 0.4,
|
|
7676
|
-
"blue": 0.4,
|
|
7823
|
+
"borderColor": {
|
|
7824
|
+
"red": 0.00392,
|
|
7825
|
+
"green": 0.41961,
|
|
7826
|
+
"blue": 0.41569,
|
|
7677
7827
|
"alpha": 1
|
|
7678
7828
|
},
|
|
7679
|
-
"borderWidth": 0,
|
|
7680
7829
|
"color": {
|
|
7681
7830
|
"red": 1,
|
|
7682
7831
|
"green": 1,
|
|
7683
7832
|
"blue": 1,
|
|
7684
7833
|
"alpha": 1
|
|
7685
7834
|
},
|
|
7835
|
+
"icon": "PaletteIconClose",
|
|
7836
|
+
"iconBackground": {
|
|
7837
|
+
"red": 0.00392,
|
|
7838
|
+
"green": 0.41961,
|
|
7839
|
+
"blue": 0.41569,
|
|
7840
|
+
"alpha": 1
|
|
7841
|
+
},
|
|
7686
7842
|
"iconColor": {
|
|
7687
|
-
"red":
|
|
7688
|
-
"green":
|
|
7689
|
-
"blue":
|
|
7843
|
+
"red": 1,
|
|
7844
|
+
"green": 1,
|
|
7845
|
+
"blue": 1,
|
|
7690
7846
|
"alpha": 1
|
|
7691
|
-
}
|
|
7847
|
+
},
|
|
7848
|
+
"outerBorderColor": {
|
|
7849
|
+
"red": 0,
|
|
7850
|
+
"green": 0,
|
|
7851
|
+
"blue": 0,
|
|
7852
|
+
"alpha": 0
|
|
7853
|
+
},
|
|
7854
|
+
"outerBorderWidth": 0
|
|
7692
7855
|
}
|
|
7693
7856
|
},
|
|
7694
7857
|
{
|
|
7695
7858
|
"if": {
|
|
7696
|
-
"
|
|
7859
|
+
"inactive": true
|
|
7697
7860
|
},
|
|
7698
7861
|
"tokens": {
|
|
7699
|
-
"
|
|
7700
|
-
|
|
7701
|
-
"
|
|
7702
|
-
"
|
|
7703
|
-
"blue": 0.41569,
|
|
7862
|
+
"backgroundColor": {
|
|
7863
|
+
"red": 0.93725,
|
|
7864
|
+
"green": 0.93725,
|
|
7865
|
+
"blue": 0.93725,
|
|
7704
7866
|
"alpha": 1
|
|
7705
7867
|
},
|
|
7706
|
-
"
|
|
7707
|
-
"
|
|
7868
|
+
"borderWidth": 0,
|
|
7869
|
+
"color": {
|
|
7870
|
+
"red": 0.78824,
|
|
7871
|
+
"green": 0.78431,
|
|
7872
|
+
"blue": 0.78431,
|
|
7873
|
+
"alpha": 1
|
|
7874
|
+
},
|
|
7875
|
+
"iconBackground": {
|
|
7876
|
+
"red": 0.93725,
|
|
7877
|
+
"green": 0.93725,
|
|
7878
|
+
"blue": 0.93725,
|
|
7879
|
+
"alpha": 1
|
|
7880
|
+
},
|
|
7881
|
+
"iconColor": {
|
|
7882
|
+
"red": 0.78824,
|
|
7883
|
+
"green": 0.78431,
|
|
7884
|
+
"blue": 0.78431,
|
|
7885
|
+
"alpha": 1
|
|
7886
|
+
}
|
|
7708
7887
|
}
|
|
7709
7888
|
}
|
|
7710
7889
|
],
|
|
7711
7890
|
"tokens": {
|
|
7712
7891
|
"alignSelf": "center",
|
|
7713
7892
|
"backgroundColor": {
|
|
7714
|
-
"red":
|
|
7715
|
-
"green":
|
|
7716
|
-
"blue":
|
|
7893
|
+
"red": 1,
|
|
7894
|
+
"green": 1,
|
|
7895
|
+
"blue": 1,
|
|
7717
7896
|
"alpha": 1
|
|
7718
7897
|
},
|
|
7719
7898
|
"borderColor": {
|
|
7720
|
-
"red": 0.
|
|
7721
|
-
"green": 0.
|
|
7722
|
-
"blue": 0.
|
|
7899
|
+
"red": 0.00392,
|
|
7900
|
+
"green": 0.41961,
|
|
7901
|
+
"blue": 0.41569,
|
|
7723
7902
|
"alpha": 1
|
|
7724
7903
|
},
|
|
7725
7904
|
"borderRadius": 4,
|
|
7726
|
-
"borderWidth":
|
|
7905
|
+
"borderWidth": 1,
|
|
7727
7906
|
"color": {
|
|
7728
|
-
"red":
|
|
7729
|
-
"green":
|
|
7730
|
-
"blue":
|
|
7907
|
+
"red": 0.00392,
|
|
7908
|
+
"green": 0.41961,
|
|
7909
|
+
"blue": 0.41569,
|
|
7731
7910
|
"alpha": 1
|
|
7732
7911
|
},
|
|
7733
7912
|
"fontName": "StagSans",
|
|
7734
|
-
"fontSize":
|
|
7913
|
+
"fontSize": 16,
|
|
7735
7914
|
"fontWeight": 600,
|
|
7736
|
-
"icon": "
|
|
7915
|
+
"icon": "PaletteIconAdd",
|
|
7737
7916
|
"iconAlignSelf": "center",
|
|
7738
7917
|
"iconBackground": {
|
|
7739
7918
|
"red": 1,
|
|
@@ -7748,10 +7927,10 @@
|
|
|
7748
7927
|
"blue": 0.41569,
|
|
7749
7928
|
"alpha": 1
|
|
7750
7929
|
},
|
|
7751
|
-
"iconPadding":
|
|
7930
|
+
"iconPadding": 2,
|
|
7752
7931
|
"iconPosition": "right",
|
|
7753
|
-
"iconSize":
|
|
7754
|
-
"iconSpace":
|
|
7932
|
+
"iconSize": 16,
|
|
7933
|
+
"iconSpace": 2,
|
|
7755
7934
|
"iconTranslateX": 0,
|
|
7756
7935
|
"iconTranslateY": 0,
|
|
7757
7936
|
"lineHeight": 1.5,
|
|
@@ -7770,14 +7949,13 @@
|
|
|
7770
7949
|
"alpha": 0
|
|
7771
7950
|
},
|
|
7772
7951
|
"outerBorderGap": 2,
|
|
7773
|
-
"outerBorderWidth":
|
|
7952
|
+
"outerBorderWidth": 0,
|
|
7774
7953
|
"paddingBottom": 8,
|
|
7775
|
-
"paddingLeft":
|
|
7776
|
-
"paddingRight":
|
|
7954
|
+
"paddingLeft": 16,
|
|
7955
|
+
"paddingRight": 8,
|
|
7777
7956
|
"paddingTop": 8,
|
|
7778
7957
|
"shadow": null,
|
|
7779
|
-
"textAlign": "center"
|
|
7780
|
-
"width": null
|
|
7958
|
+
"textAlign": "center"
|
|
7781
7959
|
}
|
|
7782
7960
|
},
|
|
7783
7961
|
"TermsAndConditions": {
|
|
@@ -8120,27 +8298,43 @@
|
|
|
8120
8298
|
}
|
|
8121
8299
|
},
|
|
8122
8300
|
"Toast": {
|
|
8123
|
-
"appearances": {
|
|
8124
|
-
|
|
8301
|
+
"appearances": {
|
|
8302
|
+
"viewport": {
|
|
8303
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
8304
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
8305
|
+
"type": "state"
|
|
8306
|
+
}
|
|
8307
|
+
},
|
|
8308
|
+
"rules": [
|
|
8309
|
+
{
|
|
8310
|
+
"if": {
|
|
8311
|
+
"viewport": ["xs"]
|
|
8312
|
+
},
|
|
8313
|
+
"tokens": {
|
|
8314
|
+
"animationPaddingBottomAfter": 8,
|
|
8315
|
+
"animationPaddingTopAfter": 8
|
|
8316
|
+
}
|
|
8317
|
+
}
|
|
8318
|
+
],
|
|
8125
8319
|
"tokens": {
|
|
8126
8320
|
"animationBackgroundColorAfter": {
|
|
8127
|
-
"red":
|
|
8128
|
-
"green":
|
|
8129
|
-
"blue":
|
|
8321
|
+
"red": 0.93725,
|
|
8322
|
+
"green": 0.93725,
|
|
8323
|
+
"blue": 0.93725,
|
|
8130
8324
|
"alpha": 1
|
|
8131
8325
|
},
|
|
8132
8326
|
"animationBackgroundColorBefore": {
|
|
8133
|
-
"red": 1,
|
|
8134
|
-
"green": 1,
|
|
8135
|
-
"blue": 1,
|
|
8136
|
-
"alpha": 1
|
|
8137
|
-
},
|
|
8138
|
-
"animationColorAfter": {
|
|
8139
8327
|
"red": 0.00392,
|
|
8140
8328
|
"green": 0.41961,
|
|
8141
8329
|
"blue": 0.41569,
|
|
8142
8330
|
"alpha": 1
|
|
8143
8331
|
},
|
|
8332
|
+
"animationColorAfter": {
|
|
8333
|
+
"red": 0,
|
|
8334
|
+
"green": 0,
|
|
8335
|
+
"blue": 0,
|
|
8336
|
+
"alpha": 1
|
|
8337
|
+
},
|
|
8144
8338
|
"animationColorBefore": {
|
|
8145
8339
|
"red": 1,
|
|
8146
8340
|
"green": 1,
|
|
@@ -8148,9 +8342,9 @@
|
|
|
8148
8342
|
"alpha": 1
|
|
8149
8343
|
},
|
|
8150
8344
|
"animationDivColorAfter": {
|
|
8151
|
-
"red":
|
|
8152
|
-
"green":
|
|
8153
|
-
"blue":
|
|
8345
|
+
"red": 0.00392,
|
|
8346
|
+
"green": 0.41961,
|
|
8347
|
+
"blue": 0.41569,
|
|
8154
8348
|
"alpha": 1
|
|
8155
8349
|
},
|
|
8156
8350
|
"animationDivColorBefore": {
|
|
@@ -8165,10 +8359,12 @@
|
|
|
8165
8359
|
"animationPaddingBottomBefore": 0,
|
|
8166
8360
|
"animationPaddingTopAfter": 16,
|
|
8167
8361
|
"animationPaddingTopBefore": 0,
|
|
8362
|
+
"chevronlinkFontName": "StagSans",
|
|
8363
|
+
"chevronlinkFontWeight": 400,
|
|
8168
8364
|
"containerBackgroundColor": {
|
|
8169
|
-
"red":
|
|
8170
|
-
"green":
|
|
8171
|
-
"blue":
|
|
8365
|
+
"red": 0.00392,
|
|
8366
|
+
"green": 0.41961,
|
|
8367
|
+
"blue": 0.41569,
|
|
8172
8368
|
"alpha": 1
|
|
8173
8369
|
},
|
|
8174
8370
|
"containerGap": 12
|
|
@@ -8528,6 +8724,11 @@
|
|
|
8528
8724
|
},
|
|
8529
8725
|
"Typography": {
|
|
8530
8726
|
"appearances": {
|
|
8727
|
+
"bold": {
|
|
8728
|
+
"description": "Sets the font weight, to bold on some body text styles. Does not change accessibility properties.",
|
|
8729
|
+
"type": "variant",
|
|
8730
|
+
"values": [true]
|
|
8731
|
+
},
|
|
8531
8732
|
"colour": {
|
|
8532
8733
|
"type": "variant",
|
|
8533
8734
|
"values": [
|
|
@@ -8564,6 +8765,7 @@
|
|
|
8564
8765
|
"small",
|
|
8565
8766
|
"medium",
|
|
8566
8767
|
"large",
|
|
8768
|
+
"eyebrow",
|
|
8567
8769
|
"h1",
|
|
8568
8770
|
"h2",
|
|
8569
8771
|
"h3",
|
|
@@ -8604,6 +8806,16 @@
|
|
|
8604
8806
|
"fontWeight": 700
|
|
8605
8807
|
}
|
|
8606
8808
|
},
|
|
8809
|
+
{
|
|
8810
|
+
"description": "Please only bold single words while using with headings",
|
|
8811
|
+
"if": {
|
|
8812
|
+
"bold": true
|
|
8813
|
+
},
|
|
8814
|
+
"tokens": {
|
|
8815
|
+
"fontName": "StagSans",
|
|
8816
|
+
"fontWeight": 600
|
|
8817
|
+
}
|
|
8818
|
+
},
|
|
8607
8819
|
{
|
|
8608
8820
|
"if": {
|
|
8609
8821
|
"size": "large"
|
|
@@ -8613,6 +8825,24 @@
|
|
|
8613
8825
|
"lineHeight": 1.4
|
|
8614
8826
|
}
|
|
8615
8827
|
},
|
|
8828
|
+
{
|
|
8829
|
+
"if": {
|
|
8830
|
+
"size": "eyebrow"
|
|
8831
|
+
},
|
|
8832
|
+
"tokens": {
|
|
8833
|
+
"color": {
|
|
8834
|
+
"red": 0.34902,
|
|
8835
|
+
"green": 0.34902,
|
|
8836
|
+
"blue": 0.34902,
|
|
8837
|
+
"alpha": 1
|
|
8838
|
+
},
|
|
8839
|
+
"fontName": "StagSans",
|
|
8840
|
+
"fontSize": 14,
|
|
8841
|
+
"fontWeight": 600,
|
|
8842
|
+
"lineHeight": 1.42857142857,
|
|
8843
|
+
"textTransform": "uppercase"
|
|
8844
|
+
}
|
|
8845
|
+
},
|
|
8616
8846
|
{
|
|
8617
8847
|
"if": {
|
|
8618
8848
|
"compact": true,
|
|
@@ -9462,7 +9692,7 @@
|
|
|
9462
9692
|
}
|
|
9463
9693
|
},
|
|
9464
9694
|
"metadata": {
|
|
9465
|
-
"themeTokensVersion": "2.
|
|
9695
|
+
"themeTokensVersion": "2.33.0",
|
|
9466
9696
|
"name": "theme-koodo"
|
|
9467
9697
|
}
|
|
9468
9698
|
}
|