@telus-uds/theme-allium 4.6.0 → 4.8.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 +1232 -959
- package/build/android/theme.json +498 -86
- package/build/ios/schema.json +1232 -959
- package/build/ios/theme.json +498 -86
- package/build/rn/schema.json +1232 -959
- package/build/rn/theme.js +333 -50
- package/package.json +5 -5
- package/theme.json +385 -49
package/build/android/theme.json
CHANGED
|
@@ -2049,7 +2049,7 @@
|
|
|
2049
2049
|
"appearances": {
|
|
2050
2050
|
"background": {
|
|
2051
2051
|
"type": "variant",
|
|
2052
|
-
"values": ["alternative", "subtle", "grid"]
|
|
2052
|
+
"values": ["alternative", "subtle", "grid", "feature"]
|
|
2053
2053
|
},
|
|
2054
2054
|
"padding": {
|
|
2055
2055
|
"type": "variant",
|
|
@@ -2088,6 +2088,44 @@
|
|
|
2088
2088
|
}
|
|
2089
2089
|
}
|
|
2090
2090
|
},
|
|
2091
|
+
{
|
|
2092
|
+
"if": {
|
|
2093
|
+
"background": "feature"
|
|
2094
|
+
},
|
|
2095
|
+
"tokens": {
|
|
2096
|
+
"borderColor": {
|
|
2097
|
+
"red": 0.29412,
|
|
2098
|
+
"green": 0.15686,
|
|
2099
|
+
"blue": 0.42745,
|
|
2100
|
+
"alpha": 1
|
|
2101
|
+
},
|
|
2102
|
+
"borderWidth": 2,
|
|
2103
|
+
"gradient": {
|
|
2104
|
+
"type": "linear",
|
|
2105
|
+
"angle": 135,
|
|
2106
|
+
"stops": [
|
|
2107
|
+
{
|
|
2108
|
+
"stop": 0,
|
|
2109
|
+
"color": {
|
|
2110
|
+
"red": 0.29412,
|
|
2111
|
+
"green": 0.15686,
|
|
2112
|
+
"blue": 0.42745,
|
|
2113
|
+
"alpha": 1
|
|
2114
|
+
}
|
|
2115
|
+
},
|
|
2116
|
+
{
|
|
2117
|
+
"stop": 1,
|
|
2118
|
+
"color": {
|
|
2119
|
+
"red": 0.89804,
|
|
2120
|
+
"green": 0.19608,
|
|
2121
|
+
"blue": 0.57647,
|
|
2122
|
+
"alpha": 1
|
|
2123
|
+
}
|
|
2124
|
+
}
|
|
2125
|
+
]
|
|
2126
|
+
}
|
|
2127
|
+
}
|
|
2128
|
+
},
|
|
2091
2129
|
{
|
|
2092
2130
|
"if": {
|
|
2093
2131
|
"background": "grid"
|
|
@@ -2202,6 +2240,7 @@
|
|
|
2202
2240
|
"contentFlexShrink": 1,
|
|
2203
2241
|
"contentJustifyContent": "flex-start",
|
|
2204
2242
|
"flex": 1,
|
|
2243
|
+
"gradient": null,
|
|
2205
2244
|
"minWidth": null,
|
|
2206
2245
|
"paddingBottom": 32,
|
|
2207
2246
|
"paddingLeft": 24,
|
|
@@ -3249,10 +3288,24 @@
|
|
|
3249
3288
|
},
|
|
3250
3289
|
"ExpandCollapseMiniControl": {
|
|
3251
3290
|
"appearances": {
|
|
3291
|
+
"alternative": {
|
|
3292
|
+
"description": "Replaces the default green colour with a more subtle grey.",
|
|
3293
|
+
"type": "variant",
|
|
3294
|
+
"values": [true]
|
|
3295
|
+
},
|
|
3252
3296
|
"expanded": {
|
|
3253
3297
|
"description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
|
|
3254
3298
|
"values": [true],
|
|
3255
3299
|
"type": "state"
|
|
3300
|
+
},
|
|
3301
|
+
"inverse": {
|
|
3302
|
+
"description": "Replaces the default green colour with white. Useful for dark backgrounds.",
|
|
3303
|
+
"type": "variant",
|
|
3304
|
+
"values": [true]
|
|
3305
|
+
},
|
|
3306
|
+
"size": {
|
|
3307
|
+
"type": "variant",
|
|
3308
|
+
"values": ["micro", "small", "large"]
|
|
3256
3309
|
}
|
|
3257
3310
|
},
|
|
3258
3311
|
"rules": [
|
|
@@ -3263,15 +3316,70 @@
|
|
|
3263
3316
|
"tokens": {
|
|
3264
3317
|
"icon": "PaletteIconCaretUp"
|
|
3265
3318
|
}
|
|
3319
|
+
},
|
|
3320
|
+
{
|
|
3321
|
+
"if": {
|
|
3322
|
+
"alternative": true
|
|
3323
|
+
},
|
|
3324
|
+
"tokens": {
|
|
3325
|
+
"color": {
|
|
3326
|
+
"red": 0.2549,
|
|
3327
|
+
"green": 0.27059,
|
|
3328
|
+
"blue": 0.27843,
|
|
3329
|
+
"alpha": 1
|
|
3330
|
+
}
|
|
3331
|
+
}
|
|
3332
|
+
},
|
|
3333
|
+
{
|
|
3334
|
+
"if": {
|
|
3335
|
+
"inverse": true
|
|
3336
|
+
},
|
|
3337
|
+
"tokens": {
|
|
3338
|
+
"color": {
|
|
3339
|
+
"red": 1,
|
|
3340
|
+
"green": 1,
|
|
3341
|
+
"blue": 1,
|
|
3342
|
+
"alpha": 1
|
|
3343
|
+
},
|
|
3344
|
+
"iconColor": {
|
|
3345
|
+
"red": 1,
|
|
3346
|
+
"green": 1,
|
|
3347
|
+
"blue": 1,
|
|
3348
|
+
"alpha": 1
|
|
3349
|
+
}
|
|
3350
|
+
}
|
|
3351
|
+
},
|
|
3352
|
+
{
|
|
3353
|
+
"if": {
|
|
3354
|
+
"size": "micro"
|
|
3355
|
+
},
|
|
3356
|
+
"tokens": {
|
|
3357
|
+
"fontSize": 12,
|
|
3358
|
+
"iconSize": 16,
|
|
3359
|
+
"lineHeight": 1.33333333333
|
|
3360
|
+
}
|
|
3361
|
+
},
|
|
3362
|
+
{
|
|
3363
|
+
"if": {
|
|
3364
|
+
"size": "small"
|
|
3365
|
+
},
|
|
3366
|
+
"tokens": {
|
|
3367
|
+
"fontSize": 14,
|
|
3368
|
+
"iconSize": 20,
|
|
3369
|
+
"lineHeight": 1.45
|
|
3370
|
+
}
|
|
3371
|
+
},
|
|
3372
|
+
{
|
|
3373
|
+
"if": {
|
|
3374
|
+
"size": "large"
|
|
3375
|
+
},
|
|
3376
|
+
"tokens": {
|
|
3377
|
+
"fontSize": 20,
|
|
3378
|
+
"lineHeight": 1.28571428571
|
|
3379
|
+
}
|
|
3266
3380
|
}
|
|
3267
3381
|
],
|
|
3268
3382
|
"tokens": {
|
|
3269
|
-
"backgroundColor": {
|
|
3270
|
-
"red": 0,
|
|
3271
|
-
"green": 0,
|
|
3272
|
-
"blue": 0,
|
|
3273
|
-
"alpha": 0
|
|
3274
|
-
},
|
|
3275
3383
|
"borderColor": {
|
|
3276
3384
|
"red": 0,
|
|
3277
3385
|
"green": 0,
|
|
@@ -3279,6 +3387,13 @@
|
|
|
3279
3387
|
"alpha": 0
|
|
3280
3388
|
},
|
|
3281
3389
|
"borderWidth": 0,
|
|
3390
|
+
"color": {
|
|
3391
|
+
"red": 0.16863,
|
|
3392
|
+
"green": 0.50196,
|
|
3393
|
+
"blue": 0,
|
|
3394
|
+
"alpha": 1
|
|
3395
|
+
},
|
|
3396
|
+
"fontSize": 16,
|
|
3282
3397
|
"icon": "PaletteIconCaretDown",
|
|
3283
3398
|
"iconColor": {
|
|
3284
3399
|
"red": 0.16863,
|
|
@@ -3289,13 +3404,15 @@
|
|
|
3289
3404
|
"iconGap": 8,
|
|
3290
3405
|
"iconPaddingTop": 4,
|
|
3291
3406
|
"iconPosition": "left",
|
|
3292
|
-
"iconSize":
|
|
3407
|
+
"iconSize": 24,
|
|
3293
3408
|
"justifyContent": "flex-start",
|
|
3409
|
+
"lineHeight": 1.5,
|
|
3294
3410
|
"paddingBottom": 0,
|
|
3295
3411
|
"paddingLeft": 0,
|
|
3296
3412
|
"paddingRight": 0,
|
|
3297
3413
|
"paddingTop": 0,
|
|
3298
3414
|
"size": 4,
|
|
3415
|
+
"textLine": "underline",
|
|
3299
3416
|
"verticalAlign": "top"
|
|
3300
3417
|
}
|
|
3301
3418
|
},
|
|
@@ -3345,6 +3462,33 @@
|
|
|
3345
3462
|
"contentPaddingLeft": 24,
|
|
3346
3463
|
"contentPaddingRight": 0,
|
|
3347
3464
|
"contentPaddingTop": 0,
|
|
3465
|
+
"contentPanelBackgroundColor": {
|
|
3466
|
+
"red": 0,
|
|
3467
|
+
"green": 0,
|
|
3468
|
+
"blue": 0,
|
|
3469
|
+
"alpha": 0
|
|
3470
|
+
},
|
|
3471
|
+
"contentPanelBorderColor": {
|
|
3472
|
+
"red": 0,
|
|
3473
|
+
"green": 0,
|
|
3474
|
+
"blue": 0,
|
|
3475
|
+
"alpha": 0
|
|
3476
|
+
},
|
|
3477
|
+
"contentPanelBorderWidth": 0,
|
|
3478
|
+
"contentPanelFontColor": {
|
|
3479
|
+
"red": 0.17255,
|
|
3480
|
+
"green": 0.18039,
|
|
3481
|
+
"blue": 0.18824,
|
|
3482
|
+
"alpha": 1
|
|
3483
|
+
},
|
|
3484
|
+
"contentPanelFontName": "HelveticaNow",
|
|
3485
|
+
"contentPanelFontSize": 16,
|
|
3486
|
+
"contentPanelFontWeight": 700,
|
|
3487
|
+
"contentPanelLineHeight": 1.5,
|
|
3488
|
+
"contentPanelPaddingBottom": 16,
|
|
3489
|
+
"contentPanelPaddingLeft": 24,
|
|
3490
|
+
"contentPanelPaddingRight": 0,
|
|
3491
|
+
"contentPanelPaddingTop": 16,
|
|
3348
3492
|
"expandDividerColor": {
|
|
3349
3493
|
"red": 0,
|
|
3350
3494
|
"green": 0,
|
|
@@ -5265,7 +5409,7 @@
|
|
|
5265
5409
|
"viewport": ["xs", "sm", "md"]
|
|
5266
5410
|
},
|
|
5267
5411
|
"tokens": {
|
|
5268
|
-
"textAlign": "
|
|
5412
|
+
"textAlign": "space-between",
|
|
5269
5413
|
"width": 288
|
|
5270
5414
|
}
|
|
5271
5415
|
},
|
|
@@ -7879,33 +8023,44 @@
|
|
|
7879
8023
|
}
|
|
7880
8024
|
},
|
|
7881
8025
|
"SkipLink": {
|
|
7882
|
-
"appearances": {
|
|
8026
|
+
"appearances": {
|
|
8027
|
+
"pressed": {
|
|
8028
|
+
"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.",
|
|
8029
|
+
"values": [true, false],
|
|
8030
|
+
"type": "state"
|
|
8031
|
+
}
|
|
8032
|
+
},
|
|
7883
8033
|
"rules": [],
|
|
7884
8034
|
"tokens": {
|
|
7885
8035
|
"backgroundColor": {
|
|
7886
|
-
"red": 0
|
|
7887
|
-
"green": 0
|
|
7888
|
-
"blue": 0
|
|
7889
|
-
"alpha":
|
|
8036
|
+
"red": 0,
|
|
8037
|
+
"green": 0,
|
|
8038
|
+
"blue": 0,
|
|
8039
|
+
"alpha": 0
|
|
7890
8040
|
},
|
|
7891
|
-
"borderRadius":
|
|
8041
|
+
"borderRadius": 4,
|
|
7892
8042
|
"color": {
|
|
7893
|
-
"red":
|
|
7894
|
-
"green":
|
|
7895
|
-
"blue":
|
|
8043
|
+
"red": 0.16863,
|
|
8044
|
+
"green": 0.50196,
|
|
8045
|
+
"blue": 0,
|
|
7896
8046
|
"alpha": 1
|
|
7897
8047
|
},
|
|
8048
|
+
"fontName": "HelveticaNow",
|
|
8049
|
+
"fontSize": 16,
|
|
8050
|
+
"fontWeight": 400,
|
|
8051
|
+
"lineHeight": 1.5,
|
|
7898
8052
|
"outlineColor": {
|
|
7899
|
-
"red": 0.
|
|
7900
|
-
"green": 0.
|
|
7901
|
-
"blue": 0
|
|
8053
|
+
"red": 0.16863,
|
|
8054
|
+
"green": 0.50196,
|
|
8055
|
+
"blue": 0,
|
|
7902
8056
|
"alpha": 1
|
|
7903
8057
|
},
|
|
7904
|
-
"outlineOffset":
|
|
8058
|
+
"outlineOffset": 0,
|
|
7905
8059
|
"outlineStyle": "solid",
|
|
7906
|
-
"outlineWidth":
|
|
7907
|
-
"paddingHorizontal":
|
|
7908
|
-
"paddingVertical":
|
|
8060
|
+
"outlineWidth": 2,
|
|
8061
|
+
"paddingHorizontal": 2,
|
|
8062
|
+
"paddingVertical": 2,
|
|
8063
|
+
"textLine": "underline"
|
|
7909
8064
|
}
|
|
7910
8065
|
},
|
|
7911
8066
|
"Spinner": {
|
|
@@ -8300,27 +8455,182 @@
|
|
|
8300
8455
|
"Table": {
|
|
8301
8456
|
"appearances": {
|
|
8302
8457
|
"spacing": {
|
|
8458
|
+
"description": "Adjusts the height of the table cell",
|
|
8303
8459
|
"type": "variant",
|
|
8304
|
-
"values": ["compact"]
|
|
8460
|
+
"values": ["compact", "default"]
|
|
8461
|
+
},
|
|
8462
|
+
"text": {
|
|
8463
|
+
"type": "variant",
|
|
8464
|
+
"values": ["small", "medium"]
|
|
8465
|
+
},
|
|
8466
|
+
"type": {
|
|
8467
|
+
"type": "variant",
|
|
8468
|
+
"values": ["subHeading", "rowHeading", "heading", "default"]
|
|
8305
8469
|
}
|
|
8306
8470
|
},
|
|
8307
8471
|
"rules": [
|
|
8308
8472
|
{
|
|
8309
8473
|
"if": {
|
|
8310
|
-
"spacing": "compact"
|
|
8474
|
+
"spacing": "compact",
|
|
8475
|
+
"type": "default"
|
|
8311
8476
|
},
|
|
8312
8477
|
"tokens": {
|
|
8313
8478
|
"cellPaddingBottom": 8,
|
|
8314
|
-
"cellPaddingTop": 8
|
|
8479
|
+
"cellPaddingTop": 8,
|
|
8480
|
+
"fontSize": 16,
|
|
8481
|
+
"lineHeight": 1.25
|
|
8482
|
+
}
|
|
8483
|
+
},
|
|
8484
|
+
{
|
|
8485
|
+
"if": {
|
|
8486
|
+
"spacing": "compact",
|
|
8487
|
+
"type": "rowHeading"
|
|
8488
|
+
},
|
|
8489
|
+
"tokens": {
|
|
8490
|
+
"cellPaddingBottom": 8,
|
|
8491
|
+
"cellPaddingTop": 8,
|
|
8492
|
+
"fontName": "HelveticaNow",
|
|
8493
|
+
"fontSize": 16,
|
|
8494
|
+
"fontWeight": 700,
|
|
8495
|
+
"lineHeight": 1.25
|
|
8496
|
+
}
|
|
8497
|
+
},
|
|
8498
|
+
{
|
|
8499
|
+
"if": {
|
|
8500
|
+
"spacing": "compact",
|
|
8501
|
+
"text": "small",
|
|
8502
|
+
"type": "subHeading"
|
|
8503
|
+
},
|
|
8504
|
+
"tokens": {
|
|
8505
|
+
"cellBackground": {
|
|
8506
|
+
"red": 0.98039,
|
|
8507
|
+
"green": 0.98039,
|
|
8508
|
+
"blue": 0.98039,
|
|
8509
|
+
"alpha": 1
|
|
8510
|
+
},
|
|
8511
|
+
"cellPaddingBottom": 8,
|
|
8512
|
+
"cellPaddingTop": 8,
|
|
8513
|
+
"fontName": "HelveticaNow",
|
|
8514
|
+
"fontSize": 14,
|
|
8515
|
+
"fontWeight": 500,
|
|
8516
|
+
"lineHeight": 1.14285714286
|
|
8517
|
+
}
|
|
8518
|
+
},
|
|
8519
|
+
{
|
|
8520
|
+
"if": {
|
|
8521
|
+
"type": "heading"
|
|
8522
|
+
},
|
|
8523
|
+
"tokens": {
|
|
8524
|
+
"cellBackground": {
|
|
8525
|
+
"red": 0.95686,
|
|
8526
|
+
"green": 0.95686,
|
|
8527
|
+
"blue": 0.96863,
|
|
8528
|
+
"alpha": 1
|
|
8529
|
+
},
|
|
8530
|
+
"cellBoxShadowColor": {
|
|
8531
|
+
"red": 0.69804,
|
|
8532
|
+
"green": 0.72549,
|
|
8533
|
+
"blue": 0.74902,
|
|
8534
|
+
"alpha": 1
|
|
8535
|
+
},
|
|
8536
|
+
"fontName": "HelveticaNow",
|
|
8537
|
+
"fontSize": 16,
|
|
8538
|
+
"fontWeight": 500
|
|
8539
|
+
}
|
|
8540
|
+
},
|
|
8541
|
+
{
|
|
8542
|
+
"if": {
|
|
8543
|
+
"spacing": "default",
|
|
8544
|
+
"type": "subHeading"
|
|
8545
|
+
},
|
|
8546
|
+
"tokens": {
|
|
8547
|
+
"cellBackground": {
|
|
8548
|
+
"red": 0.98039,
|
|
8549
|
+
"green": 0.98039,
|
|
8550
|
+
"blue": 0.98039,
|
|
8551
|
+
"alpha": 1
|
|
8552
|
+
},
|
|
8553
|
+
"fontName": "HelveticaNow",
|
|
8554
|
+
"fontSize": 14,
|
|
8555
|
+
"fontWeight": 500,
|
|
8556
|
+
"lineHeight": 1.28571428571
|
|
8557
|
+
}
|
|
8558
|
+
},
|
|
8559
|
+
{
|
|
8560
|
+
"if": {
|
|
8561
|
+
"spacing": "compact",
|
|
8562
|
+
"text": "medium",
|
|
8563
|
+
"type": "subHeading"
|
|
8564
|
+
},
|
|
8565
|
+
"tokens": {
|
|
8566
|
+
"cellBackground": {
|
|
8567
|
+
"red": 0.98039,
|
|
8568
|
+
"green": 0.98039,
|
|
8569
|
+
"blue": 0.98039,
|
|
8570
|
+
"alpha": 1
|
|
8571
|
+
},
|
|
8572
|
+
"fontName": "HelveticaNow",
|
|
8573
|
+
"fontSize": 16,
|
|
8574
|
+
"fontWeight": 500,
|
|
8575
|
+
"lineHeight": 1.25
|
|
8576
|
+
}
|
|
8577
|
+
},
|
|
8578
|
+
{
|
|
8579
|
+
"if": {
|
|
8580
|
+
"spacing": "default",
|
|
8581
|
+
"type": "rowHeading"
|
|
8582
|
+
},
|
|
8583
|
+
"tokens": {
|
|
8584
|
+
"fontName": "HelveticaNow",
|
|
8585
|
+
"fontSize": 16,
|
|
8586
|
+
"fontWeight": 700
|
|
8587
|
+
}
|
|
8588
|
+
},
|
|
8589
|
+
{
|
|
8590
|
+
"if": {
|
|
8591
|
+
"spacing": "default",
|
|
8592
|
+
"text": "small",
|
|
8593
|
+
"type": "default"
|
|
8594
|
+
},
|
|
8595
|
+
"tokens": {
|
|
8596
|
+
"fontName": "HelveticaNow",
|
|
8597
|
+
"fontSize": 14,
|
|
8598
|
+
"fontWeight": 400,
|
|
8599
|
+
"lineHeight": 1.42857142857
|
|
8600
|
+
}
|
|
8601
|
+
},
|
|
8602
|
+
{
|
|
8603
|
+
"if": {
|
|
8604
|
+
"spacing": "compact",
|
|
8605
|
+
"text": "small",
|
|
8606
|
+
"type": "default"
|
|
8607
|
+
},
|
|
8608
|
+
"tokens": {
|
|
8609
|
+
"fontName": "HelveticaNow",
|
|
8610
|
+
"fontSize": 14,
|
|
8611
|
+
"fontWeight": 400,
|
|
8612
|
+
"lineHeight": 1.14285714286
|
|
8613
|
+
}
|
|
8614
|
+
},
|
|
8615
|
+
{
|
|
8616
|
+
"if": {
|
|
8617
|
+
"text": "small",
|
|
8618
|
+
"type": "rowHeading"
|
|
8619
|
+
},
|
|
8620
|
+
"tokens": {
|
|
8621
|
+
"fontName": "HelveticaNow",
|
|
8622
|
+
"fontSize": 14,
|
|
8623
|
+
"fontWeight": 700,
|
|
8624
|
+
"lineHeight": 1.14285714286
|
|
8315
8625
|
}
|
|
8316
8626
|
}
|
|
8317
8627
|
],
|
|
8318
8628
|
"tokens": {
|
|
8319
8629
|
"cellBackground": {
|
|
8320
|
-
"red":
|
|
8321
|
-
"green":
|
|
8322
|
-
"blue":
|
|
8323
|
-
"alpha":
|
|
8630
|
+
"red": 0,
|
|
8631
|
+
"green": 0,
|
|
8632
|
+
"blue": 0,
|
|
8633
|
+
"alpha": 0
|
|
8324
8634
|
},
|
|
8325
8635
|
"cellBoxShadowColor": {
|
|
8326
8636
|
"red": 0.8902,
|
|
@@ -8328,29 +8638,11 @@
|
|
|
8328
8638
|
"blue": 0.9098,
|
|
8329
8639
|
"alpha": 1
|
|
8330
8640
|
},
|
|
8331
|
-
"cellHeadingBackground": {
|
|
8332
|
-
"red": 0.95686,
|
|
8333
|
-
"green": 0.95686,
|
|
8334
|
-
"blue": 0.96863,
|
|
8335
|
-
"alpha": 1
|
|
8336
|
-
},
|
|
8337
|
-
"cellHeadingBoxShadowColor": {
|
|
8338
|
-
"red": 0.69804,
|
|
8339
|
-
"green": 0.72549,
|
|
8340
|
-
"blue": 0.74902,
|
|
8341
|
-
"alpha": 1
|
|
8342
|
-
},
|
|
8343
8641
|
"cellMinWidth": 0,
|
|
8344
8642
|
"cellPaddingBottom": 16,
|
|
8345
8643
|
"cellPaddingLeft": 16,
|
|
8346
8644
|
"cellPaddingRight": 16,
|
|
8347
8645
|
"cellPaddingTop": 16,
|
|
8348
|
-
"cellRowHeadingBackground": {
|
|
8349
|
-
"red": 1,
|
|
8350
|
-
"green": 1,
|
|
8351
|
-
"blue": 1,
|
|
8352
|
-
"alpha": 1
|
|
8353
|
-
},
|
|
8354
8646
|
"cellStickyShadow": {
|
|
8355
8647
|
"inset": false,
|
|
8356
8648
|
"offsetX": 0,
|
|
@@ -8364,15 +8656,16 @@
|
|
|
8364
8656
|
"alpha": 0.1
|
|
8365
8657
|
}
|
|
8366
8658
|
},
|
|
8367
|
-
"cellSubheadingBackground": {
|
|
8368
|
-
"red": 0.98039,
|
|
8369
|
-
"green": 0.98039,
|
|
8370
|
-
"blue": 0.98039,
|
|
8371
|
-
"alpha": 1
|
|
8372
|
-
},
|
|
8373
8659
|
"fontName": "HelveticaNow",
|
|
8374
8660
|
"fontSize": 16,
|
|
8375
8661
|
"fontWeight": 400,
|
|
8662
|
+
"lineHeight": 1.5,
|
|
8663
|
+
"stickyBackgroundColor": {
|
|
8664
|
+
"red": 1,
|
|
8665
|
+
"green": 1,
|
|
8666
|
+
"blue": 1,
|
|
8667
|
+
"alpha": 1
|
|
8668
|
+
},
|
|
8376
8669
|
"tablePaddingBottom": 24
|
|
8377
8670
|
}
|
|
8378
8671
|
},
|
|
@@ -8949,9 +9242,24 @@
|
|
|
8949
9242
|
"description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
|
|
8950
9243
|
"values": [true],
|
|
8951
9244
|
"type": "state"
|
|
9245
|
+
},
|
|
9246
|
+
"viewport": {
|
|
9247
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
9248
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
9249
|
+
"type": "state"
|
|
8952
9250
|
}
|
|
8953
9251
|
},
|
|
8954
9252
|
"rules": [
|
|
9253
|
+
{
|
|
9254
|
+
"if": {
|
|
9255
|
+
"viewport": ["xs", "sm"]
|
|
9256
|
+
},
|
|
9257
|
+
"tokens": {
|
|
9258
|
+
"expandContentPaddingRight": 24,
|
|
9259
|
+
"listMarginLeft": 6,
|
|
9260
|
+
"titlePaddingLeft": 6
|
|
9261
|
+
}
|
|
9262
|
+
},
|
|
8955
9263
|
{
|
|
8956
9264
|
"if": {
|
|
8957
9265
|
"expanded": true
|
|
@@ -8962,36 +9270,60 @@
|
|
|
8962
9270
|
}
|
|
8963
9271
|
],
|
|
8964
9272
|
"tokens": {
|
|
9273
|
+
"contentBorderColor": {
|
|
9274
|
+
"red": 0,
|
|
9275
|
+
"green": 0,
|
|
9276
|
+
"blue": 0,
|
|
9277
|
+
"alpha": 0
|
|
9278
|
+
},
|
|
9279
|
+
"contentMarginBottom": 0,
|
|
8965
9280
|
"contentPaddingBottom": 8,
|
|
8966
9281
|
"contentPaddingLeft": 16,
|
|
9282
|
+
"dividerColor": {
|
|
9283
|
+
"red": 0.69804,
|
|
9284
|
+
"green": 0.72549,
|
|
9285
|
+
"blue": 0.74902,
|
|
9286
|
+
"alpha": 1
|
|
9287
|
+
},
|
|
8967
9288
|
"expandBaseBorderWidth": 0,
|
|
8968
9289
|
"expandContentPaddingBottom": 16,
|
|
8969
9290
|
"expandContentPaddingLeft": 16,
|
|
8970
9291
|
"expandContentPaddingRight": 16,
|
|
8971
9292
|
"expandContentPaddingTop": 16,
|
|
8972
9293
|
"expandIconContainerAlignItems": "center",
|
|
8973
|
-
"expandIconContainerBorder":
|
|
9294
|
+
"expandIconContainerBorder": 0,
|
|
8974
9295
|
"expandIconContainerBorderColor": {
|
|
8975
|
-
"red": 0
|
|
8976
|
-
"green": 0
|
|
8977
|
-
"blue": 0
|
|
8978
|
-
"alpha":
|
|
9296
|
+
"red": 0,
|
|
9297
|
+
"green": 0,
|
|
9298
|
+
"blue": 0,
|
|
9299
|
+
"alpha": 0
|
|
8979
9300
|
},
|
|
8980
9301
|
"expandIconContainerHeight": 32,
|
|
8981
9302
|
"expandIconContainerJustifyContent": "center",
|
|
8982
9303
|
"expandIconContainerMarginX": 0,
|
|
8983
9304
|
"expandIconContainerMarginY": 12,
|
|
8984
9305
|
"expandIconContainerWidth": 32,
|
|
9306
|
+
"expandTitleBorder": 0,
|
|
9307
|
+
"expandTitleBorderColor": {
|
|
9308
|
+
"red": 0,
|
|
9309
|
+
"green": 0,
|
|
9310
|
+
"blue": 0,
|
|
9311
|
+
"alpha": 0
|
|
9312
|
+
},
|
|
8985
9313
|
"expandTitleColor": {
|
|
8986
9314
|
"red": 0.17255,
|
|
8987
9315
|
"green": 0.18039,
|
|
8988
9316
|
"blue": 0.18824,
|
|
8989
9317
|
"alpha": 1
|
|
8990
9318
|
},
|
|
9319
|
+
"expandTitleFontName": "HelveticaNow",
|
|
8991
9320
|
"expandTitleFontSize": 16,
|
|
9321
|
+
"expandTitleFontWeight": 500,
|
|
8992
9322
|
"expandTitleLineHeight": 1.5,
|
|
8993
9323
|
"expandTitleMarginX": 4,
|
|
8994
9324
|
"expandTitleMarginY": 0,
|
|
9325
|
+
"expandTitlePaddingLeft": 0,
|
|
9326
|
+
"expandTitleUnderline": "none",
|
|
8995
9327
|
"icon": "PaletteIconCaretDown",
|
|
8996
9328
|
"listColor": {
|
|
8997
9329
|
"red": 0.2549,
|
|
@@ -9016,8 +9348,8 @@
|
|
|
9016
9348
|
},
|
|
9017
9349
|
"titleFontSize": 14,
|
|
9018
9350
|
"titleLineHeight": 1.42857142857,
|
|
9019
|
-
"titlePaddingLeft":
|
|
9020
|
-
"unorderedPadding":
|
|
9351
|
+
"titlePaddingLeft": 32,
|
|
9352
|
+
"unorderedPadding": 12
|
|
9021
9353
|
}
|
|
9022
9354
|
},
|
|
9023
9355
|
"Testimonial": {
|
|
@@ -9498,7 +9830,7 @@
|
|
|
9498
9830
|
"labelFontSize": 16,
|
|
9499
9831
|
"labelFontWeight": 400,
|
|
9500
9832
|
"labelLineHeight": 1.5,
|
|
9501
|
-
"labelMarginLeft":
|
|
9833
|
+
"labelMarginLeft": 0,
|
|
9502
9834
|
"opacity": 1,
|
|
9503
9835
|
"outerBackgroundColor": {
|
|
9504
9836
|
"red": 0,
|
|
@@ -9513,6 +9845,7 @@
|
|
|
9513
9845
|
"alpha": 0
|
|
9514
9846
|
},
|
|
9515
9847
|
"outerBorderGap": 0,
|
|
9848
|
+
"outerBorderGapButton": 3,
|
|
9516
9849
|
"outerBorderWidth": 0,
|
|
9517
9850
|
"paddingBottom": 0,
|
|
9518
9851
|
"paddingLeft": 0,
|
|
@@ -9531,6 +9864,7 @@
|
|
|
9531
9864
|
"alpha": 0.1
|
|
9532
9865
|
}
|
|
9533
9866
|
},
|
|
9867
|
+
"space": 2,
|
|
9534
9868
|
"switchBorderColor": {
|
|
9535
9869
|
"red": 0,
|
|
9536
9870
|
"green": 0,
|
|
@@ -9567,6 +9901,7 @@
|
|
|
9567
9901
|
},
|
|
9568
9902
|
"trackBorderRadius": 32,
|
|
9569
9903
|
"trackBorderWidth": 3,
|
|
9904
|
+
"trackHeight": 24,
|
|
9570
9905
|
"width": 40
|
|
9571
9906
|
}
|
|
9572
9907
|
},
|
|
@@ -9886,7 +10221,8 @@
|
|
|
9886
10221
|
"fontSize": 40,
|
|
9887
10222
|
"fontWeight": 300,
|
|
9888
10223
|
"letterSpacing": -0.035,
|
|
9889
|
-
"lineHeight": 1.2
|
|
10224
|
+
"lineHeight": 1.2,
|
|
10225
|
+
"superScriptFontSize": 24
|
|
9890
10226
|
}
|
|
9891
10227
|
},
|
|
9892
10228
|
{
|
|
@@ -9896,7 +10232,8 @@
|
|
|
9896
10232
|
},
|
|
9897
10233
|
"tokens": {
|
|
9898
10234
|
"fontSize": 64,
|
|
9899
|
-
"lineHeight": 1.125
|
|
10235
|
+
"lineHeight": 1.125,
|
|
10236
|
+
"superScriptFontSize": 32
|
|
9900
10237
|
}
|
|
9901
10238
|
},
|
|
9902
10239
|
{
|
|
@@ -9908,7 +10245,8 @@
|
|
|
9908
10245
|
"fontSize": 36,
|
|
9909
10246
|
"fontWeight": 400,
|
|
9910
10247
|
"letterSpacing": -0.035,
|
|
9911
|
-
"lineHeight": 1.22222222222
|
|
10248
|
+
"lineHeight": 1.22222222222,
|
|
10249
|
+
"superScriptFontSize": 24
|
|
9912
10250
|
}
|
|
9913
10251
|
},
|
|
9914
10252
|
{
|
|
@@ -9921,7 +10259,8 @@
|
|
|
9921
10259
|
"fontSize": 56,
|
|
9922
10260
|
"fontWeight": 300,
|
|
9923
10261
|
"letterSpacing": -0.039,
|
|
9924
|
-
"lineHeight": 1.14285714286
|
|
10262
|
+
"lineHeight": 1.14285714286,
|
|
10263
|
+
"superScriptFontSize": 32
|
|
9925
10264
|
}
|
|
9926
10265
|
},
|
|
9927
10266
|
{
|
|
@@ -9931,7 +10270,8 @@
|
|
|
9931
10270
|
"tokens": {
|
|
9932
10271
|
"fontSize": 28,
|
|
9933
10272
|
"letterSpacing": -0.017,
|
|
9934
|
-
"lineHeight": 1.28571428571
|
|
10273
|
+
"lineHeight": 1.28571428571,
|
|
10274
|
+
"superScriptFontSize": 20
|
|
9935
10275
|
}
|
|
9936
10276
|
},
|
|
9937
10277
|
{
|
|
@@ -9944,7 +10284,8 @@
|
|
|
9944
10284
|
"fontSize": 40,
|
|
9945
10285
|
"fontWeight": 300,
|
|
9946
10286
|
"letterSpacing": -0.035,
|
|
9947
|
-
"lineHeight": 1.2
|
|
10287
|
+
"lineHeight": 1.2,
|
|
10288
|
+
"superScriptFontSize": 24
|
|
9948
10289
|
}
|
|
9949
10290
|
},
|
|
9950
10291
|
{
|
|
@@ -9955,7 +10296,8 @@
|
|
|
9955
10296
|
"fontName": "HelveticaNow",
|
|
9956
10297
|
"fontSize": 24,
|
|
9957
10298
|
"fontWeight": 400,
|
|
9958
|
-
"lineHeight": 1.33333333333
|
|
10299
|
+
"lineHeight": 1.33333333333,
|
|
10300
|
+
"superScriptFontSize": 16
|
|
9959
10301
|
}
|
|
9960
10302
|
},
|
|
9961
10303
|
{
|
|
@@ -9966,7 +10308,8 @@
|
|
|
9966
10308
|
"tokens": {
|
|
9967
10309
|
"fontSize": 28,
|
|
9968
10310
|
"letterSpacing": -0.017,
|
|
9969
|
-
"lineHeight": 1.28571428571
|
|
10311
|
+
"lineHeight": 1.28571428571,
|
|
10312
|
+
"superScriptFontSize": 20
|
|
9970
10313
|
}
|
|
9971
10314
|
},
|
|
9972
10315
|
{
|
|
@@ -9977,7 +10320,8 @@
|
|
|
9977
10320
|
"fontName": "HelveticaNow",
|
|
9978
10321
|
"fontSize": 20,
|
|
9979
10322
|
"fontWeight": 500,
|
|
9980
|
-
"lineHeight": 1.4
|
|
10323
|
+
"lineHeight": 1.4,
|
|
10324
|
+
"superScriptFontSize": 16
|
|
9981
10325
|
}
|
|
9982
10326
|
},
|
|
9983
10327
|
{
|
|
@@ -9998,7 +10342,8 @@
|
|
|
9998
10342
|
"fontName": "HelveticaNow",
|
|
9999
10343
|
"fontSize": 16,
|
|
10000
10344
|
"fontWeight": 500,
|
|
10001
|
-
"lineHeight": 1.5
|
|
10345
|
+
"lineHeight": 1.5,
|
|
10346
|
+
"superScriptFontSize": 16
|
|
10002
10347
|
}
|
|
10003
10348
|
},
|
|
10004
10349
|
{
|
|
@@ -10012,6 +10357,14 @@
|
|
|
10012
10357
|
"lineHeight": 1.28571428571
|
|
10013
10358
|
}
|
|
10014
10359
|
},
|
|
10360
|
+
{
|
|
10361
|
+
"if": {
|
|
10362
|
+
"size": ["h5", "h6"]
|
|
10363
|
+
},
|
|
10364
|
+
"tokens": {
|
|
10365
|
+
"superScriptFontSize": 12
|
|
10366
|
+
}
|
|
10367
|
+
},
|
|
10015
10368
|
{
|
|
10016
10369
|
"if": {
|
|
10017
10370
|
"size": "h6"
|
|
@@ -10029,7 +10382,8 @@
|
|
|
10029
10382
|
},
|
|
10030
10383
|
"tokens": {
|
|
10031
10384
|
"fontSize": 20,
|
|
10032
|
-
"lineHeight": 1.6
|
|
10385
|
+
"lineHeight": 1.6,
|
|
10386
|
+
"superScriptFontSize": 16
|
|
10033
10387
|
}
|
|
10034
10388
|
},
|
|
10035
10389
|
{
|
|
@@ -10057,7 +10411,8 @@
|
|
|
10057
10411
|
},
|
|
10058
10412
|
"tokens": {
|
|
10059
10413
|
"fontSize": 14,
|
|
10060
|
-
"lineHeight": 1.42857142857
|
|
10414
|
+
"lineHeight": 1.42857142857,
|
|
10415
|
+
"superScriptFontSize": 12
|
|
10061
10416
|
}
|
|
10062
10417
|
},
|
|
10063
10418
|
{
|
|
@@ -10077,7 +10432,8 @@
|
|
|
10077
10432
|
"fontName": "HelveticaNow",
|
|
10078
10433
|
"fontSize": 12,
|
|
10079
10434
|
"fontWeight": 500,
|
|
10080
|
-
"lineHeight": 1.33333333333
|
|
10435
|
+
"lineHeight": 1.33333333333,
|
|
10436
|
+
"superScriptFontSize": 12
|
|
10081
10437
|
}
|
|
10082
10438
|
},
|
|
10083
10439
|
{
|
|
@@ -10417,6 +10773,7 @@
|
|
|
10417
10773
|
"fontWeight": 400,
|
|
10418
10774
|
"letterSpacing": 0,
|
|
10419
10775
|
"lineHeight": 1.5,
|
|
10776
|
+
"superScriptFontSize": 16,
|
|
10420
10777
|
"textTransform": "none"
|
|
10421
10778
|
}
|
|
10422
10779
|
},
|
|
@@ -10581,17 +10938,72 @@
|
|
|
10581
10938
|
}
|
|
10582
10939
|
},
|
|
10583
10940
|
"VideoPickerThumbnail": {
|
|
10584
|
-
"appearances": {
|
|
10585
|
-
|
|
10941
|
+
"appearances": {
|
|
10942
|
+
"pressed": {
|
|
10943
|
+
"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.",
|
|
10944
|
+
"values": [true, false],
|
|
10945
|
+
"type": "state"
|
|
10946
|
+
},
|
|
10947
|
+
"selected": {
|
|
10948
|
+
"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`.",
|
|
10949
|
+
"values": [true],
|
|
10950
|
+
"type": "state"
|
|
10951
|
+
}
|
|
10952
|
+
},
|
|
10953
|
+
"rules": [
|
|
10954
|
+
{
|
|
10955
|
+
"if": {
|
|
10956
|
+
"pressed": true
|
|
10957
|
+
},
|
|
10958
|
+
"tokens": {
|
|
10959
|
+
"borderColor": {
|
|
10960
|
+
"red": 0.40392,
|
|
10961
|
+
"green": 0.43137,
|
|
10962
|
+
"blue": 0.45098,
|
|
10963
|
+
"alpha": 1
|
|
10964
|
+
},
|
|
10965
|
+
"borderWidth": 3
|
|
10966
|
+
}
|
|
10967
|
+
},
|
|
10968
|
+
{
|
|
10969
|
+
"if": {
|
|
10970
|
+
"selected": true
|
|
10971
|
+
},
|
|
10972
|
+
"tokens": {
|
|
10973
|
+
"borderColor": {
|
|
10974
|
+
"red": 0.29412,
|
|
10975
|
+
"green": 0.15686,
|
|
10976
|
+
"blue": 0.42745,
|
|
10977
|
+
"alpha": 1
|
|
10978
|
+
},
|
|
10979
|
+
"borderWidth": 2,
|
|
10980
|
+
"titleColor": {
|
|
10981
|
+
"red": 0.29412,
|
|
10982
|
+
"green": 0.15686,
|
|
10983
|
+
"blue": 0.42745,
|
|
10984
|
+
"alpha": 1
|
|
10985
|
+
}
|
|
10986
|
+
}
|
|
10987
|
+
}
|
|
10988
|
+
],
|
|
10586
10989
|
"tokens": {
|
|
10587
10990
|
"borderColor": {
|
|
10588
|
-
"red": 0.
|
|
10589
|
-
"green": 0.
|
|
10590
|
-
"blue": 0.
|
|
10991
|
+
"red": 0.8902,
|
|
10992
|
+
"green": 0.90196,
|
|
10993
|
+
"blue": 0.9098,
|
|
10591
10994
|
"alpha": 1
|
|
10592
10995
|
},
|
|
10593
10996
|
"borderRadius": 4,
|
|
10594
10997
|
"borderWidth": 2,
|
|
10998
|
+
"outerBorderColor": {
|
|
10999
|
+
"red": 0,
|
|
11000
|
+
"green": 0,
|
|
11001
|
+
"blue": 0,
|
|
11002
|
+
"alpha": 0
|
|
11003
|
+
},
|
|
11004
|
+
"outerBorderGap": 2,
|
|
11005
|
+
"outerBorderRadius": 8,
|
|
11006
|
+
"outerBorderWidth": 2,
|
|
10595
11007
|
"pressableBorderTopColor": {
|
|
10596
11008
|
"red": 0.8902,
|
|
10597
11009
|
"green": 0.90196,
|
|
@@ -10610,9 +11022,9 @@
|
|
|
10610
11022
|
"alpha": 1
|
|
10611
11023
|
},
|
|
10612
11024
|
"titleColor": {
|
|
10613
|
-
"red": 0.
|
|
10614
|
-
"green": 0.
|
|
10615
|
-
"blue": 0.
|
|
11025
|
+
"red": 0.2549,
|
|
11026
|
+
"green": 0.27059,
|
|
11027
|
+
"blue": 0.27843,
|
|
10616
11028
|
"alpha": 1
|
|
10617
11029
|
}
|
|
10618
11030
|
}
|
|
@@ -10888,7 +11300,7 @@
|
|
|
10888
11300
|
}
|
|
10889
11301
|
},
|
|
10890
11302
|
"metadata": {
|
|
10891
|
-
"themeTokensVersion": "2.
|
|
11303
|
+
"themeTokensVersion": "2.37.0",
|
|
10892
11304
|
"name": "theme-allium"
|
|
10893
11305
|
}
|
|
10894
11306
|
}
|