@telus-uds/theme-koodo 3.23.0 → 3.25.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 +5051 -3215
- package/build/android/theme.json +776 -75
- package/build/ios/schema.json +5051 -3215
- package/build/ios/theme.json +776 -75
- package/build/rn/schema.json +5051 -3215
- package/build/rn/theme.js +422 -21
- package/package.json +4 -4
- package/theme.json +498 -22
package/build/android/theme.json
CHANGED
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"blue": 0.41569,
|
|
27
27
|
"alpha": 1
|
|
28
28
|
},
|
|
29
|
-
"size":
|
|
30
|
-
"thickness":
|
|
29
|
+
"size": 24,
|
|
30
|
+
"thickness": 2
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"Badge": {
|
|
@@ -479,10 +479,10 @@
|
|
|
479
479
|
],
|
|
480
480
|
"tokens": {
|
|
481
481
|
"backgroundColor": {
|
|
482
|
-
"red":
|
|
483
|
-
"green":
|
|
484
|
-
"blue":
|
|
485
|
-
"alpha":
|
|
482
|
+
"red": 0,
|
|
483
|
+
"green": 0,
|
|
484
|
+
"blue": 0,
|
|
485
|
+
"alpha": 0
|
|
486
486
|
},
|
|
487
487
|
"gradient": null
|
|
488
488
|
}
|
|
@@ -557,10 +557,15 @@
|
|
|
557
557
|
"type": "variant",
|
|
558
558
|
"values": [true]
|
|
559
559
|
},
|
|
560
|
+
"viewport": {
|
|
561
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
562
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
563
|
+
"type": "state"
|
|
564
|
+
},
|
|
560
565
|
"width": {
|
|
561
|
-
"description": "Available in default
|
|
566
|
+
"description": "Available in default, full-width or responsive. Default-width expands based on content. Full-width expands to width of the container. Responsive automatically applies full-width when is displayed on the XS viewport.",
|
|
562
567
|
"type": "variant",
|
|
563
|
-
"values": ["full"]
|
|
568
|
+
"values": ["full", "responsive"]
|
|
564
569
|
}
|
|
565
570
|
},
|
|
566
571
|
"rules": [
|
|
@@ -742,6 +747,15 @@
|
|
|
742
747
|
"width": "100%"
|
|
743
748
|
}
|
|
744
749
|
},
|
|
750
|
+
{
|
|
751
|
+
"if": {
|
|
752
|
+
"viewport": ["xs"],
|
|
753
|
+
"width": "responsive"
|
|
754
|
+
},
|
|
755
|
+
"tokens": {
|
|
756
|
+
"width": "100%"
|
|
757
|
+
}
|
|
758
|
+
},
|
|
745
759
|
{
|
|
746
760
|
"if": {
|
|
747
761
|
"size": "small"
|
|
@@ -1364,6 +1378,10 @@
|
|
|
1364
1378
|
},
|
|
1365
1379
|
"Callout": {
|
|
1366
1380
|
"appearances": {
|
|
1381
|
+
"rounded": {
|
|
1382
|
+
"type": "variant",
|
|
1383
|
+
"values": [true]
|
|
1384
|
+
},
|
|
1367
1385
|
"size": {
|
|
1368
1386
|
"type": "variant",
|
|
1369
1387
|
"values": ["small"]
|
|
@@ -1378,20 +1396,28 @@
|
|
|
1378
1396
|
"paddingBottom": 4,
|
|
1379
1397
|
"paddingTop": 4
|
|
1380
1398
|
}
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
"if": {
|
|
1402
|
+
"rounded": true
|
|
1403
|
+
},
|
|
1404
|
+
"tokens": {
|
|
1405
|
+
"borderRadius": 4
|
|
1406
|
+
}
|
|
1381
1407
|
}
|
|
1382
1408
|
],
|
|
1383
1409
|
"tokens": {
|
|
1384
1410
|
"background": {
|
|
1385
|
-
"red": 0.
|
|
1386
|
-
"green": 0.
|
|
1387
|
-
"blue": 0.
|
|
1411
|
+
"red": 0.98039,
|
|
1412
|
+
"green": 0.90196,
|
|
1413
|
+
"blue": 0.95686,
|
|
1388
1414
|
"alpha": 1
|
|
1389
1415
|
},
|
|
1390
|
-
"borderRadius":
|
|
1416
|
+
"borderRadius": 0,
|
|
1391
1417
|
"color": {
|
|
1392
|
-
"red": 0,
|
|
1393
|
-
"green": 0,
|
|
1394
|
-
"blue": 0,
|
|
1418
|
+
"red": 0.48627,
|
|
1419
|
+
"green": 0.07451,
|
|
1420
|
+
"blue": 0.4,
|
|
1395
1421
|
"alpha": 1
|
|
1396
1422
|
},
|
|
1397
1423
|
"gap": 16,
|
|
@@ -1882,7 +1908,7 @@
|
|
|
1882
1908
|
"size": "large"
|
|
1883
1909
|
},
|
|
1884
1910
|
"tokens": {
|
|
1885
|
-
"
|
|
1911
|
+
"fontSize": 20,
|
|
1886
1912
|
"iconSize": 24,
|
|
1887
1913
|
"textLineHeight": 2.15
|
|
1888
1914
|
}
|
|
@@ -1892,7 +1918,7 @@
|
|
|
1892
1918
|
"size": "small"
|
|
1893
1919
|
},
|
|
1894
1920
|
"tokens": {
|
|
1895
|
-
"
|
|
1921
|
+
"fontSize": 14,
|
|
1896
1922
|
"iconSize": 16,
|
|
1897
1923
|
"textLineHeight": 2.15
|
|
1898
1924
|
}
|
|
@@ -1902,7 +1928,7 @@
|
|
|
1902
1928
|
"size": "micro"
|
|
1903
1929
|
},
|
|
1904
1930
|
"tokens": {
|
|
1905
|
-
"
|
|
1931
|
+
"fontSize": 12,
|
|
1906
1932
|
"iconSize": 16,
|
|
1907
1933
|
"textLineHeight": 2.25
|
|
1908
1934
|
}
|
|
@@ -1915,7 +1941,7 @@
|
|
|
1915
1941
|
"blue": 0.41569,
|
|
1916
1942
|
"alpha": 1
|
|
1917
1943
|
},
|
|
1918
|
-
"
|
|
1944
|
+
"fontSize": 16,
|
|
1919
1945
|
"iconDisplace": 0,
|
|
1920
1946
|
"iconSize": 18,
|
|
1921
1947
|
"iconSpace": 1,
|
|
@@ -1931,6 +1957,135 @@
|
|
|
1931
1957
|
"textLineHeight": 2.13
|
|
1932
1958
|
}
|
|
1933
1959
|
},
|
|
1960
|
+
"Countdown": {
|
|
1961
|
+
"appearances": {
|
|
1962
|
+
"feature": {
|
|
1963
|
+
"type": "variant",
|
|
1964
|
+
"values": [true]
|
|
1965
|
+
},
|
|
1966
|
+
"inverse": {
|
|
1967
|
+
"type": "variant",
|
|
1968
|
+
"values": [true]
|
|
1969
|
+
},
|
|
1970
|
+
"label": {
|
|
1971
|
+
"type": "variant",
|
|
1972
|
+
"values": [true]
|
|
1973
|
+
},
|
|
1974
|
+
"large": {
|
|
1975
|
+
"type": "variant",
|
|
1976
|
+
"values": [true]
|
|
1977
|
+
},
|
|
1978
|
+
"viewport": {
|
|
1979
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
1980
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
1981
|
+
"type": "state"
|
|
1982
|
+
}
|
|
1983
|
+
},
|
|
1984
|
+
"rules": [
|
|
1985
|
+
{
|
|
1986
|
+
"if": {
|
|
1987
|
+
"viewport": ["xs"]
|
|
1988
|
+
},
|
|
1989
|
+
"tokens": {
|
|
1990
|
+
"containerPaddingBottomTop": 16,
|
|
1991
|
+
"containerPaddingLeftRight": 24,
|
|
1992
|
+
"labelFontSize": 14,
|
|
1993
|
+
"labelLineHeight": 1.42857142857,
|
|
1994
|
+
"textLineHeight": 1.14285714286
|
|
1995
|
+
}
|
|
1996
|
+
},
|
|
1997
|
+
{
|
|
1998
|
+
"if": {
|
|
1999
|
+
"large": true,
|
|
2000
|
+
"viewport": ["xs"]
|
|
2001
|
+
},
|
|
2002
|
+
"tokens": {
|
|
2003
|
+
"textFontSize": 28
|
|
2004
|
+
}
|
|
2005
|
+
},
|
|
2006
|
+
{
|
|
2007
|
+
"if": {
|
|
2008
|
+
"feature": true,
|
|
2009
|
+
"viewport": ["xs"]
|
|
2010
|
+
},
|
|
2011
|
+
"tokens": {
|
|
2012
|
+
"textFontSize": 28
|
|
2013
|
+
}
|
|
2014
|
+
},
|
|
2015
|
+
{
|
|
2016
|
+
"if": {
|
|
2017
|
+
"feature": true
|
|
2018
|
+
},
|
|
2019
|
+
"tokens": {
|
|
2020
|
+
"labelBorderColor": {
|
|
2021
|
+
"red": 0,
|
|
2022
|
+
"green": 0,
|
|
2023
|
+
"blue": 0,
|
|
2024
|
+
"alpha": 0
|
|
2025
|
+
},
|
|
2026
|
+
"textFontSize": 64,
|
|
2027
|
+
"textLineHeight": 1.14285714286,
|
|
2028
|
+
"textTimerFontName": "StagSans",
|
|
2029
|
+
"textTimerFontWeight": 300
|
|
2030
|
+
}
|
|
2031
|
+
},
|
|
2032
|
+
{
|
|
2033
|
+
"if": {
|
|
2034
|
+
"large": true
|
|
2035
|
+
},
|
|
2036
|
+
"tokens": {
|
|
2037
|
+
"textFontSize": 64,
|
|
2038
|
+
"textLineHeight": 1.14285714286,
|
|
2039
|
+
"textTimerFontName": "StagSans",
|
|
2040
|
+
"textTimerFontWeight": 300
|
|
2041
|
+
}
|
|
2042
|
+
},
|
|
2043
|
+
{
|
|
2044
|
+
"if": {
|
|
2045
|
+
"inverse": true
|
|
2046
|
+
},
|
|
2047
|
+
"tokens": {
|
|
2048
|
+
"labelBorderColor": {
|
|
2049
|
+
"red": 0,
|
|
2050
|
+
"green": 0,
|
|
2051
|
+
"blue": 0,
|
|
2052
|
+
"alpha": 0
|
|
2053
|
+
}
|
|
2054
|
+
}
|
|
2055
|
+
}
|
|
2056
|
+
],
|
|
2057
|
+
"tokens": {
|
|
2058
|
+
"containerBorderRadius": 6,
|
|
2059
|
+
"containerGradient": null,
|
|
2060
|
+
"containerInverseBorder": 2,
|
|
2061
|
+
"containerInverseBorderColor": {
|
|
2062
|
+
"red": 1,
|
|
2063
|
+
"green": 1,
|
|
2064
|
+
"blue": 1,
|
|
2065
|
+
"alpha": 1
|
|
2066
|
+
},
|
|
2067
|
+
"containerPaddingBottomTop": 48,
|
|
2068
|
+
"containerPaddingLeftRight": 64,
|
|
2069
|
+
"inverseBorderColor": {
|
|
2070
|
+
"red": 0,
|
|
2071
|
+
"green": 0,
|
|
2072
|
+
"blue": 0,
|
|
2073
|
+
"alpha": 0
|
|
2074
|
+
},
|
|
2075
|
+
"labelBorderColor": {
|
|
2076
|
+
"red": 0,
|
|
2077
|
+
"green": 0,
|
|
2078
|
+
"blue": 0,
|
|
2079
|
+
"alpha": 0
|
|
2080
|
+
},
|
|
2081
|
+
"labelFontSize": 16,
|
|
2082
|
+
"labelLineHeight": 1.5,
|
|
2083
|
+
"textFontSize": 16,
|
|
2084
|
+
"textLineHeight": 1.14285714286,
|
|
2085
|
+
"textTimerFontName": "StagSans",
|
|
2086
|
+
"textTimerFontWeight": 400
|
|
2087
|
+
}
|
|
2088
|
+
},
|
|
1934
2089
|
"DatePicker": {
|
|
1935
2090
|
"appearances": {},
|
|
1936
2091
|
"rules": [],
|
|
@@ -2862,6 +3017,78 @@
|
|
|
2862
3017
|
"icon": "PaletteIconPlayVideo"
|
|
2863
3018
|
}
|
|
2864
3019
|
},
|
|
3020
|
+
{
|
|
3021
|
+
"if": {
|
|
3022
|
+
"action": "add"
|
|
3023
|
+
},
|
|
3024
|
+
"tokens": {
|
|
3025
|
+
"icon": "PaletteIconAdd"
|
|
3026
|
+
}
|
|
3027
|
+
},
|
|
3028
|
+
{
|
|
3029
|
+
"if": {
|
|
3030
|
+
"action": "subtract"
|
|
3031
|
+
},
|
|
3032
|
+
"tokens": {
|
|
3033
|
+
"icon": "PaletteIconSubtract"
|
|
3034
|
+
}
|
|
3035
|
+
},
|
|
3036
|
+
{
|
|
3037
|
+
"if": {
|
|
3038
|
+
"action": "close"
|
|
3039
|
+
},
|
|
3040
|
+
"tokens": {
|
|
3041
|
+
"icon": "PaletteIconClose"
|
|
3042
|
+
}
|
|
3043
|
+
},
|
|
3044
|
+
{
|
|
3045
|
+
"if": {
|
|
3046
|
+
"action": "expand"
|
|
3047
|
+
},
|
|
3048
|
+
"tokens": {
|
|
3049
|
+
"icon": "PaletteIconExpand"
|
|
3050
|
+
}
|
|
3051
|
+
},
|
|
3052
|
+
{
|
|
3053
|
+
"if": {
|
|
3054
|
+
"action": "moveDown"
|
|
3055
|
+
},
|
|
3056
|
+
"tokens": {
|
|
3057
|
+
"icon": "PaletteIconChevronDown"
|
|
3058
|
+
}
|
|
3059
|
+
},
|
|
3060
|
+
{
|
|
3061
|
+
"if": {
|
|
3062
|
+
"action": "moveLeft"
|
|
3063
|
+
},
|
|
3064
|
+
"tokens": {
|
|
3065
|
+
"icon": "PaletteIconChevronLeft"
|
|
3066
|
+
}
|
|
3067
|
+
},
|
|
3068
|
+
{
|
|
3069
|
+
"if": {
|
|
3070
|
+
"action": "moveRight"
|
|
3071
|
+
},
|
|
3072
|
+
"tokens": {
|
|
3073
|
+
"icon": "PaletteIconChevronRight"
|
|
3074
|
+
}
|
|
3075
|
+
},
|
|
3076
|
+
{
|
|
3077
|
+
"if": {
|
|
3078
|
+
"action": "moveUp"
|
|
3079
|
+
},
|
|
3080
|
+
"tokens": {
|
|
3081
|
+
"icon": "PaletteIconChevronUp"
|
|
3082
|
+
}
|
|
3083
|
+
},
|
|
3084
|
+
{
|
|
3085
|
+
"if": {
|
|
3086
|
+
"action": "play"
|
|
3087
|
+
},
|
|
3088
|
+
"tokens": {
|
|
3089
|
+
"icon": "PaletteIconPlayVideo"
|
|
3090
|
+
}
|
|
3091
|
+
},
|
|
2865
3092
|
{
|
|
2866
3093
|
"if": {
|
|
2867
3094
|
"inverse": true
|
|
@@ -3365,6 +3592,7 @@
|
|
|
3365
3592
|
"size": "large"
|
|
3366
3593
|
},
|
|
3367
3594
|
"tokens": {
|
|
3595
|
+
"iconMarginTop": 2,
|
|
3368
3596
|
"itemFontSize": 20,
|
|
3369
3597
|
"itemIconSize": 20,
|
|
3370
3598
|
"itemLineHeight": 1.4,
|
|
@@ -3376,6 +3604,7 @@
|
|
|
3376
3604
|
"size": "small"
|
|
3377
3605
|
},
|
|
3378
3606
|
"tokens": {
|
|
3607
|
+
"iconMarginTop": 1,
|
|
3379
3608
|
"itemFontSize": 14,
|
|
3380
3609
|
"itemIconSize": 14,
|
|
3381
3610
|
"listGutter": 10
|
|
@@ -3416,7 +3645,7 @@
|
|
|
3416
3645
|
"alpha": 1
|
|
3417
3646
|
},
|
|
3418
3647
|
"dividerSize": 1,
|
|
3419
|
-
"iconMarginTop":
|
|
3648
|
+
"iconMarginTop": 2,
|
|
3420
3649
|
"interItemMargin": 8,
|
|
3421
3650
|
"interItemMarginWithDivider": 16,
|
|
3422
3651
|
"itemBulletColor": {
|
|
@@ -3431,7 +3660,7 @@
|
|
|
3431
3660
|
"itemBulletWidth": 4,
|
|
3432
3661
|
"itemFontName": "StagSans",
|
|
3433
3662
|
"itemFontSize": 16,
|
|
3434
|
-
"itemFontWeight":
|
|
3663
|
+
"itemFontWeight": 400,
|
|
3435
3664
|
"itemIconColor": {
|
|
3436
3665
|
"red": 0.48627,
|
|
3437
3666
|
"green": 0.07451,
|
|
@@ -3897,12 +4126,6 @@
|
|
|
3897
4126
|
"itemLineHeight": 1.4
|
|
3898
4127
|
}
|
|
3899
4128
|
},
|
|
3900
|
-
{
|
|
3901
|
-
"if": {
|
|
3902
|
-
"size": "medium"
|
|
3903
|
-
},
|
|
3904
|
-
"tokens": {}
|
|
3905
|
-
},
|
|
3906
4129
|
{
|
|
3907
4130
|
"if": {
|
|
3908
4131
|
"size": "small"
|
|
@@ -4414,53 +4637,114 @@
|
|
|
4414
4637
|
"outlineWidth": 1
|
|
4415
4638
|
}
|
|
4416
4639
|
},
|
|
4417
|
-
"
|
|
4640
|
+
"QuantitySelector": {
|
|
4418
4641
|
"appearances": {
|
|
4419
|
-
"
|
|
4420
|
-
"
|
|
4421
|
-
"values": [
|
|
4422
|
-
"type": "state"
|
|
4642
|
+
"alternative": {
|
|
4643
|
+
"type": "variant",
|
|
4644
|
+
"values": [true]
|
|
4423
4645
|
}
|
|
4424
4646
|
},
|
|
4425
4647
|
"rules": [
|
|
4426
4648
|
{
|
|
4427
4649
|
"if": {
|
|
4428
|
-
"
|
|
4650
|
+
"alternative": true
|
|
4429
4651
|
},
|
|
4430
4652
|
"tokens": {
|
|
4431
|
-
"
|
|
4432
|
-
"dividers": true,
|
|
4433
|
-
"list": false
|
|
4653
|
+
"padding": 0
|
|
4434
4654
|
}
|
|
4435
4655
|
}
|
|
4436
4656
|
],
|
|
4437
4657
|
"tokens": {
|
|
4438
|
-
"
|
|
4439
|
-
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
|
|
4446
|
-
|
|
4447
|
-
|
|
4448
|
-
|
|
4449
|
-
|
|
4450
|
-
|
|
4451
|
-
"
|
|
4452
|
-
|
|
4453
|
-
|
|
4454
|
-
|
|
4455
|
-
|
|
4456
|
-
|
|
4457
|
-
|
|
4458
|
-
|
|
4459
|
-
"
|
|
4460
|
-
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
|
|
4658
|
+
"backgroundColor": {
|
|
4659
|
+
"red": 0,
|
|
4660
|
+
"green": 0,
|
|
4661
|
+
"blue": 0,
|
|
4662
|
+
"alpha": 0
|
|
4663
|
+
},
|
|
4664
|
+
"borderColor": {
|
|
4665
|
+
"red": 0,
|
|
4666
|
+
"green": 0,
|
|
4667
|
+
"blue": 0,
|
|
4668
|
+
"alpha": 0
|
|
4669
|
+
},
|
|
4670
|
+
"iconColor": {
|
|
4671
|
+
"red": 0,
|
|
4672
|
+
"green": 0,
|
|
4673
|
+
"blue": 0,
|
|
4674
|
+
"alpha": 0
|
|
4675
|
+
},
|
|
4676
|
+
"iconSize": 16,
|
|
4677
|
+
"inputBackgroundColor": {
|
|
4678
|
+
"red": 0,
|
|
4679
|
+
"green": 0,
|
|
4680
|
+
"blue": 0,
|
|
4681
|
+
"alpha": 0
|
|
4682
|
+
},
|
|
4683
|
+
"inputBorderColor": {
|
|
4684
|
+
"red": 0,
|
|
4685
|
+
"green": 0,
|
|
4686
|
+
"blue": 0,
|
|
4687
|
+
"alpha": 0
|
|
4688
|
+
},
|
|
4689
|
+
"inputBorderWidth": 1,
|
|
4690
|
+
"leftIcon": "PaletteIconSubtract",
|
|
4691
|
+
"padding": 16,
|
|
4692
|
+
"rightIcon": "PaletteIconAdd",
|
|
4693
|
+
"textColor": {
|
|
4694
|
+
"red": 0,
|
|
4695
|
+
"green": 0,
|
|
4696
|
+
"blue": 0,
|
|
4697
|
+
"alpha": 0
|
|
4698
|
+
}
|
|
4699
|
+
}
|
|
4700
|
+
},
|
|
4701
|
+
"QuickLinks": {
|
|
4702
|
+
"appearances": {
|
|
4703
|
+
"viewport": {
|
|
4704
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
4705
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
4706
|
+
"type": "state"
|
|
4707
|
+
}
|
|
4708
|
+
},
|
|
4709
|
+
"rules": [
|
|
4710
|
+
{
|
|
4711
|
+
"if": {
|
|
4712
|
+
"viewport": ["md", "lg", "xl"]
|
|
4713
|
+
},
|
|
4714
|
+
"tokens": {
|
|
4715
|
+
"card": false,
|
|
4716
|
+
"dividers": true,
|
|
4717
|
+
"list": false
|
|
4718
|
+
}
|
|
4719
|
+
}
|
|
4720
|
+
],
|
|
4721
|
+
"tokens": {
|
|
4722
|
+
"card": true,
|
|
4723
|
+
"dividers": true,
|
|
4724
|
+
"list": true,
|
|
4725
|
+
"stackGap": 2,
|
|
4726
|
+
"stackJustify": "center",
|
|
4727
|
+
"stackSpace": 4
|
|
4728
|
+
}
|
|
4729
|
+
},
|
|
4730
|
+
"QuickLinksButton": {
|
|
4731
|
+
"appearances": {
|
|
4732
|
+
"pressed": {
|
|
4733
|
+
"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.",
|
|
4734
|
+
"values": [true],
|
|
4735
|
+
"type": "state"
|
|
4736
|
+
}
|
|
4737
|
+
},
|
|
4738
|
+
"rules": [
|
|
4739
|
+
{
|
|
4740
|
+
"if": {
|
|
4741
|
+
"pressed": true
|
|
4742
|
+
},
|
|
4743
|
+
"tokens": {
|
|
4744
|
+
"backgroundColor": {
|
|
4745
|
+
"red": 0.78824,
|
|
4746
|
+
"green": 0.78431,
|
|
4747
|
+
"blue": 0.78431,
|
|
4464
4748
|
"alpha": 1
|
|
4465
4749
|
},
|
|
4466
4750
|
"borderColor": {
|
|
@@ -5834,6 +6118,81 @@
|
|
|
5834
6118
|
"thickness": 4
|
|
5835
6119
|
}
|
|
5836
6120
|
},
|
|
6121
|
+
"SplashButton": {
|
|
6122
|
+
"appearances": {},
|
|
6123
|
+
"rules": [],
|
|
6124
|
+
"tokens": {
|
|
6125
|
+
"buttonContentBackground": {
|
|
6126
|
+
"red": 0,
|
|
6127
|
+
"green": 0,
|
|
6128
|
+
"blue": 0,
|
|
6129
|
+
"alpha": 0
|
|
6130
|
+
},
|
|
6131
|
+
"buttonContentChildrenBackground": {
|
|
6132
|
+
"red": 0,
|
|
6133
|
+
"green": 0,
|
|
6134
|
+
"blue": 0,
|
|
6135
|
+
"alpha": 0
|
|
6136
|
+
},
|
|
6137
|
+
"playIcon": "PaletteIconPlayVideo",
|
|
6138
|
+
"playIconColor": {
|
|
6139
|
+
"red": 1,
|
|
6140
|
+
"green": 1,
|
|
6141
|
+
"blue": 1,
|
|
6142
|
+
"alpha": 1
|
|
6143
|
+
}
|
|
6144
|
+
}
|
|
6145
|
+
},
|
|
6146
|
+
"SplashButtonWithDetails": {
|
|
6147
|
+
"appearances": {},
|
|
6148
|
+
"rules": [],
|
|
6149
|
+
"tokens": {
|
|
6150
|
+
"buttonBackground": {
|
|
6151
|
+
"red": 1,
|
|
6152
|
+
"green": 1,
|
|
6153
|
+
"blue": 1,
|
|
6154
|
+
"alpha": 1
|
|
6155
|
+
},
|
|
6156
|
+
"buttonBorderColor": {
|
|
6157
|
+
"red": 0,
|
|
6158
|
+
"green": 0,
|
|
6159
|
+
"blue": 0,
|
|
6160
|
+
"alpha": 0
|
|
6161
|
+
},
|
|
6162
|
+
"buttonBottomPosition": 24,
|
|
6163
|
+
"buttonContentBackground": {
|
|
6164
|
+
"red": 0,
|
|
6165
|
+
"green": 0,
|
|
6166
|
+
"blue": 0,
|
|
6167
|
+
"alpha": 0
|
|
6168
|
+
},
|
|
6169
|
+
"buttonContentChildrenBackground": {
|
|
6170
|
+
"red": 0,
|
|
6171
|
+
"green": 0,
|
|
6172
|
+
"blue": 0,
|
|
6173
|
+
"alpha": 0
|
|
6174
|
+
},
|
|
6175
|
+
"buttonLeftPosition": 24,
|
|
6176
|
+
"buttonMinHeight": 64,
|
|
6177
|
+
"buttonPaddingLeft": 16,
|
|
6178
|
+
"buttonPaddingRight": 16,
|
|
6179
|
+
"buttonRadius": 32,
|
|
6180
|
+
"detailsContainerPadding": 8,
|
|
6181
|
+
"playIcon": "PaletteIconPlayVideo",
|
|
6182
|
+
"playIconColor": {
|
|
6183
|
+
"red": 1,
|
|
6184
|
+
"green": 1,
|
|
6185
|
+
"blue": 1,
|
|
6186
|
+
"alpha": 1
|
|
6187
|
+
},
|
|
6188
|
+
"playIconContainerBackground": {
|
|
6189
|
+
"red": 0,
|
|
6190
|
+
"green": 0,
|
|
6191
|
+
"blue": 0,
|
|
6192
|
+
"alpha": 0
|
|
6193
|
+
}
|
|
6194
|
+
}
|
|
6195
|
+
},
|
|
5837
6196
|
"StackView": {
|
|
5838
6197
|
"appearances": {},
|
|
5839
6198
|
"rules": [],
|
|
@@ -6047,6 +6406,77 @@
|
|
|
6047
6406
|
"showStepTrackerLabel": true
|
|
6048
6407
|
}
|
|
6049
6408
|
},
|
|
6409
|
+
"StoryCard": {
|
|
6410
|
+
"appearances": {
|
|
6411
|
+
"pressed": {
|
|
6412
|
+
"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.",
|
|
6413
|
+
"values": [true],
|
|
6414
|
+
"type": "state"
|
|
6415
|
+
}
|
|
6416
|
+
},
|
|
6417
|
+
"rules": [
|
|
6418
|
+
{
|
|
6419
|
+
"if": {
|
|
6420
|
+
"pressed": true
|
|
6421
|
+
},
|
|
6422
|
+
"tokens": {
|
|
6423
|
+
"backgroundColor": {
|
|
6424
|
+
"red": 0.90196,
|
|
6425
|
+
"green": 0.90196,
|
|
6426
|
+
"blue": 0.90196,
|
|
6427
|
+
"alpha": 1
|
|
6428
|
+
}
|
|
6429
|
+
}
|
|
6430
|
+
}
|
|
6431
|
+
],
|
|
6432
|
+
"tokens": {
|
|
6433
|
+
"backgroundColor": {
|
|
6434
|
+
"red": 1,
|
|
6435
|
+
"green": 1,
|
|
6436
|
+
"blue": 1,
|
|
6437
|
+
"alpha": 1
|
|
6438
|
+
},
|
|
6439
|
+
"borderColor": {
|
|
6440
|
+
"red": 0.93725,
|
|
6441
|
+
"green": 0.93725,
|
|
6442
|
+
"blue": 0.93725,
|
|
6443
|
+
"alpha": 1
|
|
6444
|
+
},
|
|
6445
|
+
"borderRadius": 6,
|
|
6446
|
+
"borderWidth": 1,
|
|
6447
|
+
"contentAlignItems": "stretch",
|
|
6448
|
+
"contentFlexGrow": 0,
|
|
6449
|
+
"contentFlexShrink": 0,
|
|
6450
|
+
"contentJustifyContent": "flex-start",
|
|
6451
|
+
"flex": 1,
|
|
6452
|
+
"minWidth": 0,
|
|
6453
|
+
"outerBorderColor": {
|
|
6454
|
+
"red": 0,
|
|
6455
|
+
"green": 0,
|
|
6456
|
+
"blue": 0,
|
|
6457
|
+
"alpha": 0
|
|
6458
|
+
},
|
|
6459
|
+
"outerBorderGap": 0,
|
|
6460
|
+
"outerBorderWidth": 0,
|
|
6461
|
+
"paddingBottom": 0,
|
|
6462
|
+
"paddingLeft": 0,
|
|
6463
|
+
"paddingRight": 0,
|
|
6464
|
+
"paddingTop": 0,
|
|
6465
|
+
"shadow": {
|
|
6466
|
+
"inset": false,
|
|
6467
|
+
"offsetX": 0,
|
|
6468
|
+
"offsetY": 0,
|
|
6469
|
+
"blur": 0,
|
|
6470
|
+
"spread": 0,
|
|
6471
|
+
"color": {
|
|
6472
|
+
"red": 0,
|
|
6473
|
+
"green": 0,
|
|
6474
|
+
"blue": 0,
|
|
6475
|
+
"alpha": 0
|
|
6476
|
+
}
|
|
6477
|
+
}
|
|
6478
|
+
}
|
|
6479
|
+
},
|
|
6050
6480
|
"Table": {
|
|
6051
6481
|
"appearances": {
|
|
6052
6482
|
"spacing": {
|
|
@@ -6489,6 +6919,113 @@
|
|
|
6489
6919
|
"width": null
|
|
6490
6920
|
}
|
|
6491
6921
|
},
|
|
6922
|
+
"TermsAndConditions": {
|
|
6923
|
+
"appearances": {
|
|
6924
|
+
"expanded": {
|
|
6925
|
+
"description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
|
|
6926
|
+
"values": [true],
|
|
6927
|
+
"type": "state"
|
|
6928
|
+
}
|
|
6929
|
+
},
|
|
6930
|
+
"rules": [
|
|
6931
|
+
{
|
|
6932
|
+
"if": {
|
|
6933
|
+
"expanded": true
|
|
6934
|
+
},
|
|
6935
|
+
"tokens": {
|
|
6936
|
+
"icon": "PaletteIconChevronUp"
|
|
6937
|
+
}
|
|
6938
|
+
}
|
|
6939
|
+
],
|
|
6940
|
+
"tokens": {
|
|
6941
|
+
"contentPaddingBottom": 8,
|
|
6942
|
+
"contentPaddingLeft": 16,
|
|
6943
|
+
"expandBaseBorderWidth": 0,
|
|
6944
|
+
"expandContentPaddingBottom": 16,
|
|
6945
|
+
"expandContentPaddingLeft": 16,
|
|
6946
|
+
"expandContentPaddingRight": 16,
|
|
6947
|
+
"expandContentPaddingTop": 16,
|
|
6948
|
+
"expandIconContainerAlignItems": "center",
|
|
6949
|
+
"expandIconContainerBorder": 1,
|
|
6950
|
+
"expandIconContainerBorderColor": {
|
|
6951
|
+
"red": 0.93725,
|
|
6952
|
+
"green": 0.93725,
|
|
6953
|
+
"blue": 0.93725,
|
|
6954
|
+
"alpha": 1
|
|
6955
|
+
},
|
|
6956
|
+
"expandIconContainerHeight": 32,
|
|
6957
|
+
"expandIconContainerJustifyContent": "center",
|
|
6958
|
+
"expandIconContainerMarginX": 0,
|
|
6959
|
+
"expandIconContainerMarginY": 12,
|
|
6960
|
+
"expandIconContainerWidth": 32,
|
|
6961
|
+
"expandTitleColor": {
|
|
6962
|
+
"red": 0.93725,
|
|
6963
|
+
"green": 0.93725,
|
|
6964
|
+
"blue": 0.93725,
|
|
6965
|
+
"alpha": 1
|
|
6966
|
+
},
|
|
6967
|
+
"expandTitleFontSize": 16,
|
|
6968
|
+
"expandTitleLineHeight": 1.5,
|
|
6969
|
+
"expandTitleMarginX": 4,
|
|
6970
|
+
"expandTitleMarginY": 0,
|
|
6971
|
+
"icon": "PaletteIconChevronDown",
|
|
6972
|
+
"listColor": {
|
|
6973
|
+
"red": 0.00392,
|
|
6974
|
+
"green": 0.41961,
|
|
6975
|
+
"blue": 0.41569,
|
|
6976
|
+
"alpha": 1
|
|
6977
|
+
},
|
|
6978
|
+
"listFontName": "StagSans",
|
|
6979
|
+
"listFontSize": 14,
|
|
6980
|
+
"listFontWeight": 400,
|
|
6981
|
+
"listLineHeight": 1.42857142857,
|
|
6982
|
+
"listMarginBottom": 16,
|
|
6983
|
+
"listMarginLeft": 32,
|
|
6984
|
+
"mdContentPaddingBottom": 16,
|
|
6985
|
+
"mdContentPaddingLeft": 48,
|
|
6986
|
+
"orderedPadding": 0,
|
|
6987
|
+
"titleColor": {
|
|
6988
|
+
"red": 0.00392,
|
|
6989
|
+
"green": 0.41961,
|
|
6990
|
+
"blue": 0.41569,
|
|
6991
|
+
"alpha": 1
|
|
6992
|
+
},
|
|
6993
|
+
"titleFontSize": 14,
|
|
6994
|
+
"titleLineHeight": 1.42857142857,
|
|
6995
|
+
"titlePaddingLeft": 8,
|
|
6996
|
+
"unorderedPadding": 0
|
|
6997
|
+
}
|
|
6998
|
+
},
|
|
6999
|
+
"Testimonial": {
|
|
7000
|
+
"appearances": {},
|
|
7001
|
+
"rules": [],
|
|
7002
|
+
"tokens": {
|
|
7003
|
+
"dividerBackgroundColor": {
|
|
7004
|
+
"red": 1,
|
|
7005
|
+
"green": 1,
|
|
7006
|
+
"blue": 1,
|
|
7007
|
+
"alpha": 1
|
|
7008
|
+
},
|
|
7009
|
+
"dividerBorder": 1,
|
|
7010
|
+
"figcaptionGap": 12,
|
|
7011
|
+
"icon": "PaletteIconArrowLeft",
|
|
7012
|
+
"iconColor": {
|
|
7013
|
+
"red": 1,
|
|
7014
|
+
"green": 1,
|
|
7015
|
+
"blue": 1,
|
|
7016
|
+
"alpha": 1
|
|
7017
|
+
},
|
|
7018
|
+
"imageSize": 48,
|
|
7019
|
+
"quoteContainerGap": 4,
|
|
7020
|
+
"testimonialContainerGap": 12,
|
|
7021
|
+
"textColor": {
|
|
7022
|
+
"red": 1,
|
|
7023
|
+
"green": 1,
|
|
7024
|
+
"blue": 1,
|
|
7025
|
+
"alpha": 1
|
|
7026
|
+
}
|
|
7027
|
+
}
|
|
7028
|
+
},
|
|
6492
7029
|
"TextArea": {
|
|
6493
7030
|
"appearances": {},
|
|
6494
7031
|
"rules": [],
|
|
@@ -6756,18 +7293,6 @@
|
|
|
6756
7293
|
"blue": 1,
|
|
6757
7294
|
"alpha": 1
|
|
6758
7295
|
},
|
|
6759
|
-
"animationFillColorAfter": {
|
|
6760
|
-
"red": 1,
|
|
6761
|
-
"green": 1,
|
|
6762
|
-
"blue": 1,
|
|
6763
|
-
"alpha": 1
|
|
6764
|
-
},
|
|
6765
|
-
"animationFillColorBefore": {
|
|
6766
|
-
"red": 1,
|
|
6767
|
-
"green": 1,
|
|
6768
|
-
"blue": 1,
|
|
6769
|
-
"alpha": 1
|
|
6770
|
-
},
|
|
6771
7296
|
"animationHeightAfter": 24,
|
|
6772
7297
|
"animationHeightBefore": 0,
|
|
6773
7298
|
"animationPaddingBottomAfter": 16,
|
|
@@ -7361,6 +7886,182 @@
|
|
|
7361
7886
|
"textTransform": "none"
|
|
7362
7887
|
}
|
|
7363
7888
|
},
|
|
7889
|
+
"Video": {
|
|
7890
|
+
"appearances": {},
|
|
7891
|
+
"rules": [],
|
|
7892
|
+
"tokens": {
|
|
7893
|
+
"borderColor": {
|
|
7894
|
+
"red": 0,
|
|
7895
|
+
"green": 0,
|
|
7896
|
+
"blue": 0,
|
|
7897
|
+
"alpha": 1
|
|
7898
|
+
},
|
|
7899
|
+
"pauseIcon": "PaletteIconAdd",
|
|
7900
|
+
"playIcon": "PaletteIconAdd",
|
|
7901
|
+
"replayIcon": "PaletteIconAdd"
|
|
7902
|
+
}
|
|
7903
|
+
},
|
|
7904
|
+
"VideoButton": {
|
|
7905
|
+
"appearances": {},
|
|
7906
|
+
"rules": [],
|
|
7907
|
+
"tokens": {
|
|
7908
|
+
"color": {
|
|
7909
|
+
"red": 1,
|
|
7910
|
+
"green": 1,
|
|
7911
|
+
"blue": 1,
|
|
7912
|
+
"alpha": 1
|
|
7913
|
+
}
|
|
7914
|
+
}
|
|
7915
|
+
},
|
|
7916
|
+
"VideoControlBar": {
|
|
7917
|
+
"appearances": {},
|
|
7918
|
+
"rules": [],
|
|
7919
|
+
"tokens": {
|
|
7920
|
+
"captionsIcon": "PaletteIconAdd",
|
|
7921
|
+
"maximizeIcon": "PaletteIconAdd",
|
|
7922
|
+
"menuBottom": 64,
|
|
7923
|
+
"menuMarginLeft": 16,
|
|
7924
|
+
"menuRight": 32,
|
|
7925
|
+
"minimizeIcon": "PaletteIconAdd",
|
|
7926
|
+
"paddingBottom": 16,
|
|
7927
|
+
"paddingLeft": 48,
|
|
7928
|
+
"paddingLeftCompactMode": 16,
|
|
7929
|
+
"paddingRight": 48,
|
|
7930
|
+
"paddingRightCompactMode": 16,
|
|
7931
|
+
"paddingTop": 16,
|
|
7932
|
+
"settingsIcon": "PaletteIconSettings"
|
|
7933
|
+
}
|
|
7934
|
+
},
|
|
7935
|
+
"VideoMenu": {
|
|
7936
|
+
"appearances": {},
|
|
7937
|
+
"rules": [],
|
|
7938
|
+
"tokens": {
|
|
7939
|
+
"background": {
|
|
7940
|
+
"red": 0,
|
|
7941
|
+
"green": 0,
|
|
7942
|
+
"blue": 0,
|
|
7943
|
+
"alpha": 1
|
|
7944
|
+
},
|
|
7945
|
+
"checkMarkFocusColor": {
|
|
7946
|
+
"red": 0.00392,
|
|
7947
|
+
"green": 0.41961,
|
|
7948
|
+
"blue": 0.41569,
|
|
7949
|
+
"alpha": 1
|
|
7950
|
+
},
|
|
7951
|
+
"checkMarkHeight": 24,
|
|
7952
|
+
"checkMarkHoverColor": {
|
|
7953
|
+
"red": 0.00392,
|
|
7954
|
+
"green": 0.41961,
|
|
7955
|
+
"blue": 0.41569,
|
|
7956
|
+
"alpha": 1
|
|
7957
|
+
},
|
|
7958
|
+
"checkMarkIcon": "PaletteIconCheck",
|
|
7959
|
+
"checkMarkSelectedColor": {
|
|
7960
|
+
"red": 0,
|
|
7961
|
+
"green": 0,
|
|
7962
|
+
"blue": 0,
|
|
7963
|
+
"alpha": 1
|
|
7964
|
+
},
|
|
7965
|
+
"checkMarkUnselectedColor": {
|
|
7966
|
+
"red": 0,
|
|
7967
|
+
"green": 0,
|
|
7968
|
+
"blue": 0,
|
|
7969
|
+
"alpha": 0
|
|
7970
|
+
},
|
|
7971
|
+
"checkMarkWidth": 24,
|
|
7972
|
+
"padding": 16
|
|
7973
|
+
}
|
|
7974
|
+
},
|
|
7975
|
+
"VideoMiddleControlButton": {
|
|
7976
|
+
"appearances": {},
|
|
7977
|
+
"rules": [],
|
|
7978
|
+
"tokens": {
|
|
7979
|
+
"background": {
|
|
7980
|
+
"red": 0,
|
|
7981
|
+
"green": 0,
|
|
7982
|
+
"blue": 0,
|
|
7983
|
+
"alpha": 1
|
|
7984
|
+
},
|
|
7985
|
+
"height": 64,
|
|
7986
|
+
"iconColor": {
|
|
7987
|
+
"red": 1,
|
|
7988
|
+
"green": 1,
|
|
7989
|
+
"blue": 1,
|
|
7990
|
+
"alpha": 1
|
|
7991
|
+
},
|
|
7992
|
+
"width": 64
|
|
7993
|
+
}
|
|
7994
|
+
},
|
|
7995
|
+
"VideoProgressBar": {
|
|
7996
|
+
"appearances": {},
|
|
7997
|
+
"rules": [],
|
|
7998
|
+
"tokens": {
|
|
7999
|
+
"rangeBackground": {
|
|
8000
|
+
"red": 0,
|
|
8001
|
+
"green": 0,
|
|
8002
|
+
"blue": 0,
|
|
8003
|
+
"alpha": 0
|
|
8004
|
+
},
|
|
8005
|
+
"thumbBackground": {
|
|
8006
|
+
"red": 1,
|
|
8007
|
+
"green": 1,
|
|
8008
|
+
"blue": 1,
|
|
8009
|
+
"alpha": 1
|
|
8010
|
+
},
|
|
8011
|
+
"thumbHeight": 8,
|
|
8012
|
+
"thumbWidth": 8,
|
|
8013
|
+
"timestampMarginLeft": 8,
|
|
8014
|
+
"timestampMarginRight": 8,
|
|
8015
|
+
"trackGradientEnd": {
|
|
8016
|
+
"red": 0.00392,
|
|
8017
|
+
"green": 0.41961,
|
|
8018
|
+
"blue": 0.41569,
|
|
8019
|
+
"alpha": 1
|
|
8020
|
+
},
|
|
8021
|
+
"trackGradientStart": {
|
|
8022
|
+
"red": 0.00392,
|
|
8023
|
+
"green": 0.41961,
|
|
8024
|
+
"blue": 0.41569,
|
|
8025
|
+
"alpha": 1
|
|
8026
|
+
}
|
|
8027
|
+
}
|
|
8028
|
+
},
|
|
8029
|
+
"VideoVolumeSlider": {
|
|
8030
|
+
"appearances": {},
|
|
8031
|
+
"rules": [],
|
|
8032
|
+
"tokens": {
|
|
8033
|
+
"marginLeft": 16,
|
|
8034
|
+
"marginRight": 16,
|
|
8035
|
+
"mutedIcon": "PaletteIconAdd",
|
|
8036
|
+
"rangeBackground": {
|
|
8037
|
+
"red": 0,
|
|
8038
|
+
"green": 0,
|
|
8039
|
+
"blue": 0,
|
|
8040
|
+
"alpha": 0
|
|
8041
|
+
},
|
|
8042
|
+
"thumbBackground": {
|
|
8043
|
+
"red": 1,
|
|
8044
|
+
"green": 1,
|
|
8045
|
+
"blue": 1,
|
|
8046
|
+
"alpha": 1
|
|
8047
|
+
},
|
|
8048
|
+
"thumbHeight": 8,
|
|
8049
|
+
"thumbWidth": 8,
|
|
8050
|
+
"trackGradientEnd": {
|
|
8051
|
+
"red": 1,
|
|
8052
|
+
"green": 1,
|
|
8053
|
+
"blue": 1,
|
|
8054
|
+
"alpha": 1
|
|
8055
|
+
},
|
|
8056
|
+
"trackGradientStart": {
|
|
8057
|
+
"red": 1,
|
|
8058
|
+
"green": 1,
|
|
8059
|
+
"blue": 1,
|
|
8060
|
+
"alpha": 1
|
|
8061
|
+
},
|
|
8062
|
+
"unmutedIcon": "PaletteIconAdd"
|
|
8063
|
+
}
|
|
8064
|
+
},
|
|
7364
8065
|
"WaffleGrid": {
|
|
7365
8066
|
"appearances": {},
|
|
7366
8067
|
"rules": [],
|
|
@@ -7562,7 +8263,7 @@
|
|
|
7562
8263
|
}
|
|
7563
8264
|
},
|
|
7564
8265
|
"metadata": {
|
|
7565
|
-
"themeTokensVersion": "2.
|
|
8266
|
+
"themeTokensVersion": "2.24.0",
|
|
7566
8267
|
"name": "theme-koodo"
|
|
7567
8268
|
}
|
|
7568
8269
|
}
|