@telus-uds/theme-allium 4.7.0 → 4.9.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 +1752 -1048
- package/build/android/theme.json +823 -254
- package/build/ios/schema.json +1752 -1048
- package/build/ios/theme.json +823 -254
- package/build/rn/schema.json +1752 -1048
- package/build/rn/theme.js +502 -87
- package/package.json +5 -5
- package/theme.json +603 -76
package/build/ios/theme.json
CHANGED
|
@@ -255,6 +255,7 @@
|
|
|
255
255
|
"alpha": 1
|
|
256
256
|
},
|
|
257
257
|
"fontName": "HelveticaNow",
|
|
258
|
+
"fontSize": 12,
|
|
258
259
|
"fontWeight": 700,
|
|
259
260
|
"gradient": null,
|
|
260
261
|
"paddingBottom": 2,
|
|
@@ -2264,8 +2265,7 @@
|
|
|
2264
2265
|
},
|
|
2265
2266
|
"tokens": {
|
|
2266
2267
|
"showPanelTabs": false,
|
|
2267
|
-
"showPreviousNextNavigation": false
|
|
2268
|
-
"thumbnailSize": 48
|
|
2268
|
+
"showPreviousNextNavigation": false
|
|
2269
2269
|
}
|
|
2270
2270
|
}
|
|
2271
2271
|
],
|
|
@@ -2283,25 +2283,12 @@
|
|
|
2283
2283
|
"showPreviousNextNavigation": true,
|
|
2284
2284
|
"spaceBetweenSlideAndPanelNavigation": 32,
|
|
2285
2285
|
"spaceBetweenSlideAndPreviousNextNavigation": 24,
|
|
2286
|
-
"
|
|
2287
|
-
"red": 0
|
|
2288
|
-
"green": 0
|
|
2289
|
-
"blue": 0
|
|
2290
|
-
"alpha":
|
|
2291
|
-
}
|
|
2292
|
-
"thumbnailBorderRadius": 4,
|
|
2293
|
-
"thumbnailBorderWidth": 1,
|
|
2294
|
-
"thumbnailContainerPaddingTop": 24,
|
|
2295
|
-
"thumbnailMargin": 4,
|
|
2296
|
-
"thumbnailPadding": 8,
|
|
2297
|
-
"thumbnailSelectedBorderColor": {
|
|
2298
|
-
"red": 0.40392,
|
|
2299
|
-
"green": 0.43137,
|
|
2300
|
-
"blue": 0.45098,
|
|
2301
|
-
"alpha": 1
|
|
2302
|
-
},
|
|
2303
|
-
"thumbnailSelectedBorderWidth": 2,
|
|
2304
|
-
"thumbnailSize": 56
|
|
2286
|
+
"stepTrackerCurrentBackgroundColor": {
|
|
2287
|
+
"red": 0,
|
|
2288
|
+
"green": 0,
|
|
2289
|
+
"blue": 0,
|
|
2290
|
+
"alpha": 0
|
|
2291
|
+
}
|
|
2305
2292
|
}
|
|
2306
2293
|
},
|
|
2307
2294
|
"CarouselTabsPanelItem": {
|
|
@@ -2441,7 +2428,9 @@
|
|
|
2441
2428
|
"green": 1,
|
|
2442
2429
|
"blue": 1,
|
|
2443
2430
|
"alpha": 1
|
|
2444
|
-
}
|
|
2431
|
+
},
|
|
2432
|
+
"fontName": "HelveticaNow",
|
|
2433
|
+
"fontWeight": 700
|
|
2445
2434
|
}
|
|
2446
2435
|
}
|
|
2447
2436
|
],
|
|
@@ -2468,13 +2457,74 @@
|
|
|
2468
2457
|
"fontWeight": 400,
|
|
2469
2458
|
"justifyContent": "flex-start",
|
|
2470
2459
|
"letterSpacing": 0,
|
|
2471
|
-
"lineHeight": 1.
|
|
2460
|
+
"lineHeight": 1.45,
|
|
2472
2461
|
"paddingBottom": 16,
|
|
2473
2462
|
"paddingLeft": 0,
|
|
2474
2463
|
"paddingRight": 0,
|
|
2475
2464
|
"paddingTop": 0
|
|
2476
2465
|
}
|
|
2477
2466
|
},
|
|
2467
|
+
"CarouselThumbnail": {
|
|
2468
|
+
"appearances": {
|
|
2469
|
+
"pressed": {
|
|
2470
|
+
"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.",
|
|
2471
|
+
"values": [true, false],
|
|
2472
|
+
"type": "state"
|
|
2473
|
+
},
|
|
2474
|
+
"viewport": {
|
|
2475
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
2476
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
2477
|
+
"type": "state"
|
|
2478
|
+
}
|
|
2479
|
+
},
|
|
2480
|
+
"rules": [
|
|
2481
|
+
{
|
|
2482
|
+
"if": {
|
|
2483
|
+
"viewport": ["xs", "sm"]
|
|
2484
|
+
},
|
|
2485
|
+
"tokens": {
|
|
2486
|
+
"alignItems": "flex-start",
|
|
2487
|
+
"size": 48
|
|
2488
|
+
}
|
|
2489
|
+
},
|
|
2490
|
+
{
|
|
2491
|
+
"if": {
|
|
2492
|
+
"pressed": true
|
|
2493
|
+
},
|
|
2494
|
+
"tokens": {
|
|
2495
|
+
"borderColor": {
|
|
2496
|
+
"red": 0.12157,
|
|
2497
|
+
"green": 0.36078,
|
|
2498
|
+
"blue": 0.03529,
|
|
2499
|
+
"alpha": 1
|
|
2500
|
+
},
|
|
2501
|
+
"borderWidth": 2
|
|
2502
|
+
}
|
|
2503
|
+
}
|
|
2504
|
+
],
|
|
2505
|
+
"tokens": {
|
|
2506
|
+
"alignItems": "center",
|
|
2507
|
+
"borderColor": {
|
|
2508
|
+
"red": 0.8902,
|
|
2509
|
+
"green": 0.90196,
|
|
2510
|
+
"blue": 0.9098,
|
|
2511
|
+
"alpha": 1
|
|
2512
|
+
},
|
|
2513
|
+
"borderRadius": 4,
|
|
2514
|
+
"borderWidth": 1,
|
|
2515
|
+
"containerPaddingTop": 24,
|
|
2516
|
+
"margin": 4,
|
|
2517
|
+
"padding": 8,
|
|
2518
|
+
"selectedBorderColor": {
|
|
2519
|
+
"red": 0.40392,
|
|
2520
|
+
"green": 0.43137,
|
|
2521
|
+
"blue": 0.45098,
|
|
2522
|
+
"alpha": 1
|
|
2523
|
+
},
|
|
2524
|
+
"selectedBorderWidth": 2,
|
|
2525
|
+
"size": 72
|
|
2526
|
+
}
|
|
2527
|
+
},
|
|
2478
2528
|
"Checkbox": {
|
|
2479
2529
|
"appearances": {
|
|
2480
2530
|
"checked": {
|
|
@@ -2944,15 +2994,15 @@
|
|
|
2944
2994
|
"alpha": 1
|
|
2945
2995
|
},
|
|
2946
2996
|
"calendarDayBlockedCalendarHoverBackground": {
|
|
2947
|
-
"red": 0.
|
|
2948
|
-
"green": 0.
|
|
2949
|
-
"blue": 0.
|
|
2997
|
+
"red": 0.95686,
|
|
2998
|
+
"green": 0.95686,
|
|
2999
|
+
"blue": 0.96863,
|
|
2950
3000
|
"alpha": 1
|
|
2951
3001
|
},
|
|
2952
3002
|
"calendarDayBlockedCalendarHoverColor": {
|
|
2953
|
-
"red": 0.
|
|
2954
|
-
"green": 0.
|
|
2955
|
-
"blue": 0.
|
|
3003
|
+
"red": 0.69804,
|
|
3004
|
+
"green": 0.72549,
|
|
3005
|
+
"blue": 0.74902,
|
|
2956
3006
|
"alpha": 1
|
|
2957
3007
|
},
|
|
2958
3008
|
"calendarDayDefaultBackgroundColor": {
|
|
@@ -3204,7 +3254,7 @@
|
|
|
3204
3254
|
},
|
|
3205
3255
|
"expanded": {
|
|
3206
3256
|
"description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
|
|
3207
|
-
"values": [true],
|
|
3257
|
+
"values": [true, false],
|
|
3208
3258
|
"type": "state"
|
|
3209
3259
|
},
|
|
3210
3260
|
"mini": {
|
|
@@ -3295,7 +3345,7 @@
|
|
|
3295
3345
|
},
|
|
3296
3346
|
"expanded": {
|
|
3297
3347
|
"description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
|
|
3298
|
-
"values": [true],
|
|
3348
|
+
"values": [true, false],
|
|
3299
3349
|
"type": "state"
|
|
3300
3350
|
},
|
|
3301
3351
|
"inverse": {
|
|
@@ -3462,6 +3512,33 @@
|
|
|
3462
3512
|
"contentPaddingLeft": 24,
|
|
3463
3513
|
"contentPaddingRight": 0,
|
|
3464
3514
|
"contentPaddingTop": 0,
|
|
3515
|
+
"contentPanelBackgroundColor": {
|
|
3516
|
+
"red": 0,
|
|
3517
|
+
"green": 0,
|
|
3518
|
+
"blue": 0,
|
|
3519
|
+
"alpha": 0
|
|
3520
|
+
},
|
|
3521
|
+
"contentPanelBorderColor": {
|
|
3522
|
+
"red": 0,
|
|
3523
|
+
"green": 0,
|
|
3524
|
+
"blue": 0,
|
|
3525
|
+
"alpha": 0
|
|
3526
|
+
},
|
|
3527
|
+
"contentPanelBorderWidth": 0,
|
|
3528
|
+
"contentPanelFontColor": {
|
|
3529
|
+
"red": 0.17255,
|
|
3530
|
+
"green": 0.18039,
|
|
3531
|
+
"blue": 0.18824,
|
|
3532
|
+
"alpha": 1
|
|
3533
|
+
},
|
|
3534
|
+
"contentPanelFontName": "HelveticaNow",
|
|
3535
|
+
"contentPanelFontSize": 16,
|
|
3536
|
+
"contentPanelFontWeight": 700,
|
|
3537
|
+
"contentPanelLineHeight": 1.5,
|
|
3538
|
+
"contentPanelPaddingBottom": 16,
|
|
3539
|
+
"contentPanelPaddingLeft": 24,
|
|
3540
|
+
"contentPanelPaddingRight": 0,
|
|
3541
|
+
"contentPanelPaddingTop": 16,
|
|
3465
3542
|
"expandDividerColor": {
|
|
3466
3543
|
"red": 0,
|
|
3467
3544
|
"green": 0,
|
|
@@ -4437,13 +4514,21 @@
|
|
|
4437
4514
|
"blue": 0,
|
|
4438
4515
|
"alpha": 0
|
|
4439
4516
|
},
|
|
4517
|
+
"borderBottomLeftRadius": null,
|
|
4518
|
+
"borderBottomRightRadius": null,
|
|
4519
|
+
"borderBottomWidth": null,
|
|
4440
4520
|
"borderColor": {
|
|
4441
4521
|
"red": 0.40392,
|
|
4442
4522
|
"green": 0.43137,
|
|
4443
4523
|
"blue": 0.45098,
|
|
4444
4524
|
"alpha": 1
|
|
4445
4525
|
},
|
|
4526
|
+
"borderLeftWidth": null,
|
|
4446
4527
|
"borderRadius": 99999999999999,
|
|
4528
|
+
"borderRightWidth": null,
|
|
4529
|
+
"borderTopLeftRadius": null,
|
|
4530
|
+
"borderTopRightRadius": null,
|
|
4531
|
+
"borderTopWidth": null,
|
|
4447
4532
|
"borderWidth": 1,
|
|
4448
4533
|
"icon": null,
|
|
4449
4534
|
"iconColor": {
|
|
@@ -4463,7 +4548,7 @@
|
|
|
4463
4548
|
"alpha": 0
|
|
4464
4549
|
},
|
|
4465
4550
|
"outerBorderGap": 0,
|
|
4466
|
-
"outerBorderWidth":
|
|
4551
|
+
"outerBorderWidth": null,
|
|
4467
4552
|
"padding": 4,
|
|
4468
4553
|
"shadow": null
|
|
4469
4554
|
}
|
|
@@ -4806,7 +4891,7 @@
|
|
|
4806
4891
|
},
|
|
4807
4892
|
"expanded": {
|
|
4808
4893
|
"description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
|
|
4809
|
-
"values": [true],
|
|
4894
|
+
"values": [true, false],
|
|
4810
4895
|
"type": "state"
|
|
4811
4896
|
},
|
|
4812
4897
|
"isChild": {
|
|
@@ -5304,7 +5389,7 @@
|
|
|
5304
5389
|
"appearances": {
|
|
5305
5390
|
"expanded": {
|
|
5306
5391
|
"description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
|
|
5307
|
-
"values": [true],
|
|
5392
|
+
"values": [true, false],
|
|
5308
5393
|
"type": "state"
|
|
5309
5394
|
},
|
|
5310
5395
|
"pressed": {
|
|
@@ -5382,7 +5467,7 @@
|
|
|
5382
5467
|
"viewport": ["xs", "sm", "md"]
|
|
5383
5468
|
},
|
|
5384
5469
|
"tokens": {
|
|
5385
|
-
"textAlign": "
|
|
5470
|
+
"textAlign": "space-between",
|
|
5386
5471
|
"width": 288
|
|
5387
5472
|
}
|
|
5388
5473
|
},
|
|
@@ -6343,7 +6428,8 @@
|
|
|
6343
6428
|
"alternative": true
|
|
6344
6429
|
},
|
|
6345
6430
|
"tokens": {
|
|
6346
|
-
"
|
|
6431
|
+
"paddingBottom": 8,
|
|
6432
|
+
"paddingTop": 8
|
|
6347
6433
|
}
|
|
6348
6434
|
},
|
|
6349
6435
|
{
|
|
@@ -6351,12 +6437,6 @@
|
|
|
6351
6437
|
"hover": true
|
|
6352
6438
|
},
|
|
6353
6439
|
"tokens": {
|
|
6354
|
-
"backgroundColor": {
|
|
6355
|
-
"red": 0.95686,
|
|
6356
|
-
"green": 0.95686,
|
|
6357
|
-
"blue": 0.96863,
|
|
6358
|
-
"alpha": 1
|
|
6359
|
-
},
|
|
6360
6440
|
"inputBackgroundColor": {
|
|
6361
6441
|
"red": 0.95686,
|
|
6362
6442
|
"green": 0.95686,
|
|
@@ -6370,16 +6450,16 @@
|
|
|
6370
6450
|
"disabled": true
|
|
6371
6451
|
},
|
|
6372
6452
|
"tokens": {
|
|
6373
|
-
"
|
|
6453
|
+
"inputBackgroundColor": {
|
|
6374
6454
|
"red": 0.98039,
|
|
6375
6455
|
"green": 0.98039,
|
|
6376
6456
|
"blue": 0.98039,
|
|
6377
6457
|
"alpha": 1
|
|
6378
6458
|
},
|
|
6379
|
-
"
|
|
6380
|
-
"red": 0.
|
|
6381
|
-
"green": 0.
|
|
6382
|
-
"blue": 0.
|
|
6459
|
+
"textColor": {
|
|
6460
|
+
"red": 0.69804,
|
|
6461
|
+
"green": 0.72549,
|
|
6462
|
+
"blue": 0.74902,
|
|
6383
6463
|
"alpha": 1
|
|
6384
6464
|
}
|
|
6385
6465
|
}
|
|
@@ -6389,7 +6469,7 @@
|
|
|
6389
6469
|
"pressed": true
|
|
6390
6470
|
},
|
|
6391
6471
|
"tokens": {
|
|
6392
|
-
"
|
|
6472
|
+
"inputBackgroundColor": {
|
|
6393
6473
|
"red": 0.69804,
|
|
6394
6474
|
"green": 0.72549,
|
|
6395
6475
|
"blue": 0.74902,
|
|
@@ -6413,25 +6493,7 @@
|
|
|
6413
6493
|
}
|
|
6414
6494
|
],
|
|
6415
6495
|
"tokens": {
|
|
6416
|
-
"
|
|
6417
|
-
"red": 0,
|
|
6418
|
-
"green": 0,
|
|
6419
|
-
"blue": 0,
|
|
6420
|
-
"alpha": 0
|
|
6421
|
-
},
|
|
6422
|
-
"borderColor": {
|
|
6423
|
-
"red": 0.40392,
|
|
6424
|
-
"green": 0.43137,
|
|
6425
|
-
"blue": 0.45098,
|
|
6426
|
-
"alpha": 1
|
|
6427
|
-
},
|
|
6428
|
-
"iconColor": {
|
|
6429
|
-
"red": 0.40392,
|
|
6430
|
-
"green": 0.43137,
|
|
6431
|
-
"blue": 0.45098,
|
|
6432
|
-
"alpha": 1
|
|
6433
|
-
},
|
|
6434
|
-
"iconSize": 16,
|
|
6496
|
+
"fontSize": 16,
|
|
6435
6497
|
"inputBackgroundColor": {
|
|
6436
6498
|
"red": 1,
|
|
6437
6499
|
"green": 1,
|
|
@@ -6445,55 +6507,66 @@
|
|
|
6445
6507
|
"alpha": 1
|
|
6446
6508
|
},
|
|
6447
6509
|
"inputBorderWidth": 1,
|
|
6448
|
-
"
|
|
6449
|
-
"
|
|
6450
|
-
"
|
|
6510
|
+
"inputWidth": 64,
|
|
6511
|
+
"lineHeight": 1.5,
|
|
6512
|
+
"padding": 12,
|
|
6513
|
+
"paddingBottom": 12,
|
|
6514
|
+
"paddingLeft": 12,
|
|
6515
|
+
"paddingRight": 12,
|
|
6516
|
+
"paddingTop": 12,
|
|
6451
6517
|
"textColor": {
|
|
6452
|
-
"red": 0.
|
|
6453
|
-
"green": 0.
|
|
6454
|
-
"blue": 0.
|
|
6518
|
+
"red": 0.2549,
|
|
6519
|
+
"green": 0.27059,
|
|
6520
|
+
"blue": 0.27843,
|
|
6455
6521
|
"alpha": 1
|
|
6456
6522
|
}
|
|
6457
6523
|
}
|
|
6458
6524
|
},
|
|
6459
|
-
"
|
|
6525
|
+
"QuantitySelectorSideButton": {
|
|
6460
6526
|
"appearances": {
|
|
6461
|
-
"
|
|
6462
|
-
"
|
|
6463
|
-
"values": [
|
|
6464
|
-
|
|
6527
|
+
"alternative": {
|
|
6528
|
+
"type": "variant",
|
|
6529
|
+
"values": [true, false]
|
|
6530
|
+
},
|
|
6531
|
+
"decrease": {
|
|
6532
|
+
"type": "variant",
|
|
6533
|
+
"values": [true]
|
|
6534
|
+
},
|
|
6535
|
+
"disabled": {
|
|
6536
|
+
"type": "variant",
|
|
6537
|
+
"values": [true]
|
|
6538
|
+
},
|
|
6539
|
+
"focus": {
|
|
6540
|
+
"type": "variant",
|
|
6541
|
+
"values": [true]
|
|
6542
|
+
},
|
|
6543
|
+
"hover": {
|
|
6544
|
+
"type": "variant",
|
|
6545
|
+
"values": [true]
|
|
6546
|
+
},
|
|
6547
|
+
"increase": {
|
|
6548
|
+
"type": "variant",
|
|
6549
|
+
"values": [true]
|
|
6550
|
+
},
|
|
6551
|
+
"pressed": {
|
|
6552
|
+
"type": "variant",
|
|
6553
|
+
"values": [true]
|
|
6465
6554
|
}
|
|
6466
6555
|
},
|
|
6467
6556
|
"rules": [
|
|
6468
6557
|
{
|
|
6469
6558
|
"if": {
|
|
6470
|
-
"
|
|
6559
|
+
"hover": true
|
|
6471
6560
|
},
|
|
6472
6561
|
"tokens": {
|
|
6473
|
-
"
|
|
6474
|
-
|
|
6475
|
-
|
|
6562
|
+
"backgroundColor": {
|
|
6563
|
+
"red": 0.95686,
|
|
6564
|
+
"green": 0.95686,
|
|
6565
|
+
"blue": 0.96863,
|
|
6566
|
+
"alpha": 1
|
|
6567
|
+
}
|
|
6476
6568
|
}
|
|
6477
|
-
}
|
|
6478
|
-
],
|
|
6479
|
-
"tokens": {
|
|
6480
|
-
"card": true,
|
|
6481
|
-
"dividers": true,
|
|
6482
|
-
"list": true,
|
|
6483
|
-
"stackGap": 2,
|
|
6484
|
-
"stackJustify": "center",
|
|
6485
|
-
"stackSpace": 4
|
|
6486
|
-
}
|
|
6487
|
-
},
|
|
6488
|
-
"QuickLinksButton": {
|
|
6489
|
-
"appearances": {
|
|
6490
|
-
"pressed": {
|
|
6491
|
-
"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.",
|
|
6492
|
-
"values": [true, false],
|
|
6493
|
-
"type": "state"
|
|
6494
|
-
}
|
|
6495
|
-
},
|
|
6496
|
-
"rules": [
|
|
6569
|
+
},
|
|
6497
6570
|
{
|
|
6498
6571
|
"if": {
|
|
6499
6572
|
"pressed": true
|
|
@@ -6505,29 +6578,219 @@
|
|
|
6505
6578
|
"blue": 0.74902,
|
|
6506
6579
|
"alpha": 1
|
|
6507
6580
|
},
|
|
6508
|
-
"
|
|
6581
|
+
"iconColor": {
|
|
6582
|
+
"red": 0.40392,
|
|
6583
|
+
"green": 0.43137,
|
|
6584
|
+
"blue": 0.45098,
|
|
6585
|
+
"alpha": 1
|
|
6586
|
+
}
|
|
6509
6587
|
}
|
|
6510
|
-
}
|
|
6511
|
-
],
|
|
6512
|
-
"tokens": {
|
|
6513
|
-
"alignSelf": "flex-start",
|
|
6514
|
-
"backgroundColor": {
|
|
6515
|
-
"red": 1,
|
|
6516
|
-
"green": 1,
|
|
6517
|
-
"blue": 1,
|
|
6518
|
-
"alpha": 1
|
|
6519
6588
|
},
|
|
6520
|
-
|
|
6521
|
-
"
|
|
6522
|
-
|
|
6523
|
-
|
|
6524
|
-
"
|
|
6589
|
+
{
|
|
6590
|
+
"if": {
|
|
6591
|
+
"decrease": true
|
|
6592
|
+
},
|
|
6593
|
+
"tokens": {
|
|
6594
|
+
"borderBottomLeftRadius": 4,
|
|
6595
|
+
"borderRightWidth": 0,
|
|
6596
|
+
"borderTopLeftRadius": 4,
|
|
6597
|
+
"icon": "PaletteIconSubtract"
|
|
6598
|
+
}
|
|
6525
6599
|
},
|
|
6526
|
-
|
|
6527
|
-
|
|
6528
|
-
|
|
6529
|
-
|
|
6530
|
-
"
|
|
6600
|
+
{
|
|
6601
|
+
"if": {
|
|
6602
|
+
"increase": true
|
|
6603
|
+
},
|
|
6604
|
+
"tokens": {
|
|
6605
|
+
"borderBottomRightRadius": 4,
|
|
6606
|
+
"borderLeftWidth": 0,
|
|
6607
|
+
"borderTopRightRadius": 4,
|
|
6608
|
+
"icon": "PaletteIconAdd"
|
|
6609
|
+
}
|
|
6610
|
+
},
|
|
6611
|
+
{
|
|
6612
|
+
"if": {
|
|
6613
|
+
"focus": true,
|
|
6614
|
+
"increase": true
|
|
6615
|
+
},
|
|
6616
|
+
"tokens": {
|
|
6617
|
+
"borderBottomWidth": 3,
|
|
6618
|
+
"borderLeftWidth": 2,
|
|
6619
|
+
"borderRightWidth": 3,
|
|
6620
|
+
"borderTopWidth": 3
|
|
6621
|
+
}
|
|
6622
|
+
},
|
|
6623
|
+
{
|
|
6624
|
+
"if": {
|
|
6625
|
+
"decrease": true,
|
|
6626
|
+
"focus": true
|
|
6627
|
+
},
|
|
6628
|
+
"tokens": {
|
|
6629
|
+
"borderBottomWidth": 3,
|
|
6630
|
+
"borderLeftWidth": 3,
|
|
6631
|
+
"borderRightWidth": 2,
|
|
6632
|
+
"borderTopWidth": 3
|
|
6633
|
+
}
|
|
6634
|
+
},
|
|
6635
|
+
{
|
|
6636
|
+
"if": {
|
|
6637
|
+
"disabled": true
|
|
6638
|
+
},
|
|
6639
|
+
"tokens": {
|
|
6640
|
+
"backgroundColor": {
|
|
6641
|
+
"red": 0.98039,
|
|
6642
|
+
"green": 0.98039,
|
|
6643
|
+
"blue": 0.98039,
|
|
6644
|
+
"alpha": 1
|
|
6645
|
+
},
|
|
6646
|
+
"iconColor": {
|
|
6647
|
+
"red": 0.8902,
|
|
6648
|
+
"green": 0.90196,
|
|
6649
|
+
"blue": 0.9098,
|
|
6650
|
+
"alpha": 1
|
|
6651
|
+
}
|
|
6652
|
+
}
|
|
6653
|
+
},
|
|
6654
|
+
{
|
|
6655
|
+
"if": {
|
|
6656
|
+
"alternative": true
|
|
6657
|
+
},
|
|
6658
|
+
"tokens": {
|
|
6659
|
+
"paddingBottom": 12,
|
|
6660
|
+
"paddingTop": 12
|
|
6661
|
+
}
|
|
6662
|
+
},
|
|
6663
|
+
{
|
|
6664
|
+
"if": {
|
|
6665
|
+
"alternative": true,
|
|
6666
|
+
"increase": true
|
|
6667
|
+
},
|
|
6668
|
+
"tokens": {
|
|
6669
|
+
"borderBottomRightRadius": 24,
|
|
6670
|
+
"borderTopRightRadius": 24
|
|
6671
|
+
}
|
|
6672
|
+
},
|
|
6673
|
+
{
|
|
6674
|
+
"if": {
|
|
6675
|
+
"alternative": true,
|
|
6676
|
+
"decrease": true
|
|
6677
|
+
},
|
|
6678
|
+
"tokens": {
|
|
6679
|
+
"borderBottomLeftRadius": 24,
|
|
6680
|
+
"borderTopLeftRadius": 24
|
|
6681
|
+
}
|
|
6682
|
+
}
|
|
6683
|
+
],
|
|
6684
|
+
"tokens": {
|
|
6685
|
+
"backgroundColor": {
|
|
6686
|
+
"red": 1,
|
|
6687
|
+
"green": 1,
|
|
6688
|
+
"blue": 1,
|
|
6689
|
+
"alpha": 1
|
|
6690
|
+
},
|
|
6691
|
+
"borderBottomLeftRadius": 0,
|
|
6692
|
+
"borderBottomRightRadius": 0,
|
|
6693
|
+
"borderBottomWidth": 1,
|
|
6694
|
+
"borderColor": {
|
|
6695
|
+
"red": 0.40392,
|
|
6696
|
+
"green": 0.43137,
|
|
6697
|
+
"blue": 0.45098,
|
|
6698
|
+
"alpha": 1
|
|
6699
|
+
},
|
|
6700
|
+
"borderLeftWidth": 1,
|
|
6701
|
+
"borderRadius": 0,
|
|
6702
|
+
"borderRightWidth": 1,
|
|
6703
|
+
"borderTopLeftRadius": 0,
|
|
6704
|
+
"borderTopRightRadius": 0,
|
|
6705
|
+
"borderTopWidth": 1,
|
|
6706
|
+
"borderWidth": 1,
|
|
6707
|
+
"icon": null,
|
|
6708
|
+
"iconColor": {
|
|
6709
|
+
"red": 0.2549,
|
|
6710
|
+
"green": 0.27059,
|
|
6711
|
+
"blue": 0.27843,
|
|
6712
|
+
"alpha": 1
|
|
6713
|
+
},
|
|
6714
|
+
"iconSize": 16,
|
|
6715
|
+
"padding": 16,
|
|
6716
|
+
"paddingBottom": 16,
|
|
6717
|
+
"paddingLeft": 16,
|
|
6718
|
+
"paddingRight": 16,
|
|
6719
|
+
"paddingTop": 16
|
|
6720
|
+
}
|
|
6721
|
+
},
|
|
6722
|
+
"QuickLinks": {
|
|
6723
|
+
"appearances": {
|
|
6724
|
+
"viewport": {
|
|
6725
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
6726
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
6727
|
+
"type": "state"
|
|
6728
|
+
}
|
|
6729
|
+
},
|
|
6730
|
+
"rules": [
|
|
6731
|
+
{
|
|
6732
|
+
"if": {
|
|
6733
|
+
"viewport": ["md", "lg", "xl"]
|
|
6734
|
+
},
|
|
6735
|
+
"tokens": {
|
|
6736
|
+
"card": false,
|
|
6737
|
+
"dividers": true,
|
|
6738
|
+
"list": false
|
|
6739
|
+
}
|
|
6740
|
+
}
|
|
6741
|
+
],
|
|
6742
|
+
"tokens": {
|
|
6743
|
+
"card": true,
|
|
6744
|
+
"dividers": true,
|
|
6745
|
+
"list": true,
|
|
6746
|
+
"stackGap": 2,
|
|
6747
|
+
"stackJustify": "center",
|
|
6748
|
+
"stackSpace": 4
|
|
6749
|
+
}
|
|
6750
|
+
},
|
|
6751
|
+
"QuickLinksButton": {
|
|
6752
|
+
"appearances": {
|
|
6753
|
+
"pressed": {
|
|
6754
|
+
"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.",
|
|
6755
|
+
"values": [true, false],
|
|
6756
|
+
"type": "state"
|
|
6757
|
+
}
|
|
6758
|
+
},
|
|
6759
|
+
"rules": [
|
|
6760
|
+
{
|
|
6761
|
+
"if": {
|
|
6762
|
+
"pressed": true
|
|
6763
|
+
},
|
|
6764
|
+
"tokens": {
|
|
6765
|
+
"backgroundColor": {
|
|
6766
|
+
"red": 0.69804,
|
|
6767
|
+
"green": 0.72549,
|
|
6768
|
+
"blue": 0.74902,
|
|
6769
|
+
"alpha": 1
|
|
6770
|
+
},
|
|
6771
|
+
"borderWidth": 3
|
|
6772
|
+
}
|
|
6773
|
+
}
|
|
6774
|
+
],
|
|
6775
|
+
"tokens": {
|
|
6776
|
+
"alignSelf": "flex-start",
|
|
6777
|
+
"backgroundColor": {
|
|
6778
|
+
"red": 1,
|
|
6779
|
+
"green": 1,
|
|
6780
|
+
"blue": 1,
|
|
6781
|
+
"alpha": 1
|
|
6782
|
+
},
|
|
6783
|
+
"borderColor": {
|
|
6784
|
+
"red": 0.40392,
|
|
6785
|
+
"green": 0.43137,
|
|
6786
|
+
"blue": 0.45098,
|
|
6787
|
+
"alpha": 1
|
|
6788
|
+
},
|
|
6789
|
+
"borderRadius": 32,
|
|
6790
|
+
"borderWidth": 1,
|
|
6791
|
+
"color": {
|
|
6792
|
+
"red": 0.40392,
|
|
6793
|
+
"green": 0.43137,
|
|
6531
6794
|
"blue": 0.45098,
|
|
6532
6795
|
"alpha": 1
|
|
6533
6796
|
},
|
|
@@ -7773,7 +8036,7 @@
|
|
|
7773
8036
|
},
|
|
7774
8037
|
"expanded": {
|
|
7775
8038
|
"description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
|
|
7776
|
-
"values": [true],
|
|
8039
|
+
"values": [true, false],
|
|
7777
8040
|
"type": "state"
|
|
7778
8041
|
},
|
|
7779
8042
|
"type": {
|
|
@@ -7935,7 +8198,7 @@
|
|
|
7935
8198
|
"appearances": {
|
|
7936
8199
|
"expanded": {
|
|
7937
8200
|
"description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
|
|
7938
|
-
"values": [true],
|
|
8201
|
+
"values": [true, false],
|
|
7939
8202
|
"type": "state"
|
|
7940
8203
|
}
|
|
7941
8204
|
},
|
|
@@ -7996,33 +8259,44 @@
|
|
|
7996
8259
|
}
|
|
7997
8260
|
},
|
|
7998
8261
|
"SkipLink": {
|
|
7999
|
-
"appearances": {
|
|
8262
|
+
"appearances": {
|
|
8263
|
+
"pressed": {
|
|
8264
|
+
"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.",
|
|
8265
|
+
"values": [true, false],
|
|
8266
|
+
"type": "state"
|
|
8267
|
+
}
|
|
8268
|
+
},
|
|
8000
8269
|
"rules": [],
|
|
8001
8270
|
"tokens": {
|
|
8002
8271
|
"backgroundColor": {
|
|
8003
|
-
"red": 0
|
|
8004
|
-
"green": 0
|
|
8005
|
-
"blue": 0
|
|
8006
|
-
"alpha":
|
|
8272
|
+
"red": 0,
|
|
8273
|
+
"green": 0,
|
|
8274
|
+
"blue": 0,
|
|
8275
|
+
"alpha": 0
|
|
8007
8276
|
},
|
|
8008
|
-
"borderRadius":
|
|
8277
|
+
"borderRadius": 4,
|
|
8009
8278
|
"color": {
|
|
8010
|
-
"red":
|
|
8011
|
-
"green":
|
|
8012
|
-
"blue":
|
|
8279
|
+
"red": 0.16863,
|
|
8280
|
+
"green": 0.50196,
|
|
8281
|
+
"blue": 0,
|
|
8013
8282
|
"alpha": 1
|
|
8014
8283
|
},
|
|
8284
|
+
"fontName": "HelveticaNow",
|
|
8285
|
+
"fontSize": 16,
|
|
8286
|
+
"fontWeight": 400,
|
|
8287
|
+
"lineHeight": 1.5,
|
|
8015
8288
|
"outlineColor": {
|
|
8016
|
-
"red": 0.
|
|
8017
|
-
"green": 0.
|
|
8018
|
-
"blue": 0
|
|
8289
|
+
"red": 0.16863,
|
|
8290
|
+
"green": 0.50196,
|
|
8291
|
+
"blue": 0,
|
|
8019
8292
|
"alpha": 1
|
|
8020
8293
|
},
|
|
8021
|
-
"outlineOffset":
|
|
8294
|
+
"outlineOffset": 0,
|
|
8022
8295
|
"outlineStyle": "solid",
|
|
8023
|
-
"outlineWidth":
|
|
8024
|
-
"paddingHorizontal":
|
|
8025
|
-
"paddingVertical":
|
|
8296
|
+
"outlineWidth": 2,
|
|
8297
|
+
"paddingHorizontal": 2,
|
|
8298
|
+
"paddingVertical": 2,
|
|
8299
|
+
"textLine": "underline"
|
|
8026
8300
|
}
|
|
8027
8301
|
},
|
|
8028
8302
|
"Spinner": {
|
|
@@ -8366,78 +8640,233 @@
|
|
|
8366
8640
|
"rules": [
|
|
8367
8641
|
{
|
|
8368
8642
|
"if": {
|
|
8369
|
-
"pressed": true
|
|
8643
|
+
"pressed": true
|
|
8644
|
+
},
|
|
8645
|
+
"tokens": {
|
|
8646
|
+
"backgroundColor": {
|
|
8647
|
+
"red": 0.95686,
|
|
8648
|
+
"green": 0.95686,
|
|
8649
|
+
"blue": 0.96863,
|
|
8650
|
+
"alpha": 1
|
|
8651
|
+
}
|
|
8652
|
+
}
|
|
8653
|
+
}
|
|
8654
|
+
],
|
|
8655
|
+
"tokens": {
|
|
8656
|
+
"backgroundColor": {
|
|
8657
|
+
"red": 1,
|
|
8658
|
+
"green": 1,
|
|
8659
|
+
"blue": 1,
|
|
8660
|
+
"alpha": 1
|
|
8661
|
+
},
|
|
8662
|
+
"borderColor": {
|
|
8663
|
+
"red": 0.8902,
|
|
8664
|
+
"green": 0.90196,
|
|
8665
|
+
"blue": 0.9098,
|
|
8666
|
+
"alpha": 1
|
|
8667
|
+
},
|
|
8668
|
+
"borderRadius": 6,
|
|
8669
|
+
"borderWidth": 1,
|
|
8670
|
+
"contentAlignItems": "stretch",
|
|
8671
|
+
"contentFlexGrow": 0,
|
|
8672
|
+
"contentFlexShrink": 0,
|
|
8673
|
+
"contentJustifyContent": "flex-start",
|
|
8674
|
+
"flex": 1,
|
|
8675
|
+
"minWidth": 0,
|
|
8676
|
+
"outerBorderColor": {
|
|
8677
|
+
"red": 0,
|
|
8678
|
+
"green": 0,
|
|
8679
|
+
"blue": 0,
|
|
8680
|
+
"alpha": 0
|
|
8681
|
+
},
|
|
8682
|
+
"outerBorderGap": 0,
|
|
8683
|
+
"outerBorderWidth": 0,
|
|
8684
|
+
"paddingBottom": 0,
|
|
8685
|
+
"paddingLeft": 0,
|
|
8686
|
+
"paddingRight": 0,
|
|
8687
|
+
"paddingTop": 0,
|
|
8688
|
+
"shadow": null
|
|
8689
|
+
}
|
|
8690
|
+
},
|
|
8691
|
+
"Table": {
|
|
8692
|
+
"appearances": {
|
|
8693
|
+
"spacing": {
|
|
8694
|
+
"description": "Adjusts the height of the table cell",
|
|
8695
|
+
"type": "variant",
|
|
8696
|
+
"values": ["compact", "default"]
|
|
8697
|
+
},
|
|
8698
|
+
"text": {
|
|
8699
|
+
"type": "variant",
|
|
8700
|
+
"values": ["small", "medium"]
|
|
8701
|
+
},
|
|
8702
|
+
"type": {
|
|
8703
|
+
"type": "variant",
|
|
8704
|
+
"values": ["subHeading", "rowHeading", "heading", "default"]
|
|
8705
|
+
}
|
|
8706
|
+
},
|
|
8707
|
+
"rules": [
|
|
8708
|
+
{
|
|
8709
|
+
"if": {
|
|
8710
|
+
"spacing": "compact",
|
|
8711
|
+
"type": "default"
|
|
8712
|
+
},
|
|
8713
|
+
"tokens": {
|
|
8714
|
+
"cellPaddingBottom": 8,
|
|
8715
|
+
"cellPaddingTop": 8,
|
|
8716
|
+
"fontSize": 16,
|
|
8717
|
+
"lineHeight": 1.25
|
|
8718
|
+
}
|
|
8719
|
+
},
|
|
8720
|
+
{
|
|
8721
|
+
"if": {
|
|
8722
|
+
"spacing": "compact",
|
|
8723
|
+
"type": "rowHeading"
|
|
8724
|
+
},
|
|
8725
|
+
"tokens": {
|
|
8726
|
+
"cellPaddingBottom": 8,
|
|
8727
|
+
"cellPaddingTop": 8,
|
|
8728
|
+
"fontName": "HelveticaNow",
|
|
8729
|
+
"fontSize": 16,
|
|
8730
|
+
"fontWeight": 700,
|
|
8731
|
+
"lineHeight": 1.25
|
|
8732
|
+
}
|
|
8733
|
+
},
|
|
8734
|
+
{
|
|
8735
|
+
"if": {
|
|
8736
|
+
"spacing": "compact",
|
|
8737
|
+
"text": "small",
|
|
8738
|
+
"type": "subHeading"
|
|
8739
|
+
},
|
|
8740
|
+
"tokens": {
|
|
8741
|
+
"cellBackground": {
|
|
8742
|
+
"red": 0.98039,
|
|
8743
|
+
"green": 0.98039,
|
|
8744
|
+
"blue": 0.98039,
|
|
8745
|
+
"alpha": 1
|
|
8746
|
+
},
|
|
8747
|
+
"cellPaddingBottom": 8,
|
|
8748
|
+
"cellPaddingTop": 8,
|
|
8749
|
+
"fontName": "HelveticaNow",
|
|
8750
|
+
"fontSize": 14,
|
|
8751
|
+
"fontWeight": 500,
|
|
8752
|
+
"lineHeight": 1.14285714286
|
|
8753
|
+
}
|
|
8754
|
+
},
|
|
8755
|
+
{
|
|
8756
|
+
"if": {
|
|
8757
|
+
"type": "heading"
|
|
8758
|
+
},
|
|
8759
|
+
"tokens": {
|
|
8760
|
+
"cellBackground": {
|
|
8761
|
+
"red": 0.95686,
|
|
8762
|
+
"green": 0.95686,
|
|
8763
|
+
"blue": 0.96863,
|
|
8764
|
+
"alpha": 1
|
|
8765
|
+
},
|
|
8766
|
+
"cellBoxShadowColor": {
|
|
8767
|
+
"red": 0.69804,
|
|
8768
|
+
"green": 0.72549,
|
|
8769
|
+
"blue": 0.74902,
|
|
8770
|
+
"alpha": 1
|
|
8771
|
+
},
|
|
8772
|
+
"fontName": "HelveticaNow",
|
|
8773
|
+
"fontSize": 16,
|
|
8774
|
+
"fontWeight": 500
|
|
8775
|
+
}
|
|
8776
|
+
},
|
|
8777
|
+
{
|
|
8778
|
+
"if": {
|
|
8779
|
+
"spacing": "default",
|
|
8780
|
+
"type": "subHeading"
|
|
8781
|
+
},
|
|
8782
|
+
"tokens": {
|
|
8783
|
+
"cellBackground": {
|
|
8784
|
+
"red": 0.98039,
|
|
8785
|
+
"green": 0.98039,
|
|
8786
|
+
"blue": 0.98039,
|
|
8787
|
+
"alpha": 1
|
|
8788
|
+
},
|
|
8789
|
+
"fontName": "HelveticaNow",
|
|
8790
|
+
"fontSize": 14,
|
|
8791
|
+
"fontWeight": 500,
|
|
8792
|
+
"lineHeight": 1.28571428571
|
|
8793
|
+
}
|
|
8794
|
+
},
|
|
8795
|
+
{
|
|
8796
|
+
"if": {
|
|
8797
|
+
"spacing": "compact",
|
|
8798
|
+
"text": "medium",
|
|
8799
|
+
"type": "subHeading"
|
|
8800
|
+
},
|
|
8801
|
+
"tokens": {
|
|
8802
|
+
"cellBackground": {
|
|
8803
|
+
"red": 0.98039,
|
|
8804
|
+
"green": 0.98039,
|
|
8805
|
+
"blue": 0.98039,
|
|
8806
|
+
"alpha": 1
|
|
8807
|
+
},
|
|
8808
|
+
"fontName": "HelveticaNow",
|
|
8809
|
+
"fontSize": 16,
|
|
8810
|
+
"fontWeight": 500,
|
|
8811
|
+
"lineHeight": 1.25
|
|
8812
|
+
}
|
|
8813
|
+
},
|
|
8814
|
+
{
|
|
8815
|
+
"if": {
|
|
8816
|
+
"spacing": "default",
|
|
8817
|
+
"type": "rowHeading"
|
|
8818
|
+
},
|
|
8819
|
+
"tokens": {
|
|
8820
|
+
"fontName": "HelveticaNow",
|
|
8821
|
+
"fontSize": 16,
|
|
8822
|
+
"fontWeight": 700
|
|
8823
|
+
}
|
|
8824
|
+
},
|
|
8825
|
+
{
|
|
8826
|
+
"if": {
|
|
8827
|
+
"spacing": "default",
|
|
8828
|
+
"text": "small",
|
|
8829
|
+
"type": "default"
|
|
8370
8830
|
},
|
|
8371
8831
|
"tokens": {
|
|
8372
|
-
"
|
|
8373
|
-
|
|
8374
|
-
|
|
8375
|
-
|
|
8376
|
-
"alpha": 1
|
|
8377
|
-
}
|
|
8832
|
+
"fontName": "HelveticaNow",
|
|
8833
|
+
"fontSize": 14,
|
|
8834
|
+
"fontWeight": 400,
|
|
8835
|
+
"lineHeight": 1.42857142857
|
|
8378
8836
|
}
|
|
8379
|
-
}
|
|
8380
|
-
],
|
|
8381
|
-
"tokens": {
|
|
8382
|
-
"backgroundColor": {
|
|
8383
|
-
"red": 1,
|
|
8384
|
-
"green": 1,
|
|
8385
|
-
"blue": 1,
|
|
8386
|
-
"alpha": 1
|
|
8387
|
-
},
|
|
8388
|
-
"borderColor": {
|
|
8389
|
-
"red": 0.8902,
|
|
8390
|
-
"green": 0.90196,
|
|
8391
|
-
"blue": 0.9098,
|
|
8392
|
-
"alpha": 1
|
|
8393
8837
|
},
|
|
8394
|
-
|
|
8395
|
-
|
|
8396
|
-
|
|
8397
|
-
|
|
8398
|
-
|
|
8399
|
-
|
|
8400
|
-
|
|
8401
|
-
|
|
8402
|
-
|
|
8403
|
-
|
|
8404
|
-
|
|
8405
|
-
|
|
8406
|
-
"alpha": 0
|
|
8838
|
+
{
|
|
8839
|
+
"if": {
|
|
8840
|
+
"spacing": "compact",
|
|
8841
|
+
"text": "small",
|
|
8842
|
+
"type": "default"
|
|
8843
|
+
},
|
|
8844
|
+
"tokens": {
|
|
8845
|
+
"fontName": "HelveticaNow",
|
|
8846
|
+
"fontSize": 14,
|
|
8847
|
+
"fontWeight": 400,
|
|
8848
|
+
"lineHeight": 1.14285714286
|
|
8849
|
+
}
|
|
8407
8850
|
},
|
|
8408
|
-
"outerBorderGap": 0,
|
|
8409
|
-
"outerBorderWidth": 0,
|
|
8410
|
-
"paddingBottom": 0,
|
|
8411
|
-
"paddingLeft": 0,
|
|
8412
|
-
"paddingRight": 0,
|
|
8413
|
-
"paddingTop": 0,
|
|
8414
|
-
"shadow": null
|
|
8415
|
-
}
|
|
8416
|
-
},
|
|
8417
|
-
"Table": {
|
|
8418
|
-
"appearances": {
|
|
8419
|
-
"spacing": {
|
|
8420
|
-
"type": "variant",
|
|
8421
|
-
"values": ["compact"]
|
|
8422
|
-
}
|
|
8423
|
-
},
|
|
8424
|
-
"rules": [
|
|
8425
8851
|
{
|
|
8426
8852
|
"if": {
|
|
8427
|
-
"
|
|
8853
|
+
"text": "small",
|
|
8854
|
+
"type": "rowHeading"
|
|
8428
8855
|
},
|
|
8429
8856
|
"tokens": {
|
|
8430
|
-
"
|
|
8431
|
-
"
|
|
8857
|
+
"fontName": "HelveticaNow",
|
|
8858
|
+
"fontSize": 14,
|
|
8859
|
+
"fontWeight": 700,
|
|
8860
|
+
"lineHeight": 1.14285714286
|
|
8432
8861
|
}
|
|
8433
8862
|
}
|
|
8434
8863
|
],
|
|
8435
8864
|
"tokens": {
|
|
8436
8865
|
"cellBackground": {
|
|
8437
|
-
"red":
|
|
8438
|
-
"green":
|
|
8439
|
-
"blue":
|
|
8440
|
-
"alpha":
|
|
8866
|
+
"red": 0,
|
|
8867
|
+
"green": 0,
|
|
8868
|
+
"blue": 0,
|
|
8869
|
+
"alpha": 0
|
|
8441
8870
|
},
|
|
8442
8871
|
"cellBoxShadowColor": {
|
|
8443
8872
|
"red": 0.8902,
|
|
@@ -8445,29 +8874,11 @@
|
|
|
8445
8874
|
"blue": 0.9098,
|
|
8446
8875
|
"alpha": 1
|
|
8447
8876
|
},
|
|
8448
|
-
"cellHeadingBackground": {
|
|
8449
|
-
"red": 0.95686,
|
|
8450
|
-
"green": 0.95686,
|
|
8451
|
-
"blue": 0.96863,
|
|
8452
|
-
"alpha": 1
|
|
8453
|
-
},
|
|
8454
|
-
"cellHeadingBoxShadowColor": {
|
|
8455
|
-
"red": 0.69804,
|
|
8456
|
-
"green": 0.72549,
|
|
8457
|
-
"blue": 0.74902,
|
|
8458
|
-
"alpha": 1
|
|
8459
|
-
},
|
|
8460
8877
|
"cellMinWidth": 0,
|
|
8461
8878
|
"cellPaddingBottom": 16,
|
|
8462
8879
|
"cellPaddingLeft": 16,
|
|
8463
8880
|
"cellPaddingRight": 16,
|
|
8464
8881
|
"cellPaddingTop": 16,
|
|
8465
|
-
"cellRowHeadingBackground": {
|
|
8466
|
-
"red": 1,
|
|
8467
|
-
"green": 1,
|
|
8468
|
-
"blue": 1,
|
|
8469
|
-
"alpha": 1
|
|
8470
|
-
},
|
|
8471
8882
|
"cellStickyShadow": {
|
|
8472
8883
|
"inset": false,
|
|
8473
8884
|
"offsetX": 0,
|
|
@@ -8481,15 +8892,16 @@
|
|
|
8481
8892
|
"alpha": 0.1
|
|
8482
8893
|
}
|
|
8483
8894
|
},
|
|
8484
|
-
"cellSubheadingBackground": {
|
|
8485
|
-
"red": 0.98039,
|
|
8486
|
-
"green": 0.98039,
|
|
8487
|
-
"blue": 0.98039,
|
|
8488
|
-
"alpha": 1
|
|
8489
|
-
},
|
|
8490
8895
|
"fontName": "HelveticaNow",
|
|
8491
8896
|
"fontSize": 16,
|
|
8492
8897
|
"fontWeight": 400,
|
|
8898
|
+
"lineHeight": 1.5,
|
|
8899
|
+
"stickyBackgroundColor": {
|
|
8900
|
+
"red": 1,
|
|
8901
|
+
"green": 1,
|
|
8902
|
+
"blue": 1,
|
|
8903
|
+
"alpha": 1
|
|
8904
|
+
},
|
|
8493
8905
|
"tablePaddingBottom": 24
|
|
8494
8906
|
}
|
|
8495
8907
|
},
|
|
@@ -9064,11 +9476,26 @@
|
|
|
9064
9476
|
"appearances": {
|
|
9065
9477
|
"expanded": {
|
|
9066
9478
|
"description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
|
|
9067
|
-
"values": [true],
|
|
9479
|
+
"values": [true, false],
|
|
9480
|
+
"type": "state"
|
|
9481
|
+
},
|
|
9482
|
+
"viewport": {
|
|
9483
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
9484
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
9068
9485
|
"type": "state"
|
|
9069
9486
|
}
|
|
9070
9487
|
},
|
|
9071
9488
|
"rules": [
|
|
9489
|
+
{
|
|
9490
|
+
"if": {
|
|
9491
|
+
"viewport": ["xs", "sm"]
|
|
9492
|
+
},
|
|
9493
|
+
"tokens": {
|
|
9494
|
+
"expandContentPaddingRight": 24,
|
|
9495
|
+
"listMarginLeft": 6,
|
|
9496
|
+
"titlePaddingLeft": 6
|
|
9497
|
+
}
|
|
9498
|
+
},
|
|
9072
9499
|
{
|
|
9073
9500
|
"if": {
|
|
9074
9501
|
"expanded": true
|
|
@@ -9079,36 +9506,60 @@
|
|
|
9079
9506
|
}
|
|
9080
9507
|
],
|
|
9081
9508
|
"tokens": {
|
|
9509
|
+
"contentBorderColor": {
|
|
9510
|
+
"red": 0,
|
|
9511
|
+
"green": 0,
|
|
9512
|
+
"blue": 0,
|
|
9513
|
+
"alpha": 0
|
|
9514
|
+
},
|
|
9515
|
+
"contentMarginBottom": 0,
|
|
9082
9516
|
"contentPaddingBottom": 8,
|
|
9083
9517
|
"contentPaddingLeft": 16,
|
|
9518
|
+
"dividerColor": {
|
|
9519
|
+
"red": 0.69804,
|
|
9520
|
+
"green": 0.72549,
|
|
9521
|
+
"blue": 0.74902,
|
|
9522
|
+
"alpha": 1
|
|
9523
|
+
},
|
|
9084
9524
|
"expandBaseBorderWidth": 0,
|
|
9085
9525
|
"expandContentPaddingBottom": 16,
|
|
9086
9526
|
"expandContentPaddingLeft": 16,
|
|
9087
9527
|
"expandContentPaddingRight": 16,
|
|
9088
9528
|
"expandContentPaddingTop": 16,
|
|
9089
9529
|
"expandIconContainerAlignItems": "center",
|
|
9090
|
-
"expandIconContainerBorder":
|
|
9530
|
+
"expandIconContainerBorder": 0,
|
|
9091
9531
|
"expandIconContainerBorderColor": {
|
|
9092
|
-
"red": 0
|
|
9093
|
-
"green": 0
|
|
9094
|
-
"blue": 0
|
|
9095
|
-
"alpha":
|
|
9532
|
+
"red": 0,
|
|
9533
|
+
"green": 0,
|
|
9534
|
+
"blue": 0,
|
|
9535
|
+
"alpha": 0
|
|
9096
9536
|
},
|
|
9097
9537
|
"expandIconContainerHeight": 32,
|
|
9098
9538
|
"expandIconContainerJustifyContent": "center",
|
|
9099
9539
|
"expandIconContainerMarginX": 0,
|
|
9100
9540
|
"expandIconContainerMarginY": 12,
|
|
9101
9541
|
"expandIconContainerWidth": 32,
|
|
9542
|
+
"expandTitleBorder": 0,
|
|
9543
|
+
"expandTitleBorderColor": {
|
|
9544
|
+
"red": 0,
|
|
9545
|
+
"green": 0,
|
|
9546
|
+
"blue": 0,
|
|
9547
|
+
"alpha": 0
|
|
9548
|
+
},
|
|
9102
9549
|
"expandTitleColor": {
|
|
9103
9550
|
"red": 0.17255,
|
|
9104
9551
|
"green": 0.18039,
|
|
9105
9552
|
"blue": 0.18824,
|
|
9106
9553
|
"alpha": 1
|
|
9107
9554
|
},
|
|
9555
|
+
"expandTitleFontName": "HelveticaNow",
|
|
9108
9556
|
"expandTitleFontSize": 16,
|
|
9557
|
+
"expandTitleFontWeight": 500,
|
|
9109
9558
|
"expandTitleLineHeight": 1.5,
|
|
9110
9559
|
"expandTitleMarginX": 4,
|
|
9111
9560
|
"expandTitleMarginY": 0,
|
|
9561
|
+
"expandTitlePaddingLeft": 0,
|
|
9562
|
+
"expandTitleUnderline": "none",
|
|
9112
9563
|
"icon": "PaletteIconCaretDown",
|
|
9113
9564
|
"listColor": {
|
|
9114
9565
|
"red": 0.2549,
|
|
@@ -9133,14 +9584,40 @@
|
|
|
9133
9584
|
},
|
|
9134
9585
|
"titleFontSize": 14,
|
|
9135
9586
|
"titleLineHeight": 1.42857142857,
|
|
9136
|
-
"titlePaddingLeft":
|
|
9137
|
-
"unorderedPadding":
|
|
9587
|
+
"titlePaddingLeft": 32,
|
|
9588
|
+
"unorderedPadding": 12
|
|
9138
9589
|
}
|
|
9139
9590
|
},
|
|
9140
9591
|
"Testimonial": {
|
|
9141
|
-
"appearances": {
|
|
9142
|
-
|
|
9592
|
+
"appearances": {
|
|
9593
|
+
"viewport": {
|
|
9594
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
9595
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
9596
|
+
"type": "state"
|
|
9597
|
+
}
|
|
9598
|
+
},
|
|
9599
|
+
"rules": [
|
|
9600
|
+
{
|
|
9601
|
+
"if": {
|
|
9602
|
+
"viewport": ["md", "lg", "xl"]
|
|
9603
|
+
},
|
|
9604
|
+
"tokens": {
|
|
9605
|
+
"testimonialFontNameHeading": "HelveticaNow",
|
|
9606
|
+
"testimonialFontSizeHeading": 28,
|
|
9607
|
+
"testimonialFontWeightHeading": 400,
|
|
9608
|
+
"testimonialLineHeightHeading": 1.28571428571
|
|
9609
|
+
}
|
|
9610
|
+
}
|
|
9611
|
+
],
|
|
9143
9612
|
"tokens": {
|
|
9613
|
+
"additionalFontName": "HelveticaNow",
|
|
9614
|
+
"additionalFontSize": 14,
|
|
9615
|
+
"additionalFontWeight": 400,
|
|
9616
|
+
"additionalLineHeight": 1.42857142857,
|
|
9617
|
+
"authorFontName": "HelveticaNow",
|
|
9618
|
+
"authorFontSize": 16,
|
|
9619
|
+
"authorFontWeight": 700,
|
|
9620
|
+
"authorLineHeight": 1.5,
|
|
9144
9621
|
"dividerBackgroundColor": {
|
|
9145
9622
|
"red": 0.69804,
|
|
9146
9623
|
"green": 0.72549,
|
|
@@ -9156,9 +9633,18 @@
|
|
|
9156
9633
|
"blue": 0.74902,
|
|
9157
9634
|
"alpha": 1
|
|
9158
9635
|
},
|
|
9636
|
+
"iconFr": "PaletteIconQuoteLeftArrow",
|
|
9159
9637
|
"imageSize": 48,
|
|
9160
9638
|
"quoteContainerGap": 4,
|
|
9161
9639
|
"testimonialContainerGap": 12,
|
|
9640
|
+
"testimonialFontNameHeading": "HelveticaNow",
|
|
9641
|
+
"testimonialFontNameLarge": "HelveticaNow",
|
|
9642
|
+
"testimonialFontSizeHeading": 24,
|
|
9643
|
+
"testimonialFontSizeLarge": 20,
|
|
9644
|
+
"testimonialFontWeightHeading": 400,
|
|
9645
|
+
"testimonialFontWeightLarge": 400,
|
|
9646
|
+
"testimonialLineHeightHeading": 1.33333333333,
|
|
9647
|
+
"testimonialLineHeightLarge": 1.6,
|
|
9162
9648
|
"textColor": {
|
|
9163
9649
|
"red": 0.2549,
|
|
9164
9650
|
"green": 0.27059,
|
|
@@ -9841,6 +10327,12 @@
|
|
|
9841
10327
|
}
|
|
9842
10328
|
],
|
|
9843
10329
|
"tokens": {
|
|
10330
|
+
"backgroundColor": {
|
|
10331
|
+
"red": 0,
|
|
10332
|
+
"green": 0,
|
|
10333
|
+
"blue": 0,
|
|
10334
|
+
"alpha": 0
|
|
10335
|
+
},
|
|
9844
10336
|
"borderRadius": 32,
|
|
9845
10337
|
"icon": "PaletteIconQuestion",
|
|
9846
10338
|
"iconColor": {
|
|
@@ -10006,7 +10498,8 @@
|
|
|
10006
10498
|
"fontSize": 40,
|
|
10007
10499
|
"fontWeight": 300,
|
|
10008
10500
|
"letterSpacing": -0.035,
|
|
10009
|
-
"lineHeight": 1.2
|
|
10501
|
+
"lineHeight": 1.2,
|
|
10502
|
+
"superScriptFontSize": 24
|
|
10010
10503
|
}
|
|
10011
10504
|
},
|
|
10012
10505
|
{
|
|
@@ -10016,7 +10509,8 @@
|
|
|
10016
10509
|
},
|
|
10017
10510
|
"tokens": {
|
|
10018
10511
|
"fontSize": 64,
|
|
10019
|
-
"lineHeight": 1.125
|
|
10512
|
+
"lineHeight": 1.125,
|
|
10513
|
+
"superScriptFontSize": 32
|
|
10020
10514
|
}
|
|
10021
10515
|
},
|
|
10022
10516
|
{
|
|
@@ -10028,7 +10522,8 @@
|
|
|
10028
10522
|
"fontSize": 36,
|
|
10029
10523
|
"fontWeight": 400,
|
|
10030
10524
|
"letterSpacing": -0.035,
|
|
10031
|
-
"lineHeight": 1.22222222222
|
|
10525
|
+
"lineHeight": 1.22222222222,
|
|
10526
|
+
"superScriptFontSize": 24
|
|
10032
10527
|
}
|
|
10033
10528
|
},
|
|
10034
10529
|
{
|
|
@@ -10041,7 +10536,8 @@
|
|
|
10041
10536
|
"fontSize": 56,
|
|
10042
10537
|
"fontWeight": 300,
|
|
10043
10538
|
"letterSpacing": -0.039,
|
|
10044
|
-
"lineHeight": 1.14285714286
|
|
10539
|
+
"lineHeight": 1.14285714286,
|
|
10540
|
+
"superScriptFontSize": 32
|
|
10045
10541
|
}
|
|
10046
10542
|
},
|
|
10047
10543
|
{
|
|
@@ -10051,7 +10547,8 @@
|
|
|
10051
10547
|
"tokens": {
|
|
10052
10548
|
"fontSize": 28,
|
|
10053
10549
|
"letterSpacing": -0.017,
|
|
10054
|
-
"lineHeight": 1.28571428571
|
|
10550
|
+
"lineHeight": 1.28571428571,
|
|
10551
|
+
"superScriptFontSize": 20
|
|
10055
10552
|
}
|
|
10056
10553
|
},
|
|
10057
10554
|
{
|
|
@@ -10064,7 +10561,8 @@
|
|
|
10064
10561
|
"fontSize": 40,
|
|
10065
10562
|
"fontWeight": 300,
|
|
10066
10563
|
"letterSpacing": -0.035,
|
|
10067
|
-
"lineHeight": 1.2
|
|
10564
|
+
"lineHeight": 1.2,
|
|
10565
|
+
"superScriptFontSize": 24
|
|
10068
10566
|
}
|
|
10069
10567
|
},
|
|
10070
10568
|
{
|
|
@@ -10075,7 +10573,8 @@
|
|
|
10075
10573
|
"fontName": "HelveticaNow",
|
|
10076
10574
|
"fontSize": 24,
|
|
10077
10575
|
"fontWeight": 400,
|
|
10078
|
-
"lineHeight": 1.33333333333
|
|
10576
|
+
"lineHeight": 1.33333333333,
|
|
10577
|
+
"superScriptFontSize": 16
|
|
10079
10578
|
}
|
|
10080
10579
|
},
|
|
10081
10580
|
{
|
|
@@ -10086,7 +10585,8 @@
|
|
|
10086
10585
|
"tokens": {
|
|
10087
10586
|
"fontSize": 28,
|
|
10088
10587
|
"letterSpacing": -0.017,
|
|
10089
|
-
"lineHeight": 1.28571428571
|
|
10588
|
+
"lineHeight": 1.28571428571,
|
|
10589
|
+
"superScriptFontSize": 20
|
|
10090
10590
|
}
|
|
10091
10591
|
},
|
|
10092
10592
|
{
|
|
@@ -10097,7 +10597,8 @@
|
|
|
10097
10597
|
"fontName": "HelveticaNow",
|
|
10098
10598
|
"fontSize": 20,
|
|
10099
10599
|
"fontWeight": 500,
|
|
10100
|
-
"lineHeight": 1.4
|
|
10600
|
+
"lineHeight": 1.4,
|
|
10601
|
+
"superScriptFontSize": 16
|
|
10101
10602
|
}
|
|
10102
10603
|
},
|
|
10103
10604
|
{
|
|
@@ -10118,7 +10619,8 @@
|
|
|
10118
10619
|
"fontName": "HelveticaNow",
|
|
10119
10620
|
"fontSize": 16,
|
|
10120
10621
|
"fontWeight": 500,
|
|
10121
|
-
"lineHeight": 1.5
|
|
10622
|
+
"lineHeight": 1.5,
|
|
10623
|
+
"superScriptFontSize": 16
|
|
10122
10624
|
}
|
|
10123
10625
|
},
|
|
10124
10626
|
{
|
|
@@ -10132,6 +10634,14 @@
|
|
|
10132
10634
|
"lineHeight": 1.28571428571
|
|
10133
10635
|
}
|
|
10134
10636
|
},
|
|
10637
|
+
{
|
|
10638
|
+
"if": {
|
|
10639
|
+
"size": ["h5", "h6"]
|
|
10640
|
+
},
|
|
10641
|
+
"tokens": {
|
|
10642
|
+
"superScriptFontSize": 12
|
|
10643
|
+
}
|
|
10644
|
+
},
|
|
10135
10645
|
{
|
|
10136
10646
|
"if": {
|
|
10137
10647
|
"size": "h6"
|
|
@@ -10149,7 +10659,8 @@
|
|
|
10149
10659
|
},
|
|
10150
10660
|
"tokens": {
|
|
10151
10661
|
"fontSize": 20,
|
|
10152
|
-
"lineHeight": 1.6
|
|
10662
|
+
"lineHeight": 1.6,
|
|
10663
|
+
"superScriptFontSize": 16
|
|
10153
10664
|
}
|
|
10154
10665
|
},
|
|
10155
10666
|
{
|
|
@@ -10177,7 +10688,8 @@
|
|
|
10177
10688
|
},
|
|
10178
10689
|
"tokens": {
|
|
10179
10690
|
"fontSize": 14,
|
|
10180
|
-
"lineHeight": 1.42857142857
|
|
10691
|
+
"lineHeight": 1.42857142857,
|
|
10692
|
+
"superScriptFontSize": 12
|
|
10181
10693
|
}
|
|
10182
10694
|
},
|
|
10183
10695
|
{
|
|
@@ -10197,7 +10709,8 @@
|
|
|
10197
10709
|
"fontName": "HelveticaNow",
|
|
10198
10710
|
"fontSize": 12,
|
|
10199
10711
|
"fontWeight": 500,
|
|
10200
|
-
"lineHeight": 1.33333333333
|
|
10712
|
+
"lineHeight": 1.33333333333,
|
|
10713
|
+
"superScriptFontSize": 12
|
|
10201
10714
|
}
|
|
10202
10715
|
},
|
|
10203
10716
|
{
|
|
@@ -10537,6 +11050,7 @@
|
|
|
10537
11050
|
"fontWeight": 400,
|
|
10538
11051
|
"letterSpacing": 0,
|
|
10539
11052
|
"lineHeight": 1.5,
|
|
11053
|
+
"superScriptFontSize": 16,
|
|
10540
11054
|
"textTransform": "none"
|
|
10541
11055
|
}
|
|
10542
11056
|
},
|
|
@@ -10701,17 +11215,72 @@
|
|
|
10701
11215
|
}
|
|
10702
11216
|
},
|
|
10703
11217
|
"VideoPickerThumbnail": {
|
|
10704
|
-
"appearances": {
|
|
10705
|
-
|
|
11218
|
+
"appearances": {
|
|
11219
|
+
"pressed": {
|
|
11220
|
+
"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.",
|
|
11221
|
+
"values": [true, false],
|
|
11222
|
+
"type": "state"
|
|
11223
|
+
},
|
|
11224
|
+
"selected": {
|
|
11225
|
+
"description": "Applies while an interactive component is the currently selected one in a set of states or components, for example a button in a `ButtonGroup`.",
|
|
11226
|
+
"values": [true],
|
|
11227
|
+
"type": "state"
|
|
11228
|
+
}
|
|
11229
|
+
},
|
|
11230
|
+
"rules": [
|
|
11231
|
+
{
|
|
11232
|
+
"if": {
|
|
11233
|
+
"pressed": true
|
|
11234
|
+
},
|
|
11235
|
+
"tokens": {
|
|
11236
|
+
"borderColor": {
|
|
11237
|
+
"red": 0.40392,
|
|
11238
|
+
"green": 0.43137,
|
|
11239
|
+
"blue": 0.45098,
|
|
11240
|
+
"alpha": 1
|
|
11241
|
+
},
|
|
11242
|
+
"borderWidth": 3
|
|
11243
|
+
}
|
|
11244
|
+
},
|
|
11245
|
+
{
|
|
11246
|
+
"if": {
|
|
11247
|
+
"selected": true
|
|
11248
|
+
},
|
|
11249
|
+
"tokens": {
|
|
11250
|
+
"borderColor": {
|
|
11251
|
+
"red": 0.29412,
|
|
11252
|
+
"green": 0.15686,
|
|
11253
|
+
"blue": 0.42745,
|
|
11254
|
+
"alpha": 1
|
|
11255
|
+
},
|
|
11256
|
+
"borderWidth": 2,
|
|
11257
|
+
"titleColor": {
|
|
11258
|
+
"red": 0.29412,
|
|
11259
|
+
"green": 0.15686,
|
|
11260
|
+
"blue": 0.42745,
|
|
11261
|
+
"alpha": 1
|
|
11262
|
+
}
|
|
11263
|
+
}
|
|
11264
|
+
}
|
|
11265
|
+
],
|
|
10706
11266
|
"tokens": {
|
|
10707
11267
|
"borderColor": {
|
|
10708
|
-
"red": 0.
|
|
10709
|
-
"green": 0.
|
|
10710
|
-
"blue": 0.
|
|
11268
|
+
"red": 0.8902,
|
|
11269
|
+
"green": 0.90196,
|
|
11270
|
+
"blue": 0.9098,
|
|
10711
11271
|
"alpha": 1
|
|
10712
11272
|
},
|
|
10713
11273
|
"borderRadius": 4,
|
|
10714
11274
|
"borderWidth": 2,
|
|
11275
|
+
"outerBorderColor": {
|
|
11276
|
+
"red": 0,
|
|
11277
|
+
"green": 0,
|
|
11278
|
+
"blue": 0,
|
|
11279
|
+
"alpha": 0
|
|
11280
|
+
},
|
|
11281
|
+
"outerBorderGap": 2,
|
|
11282
|
+
"outerBorderRadius": 8,
|
|
11283
|
+
"outerBorderWidth": 2,
|
|
10715
11284
|
"pressableBorderTopColor": {
|
|
10716
11285
|
"red": 0.8902,
|
|
10717
11286
|
"green": 0.90196,
|
|
@@ -10730,9 +11299,9 @@
|
|
|
10730
11299
|
"alpha": 1
|
|
10731
11300
|
},
|
|
10732
11301
|
"titleColor": {
|
|
10733
|
-
"red": 0.
|
|
10734
|
-
"green": 0.
|
|
10735
|
-
"blue": 0.
|
|
11302
|
+
"red": 0.2549,
|
|
11303
|
+
"green": 0.27059,
|
|
11304
|
+
"blue": 0.27843,
|
|
10736
11305
|
"alpha": 1
|
|
10737
11306
|
}
|
|
10738
11307
|
}
|
|
@@ -11008,7 +11577,7 @@
|
|
|
11008
11577
|
}
|
|
11009
11578
|
},
|
|
11010
11579
|
"metadata": {
|
|
11011
|
-
"themeTokensVersion": "2.
|
|
11580
|
+
"themeTokensVersion": "2.38.0",
|
|
11012
11581
|
"name": "theme-allium"
|
|
11013
11582
|
}
|
|
11014
11583
|
}
|