@telus-uds/theme-koodo 3.29.0 → 3.31.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 +748 -553
- package/build/android/theme.json +297 -100
- package/build/ios/schema.json +748 -553
- package/build/ios/theme.json +297 -100
- package/build/rn/schema.json +748 -553
- package/build/rn/theme.js +197 -93
- package/package.json +4 -4
- package/theme.json +208 -90
package/build/ios/theme.json
CHANGED
|
@@ -1233,8 +1233,31 @@
|
|
|
1233
1233
|
}
|
|
1234
1234
|
},
|
|
1235
1235
|
"ButtonGroup": {
|
|
1236
|
-
"appearances": {
|
|
1237
|
-
|
|
1236
|
+
"appearances": {
|
|
1237
|
+
"viewport": {
|
|
1238
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
1239
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
1240
|
+
"type": "state"
|
|
1241
|
+
}
|
|
1242
|
+
},
|
|
1243
|
+
"rules": [
|
|
1244
|
+
{
|
|
1245
|
+
"if": {
|
|
1246
|
+
"viewport": ["xs", "sm"]
|
|
1247
|
+
},
|
|
1248
|
+
"tokens": {
|
|
1249
|
+
"space": 2
|
|
1250
|
+
}
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"if": {
|
|
1254
|
+
"viewport": ["md", "lg", "xl"]
|
|
1255
|
+
},
|
|
1256
|
+
"tokens": {
|
|
1257
|
+
"space": 3
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1260
|
+
],
|
|
1238
1261
|
"tokens": {
|
|
1239
1262
|
"alignItems": "center",
|
|
1240
1263
|
"direction": "row",
|
|
@@ -1242,7 +1265,7 @@
|
|
|
1242
1265
|
"flexGrow": 0,
|
|
1243
1266
|
"flexShrink": 0,
|
|
1244
1267
|
"justifyContent": "flex-start",
|
|
1245
|
-
"space":
|
|
1268
|
+
"space": 2
|
|
1246
1269
|
}
|
|
1247
1270
|
},
|
|
1248
1271
|
"ButtonGroupItem": {
|
|
@@ -1275,15 +1298,9 @@
|
|
|
1275
1298
|
},
|
|
1276
1299
|
"tokens": {
|
|
1277
1300
|
"backgroundColor": {
|
|
1278
|
-
"red": 0.
|
|
1279
|
-
"green": 0.
|
|
1280
|
-
"blue": 0.
|
|
1281
|
-
"alpha": 1
|
|
1282
|
-
},
|
|
1283
|
-
"borderColor": {
|
|
1284
|
-
"red": 0.00392,
|
|
1285
|
-
"green": 0.41961,
|
|
1286
|
-
"blue": 0.41569,
|
|
1301
|
+
"red": 0.10588,
|
|
1302
|
+
"green": 0.27843,
|
|
1303
|
+
"blue": 0.27451,
|
|
1287
1304
|
"alpha": 1
|
|
1288
1305
|
},
|
|
1289
1306
|
"color": {
|
|
@@ -1299,29 +1316,32 @@
|
|
|
1299
1316
|
"selected": true
|
|
1300
1317
|
},
|
|
1301
1318
|
"tokens": {
|
|
1302
|
-
"
|
|
1303
|
-
"outerBorderColor": {
|
|
1319
|
+
"backgroundColor": {
|
|
1304
1320
|
"red": 0.00392,
|
|
1305
1321
|
"green": 0.41961,
|
|
1306
1322
|
"blue": 0.41569,
|
|
1307
1323
|
"alpha": 1
|
|
1308
1324
|
},
|
|
1309
|
-
"
|
|
1310
|
-
|
|
1325
|
+
"color": {
|
|
1326
|
+
"red": 1,
|
|
1327
|
+
"green": 1,
|
|
1328
|
+
"blue": 1,
|
|
1329
|
+
"alpha": 1
|
|
1330
|
+
}
|
|
1311
1331
|
}
|
|
1312
1332
|
},
|
|
1313
1333
|
{
|
|
1314
1334
|
"if": {
|
|
1315
|
-
"
|
|
1335
|
+
"pressed": true,
|
|
1336
|
+
"selected": true
|
|
1316
1337
|
},
|
|
1317
1338
|
"tokens": {
|
|
1318
1339
|
"backgroundColor": {
|
|
1319
|
-
"red": 0.
|
|
1320
|
-
"green": 0.
|
|
1321
|
-
"blue": 0.
|
|
1340
|
+
"red": 0.10588,
|
|
1341
|
+
"green": 0.27843,
|
|
1342
|
+
"blue": 0.27451,
|
|
1322
1343
|
"alpha": 1
|
|
1323
1344
|
},
|
|
1324
|
-
"borderWidth": 0,
|
|
1325
1345
|
"color": {
|
|
1326
1346
|
"red": 1,
|
|
1327
1347
|
"green": 1,
|
|
@@ -1332,18 +1352,22 @@
|
|
|
1332
1352
|
},
|
|
1333
1353
|
{
|
|
1334
1354
|
"if": {
|
|
1335
|
-
"
|
|
1355
|
+
"inactive": true
|
|
1336
1356
|
},
|
|
1337
1357
|
"tokens": {
|
|
1338
|
-
"
|
|
1339
|
-
|
|
1340
|
-
"
|
|
1341
|
-
"
|
|
1342
|
-
"blue": 0.41569,
|
|
1358
|
+
"backgroundColor": {
|
|
1359
|
+
"red": 0.78824,
|
|
1360
|
+
"green": 0.78431,
|
|
1361
|
+
"blue": 0.78431,
|
|
1343
1362
|
"alpha": 1
|
|
1344
1363
|
},
|
|
1345
|
-
"
|
|
1346
|
-
"
|
|
1364
|
+
"borderWidth": 0,
|
|
1365
|
+
"color": {
|
|
1366
|
+
"red": 1,
|
|
1367
|
+
"green": 1,
|
|
1368
|
+
"blue": 1,
|
|
1369
|
+
"alpha": 1
|
|
1370
|
+
}
|
|
1347
1371
|
}
|
|
1348
1372
|
},
|
|
1349
1373
|
{
|
|
@@ -1358,32 +1382,32 @@
|
|
|
1358
1382
|
"tokens": {
|
|
1359
1383
|
"alignSelf": "flex-start",
|
|
1360
1384
|
"backgroundColor": {
|
|
1361
|
-
"red":
|
|
1362
|
-
"green":
|
|
1363
|
-
"blue":
|
|
1385
|
+
"red": 1,
|
|
1386
|
+
"green": 1,
|
|
1387
|
+
"blue": 1,
|
|
1364
1388
|
"alpha": 1
|
|
1365
1389
|
},
|
|
1366
1390
|
"borderColor": {
|
|
1367
|
-
"red": 0.
|
|
1368
|
-
"green": 0.
|
|
1369
|
-
"blue": 0.
|
|
1391
|
+
"red": 0.00392,
|
|
1392
|
+
"green": 0.41961,
|
|
1393
|
+
"blue": 0.41569,
|
|
1370
1394
|
"alpha": 1
|
|
1371
1395
|
},
|
|
1372
1396
|
"borderRadius": 4,
|
|
1373
|
-
"borderWidth":
|
|
1397
|
+
"borderWidth": 1,
|
|
1374
1398
|
"color": {
|
|
1375
|
-
"red":
|
|
1376
|
-
"green":
|
|
1377
|
-
"blue":
|
|
1399
|
+
"red": 0.00392,
|
|
1400
|
+
"green": 0.41961,
|
|
1401
|
+
"blue": 0.41569,
|
|
1378
1402
|
"alpha": 1
|
|
1379
1403
|
},
|
|
1380
1404
|
"fontName": "StagSans",
|
|
1381
|
-
"fontSize":
|
|
1405
|
+
"fontSize": 16,
|
|
1382
1406
|
"fontWeight": 600,
|
|
1383
|
-
"height":
|
|
1407
|
+
"height": 48,
|
|
1384
1408
|
"iconSize": 20,
|
|
1385
|
-
"iconSpace":
|
|
1386
|
-
"lineHeight": 1.
|
|
1409
|
+
"iconSpace": 2,
|
|
1410
|
+
"lineHeight": 1.5,
|
|
1387
1411
|
"minWidth": 0,
|
|
1388
1412
|
"opacity": 1,
|
|
1389
1413
|
"outerBackgroundColor": {
|
|
@@ -1398,8 +1422,8 @@
|
|
|
1398
1422
|
"blue": 0,
|
|
1399
1423
|
"alpha": 0
|
|
1400
1424
|
},
|
|
1401
|
-
"outerBorderGap":
|
|
1402
|
-
"outerBorderWidth":
|
|
1425
|
+
"outerBorderGap": 3,
|
|
1426
|
+
"outerBorderWidth": 1,
|
|
1403
1427
|
"paddingBottom": 8,
|
|
1404
1428
|
"paddingLeft": 24,
|
|
1405
1429
|
"paddingRight": 24,
|
|
@@ -2655,6 +2679,47 @@
|
|
|
2655
2679
|
"titleFontSize": 16
|
|
2656
2680
|
}
|
|
2657
2681
|
},
|
|
2682
|
+
"Fieldset": {
|
|
2683
|
+
"appearances": {
|
|
2684
|
+
"error": {
|
|
2685
|
+
"type": "variant",
|
|
2686
|
+
"values": [true]
|
|
2687
|
+
}
|
|
2688
|
+
},
|
|
2689
|
+
"rules": [
|
|
2690
|
+
{
|
|
2691
|
+
"if": {
|
|
2692
|
+
"error": true
|
|
2693
|
+
},
|
|
2694
|
+
"tokens": {
|
|
2695
|
+
"outlineColor": {
|
|
2696
|
+
"red": 0.93333,
|
|
2697
|
+
"green": 0.17255,
|
|
2698
|
+
"blue": 0.4549,
|
|
2699
|
+
"alpha": 1
|
|
2700
|
+
}
|
|
2701
|
+
}
|
|
2702
|
+
}
|
|
2703
|
+
],
|
|
2704
|
+
"tokens": {
|
|
2705
|
+
"borderBottomLeftRadius": 0,
|
|
2706
|
+
"borderBottomRightRadius": 0,
|
|
2707
|
+
"borderTopLeftRadius": 0,
|
|
2708
|
+
"borderTopRightRadius": 0,
|
|
2709
|
+
"outlineColor": {
|
|
2710
|
+
"red": 0,
|
|
2711
|
+
"green": 0,
|
|
2712
|
+
"blue": 0,
|
|
2713
|
+
"alpha": 0
|
|
2714
|
+
},
|
|
2715
|
+
"outlineOffset": null,
|
|
2716
|
+
"outlineWidth": 0,
|
|
2717
|
+
"paddingBottom": 0,
|
|
2718
|
+
"paddingLeft": 0,
|
|
2719
|
+
"paddingRight": 0,
|
|
2720
|
+
"paddingTop": 0
|
|
2721
|
+
}
|
|
2722
|
+
},
|
|
2658
2723
|
"Footnote": {
|
|
2659
2724
|
"appearances": {},
|
|
2660
2725
|
"rules": [],
|
|
@@ -5622,6 +5687,26 @@
|
|
|
5622
5687
|
"paddingTop": 16
|
|
5623
5688
|
}
|
|
5624
5689
|
},
|
|
5690
|
+
{
|
|
5691
|
+
"if": {
|
|
5692
|
+
"checked": true
|
|
5693
|
+
},
|
|
5694
|
+
"tokens": {
|
|
5695
|
+
"borderColor": {
|
|
5696
|
+
"red": 0.78824,
|
|
5697
|
+
"green": 0.78431,
|
|
5698
|
+
"blue": 0.78431,
|
|
5699
|
+
"alpha": 1
|
|
5700
|
+
},
|
|
5701
|
+
"radioInputBorderColor": {
|
|
5702
|
+
"red": 0.00392,
|
|
5703
|
+
"green": 0.41961,
|
|
5704
|
+
"blue": 0.41569,
|
|
5705
|
+
"alpha": 1
|
|
5706
|
+
},
|
|
5707
|
+
"radioInputBorderWidth": 2
|
|
5708
|
+
}
|
|
5709
|
+
},
|
|
5625
5710
|
{
|
|
5626
5711
|
"description": "Pressed state matches hover state plus light grey background",
|
|
5627
5712
|
"if": {
|
|
@@ -5635,18 +5720,20 @@
|
|
|
5635
5720
|
"alpha": 1
|
|
5636
5721
|
},
|
|
5637
5722
|
"outerBorderColor": {
|
|
5638
|
-
"red": 0.
|
|
5639
|
-
"green": 0.
|
|
5640
|
-
"blue": 0.
|
|
5723
|
+
"red": 0.78824,
|
|
5724
|
+
"green": 0.78431,
|
|
5725
|
+
"blue": 0.78431,
|
|
5641
5726
|
"alpha": 1
|
|
5642
5727
|
},
|
|
5643
|
-
"
|
|
5644
|
-
"
|
|
5645
|
-
|
|
5646
|
-
"
|
|
5647
|
-
"
|
|
5728
|
+
"outerBorderGap": 0,
|
|
5729
|
+
"outerBorderWidth": 1,
|
|
5730
|
+
"radioOuterBorderColor": {
|
|
5731
|
+
"red": 0.0902,
|
|
5732
|
+
"green": 0.21176,
|
|
5733
|
+
"blue": 0.4902,
|
|
5648
5734
|
"alpha": 1
|
|
5649
|
-
}
|
|
5735
|
+
},
|
|
5736
|
+
"radioOuterBorderGap": 2
|
|
5650
5737
|
}
|
|
5651
5738
|
},
|
|
5652
5739
|
{
|
|
@@ -5672,10 +5759,16 @@
|
|
|
5672
5759
|
"blue": 0.4,
|
|
5673
5760
|
"alpha": 1
|
|
5674
5761
|
},
|
|
5762
|
+
"radioCheckedBackgroundColor": {
|
|
5763
|
+
"red": 0.78824,
|
|
5764
|
+
"green": 0.78431,
|
|
5765
|
+
"blue": 0.78431,
|
|
5766
|
+
"alpha": 1
|
|
5767
|
+
},
|
|
5675
5768
|
"radioInputBackgroundColor": {
|
|
5676
|
-
"red": 0.
|
|
5677
|
-
"green": 0.
|
|
5678
|
-
"blue": 0.
|
|
5769
|
+
"red": 0.78824,
|
|
5770
|
+
"green": 0.78431,
|
|
5771
|
+
"blue": 0.78431,
|
|
5679
5772
|
"alpha": 1
|
|
5680
5773
|
},
|
|
5681
5774
|
"radioInputBorderColor": {
|
|
@@ -5683,7 +5776,16 @@
|
|
|
5683
5776
|
"green": 0.78431,
|
|
5684
5777
|
"blue": 0.78431,
|
|
5685
5778
|
"alpha": 1
|
|
5686
|
-
}
|
|
5779
|
+
},
|
|
5780
|
+
"radioInputSize": 16,
|
|
5781
|
+
"radioOuterBorderColor": {
|
|
5782
|
+
"red": 0.78824,
|
|
5783
|
+
"green": 0.78431,
|
|
5784
|
+
"blue": 0.78431,
|
|
5785
|
+
"alpha": 1
|
|
5786
|
+
},
|
|
5787
|
+
"radioOuterBorderGap": 2,
|
|
5788
|
+
"radioOuterBorderWidth": 1
|
|
5687
5789
|
}
|
|
5688
5790
|
},
|
|
5689
5791
|
{
|
|
@@ -5720,9 +5822,9 @@
|
|
|
5720
5822
|
"alpha": 1
|
|
5721
5823
|
},
|
|
5722
5824
|
"borderColor": {
|
|
5723
|
-
"red": 0,
|
|
5724
|
-
"green": 0,
|
|
5725
|
-
"blue": 0,
|
|
5825
|
+
"red": 0.78824,
|
|
5826
|
+
"green": 0.78431,
|
|
5827
|
+
"blue": 0.78431,
|
|
5726
5828
|
"alpha": 1
|
|
5727
5829
|
},
|
|
5728
5830
|
"borderRadius": 4,
|
|
@@ -5744,7 +5846,7 @@
|
|
|
5744
5846
|
"fontWeight": 700,
|
|
5745
5847
|
"letterSpacing": 0,
|
|
5746
5848
|
"lineHeight": 1.4,
|
|
5747
|
-
"minWidth":
|
|
5849
|
+
"minWidth": 288,
|
|
5748
5850
|
"outerBorderColor": {
|
|
5749
5851
|
"red": 0,
|
|
5750
5852
|
"green": 0,
|
|
@@ -5754,16 +5856,16 @@
|
|
|
5754
5856
|
"outerBorderGap": 0,
|
|
5755
5857
|
"outerBorderWidth": 0,
|
|
5756
5858
|
"paddingBottom": 16,
|
|
5757
|
-
"paddingLeft":
|
|
5859
|
+
"paddingLeft": 8,
|
|
5758
5860
|
"paddingRight": 16,
|
|
5759
|
-
"paddingTop":
|
|
5861
|
+
"paddingTop": 12,
|
|
5760
5862
|
"radioCheckedBackgroundColor": {
|
|
5761
5863
|
"red": 0.00392,
|
|
5762
5864
|
"green": 0.41961,
|
|
5763
5865
|
"blue": 0.41569,
|
|
5764
5866
|
"alpha": 1
|
|
5765
5867
|
},
|
|
5766
|
-
"radioCheckedSize":
|
|
5868
|
+
"radioCheckedSize": 16,
|
|
5767
5869
|
"radioInputBackgroundColor": {
|
|
5768
5870
|
"red": 1,
|
|
5769
5871
|
"green": 1,
|
|
@@ -5784,7 +5886,7 @@
|
|
|
5784
5886
|
"alpha": 0
|
|
5785
5887
|
},
|
|
5786
5888
|
"radioInputOutlineWidth": 0,
|
|
5787
|
-
"radioInputSize":
|
|
5889
|
+
"radioInputSize": 24,
|
|
5788
5890
|
"radioOuterBorderColor": {
|
|
5789
5891
|
"red": 0,
|
|
5790
5892
|
"green": 0,
|
|
@@ -5800,6 +5902,11 @@
|
|
|
5800
5902
|
},
|
|
5801
5903
|
"RadioCardGroup": {
|
|
5802
5904
|
"appearances": {
|
|
5905
|
+
"fullWidth": {
|
|
5906
|
+
"description": "Makes cards always occupy the full width of the parent, regardless of viewport",
|
|
5907
|
+
"type": "variant",
|
|
5908
|
+
"values": [true]
|
|
5909
|
+
},
|
|
5803
5910
|
"viewport": {
|
|
5804
5911
|
"description": "The size label for the current screen viewport based on the current screen width",
|
|
5805
5912
|
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
@@ -5809,24 +5916,33 @@
|
|
|
5809
5916
|
"rules": [
|
|
5810
5917
|
{
|
|
5811
5918
|
"if": {
|
|
5812
|
-
"
|
|
5919
|
+
"fullWidth": null,
|
|
5920
|
+
"viewport": ["md", "lg", "xl"]
|
|
5813
5921
|
},
|
|
5814
5922
|
"tokens": {
|
|
5815
|
-
"direction": "
|
|
5923
|
+
"direction": "row",
|
|
5924
|
+
"space": 5
|
|
5816
5925
|
}
|
|
5817
5926
|
}
|
|
5818
5927
|
],
|
|
5819
5928
|
"tokens": {
|
|
5820
|
-
"direction": "
|
|
5821
|
-
"fieldSpace":
|
|
5822
|
-
"space":
|
|
5929
|
+
"direction": "column",
|
|
5930
|
+
"fieldSpace": 3,
|
|
5931
|
+
"space": 3
|
|
5823
5932
|
}
|
|
5824
5933
|
},
|
|
5825
5934
|
"RadioGroup": {
|
|
5826
5935
|
"appearances": {},
|
|
5827
5936
|
"rules": [],
|
|
5828
5937
|
"tokens": {
|
|
5938
|
+
"borderBottomLeftRadius": 1,
|
|
5939
|
+
"borderBottomRightRadius": 1,
|
|
5940
|
+
"borderTopLeftRadius": 1,
|
|
5941
|
+
"borderTopRightRadius": 1,
|
|
5829
5942
|
"fieldSpace": 2,
|
|
5943
|
+
"outlineOffset": 8,
|
|
5944
|
+
"outlineWidth": 1,
|
|
5945
|
+
"showIcon": true,
|
|
5830
5946
|
"space": 2
|
|
5831
5947
|
}
|
|
5832
5948
|
},
|
|
@@ -7515,6 +7631,11 @@
|
|
|
7515
7631
|
"values": [true],
|
|
7516
7632
|
"type": "state"
|
|
7517
7633
|
},
|
|
7634
|
+
"numeric": {
|
|
7635
|
+
"description": "capability to only allow numbers",
|
|
7636
|
+
"type": "variant",
|
|
7637
|
+
"values": [true]
|
|
7638
|
+
},
|
|
7518
7639
|
"password": {
|
|
7519
7640
|
"description": "capability that helps masking and unmasking text",
|
|
7520
7641
|
"type": "variant",
|
|
@@ -7802,9 +7923,15 @@
|
|
|
7802
7923
|
},
|
|
7803
7924
|
"tokens": {
|
|
7804
7925
|
"backgroundColor": {
|
|
7805
|
-
"red": 0.
|
|
7806
|
-
"green": 0.
|
|
7807
|
-
"blue":
|
|
7926
|
+
"red": 0.7098,
|
|
7927
|
+
"green": 0.70588,
|
|
7928
|
+
"blue": 0.70588,
|
|
7929
|
+
"alpha": 1
|
|
7930
|
+
},
|
|
7931
|
+
"switchColor": {
|
|
7932
|
+
"red": 0.31373,
|
|
7933
|
+
"green": 0.31373,
|
|
7934
|
+
"blue": 0.31373,
|
|
7808
7935
|
"alpha": 1
|
|
7809
7936
|
}
|
|
7810
7937
|
}
|
|
@@ -7815,9 +7942,28 @@
|
|
|
7815
7942
|
},
|
|
7816
7943
|
"tokens": {
|
|
7817
7944
|
"backgroundColor": {
|
|
7945
|
+
"red": 0.89804,
|
|
7946
|
+
"green": 0.96863,
|
|
7947
|
+
"blue": 0.98431,
|
|
7948
|
+
"alpha": 1
|
|
7949
|
+
},
|
|
7950
|
+
"icon": "PaletteIconCheck",
|
|
7951
|
+
"iconColor": {
|
|
7952
|
+
"red": 1,
|
|
7953
|
+
"green": 1,
|
|
7954
|
+
"blue": 1,
|
|
7955
|
+
"alpha": 1
|
|
7956
|
+
},
|
|
7957
|
+
"switchBorderColor": {
|
|
7818
7958
|
"red": 0,
|
|
7819
|
-
"green": 0
|
|
7820
|
-
"blue": 0
|
|
7959
|
+
"green": 0,
|
|
7960
|
+
"blue": 0,
|
|
7961
|
+
"alpha": 0
|
|
7962
|
+
},
|
|
7963
|
+
"switchColor": {
|
|
7964
|
+
"red": 0.00392,
|
|
7965
|
+
"green": 0.41961,
|
|
7966
|
+
"blue": 0.41569,
|
|
7821
7967
|
"alpha": 1
|
|
7822
7968
|
}
|
|
7823
7969
|
}
|
|
@@ -7841,16 +7987,40 @@
|
|
|
7841
7987
|
"inactive": true
|
|
7842
7988
|
},
|
|
7843
7989
|
"tokens": {
|
|
7844
|
-
"
|
|
7990
|
+
"backgroundColor": {
|
|
7991
|
+
"red": 0.93725,
|
|
7992
|
+
"green": 0.93725,
|
|
7993
|
+
"blue": 0.93725,
|
|
7994
|
+
"alpha": 1
|
|
7995
|
+
},
|
|
7996
|
+
"iconColor": {
|
|
7997
|
+
"red": 0.78824,
|
|
7998
|
+
"green": 0.78431,
|
|
7999
|
+
"blue": 0.78431,
|
|
8000
|
+
"alpha": 1
|
|
8001
|
+
},
|
|
8002
|
+
"opacity": 0.5,
|
|
8003
|
+
"switchBorderColor": {
|
|
8004
|
+
"red": 0,
|
|
8005
|
+
"green": 0,
|
|
8006
|
+
"blue": 0,
|
|
8007
|
+
"alpha": 0
|
|
8008
|
+
},
|
|
8009
|
+
"switchColor": {
|
|
8010
|
+
"red": 1,
|
|
8011
|
+
"green": 1,
|
|
8012
|
+
"blue": 1,
|
|
8013
|
+
"alpha": 1
|
|
8014
|
+
}
|
|
7845
8015
|
}
|
|
7846
8016
|
}
|
|
7847
8017
|
],
|
|
7848
8018
|
"tokens": {
|
|
7849
8019
|
"alignSelf": "flex-start",
|
|
7850
8020
|
"backgroundColor": {
|
|
7851
|
-
"red": 0.
|
|
7852
|
-
"green": 0.
|
|
7853
|
-
"blue": 0.
|
|
8021
|
+
"red": 0.78824,
|
|
8022
|
+
"green": 0.78431,
|
|
8023
|
+
"blue": 0.78431,
|
|
7854
8024
|
"alpha": 1
|
|
7855
8025
|
},
|
|
7856
8026
|
"borderColor": {
|
|
@@ -7859,7 +8029,7 @@
|
|
|
7859
8029
|
"blue": 0,
|
|
7860
8030
|
"alpha": 0
|
|
7861
8031
|
},
|
|
7862
|
-
"borderRadius":
|
|
8032
|
+
"borderRadius": 32,
|
|
7863
8033
|
"borderWidth": 0,
|
|
7864
8034
|
"icon": null,
|
|
7865
8035
|
"iconColor": {
|
|
@@ -7868,7 +8038,7 @@
|
|
|
7868
8038
|
"blue": 0,
|
|
7869
8039
|
"alpha": 0
|
|
7870
8040
|
},
|
|
7871
|
-
"iconSize":
|
|
8041
|
+
"iconSize": 12,
|
|
7872
8042
|
"labelColor": {
|
|
7873
8043
|
"red": 0,
|
|
7874
8044
|
"green": 0,
|
|
@@ -7877,7 +8047,7 @@
|
|
|
7877
8047
|
},
|
|
7878
8048
|
"labelFontName": "StagSans",
|
|
7879
8049
|
"labelFontSize": 16,
|
|
7880
|
-
"labelFontWeight":
|
|
8050
|
+
"labelFontWeight": 600,
|
|
7881
8051
|
"labelLineHeight": 1.5,
|
|
7882
8052
|
"labelMarginLeft": 8,
|
|
7883
8053
|
"opacity": 1,
|
|
@@ -7893,12 +8063,12 @@
|
|
|
7893
8063
|
"blue": 0,
|
|
7894
8064
|
"alpha": 0
|
|
7895
8065
|
},
|
|
7896
|
-
"outerBorderGap":
|
|
7897
|
-
"outerBorderWidth":
|
|
7898
|
-
"paddingBottom":
|
|
7899
|
-
"paddingLeft":
|
|
7900
|
-
"paddingRight":
|
|
7901
|
-
"paddingTop":
|
|
8066
|
+
"outerBorderGap": 0,
|
|
8067
|
+
"outerBorderWidth": 0,
|
|
8068
|
+
"paddingBottom": 0,
|
|
8069
|
+
"paddingLeft": 0,
|
|
8070
|
+
"paddingRight": 0,
|
|
8071
|
+
"paddingTop": 0,
|
|
7902
8072
|
"shadow": null,
|
|
7903
8073
|
"switchBorderColor": {
|
|
7904
8074
|
"red": 0,
|
|
@@ -7909,27 +8079,54 @@
|
|
|
7909
8079
|
"switchBorderRadius": 32,
|
|
7910
8080
|
"switchBorderWidth": 0,
|
|
7911
8081
|
"switchColor": {
|
|
7912
|
-
"red":
|
|
7913
|
-
"green":
|
|
7914
|
-
"blue":
|
|
8082
|
+
"red": 0.34902,
|
|
8083
|
+
"green": 0.34902,
|
|
8084
|
+
"blue": 0.34902,
|
|
7915
8085
|
"alpha": 1
|
|
7916
8086
|
},
|
|
7917
|
-
"switchShadow":
|
|
7918
|
-
|
|
8087
|
+
"switchShadow": {
|
|
8088
|
+
"inset": false,
|
|
8089
|
+
"offsetX": 0,
|
|
8090
|
+
"offsetY": 2,
|
|
8091
|
+
"blur": 2,
|
|
8092
|
+
"spread": 0,
|
|
8093
|
+
"color": {
|
|
8094
|
+
"red": 0,
|
|
8095
|
+
"green": 0,
|
|
8096
|
+
"blue": 0,
|
|
8097
|
+
"alpha": 0.1
|
|
8098
|
+
}
|
|
8099
|
+
},
|
|
8100
|
+
"switchSize": 18,
|
|
7919
8101
|
"trackBorderColor": {
|
|
7920
8102
|
"red": 0,
|
|
7921
8103
|
"green": 0,
|
|
7922
8104
|
"blue": 0,
|
|
7923
8105
|
"alpha": 0
|
|
7924
8106
|
},
|
|
7925
|
-
"trackBorderRadius":
|
|
7926
|
-
"trackBorderWidth":
|
|
7927
|
-
"width":
|
|
8107
|
+
"trackBorderRadius": 12,
|
|
8108
|
+
"trackBorderWidth": 3,
|
|
8109
|
+
"width": 40
|
|
7928
8110
|
}
|
|
7929
8111
|
},
|
|
7930
8112
|
"ToggleSwitchGroup": {
|
|
7931
|
-
"appearances": {
|
|
7932
|
-
|
|
8113
|
+
"appearances": {
|
|
8114
|
+
"viewport": {
|
|
8115
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
8116
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
8117
|
+
"type": "state"
|
|
8118
|
+
}
|
|
8119
|
+
},
|
|
8120
|
+
"rules": [
|
|
8121
|
+
{
|
|
8122
|
+
"if": {
|
|
8123
|
+
"viewport": ["lg", "xl"]
|
|
8124
|
+
},
|
|
8125
|
+
"tokens": {
|
|
8126
|
+
"space": 3
|
|
8127
|
+
}
|
|
8128
|
+
}
|
|
8129
|
+
],
|
|
7933
8130
|
"tokens": {
|
|
7934
8131
|
"alignItems": "flex-start",
|
|
7935
8132
|
"direction": "column",
|
|
@@ -8805,7 +9002,7 @@
|
|
|
8805
9002
|
}
|
|
8806
9003
|
},
|
|
8807
9004
|
"metadata": {
|
|
8808
|
-
"themeTokensVersion": "2.
|
|
9005
|
+
"themeTokensVersion": "2.28.0",
|
|
8809
9006
|
"name": "theme-koodo"
|
|
8810
9007
|
}
|
|
8811
9008
|
}
|