@telus-uds/theme-koodo 3.22.0 → 3.24.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 +7917 -5655
- package/build/android/theme.json +1133 -154
- package/build/ios/schema.json +7917 -5655
- package/build/ios/theme.json +1133 -154
- package/build/rn/schema.json +7917 -5655
- package/build/rn/theme.js +578 -12
- package/package.json +4 -4
- package/theme.json +690 -9
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": {
|
|
@@ -209,6 +209,25 @@
|
|
|
209
209
|
"paddingTop": 2
|
|
210
210
|
}
|
|
211
211
|
},
|
|
212
|
+
"BlockQuote": {
|
|
213
|
+
"appearances": {},
|
|
214
|
+
"rules": [],
|
|
215
|
+
"tokens": {
|
|
216
|
+
"backgroundGradient": null,
|
|
217
|
+
"color": {
|
|
218
|
+
"red": 0.00392,
|
|
219
|
+
"green": 0.41961,
|
|
220
|
+
"blue": 0.41569,
|
|
221
|
+
"alpha": 1
|
|
222
|
+
},
|
|
223
|
+
"marginBottom": 16,
|
|
224
|
+
"paddingBottom": 16,
|
|
225
|
+
"paddingLeft": 32,
|
|
226
|
+
"paddingRight": 32,
|
|
227
|
+
"paddingTop": 16,
|
|
228
|
+
"width": 2
|
|
229
|
+
}
|
|
230
|
+
},
|
|
212
231
|
"Box": {
|
|
213
232
|
"appearances": {
|
|
214
233
|
"background": {
|
|
@@ -538,10 +557,15 @@
|
|
|
538
557
|
"type": "variant",
|
|
539
558
|
"values": [true]
|
|
540
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
|
+
},
|
|
541
565
|
"width": {
|
|
542
|
-
"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.",
|
|
543
567
|
"type": "variant",
|
|
544
|
-
"values": ["full"]
|
|
568
|
+
"values": ["full", "responsive"]
|
|
545
569
|
}
|
|
546
570
|
},
|
|
547
571
|
"rules": [
|
|
@@ -723,6 +747,15 @@
|
|
|
723
747
|
"width": "100%"
|
|
724
748
|
}
|
|
725
749
|
},
|
|
750
|
+
{
|
|
751
|
+
"if": {
|
|
752
|
+
"viewport": ["xs"],
|
|
753
|
+
"width": "responsive"
|
|
754
|
+
},
|
|
755
|
+
"tokens": {
|
|
756
|
+
"width": "100%"
|
|
757
|
+
}
|
|
758
|
+
},
|
|
726
759
|
{
|
|
727
760
|
"if": {
|
|
728
761
|
"size": "small"
|
|
@@ -1345,6 +1378,10 @@
|
|
|
1345
1378
|
},
|
|
1346
1379
|
"Callout": {
|
|
1347
1380
|
"appearances": {
|
|
1381
|
+
"rounded": {
|
|
1382
|
+
"type": "variant",
|
|
1383
|
+
"values": [true]
|
|
1384
|
+
},
|
|
1348
1385
|
"size": {
|
|
1349
1386
|
"type": "variant",
|
|
1350
1387
|
"values": ["small"]
|
|
@@ -1359,20 +1396,28 @@
|
|
|
1359
1396
|
"paddingBottom": 4,
|
|
1360
1397
|
"paddingTop": 4
|
|
1361
1398
|
}
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
"if": {
|
|
1402
|
+
"rounded": true
|
|
1403
|
+
},
|
|
1404
|
+
"tokens": {
|
|
1405
|
+
"borderRadius": 4
|
|
1406
|
+
}
|
|
1362
1407
|
}
|
|
1363
1408
|
],
|
|
1364
1409
|
"tokens": {
|
|
1365
1410
|
"background": {
|
|
1366
|
-
"red": 0.
|
|
1367
|
-
"green": 0.
|
|
1368
|
-
"blue": 0.
|
|
1411
|
+
"red": 0.98039,
|
|
1412
|
+
"green": 0.90196,
|
|
1413
|
+
"blue": 0.95686,
|
|
1369
1414
|
"alpha": 1
|
|
1370
1415
|
},
|
|
1371
|
-
"borderRadius":
|
|
1416
|
+
"borderRadius": 0,
|
|
1372
1417
|
"color": {
|
|
1373
|
-
"red": 0,
|
|
1374
|
-
"green": 0,
|
|
1375
|
-
"blue": 0,
|
|
1418
|
+
"red": 0.48627,
|
|
1419
|
+
"green": 0.07451,
|
|
1420
|
+
"blue": 0.4,
|
|
1376
1421
|
"alpha": 1
|
|
1377
1422
|
},
|
|
1378
1423
|
"gap": 16,
|
|
@@ -1464,7 +1509,7 @@
|
|
|
1464
1509
|
"borderWidth": 0,
|
|
1465
1510
|
"contentAlignItems": "stretch",
|
|
1466
1511
|
"contentFlexGrow": 0,
|
|
1467
|
-
"contentFlexShrink":
|
|
1512
|
+
"contentFlexShrink": 1,
|
|
1468
1513
|
"contentJustifyContent": "flex-start",
|
|
1469
1514
|
"flex": 1,
|
|
1470
1515
|
"minWidth": null,
|
|
@@ -1912,6 +1957,135 @@
|
|
|
1912
1957
|
"textLineHeight": 2.13
|
|
1913
1958
|
}
|
|
1914
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
|
+
},
|
|
1915
2089
|
"DatePicker": {
|
|
1916
2090
|
"appearances": {},
|
|
1917
2091
|
"rules": [],
|
|
@@ -2721,6 +2895,20 @@
|
|
|
2721
2895
|
},
|
|
2722
2896
|
"IconButton": {
|
|
2723
2897
|
"appearances": {
|
|
2898
|
+
"action": {
|
|
2899
|
+
"type": "variant",
|
|
2900
|
+
"values": [
|
|
2901
|
+
"add",
|
|
2902
|
+
"close",
|
|
2903
|
+
"expand",
|
|
2904
|
+
"moveDown",
|
|
2905
|
+
"moveLeft",
|
|
2906
|
+
"moveRight",
|
|
2907
|
+
"moveUp",
|
|
2908
|
+
"play",
|
|
2909
|
+
"subtract"
|
|
2910
|
+
]
|
|
2911
|
+
},
|
|
2724
2912
|
"compact": {
|
|
2725
2913
|
"description": "Without the outer border gap",
|
|
2726
2914
|
"type": "variant",
|
|
@@ -2759,158 +2947,302 @@
|
|
|
2759
2947
|
"rules": [
|
|
2760
2948
|
{
|
|
2761
2949
|
"if": {
|
|
2762
|
-
"
|
|
2950
|
+
"action": "add"
|
|
2763
2951
|
},
|
|
2764
2952
|
"tokens": {
|
|
2765
|
-
"
|
|
2766
|
-
"red": 1,
|
|
2767
|
-
"green": 1,
|
|
2768
|
-
"blue": 1,
|
|
2769
|
-
"alpha": 1
|
|
2770
|
-
}
|
|
2953
|
+
"icon": "PaletteIconAdd"
|
|
2771
2954
|
}
|
|
2772
2955
|
},
|
|
2773
2956
|
{
|
|
2774
2957
|
"if": {
|
|
2775
|
-
"
|
|
2958
|
+
"action": "subtract"
|
|
2776
2959
|
},
|
|
2777
2960
|
"tokens": {
|
|
2778
|
-
"
|
|
2779
|
-
"red": 0,
|
|
2780
|
-
"green": 0,
|
|
2781
|
-
"blue": 0,
|
|
2782
|
-
"alpha": 0
|
|
2783
|
-
}
|
|
2961
|
+
"icon": "PaletteIconSubtract"
|
|
2784
2962
|
}
|
|
2785
2963
|
},
|
|
2786
2964
|
{
|
|
2787
2965
|
"if": {
|
|
2788
|
-
"
|
|
2966
|
+
"action": "close"
|
|
2789
2967
|
},
|
|
2790
2968
|
"tokens": {
|
|
2791
|
-
"
|
|
2792
|
-
"red": 0.00392,
|
|
2793
|
-
"green": 0.28235,
|
|
2794
|
-
"blue": 0.27843,
|
|
2795
|
-
"alpha": 1
|
|
2796
|
-
},
|
|
2797
|
-
"iconColor": {
|
|
2798
|
-
"red": 1,
|
|
2799
|
-
"green": 1,
|
|
2800
|
-
"blue": 1,
|
|
2801
|
-
"alpha": 1
|
|
2802
|
-
},
|
|
2803
|
-
"outerBorderWidth": 0
|
|
2969
|
+
"icon": "PaletteIconClose"
|
|
2804
2970
|
}
|
|
2805
2971
|
},
|
|
2806
2972
|
{
|
|
2807
2973
|
"if": {
|
|
2808
|
-
"
|
|
2809
|
-
"pressed": true
|
|
2974
|
+
"action": "expand"
|
|
2810
2975
|
},
|
|
2811
2976
|
"tokens": {
|
|
2812
|
-
"
|
|
2813
|
-
"red": 0.00392,
|
|
2814
|
-
"green": 0.28235,
|
|
2815
|
-
"blue": 0.27843,
|
|
2816
|
-
"alpha": 1
|
|
2817
|
-
},
|
|
2818
|
-
"borderColor": {
|
|
2819
|
-
"red": 0.00392,
|
|
2820
|
-
"green": 0.28235,
|
|
2821
|
-
"blue": 0.27843,
|
|
2822
|
-
"alpha": 1
|
|
2823
|
-
},
|
|
2824
|
-
"iconColor": {
|
|
2825
|
-
"red": 1,
|
|
2826
|
-
"green": 1,
|
|
2827
|
-
"blue": 1,
|
|
2828
|
-
"alpha": 1
|
|
2829
|
-
},
|
|
2830
|
-
"outerBorderGap": 4
|
|
2977
|
+
"icon": "PaletteIconExpand"
|
|
2831
2978
|
}
|
|
2832
2979
|
},
|
|
2833
2980
|
{
|
|
2834
2981
|
"if": {
|
|
2835
|
-
"
|
|
2836
|
-
"pressed": true
|
|
2982
|
+
"action": "moveDown"
|
|
2837
2983
|
},
|
|
2838
2984
|
"tokens": {
|
|
2839
|
-
"
|
|
2840
|
-
"red": 0.78824,
|
|
2841
|
-
"green": 0.78431,
|
|
2842
|
-
"blue": 0.78431,
|
|
2843
|
-
"alpha": 1
|
|
2844
|
-
},
|
|
2845
|
-
"borderColor": {
|
|
2846
|
-
"red": 0.78824,
|
|
2847
|
-
"green": 0.78431,
|
|
2848
|
-
"blue": 0.78431,
|
|
2849
|
-
"alpha": 1
|
|
2850
|
-
},
|
|
2851
|
-
"iconColor": {
|
|
2852
|
-
"red": 0,
|
|
2853
|
-
"green": 0,
|
|
2854
|
-
"blue": 0,
|
|
2855
|
-
"alpha": 1
|
|
2856
|
-
},
|
|
2857
|
-
"outerBorderWidth": 0
|
|
2985
|
+
"icon": "PaletteIconChevronDown"
|
|
2858
2986
|
}
|
|
2859
2987
|
},
|
|
2860
2988
|
{
|
|
2861
2989
|
"if": {
|
|
2862
|
-
"
|
|
2990
|
+
"action": "moveLeft"
|
|
2863
2991
|
},
|
|
2864
2992
|
"tokens": {
|
|
2865
|
-
"
|
|
2866
|
-
"padding": 12
|
|
2993
|
+
"icon": "PaletteIconChevronLeft"
|
|
2867
2994
|
}
|
|
2868
2995
|
},
|
|
2869
2996
|
{
|
|
2870
2997
|
"if": {
|
|
2871
|
-
"
|
|
2998
|
+
"action": "moveRight"
|
|
2872
2999
|
},
|
|
2873
3000
|
"tokens": {
|
|
2874
|
-
"
|
|
2875
|
-
"padding": 4
|
|
3001
|
+
"icon": "PaletteIconChevronRight"
|
|
2876
3002
|
}
|
|
2877
3003
|
},
|
|
2878
3004
|
{
|
|
2879
|
-
"description": "Raised IconButtons follow different design patterns to other variants",
|
|
2880
3005
|
"if": {
|
|
2881
|
-
"
|
|
3006
|
+
"action": "moveUp"
|
|
2882
3007
|
},
|
|
2883
3008
|
"tokens": {
|
|
2884
|
-
"
|
|
2885
|
-
|
|
2886
|
-
|
|
2887
|
-
|
|
2888
|
-
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
|
|
2892
|
-
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
|
|
2896
|
-
|
|
2897
|
-
"
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
"
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
3009
|
+
"icon": "PaletteIconChevronUp"
|
|
3010
|
+
}
|
|
3011
|
+
},
|
|
3012
|
+
{
|
|
3013
|
+
"if": {
|
|
3014
|
+
"action": "play"
|
|
3015
|
+
},
|
|
3016
|
+
"tokens": {
|
|
3017
|
+
"icon": "PaletteIconPlayVideo"
|
|
3018
|
+
}
|
|
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
|
+
},
|
|
3092
|
+
{
|
|
3093
|
+
"if": {
|
|
3094
|
+
"inverse": true
|
|
3095
|
+
},
|
|
3096
|
+
"tokens": {
|
|
3097
|
+
"iconColor": {
|
|
3098
|
+
"red": 1,
|
|
3099
|
+
"green": 1,
|
|
3100
|
+
"blue": 1,
|
|
3101
|
+
"alpha": 1
|
|
3102
|
+
}
|
|
3103
|
+
}
|
|
3104
|
+
},
|
|
3105
|
+
{
|
|
3106
|
+
"if": {
|
|
3107
|
+
"password": true
|
|
3108
|
+
},
|
|
3109
|
+
"tokens": {
|
|
3110
|
+
"borderColor": {
|
|
3111
|
+
"red": 0,
|
|
3112
|
+
"green": 0,
|
|
3113
|
+
"blue": 0,
|
|
3114
|
+
"alpha": 0
|
|
3115
|
+
}
|
|
3116
|
+
}
|
|
3117
|
+
},
|
|
3118
|
+
{
|
|
3119
|
+
"if": {
|
|
3120
|
+
"pressed": true
|
|
3121
|
+
},
|
|
3122
|
+
"tokens": {
|
|
3123
|
+
"backgroundColor": {
|
|
3124
|
+
"red": 0.00392,
|
|
3125
|
+
"green": 0.28235,
|
|
3126
|
+
"blue": 0.27843,
|
|
3127
|
+
"alpha": 1
|
|
3128
|
+
},
|
|
3129
|
+
"iconColor": {
|
|
3130
|
+
"red": 1,
|
|
3131
|
+
"green": 1,
|
|
3132
|
+
"blue": 1,
|
|
3133
|
+
"alpha": 1
|
|
3134
|
+
},
|
|
3135
|
+
"outerBorderWidth": 0
|
|
3136
|
+
}
|
|
3137
|
+
},
|
|
3138
|
+
{
|
|
3139
|
+
"if": {
|
|
3140
|
+
"password": true,
|
|
3141
|
+
"pressed": true
|
|
3142
|
+
},
|
|
3143
|
+
"tokens": {
|
|
3144
|
+
"backgroundColor": {
|
|
3145
|
+
"red": 0.00392,
|
|
3146
|
+
"green": 0.28235,
|
|
3147
|
+
"blue": 0.27843,
|
|
3148
|
+
"alpha": 1
|
|
3149
|
+
},
|
|
3150
|
+
"borderColor": {
|
|
3151
|
+
"red": 0.00392,
|
|
3152
|
+
"green": 0.28235,
|
|
3153
|
+
"blue": 0.27843,
|
|
3154
|
+
"alpha": 1
|
|
3155
|
+
},
|
|
3156
|
+
"iconColor": {
|
|
3157
|
+
"red": 1,
|
|
3158
|
+
"green": 1,
|
|
3159
|
+
"blue": 1,
|
|
3160
|
+
"alpha": 1
|
|
3161
|
+
},
|
|
3162
|
+
"outerBorderGap": 4
|
|
3163
|
+
}
|
|
3164
|
+
},
|
|
3165
|
+
{
|
|
3166
|
+
"if": {
|
|
3167
|
+
"inverse": true,
|
|
3168
|
+
"pressed": true
|
|
3169
|
+
},
|
|
3170
|
+
"tokens": {
|
|
3171
|
+
"backgroundColor": {
|
|
3172
|
+
"red": 0.78824,
|
|
3173
|
+
"green": 0.78431,
|
|
3174
|
+
"blue": 0.78431,
|
|
3175
|
+
"alpha": 1
|
|
3176
|
+
},
|
|
3177
|
+
"borderColor": {
|
|
3178
|
+
"red": 0.78824,
|
|
3179
|
+
"green": 0.78431,
|
|
3180
|
+
"blue": 0.78431,
|
|
3181
|
+
"alpha": 1
|
|
3182
|
+
},
|
|
3183
|
+
"iconColor": {
|
|
3184
|
+
"red": 0,
|
|
3185
|
+
"green": 0,
|
|
3186
|
+
"blue": 0,
|
|
3187
|
+
"alpha": 1
|
|
3188
|
+
},
|
|
3189
|
+
"outerBorderWidth": 0
|
|
3190
|
+
}
|
|
3191
|
+
},
|
|
3192
|
+
{
|
|
3193
|
+
"if": {
|
|
3194
|
+
"size": "large"
|
|
3195
|
+
},
|
|
3196
|
+
"tokens": {
|
|
3197
|
+
"iconSize": 24,
|
|
3198
|
+
"padding": 12
|
|
3199
|
+
}
|
|
3200
|
+
},
|
|
3201
|
+
{
|
|
3202
|
+
"if": {
|
|
3203
|
+
"size": "small"
|
|
3204
|
+
},
|
|
3205
|
+
"tokens": {
|
|
3206
|
+
"iconSize": 16,
|
|
3207
|
+
"padding": 4
|
|
3208
|
+
}
|
|
3209
|
+
},
|
|
3210
|
+
{
|
|
3211
|
+
"description": "Raised IconButtons follow different design patterns to other variants",
|
|
3212
|
+
"if": {
|
|
3213
|
+
"raised": true
|
|
3214
|
+
},
|
|
3215
|
+
"tokens": {
|
|
3216
|
+
"backgroundColor": {
|
|
3217
|
+
"red": 1,
|
|
3218
|
+
"green": 1,
|
|
3219
|
+
"blue": 1,
|
|
3220
|
+
"alpha": 1
|
|
3221
|
+
},
|
|
3222
|
+
"borderColor": {
|
|
3223
|
+
"red": 0.00392,
|
|
3224
|
+
"green": 0.41961,
|
|
3225
|
+
"blue": 0.41569,
|
|
3226
|
+
"alpha": 1
|
|
3227
|
+
},
|
|
3228
|
+
"borderWidth": 1,
|
|
3229
|
+
"iconSize": 16,
|
|
3230
|
+
"outerBorderColor": {
|
|
3231
|
+
"red": 0,
|
|
3232
|
+
"green": 0,
|
|
3233
|
+
"blue": 0,
|
|
3234
|
+
"alpha": 0
|
|
3235
|
+
},
|
|
3236
|
+
"outerBorderGap": 0,
|
|
3237
|
+
"outerBorderWidth": 0,
|
|
3238
|
+
"padding": 8,
|
|
3239
|
+
"shadow": {
|
|
3240
|
+
"inset": false,
|
|
3241
|
+
"offsetX": 0,
|
|
3242
|
+
"offsetY": 2,
|
|
3243
|
+
"blur": 2,
|
|
3244
|
+
"spread": 0,
|
|
3245
|
+
"color": {
|
|
2914
3246
|
"red": 0,
|
|
2915
3247
|
"green": 0,
|
|
2916
3248
|
"blue": 0,
|
|
@@ -3010,6 +3342,7 @@
|
|
|
3010
3342
|
},
|
|
3011
3343
|
"borderRadius": 99999999999999,
|
|
3012
3344
|
"borderWidth": 1,
|
|
3345
|
+
"icon": null,
|
|
3013
3346
|
"iconColor": {
|
|
3014
3347
|
"red": 0,
|
|
3015
3348
|
"green": 0,
|
|
@@ -3337,6 +3670,162 @@
|
|
|
3337
3670
|
"listGutter": 10
|
|
3338
3671
|
}
|
|
3339
3672
|
},
|
|
3673
|
+
"ListBox": {
|
|
3674
|
+
"appearances": {
|
|
3675
|
+
"current": {
|
|
3676
|
+
"description": "When the current item is selected",
|
|
3677
|
+
"values": [true],
|
|
3678
|
+
"type": "state"
|
|
3679
|
+
},
|
|
3680
|
+
"expanded": {
|
|
3681
|
+
"description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
|
|
3682
|
+
"values": [true],
|
|
3683
|
+
"type": "state"
|
|
3684
|
+
},
|
|
3685
|
+
"isChild": {
|
|
3686
|
+
"description": "when the item is child of another child",
|
|
3687
|
+
"values": [true],
|
|
3688
|
+
"type": "state"
|
|
3689
|
+
},
|
|
3690
|
+
"pressed": {
|
|
3691
|
+
"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.",
|
|
3692
|
+
"values": [true],
|
|
3693
|
+
"type": "state"
|
|
3694
|
+
}
|
|
3695
|
+
},
|
|
3696
|
+
"rules": [
|
|
3697
|
+
{
|
|
3698
|
+
"if": {
|
|
3699
|
+
"pressed": true
|
|
3700
|
+
},
|
|
3701
|
+
"tokens": {
|
|
3702
|
+
"groupBackgroundColor": {
|
|
3703
|
+
"red": 0.73333,
|
|
3704
|
+
"green": 0.91765,
|
|
3705
|
+
"blue": 0.96078,
|
|
3706
|
+
"alpha": 1
|
|
3707
|
+
},
|
|
3708
|
+
"groupColor": {
|
|
3709
|
+
"red": 0.00392,
|
|
3710
|
+
"green": 0.41961,
|
|
3711
|
+
"blue": 0.41569,
|
|
3712
|
+
"alpha": 1
|
|
3713
|
+
}
|
|
3714
|
+
}
|
|
3715
|
+
},
|
|
3716
|
+
{
|
|
3717
|
+
"if": {
|
|
3718
|
+
"current": true
|
|
3719
|
+
},
|
|
3720
|
+
"tokens": {
|
|
3721
|
+
"groupColor": {
|
|
3722
|
+
"red": 0.00392,
|
|
3723
|
+
"green": 0.41961,
|
|
3724
|
+
"blue": 0.41569,
|
|
3725
|
+
"alpha": 1
|
|
3726
|
+
},
|
|
3727
|
+
"groupFontName": "StagSans",
|
|
3728
|
+
"groupFontWeight": 700
|
|
3729
|
+
}
|
|
3730
|
+
},
|
|
3731
|
+
{
|
|
3732
|
+
"if": {
|
|
3733
|
+
"isChild": true
|
|
3734
|
+
},
|
|
3735
|
+
"tokens": {
|
|
3736
|
+
"itemBorderWidth": 4,
|
|
3737
|
+
"itemPaddingLeft": 12
|
|
3738
|
+
}
|
|
3739
|
+
},
|
|
3740
|
+
{
|
|
3741
|
+
"if": {
|
|
3742
|
+
"expanded": true
|
|
3743
|
+
},
|
|
3744
|
+
"tokens": {
|
|
3745
|
+
"groupIcon": "PaletteIconChevronUp"
|
|
3746
|
+
}
|
|
3747
|
+
}
|
|
3748
|
+
],
|
|
3749
|
+
"tokens": {
|
|
3750
|
+
"groupBackgroundColor": {
|
|
3751
|
+
"red": 0,
|
|
3752
|
+
"green": 0,
|
|
3753
|
+
"blue": 0,
|
|
3754
|
+
"alpha": 0
|
|
3755
|
+
},
|
|
3756
|
+
"groupBorderColor": {
|
|
3757
|
+
"red": 0.00392,
|
|
3758
|
+
"green": 0.41961,
|
|
3759
|
+
"blue": 0.41569,
|
|
3760
|
+
"alpha": 1
|
|
3761
|
+
},
|
|
3762
|
+
"groupBorderRadius": 6,
|
|
3763
|
+
"groupBorderWidth": 1,
|
|
3764
|
+
"groupColor": {
|
|
3765
|
+
"red": 0.89804,
|
|
3766
|
+
"green": 0.96863,
|
|
3767
|
+
"blue": 0.98431,
|
|
3768
|
+
"alpha": 1
|
|
3769
|
+
},
|
|
3770
|
+
"groupFontName": "StagSans",
|
|
3771
|
+
"groupFontSize": 14,
|
|
3772
|
+
"groupFontWeight": 400,
|
|
3773
|
+
"groupIcon": "PaletteIconChevronDown",
|
|
3774
|
+
"groupPaddingBottom": 12,
|
|
3775
|
+
"groupPaddingLeft": 16,
|
|
3776
|
+
"groupPaddingRight": 16,
|
|
3777
|
+
"groupPaddingTop": 12,
|
|
3778
|
+
"itemBackgroundColor": {
|
|
3779
|
+
"red": 0,
|
|
3780
|
+
"green": 0,
|
|
3781
|
+
"blue": 0,
|
|
3782
|
+
"alpha": 0
|
|
3783
|
+
},
|
|
3784
|
+
"itemBorderBackgroundColor": {
|
|
3785
|
+
"red": 0.73333,
|
|
3786
|
+
"green": 0.91765,
|
|
3787
|
+
"blue": 0.96078,
|
|
3788
|
+
"alpha": 1
|
|
3789
|
+
},
|
|
3790
|
+
"itemBorderLeftColor": {
|
|
3791
|
+
"red": 0.00392,
|
|
3792
|
+
"green": 0.41961,
|
|
3793
|
+
"blue": 0.41569,
|
|
3794
|
+
"alpha": 1
|
|
3795
|
+
},
|
|
3796
|
+
"itemBorderLeftWidth": 4,
|
|
3797
|
+
"itemBorderWidth": 0,
|
|
3798
|
+
"itemColor": {
|
|
3799
|
+
"red": 0.00392,
|
|
3800
|
+
"green": 0.41961,
|
|
3801
|
+
"blue": 0.41569,
|
|
3802
|
+
"alpha": 1
|
|
3803
|
+
},
|
|
3804
|
+
"itemDisplay": false,
|
|
3805
|
+
"itemFontName": "StagSans",
|
|
3806
|
+
"itemFontSize": 14,
|
|
3807
|
+
"itemFontWeight": 700,
|
|
3808
|
+
"itemOutline": 0,
|
|
3809
|
+
"itemPaddingBottom": 12,
|
|
3810
|
+
"itemPaddingLeft": 16,
|
|
3811
|
+
"itemPaddingRight": 16,
|
|
3812
|
+
"itemPaddingTop": 12,
|
|
3813
|
+
"itemTextDecoration": "none",
|
|
3814
|
+
"shadow": {
|
|
3815
|
+
"inset": false,
|
|
3816
|
+
"offsetX": 0,
|
|
3817
|
+
"offsetY": 2,
|
|
3818
|
+
"blur": 2,
|
|
3819
|
+
"spread": 0,
|
|
3820
|
+
"color": {
|
|
3821
|
+
"red": 0,
|
|
3822
|
+
"green": 0,
|
|
3823
|
+
"blue": 0,
|
|
3824
|
+
"alpha": 0.1
|
|
3825
|
+
}
|
|
3826
|
+
}
|
|
3827
|
+
}
|
|
3828
|
+
},
|
|
3340
3829
|
"Modal": {
|
|
3341
3830
|
"appearances": {
|
|
3342
3831
|
"maxWidth": {
|
|
@@ -4152,6 +4641,67 @@
|
|
|
4152
4641
|
"outlineWidth": 1
|
|
4153
4642
|
}
|
|
4154
4643
|
},
|
|
4644
|
+
"QuantitySelector": {
|
|
4645
|
+
"appearances": {
|
|
4646
|
+
"alternative": {
|
|
4647
|
+
"type": "variant",
|
|
4648
|
+
"values": [true]
|
|
4649
|
+
}
|
|
4650
|
+
},
|
|
4651
|
+
"rules": [
|
|
4652
|
+
{
|
|
4653
|
+
"if": {
|
|
4654
|
+
"alternative": true
|
|
4655
|
+
},
|
|
4656
|
+
"tokens": {
|
|
4657
|
+
"padding": 0
|
|
4658
|
+
}
|
|
4659
|
+
}
|
|
4660
|
+
],
|
|
4661
|
+
"tokens": {
|
|
4662
|
+
"backgroundColor": {
|
|
4663
|
+
"red": 0,
|
|
4664
|
+
"green": 0,
|
|
4665
|
+
"blue": 0,
|
|
4666
|
+
"alpha": 0
|
|
4667
|
+
},
|
|
4668
|
+
"borderColor": {
|
|
4669
|
+
"red": 0,
|
|
4670
|
+
"green": 0,
|
|
4671
|
+
"blue": 0,
|
|
4672
|
+
"alpha": 0
|
|
4673
|
+
},
|
|
4674
|
+
"iconColor": {
|
|
4675
|
+
"red": 0,
|
|
4676
|
+
"green": 0,
|
|
4677
|
+
"blue": 0,
|
|
4678
|
+
"alpha": 0
|
|
4679
|
+
},
|
|
4680
|
+
"iconSize": 16,
|
|
4681
|
+
"inputBackgroundColor": {
|
|
4682
|
+
"red": 0,
|
|
4683
|
+
"green": 0,
|
|
4684
|
+
"blue": 0,
|
|
4685
|
+
"alpha": 0
|
|
4686
|
+
},
|
|
4687
|
+
"inputBorderColor": {
|
|
4688
|
+
"red": 0,
|
|
4689
|
+
"green": 0,
|
|
4690
|
+
"blue": 0,
|
|
4691
|
+
"alpha": 0
|
|
4692
|
+
},
|
|
4693
|
+
"inputBorderWidth": 1,
|
|
4694
|
+
"leftIcon": "PaletteIconSubtract",
|
|
4695
|
+
"padding": 16,
|
|
4696
|
+
"rightIcon": "PaletteIconAdd",
|
|
4697
|
+
"textColor": {
|
|
4698
|
+
"red": 0,
|
|
4699
|
+
"green": 0,
|
|
4700
|
+
"blue": 0,
|
|
4701
|
+
"alpha": 0
|
|
4702
|
+
}
|
|
4703
|
+
}
|
|
4704
|
+
},
|
|
4155
4705
|
"QuickLinks": {
|
|
4156
4706
|
"appearances": {
|
|
4157
4707
|
"viewport": {
|
|
@@ -4784,7 +5334,7 @@
|
|
|
4784
5334
|
},
|
|
4785
5335
|
"contentAlignItems": "stretch",
|
|
4786
5336
|
"contentFlexGrow": 0,
|
|
4787
|
-
"contentFlexShrink":
|
|
5337
|
+
"contentFlexShrink": 1,
|
|
4788
5338
|
"contentJustifyContent": "flex-start",
|
|
4789
5339
|
"contentSpace": 2,
|
|
4790
5340
|
"flex": 1,
|
|
@@ -5572,6 +6122,81 @@
|
|
|
5572
6122
|
"thickness": 4
|
|
5573
6123
|
}
|
|
5574
6124
|
},
|
|
6125
|
+
"SplashButton": {
|
|
6126
|
+
"appearances": {},
|
|
6127
|
+
"rules": [],
|
|
6128
|
+
"tokens": {
|
|
6129
|
+
"buttonContentBackground": {
|
|
6130
|
+
"red": 0,
|
|
6131
|
+
"green": 0,
|
|
6132
|
+
"blue": 0,
|
|
6133
|
+
"alpha": 0
|
|
6134
|
+
},
|
|
6135
|
+
"buttonContentChildrenBackground": {
|
|
6136
|
+
"red": 0,
|
|
6137
|
+
"green": 0,
|
|
6138
|
+
"blue": 0,
|
|
6139
|
+
"alpha": 0
|
|
6140
|
+
},
|
|
6141
|
+
"playIcon": "PaletteIconPlayVideo",
|
|
6142
|
+
"playIconColor": {
|
|
6143
|
+
"red": 1,
|
|
6144
|
+
"green": 1,
|
|
6145
|
+
"blue": 1,
|
|
6146
|
+
"alpha": 1
|
|
6147
|
+
}
|
|
6148
|
+
}
|
|
6149
|
+
},
|
|
6150
|
+
"SplashButtonWithDetails": {
|
|
6151
|
+
"appearances": {},
|
|
6152
|
+
"rules": [],
|
|
6153
|
+
"tokens": {
|
|
6154
|
+
"buttonBackground": {
|
|
6155
|
+
"red": 1,
|
|
6156
|
+
"green": 1,
|
|
6157
|
+
"blue": 1,
|
|
6158
|
+
"alpha": 1
|
|
6159
|
+
},
|
|
6160
|
+
"buttonBorderColor": {
|
|
6161
|
+
"red": 0,
|
|
6162
|
+
"green": 0,
|
|
6163
|
+
"blue": 0,
|
|
6164
|
+
"alpha": 0
|
|
6165
|
+
},
|
|
6166
|
+
"buttonBottomPosition": 24,
|
|
6167
|
+
"buttonContentBackground": {
|
|
6168
|
+
"red": 0,
|
|
6169
|
+
"green": 0,
|
|
6170
|
+
"blue": 0,
|
|
6171
|
+
"alpha": 0
|
|
6172
|
+
},
|
|
6173
|
+
"buttonContentChildrenBackground": {
|
|
6174
|
+
"red": 0,
|
|
6175
|
+
"green": 0,
|
|
6176
|
+
"blue": 0,
|
|
6177
|
+
"alpha": 0
|
|
6178
|
+
},
|
|
6179
|
+
"buttonLeftPosition": 24,
|
|
6180
|
+
"buttonMinHeight": 64,
|
|
6181
|
+
"buttonPaddingLeft": 16,
|
|
6182
|
+
"buttonPaddingRight": 16,
|
|
6183
|
+
"buttonRadius": 32,
|
|
6184
|
+
"detailsContainerPadding": 8,
|
|
6185
|
+
"playIcon": "PaletteIconPlayVideo",
|
|
6186
|
+
"playIconColor": {
|
|
6187
|
+
"red": 1,
|
|
6188
|
+
"green": 1,
|
|
6189
|
+
"blue": 1,
|
|
6190
|
+
"alpha": 1
|
|
6191
|
+
},
|
|
6192
|
+
"playIconContainerBackground": {
|
|
6193
|
+
"red": 0,
|
|
6194
|
+
"green": 0,
|
|
6195
|
+
"blue": 0,
|
|
6196
|
+
"alpha": 0
|
|
6197
|
+
}
|
|
6198
|
+
}
|
|
6199
|
+
},
|
|
5575
6200
|
"StackView": {
|
|
5576
6201
|
"appearances": {},
|
|
5577
6202
|
"rules": [],
|
|
@@ -5746,43 +6371,114 @@
|
|
|
5746
6371
|
"blue": 0.41569,
|
|
5747
6372
|
"alpha": 1
|
|
5748
6373
|
},
|
|
5749
|
-
"knobCurrentBorderWidth": 1,
|
|
5750
|
-
"knobCurrentInnerColor": {
|
|
6374
|
+
"knobCurrentBorderWidth": 1,
|
|
6375
|
+
"knobCurrentInnerColor": {
|
|
6376
|
+
"red": 0,
|
|
6377
|
+
"green": 0,
|
|
6378
|
+
"blue": 0,
|
|
6379
|
+
"alpha": 0
|
|
6380
|
+
},
|
|
6381
|
+
"knobCurrentInnerSize": null,
|
|
6382
|
+
"knobCurrentPaddingLeft": null,
|
|
6383
|
+
"knobCurrentPaddingTop": null,
|
|
6384
|
+
"knobSize": 15,
|
|
6385
|
+
"labelColor": {
|
|
6386
|
+
"red": 0.00392,
|
|
6387
|
+
"green": 0.41961,
|
|
6388
|
+
"blue": 0.41569,
|
|
6389
|
+
"alpha": 1
|
|
6390
|
+
},
|
|
6391
|
+
"labelCurrentColor": {
|
|
6392
|
+
"red": 0.00392,
|
|
6393
|
+
"green": 0.41961,
|
|
6394
|
+
"blue": 0.41569,
|
|
6395
|
+
"alpha": 1
|
|
6396
|
+
},
|
|
6397
|
+
"labelCurrentFontName": "StagSans",
|
|
6398
|
+
"labelCurrentFontWeight": 700,
|
|
6399
|
+
"labelDirection": "row",
|
|
6400
|
+
"labelFontName": "StagSans",
|
|
6401
|
+
"labelFontSize": 16,
|
|
6402
|
+
"labelFontWeight": 400,
|
|
6403
|
+
"labelGap": 4,
|
|
6404
|
+
"labelLineHeight": 1.5,
|
|
6405
|
+
"labelMarginTop": 10,
|
|
6406
|
+
"labelPaddingLeft": 16,
|
|
6407
|
+
"labelPaddingRight": 16,
|
|
6408
|
+
"showStepLabel": false,
|
|
6409
|
+
"showStepName": true,
|
|
6410
|
+
"showStepTrackerLabel": true
|
|
6411
|
+
}
|
|
6412
|
+
},
|
|
6413
|
+
"StoryCard": {
|
|
6414
|
+
"appearances": {
|
|
6415
|
+
"pressed": {
|
|
6416
|
+
"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.",
|
|
6417
|
+
"values": [true],
|
|
6418
|
+
"type": "state"
|
|
6419
|
+
}
|
|
6420
|
+
},
|
|
6421
|
+
"rules": [
|
|
6422
|
+
{
|
|
6423
|
+
"if": {
|
|
6424
|
+
"pressed": true
|
|
6425
|
+
},
|
|
6426
|
+
"tokens": {
|
|
6427
|
+
"backgroundColor": {
|
|
6428
|
+
"red": 0.90196,
|
|
6429
|
+
"green": 0.90196,
|
|
6430
|
+
"blue": 0.90196,
|
|
6431
|
+
"alpha": 1
|
|
6432
|
+
}
|
|
6433
|
+
}
|
|
6434
|
+
}
|
|
6435
|
+
],
|
|
6436
|
+
"tokens": {
|
|
6437
|
+
"backgroundColor": {
|
|
6438
|
+
"red": 1,
|
|
6439
|
+
"green": 1,
|
|
6440
|
+
"blue": 1,
|
|
6441
|
+
"alpha": 1
|
|
6442
|
+
},
|
|
6443
|
+
"borderColor": {
|
|
6444
|
+
"red": 0.93725,
|
|
6445
|
+
"green": 0.93725,
|
|
6446
|
+
"blue": 0.93725,
|
|
6447
|
+
"alpha": 1
|
|
6448
|
+
},
|
|
6449
|
+
"borderRadius": 6,
|
|
6450
|
+
"borderWidth": 1,
|
|
6451
|
+
"contentAlignItems": "stretch",
|
|
6452
|
+
"contentFlexGrow": 0,
|
|
6453
|
+
"contentFlexShrink": 0,
|
|
6454
|
+
"contentJustifyContent": "flex-start",
|
|
6455
|
+
"flex": 1,
|
|
6456
|
+
"minWidth": 0,
|
|
6457
|
+
"outerBorderColor": {
|
|
5751
6458
|
"red": 0,
|
|
5752
6459
|
"green": 0,
|
|
5753
6460
|
"blue": 0,
|
|
5754
6461
|
"alpha": 0
|
|
5755
6462
|
},
|
|
5756
|
-
"
|
|
5757
|
-
"
|
|
5758
|
-
"
|
|
5759
|
-
"
|
|
5760
|
-
"
|
|
5761
|
-
|
|
5762
|
-
|
|
5763
|
-
"
|
|
5764
|
-
"
|
|
5765
|
-
|
|
5766
|
-
|
|
5767
|
-
"
|
|
5768
|
-
"
|
|
5769
|
-
|
|
5770
|
-
|
|
5771
|
-
|
|
5772
|
-
|
|
5773
|
-
|
|
5774
|
-
|
|
5775
|
-
"labelFontName": "StagSans",
|
|
5776
|
-
"labelFontSize": 16,
|
|
5777
|
-
"labelFontWeight": 400,
|
|
5778
|
-
"labelGap": 4,
|
|
5779
|
-
"labelLineHeight": 1.5,
|
|
5780
|
-
"labelMarginTop": 10,
|
|
5781
|
-
"labelPaddingLeft": 16,
|
|
5782
|
-
"labelPaddingRight": 16,
|
|
5783
|
-
"showStepLabel": false,
|
|
5784
|
-
"showStepName": true,
|
|
5785
|
-
"showStepTrackerLabel": true
|
|
6463
|
+
"outerBorderGap": 0,
|
|
6464
|
+
"outerBorderWidth": 0,
|
|
6465
|
+
"paddingBottom": 0,
|
|
6466
|
+
"paddingLeft": 0,
|
|
6467
|
+
"paddingRight": 0,
|
|
6468
|
+
"paddingTop": 0,
|
|
6469
|
+
"shadow": {
|
|
6470
|
+
"inset": false,
|
|
6471
|
+
"offsetX": 0,
|
|
6472
|
+
"offsetY": 0,
|
|
6473
|
+
"blur": 0,
|
|
6474
|
+
"spread": 0,
|
|
6475
|
+
"color": {
|
|
6476
|
+
"red": 0,
|
|
6477
|
+
"green": 0,
|
|
6478
|
+
"blue": 0,
|
|
6479
|
+
"alpha": 0
|
|
6480
|
+
}
|
|
6481
|
+
}
|
|
5786
6482
|
}
|
|
5787
6483
|
},
|
|
5788
6484
|
"Table": {
|
|
@@ -6227,6 +6923,113 @@
|
|
|
6227
6923
|
"width": null
|
|
6228
6924
|
}
|
|
6229
6925
|
},
|
|
6926
|
+
"TermsAndConditions": {
|
|
6927
|
+
"appearances": {
|
|
6928
|
+
"expanded": {
|
|
6929
|
+
"description": "Applies when an ExpandCollapse panel is open and the content inside is visible",
|
|
6930
|
+
"values": [true],
|
|
6931
|
+
"type": "state"
|
|
6932
|
+
}
|
|
6933
|
+
},
|
|
6934
|
+
"rules": [
|
|
6935
|
+
{
|
|
6936
|
+
"if": {
|
|
6937
|
+
"expanded": true
|
|
6938
|
+
},
|
|
6939
|
+
"tokens": {
|
|
6940
|
+
"icon": "PaletteIconChevronUp"
|
|
6941
|
+
}
|
|
6942
|
+
}
|
|
6943
|
+
],
|
|
6944
|
+
"tokens": {
|
|
6945
|
+
"contentPaddingBottom": 8,
|
|
6946
|
+
"contentPaddingLeft": 16,
|
|
6947
|
+
"expandBaseBorderWidth": 0,
|
|
6948
|
+
"expandContentPaddingBottom": 16,
|
|
6949
|
+
"expandContentPaddingLeft": 16,
|
|
6950
|
+
"expandContentPaddingRight": 16,
|
|
6951
|
+
"expandContentPaddingTop": 16,
|
|
6952
|
+
"expandIconContainerAlignItems": "center",
|
|
6953
|
+
"expandIconContainerBorder": 1,
|
|
6954
|
+
"expandIconContainerBorderColor": {
|
|
6955
|
+
"red": 0.93725,
|
|
6956
|
+
"green": 0.93725,
|
|
6957
|
+
"blue": 0.93725,
|
|
6958
|
+
"alpha": 1
|
|
6959
|
+
},
|
|
6960
|
+
"expandIconContainerHeight": 32,
|
|
6961
|
+
"expandIconContainerJustifyContent": "center",
|
|
6962
|
+
"expandIconContainerMarginX": 0,
|
|
6963
|
+
"expandIconContainerMarginY": 12,
|
|
6964
|
+
"expandIconContainerWidth": 32,
|
|
6965
|
+
"expandTitleColor": {
|
|
6966
|
+
"red": 0.93725,
|
|
6967
|
+
"green": 0.93725,
|
|
6968
|
+
"blue": 0.93725,
|
|
6969
|
+
"alpha": 1
|
|
6970
|
+
},
|
|
6971
|
+
"expandTitleFontSize": 16,
|
|
6972
|
+
"expandTitleLineHeight": 1.5,
|
|
6973
|
+
"expandTitleMarginX": 4,
|
|
6974
|
+
"expandTitleMarginY": 0,
|
|
6975
|
+
"icon": "PaletteIconChevronDown",
|
|
6976
|
+
"listColor": {
|
|
6977
|
+
"red": 0.00392,
|
|
6978
|
+
"green": 0.41961,
|
|
6979
|
+
"blue": 0.41569,
|
|
6980
|
+
"alpha": 1
|
|
6981
|
+
},
|
|
6982
|
+
"listFontName": "StagSans",
|
|
6983
|
+
"listFontSize": 14,
|
|
6984
|
+
"listFontWeight": 400,
|
|
6985
|
+
"listLineHeight": 1.42857142857,
|
|
6986
|
+
"listMarginBottom": 16,
|
|
6987
|
+
"listMarginLeft": 32,
|
|
6988
|
+
"mdContentPaddingBottom": 16,
|
|
6989
|
+
"mdContentPaddingLeft": 48,
|
|
6990
|
+
"orderedPadding": 0,
|
|
6991
|
+
"titleColor": {
|
|
6992
|
+
"red": 0.00392,
|
|
6993
|
+
"green": 0.41961,
|
|
6994
|
+
"blue": 0.41569,
|
|
6995
|
+
"alpha": 1
|
|
6996
|
+
},
|
|
6997
|
+
"titleFontSize": 14,
|
|
6998
|
+
"titleLineHeight": 1.42857142857,
|
|
6999
|
+
"titlePaddingLeft": 8,
|
|
7000
|
+
"unorderedPadding": 0
|
|
7001
|
+
}
|
|
7002
|
+
},
|
|
7003
|
+
"Testimonial": {
|
|
7004
|
+
"appearances": {},
|
|
7005
|
+
"rules": [],
|
|
7006
|
+
"tokens": {
|
|
7007
|
+
"dividerBackgroundColor": {
|
|
7008
|
+
"red": 1,
|
|
7009
|
+
"green": 1,
|
|
7010
|
+
"blue": 1,
|
|
7011
|
+
"alpha": 1
|
|
7012
|
+
},
|
|
7013
|
+
"dividerBorder": 1,
|
|
7014
|
+
"figcaptionGap": 12,
|
|
7015
|
+
"icon": "PaletteIconArrowLeft",
|
|
7016
|
+
"iconColor": {
|
|
7017
|
+
"red": 1,
|
|
7018
|
+
"green": 1,
|
|
7019
|
+
"blue": 1,
|
|
7020
|
+
"alpha": 1
|
|
7021
|
+
},
|
|
7022
|
+
"imageSize": 48,
|
|
7023
|
+
"quoteContainerGap": 4,
|
|
7024
|
+
"testimonialContainerGap": 12,
|
|
7025
|
+
"textColor": {
|
|
7026
|
+
"red": 1,
|
|
7027
|
+
"green": 1,
|
|
7028
|
+
"blue": 1,
|
|
7029
|
+
"alpha": 1
|
|
7030
|
+
}
|
|
7031
|
+
}
|
|
7032
|
+
},
|
|
6230
7033
|
"TextArea": {
|
|
6231
7034
|
"appearances": {},
|
|
6232
7035
|
"rules": [],
|
|
@@ -7099,6 +7902,182 @@
|
|
|
7099
7902
|
"textTransform": "none"
|
|
7100
7903
|
}
|
|
7101
7904
|
},
|
|
7905
|
+
"Video": {
|
|
7906
|
+
"appearances": {},
|
|
7907
|
+
"rules": [],
|
|
7908
|
+
"tokens": {
|
|
7909
|
+
"borderColor": {
|
|
7910
|
+
"red": 0,
|
|
7911
|
+
"green": 0,
|
|
7912
|
+
"blue": 0,
|
|
7913
|
+
"alpha": 1
|
|
7914
|
+
},
|
|
7915
|
+
"pauseIcon": "PaletteIconAdd",
|
|
7916
|
+
"playIcon": "PaletteIconAdd",
|
|
7917
|
+
"replayIcon": "PaletteIconAdd"
|
|
7918
|
+
}
|
|
7919
|
+
},
|
|
7920
|
+
"VideoButton": {
|
|
7921
|
+
"appearances": {},
|
|
7922
|
+
"rules": [],
|
|
7923
|
+
"tokens": {
|
|
7924
|
+
"color": {
|
|
7925
|
+
"red": 1,
|
|
7926
|
+
"green": 1,
|
|
7927
|
+
"blue": 1,
|
|
7928
|
+
"alpha": 1
|
|
7929
|
+
}
|
|
7930
|
+
}
|
|
7931
|
+
},
|
|
7932
|
+
"VideoControlBar": {
|
|
7933
|
+
"appearances": {},
|
|
7934
|
+
"rules": [],
|
|
7935
|
+
"tokens": {
|
|
7936
|
+
"captionsIcon": "PaletteIconAdd",
|
|
7937
|
+
"maximizeIcon": "PaletteIconAdd",
|
|
7938
|
+
"menuBottom": 64,
|
|
7939
|
+
"menuMarginLeft": 16,
|
|
7940
|
+
"menuRight": 32,
|
|
7941
|
+
"minimizeIcon": "PaletteIconAdd",
|
|
7942
|
+
"paddingBottom": 16,
|
|
7943
|
+
"paddingLeft": 48,
|
|
7944
|
+
"paddingLeftCompactMode": 16,
|
|
7945
|
+
"paddingRight": 48,
|
|
7946
|
+
"paddingRightCompactMode": 16,
|
|
7947
|
+
"paddingTop": 16,
|
|
7948
|
+
"settingsIcon": "PaletteIconSettings"
|
|
7949
|
+
}
|
|
7950
|
+
},
|
|
7951
|
+
"VideoMenu": {
|
|
7952
|
+
"appearances": {},
|
|
7953
|
+
"rules": [],
|
|
7954
|
+
"tokens": {
|
|
7955
|
+
"background": {
|
|
7956
|
+
"red": 0,
|
|
7957
|
+
"green": 0,
|
|
7958
|
+
"blue": 0,
|
|
7959
|
+
"alpha": 1
|
|
7960
|
+
},
|
|
7961
|
+
"checkMarkFocusColor": {
|
|
7962
|
+
"red": 0.00392,
|
|
7963
|
+
"green": 0.41961,
|
|
7964
|
+
"blue": 0.41569,
|
|
7965
|
+
"alpha": 1
|
|
7966
|
+
},
|
|
7967
|
+
"checkMarkHeight": 24,
|
|
7968
|
+
"checkMarkHoverColor": {
|
|
7969
|
+
"red": 0.00392,
|
|
7970
|
+
"green": 0.41961,
|
|
7971
|
+
"blue": 0.41569,
|
|
7972
|
+
"alpha": 1
|
|
7973
|
+
},
|
|
7974
|
+
"checkMarkIcon": "PaletteIconCheck",
|
|
7975
|
+
"checkMarkSelectedColor": {
|
|
7976
|
+
"red": 0,
|
|
7977
|
+
"green": 0,
|
|
7978
|
+
"blue": 0,
|
|
7979
|
+
"alpha": 1
|
|
7980
|
+
},
|
|
7981
|
+
"checkMarkUnselectedColor": {
|
|
7982
|
+
"red": 0,
|
|
7983
|
+
"green": 0,
|
|
7984
|
+
"blue": 0,
|
|
7985
|
+
"alpha": 0
|
|
7986
|
+
},
|
|
7987
|
+
"checkMarkWidth": 24,
|
|
7988
|
+
"padding": 16
|
|
7989
|
+
}
|
|
7990
|
+
},
|
|
7991
|
+
"VideoMiddleControlButton": {
|
|
7992
|
+
"appearances": {},
|
|
7993
|
+
"rules": [],
|
|
7994
|
+
"tokens": {
|
|
7995
|
+
"background": {
|
|
7996
|
+
"red": 0,
|
|
7997
|
+
"green": 0,
|
|
7998
|
+
"blue": 0,
|
|
7999
|
+
"alpha": 1
|
|
8000
|
+
},
|
|
8001
|
+
"height": 64,
|
|
8002
|
+
"iconColor": {
|
|
8003
|
+
"red": 1,
|
|
8004
|
+
"green": 1,
|
|
8005
|
+
"blue": 1,
|
|
8006
|
+
"alpha": 1
|
|
8007
|
+
},
|
|
8008
|
+
"width": 64
|
|
8009
|
+
}
|
|
8010
|
+
},
|
|
8011
|
+
"VideoProgressBar": {
|
|
8012
|
+
"appearances": {},
|
|
8013
|
+
"rules": [],
|
|
8014
|
+
"tokens": {
|
|
8015
|
+
"rangeBackground": {
|
|
8016
|
+
"red": 0,
|
|
8017
|
+
"green": 0,
|
|
8018
|
+
"blue": 0,
|
|
8019
|
+
"alpha": 0
|
|
8020
|
+
},
|
|
8021
|
+
"thumbBackground": {
|
|
8022
|
+
"red": 1,
|
|
8023
|
+
"green": 1,
|
|
8024
|
+
"blue": 1,
|
|
8025
|
+
"alpha": 1
|
|
8026
|
+
},
|
|
8027
|
+
"thumbHeight": 8,
|
|
8028
|
+
"thumbWidth": 8,
|
|
8029
|
+
"timestampMarginLeft": 8,
|
|
8030
|
+
"timestampMarginRight": 8,
|
|
8031
|
+
"trackGradientEnd": {
|
|
8032
|
+
"red": 0.00392,
|
|
8033
|
+
"green": 0.41961,
|
|
8034
|
+
"blue": 0.41569,
|
|
8035
|
+
"alpha": 1
|
|
8036
|
+
},
|
|
8037
|
+
"trackGradientStart": {
|
|
8038
|
+
"red": 0.00392,
|
|
8039
|
+
"green": 0.41961,
|
|
8040
|
+
"blue": 0.41569,
|
|
8041
|
+
"alpha": 1
|
|
8042
|
+
}
|
|
8043
|
+
}
|
|
8044
|
+
},
|
|
8045
|
+
"VideoVolumeSlider": {
|
|
8046
|
+
"appearances": {},
|
|
8047
|
+
"rules": [],
|
|
8048
|
+
"tokens": {
|
|
8049
|
+
"marginLeft": 16,
|
|
8050
|
+
"marginRight": 16,
|
|
8051
|
+
"mutedIcon": "PaletteIconAdd",
|
|
8052
|
+
"rangeBackground": {
|
|
8053
|
+
"red": 0,
|
|
8054
|
+
"green": 0,
|
|
8055
|
+
"blue": 0,
|
|
8056
|
+
"alpha": 0
|
|
8057
|
+
},
|
|
8058
|
+
"thumbBackground": {
|
|
8059
|
+
"red": 1,
|
|
8060
|
+
"green": 1,
|
|
8061
|
+
"blue": 1,
|
|
8062
|
+
"alpha": 1
|
|
8063
|
+
},
|
|
8064
|
+
"thumbHeight": 8,
|
|
8065
|
+
"thumbWidth": 8,
|
|
8066
|
+
"trackGradientEnd": {
|
|
8067
|
+
"red": 1,
|
|
8068
|
+
"green": 1,
|
|
8069
|
+
"blue": 1,
|
|
8070
|
+
"alpha": 1
|
|
8071
|
+
},
|
|
8072
|
+
"trackGradientStart": {
|
|
8073
|
+
"red": 1,
|
|
8074
|
+
"green": 1,
|
|
8075
|
+
"blue": 1,
|
|
8076
|
+
"alpha": 1
|
|
8077
|
+
},
|
|
8078
|
+
"unmutedIcon": "PaletteIconAdd"
|
|
8079
|
+
}
|
|
8080
|
+
},
|
|
7102
8081
|
"WaffleGrid": {
|
|
7103
8082
|
"appearances": {},
|
|
7104
8083
|
"rules": [],
|
|
@@ -7300,7 +8279,7 @@
|
|
|
7300
8279
|
}
|
|
7301
8280
|
},
|
|
7302
8281
|
"metadata": {
|
|
7303
|
-
"themeTokensVersion": "2.
|
|
8282
|
+
"themeTokensVersion": "2.23.0",
|
|
7304
8283
|
"name": "theme-koodo"
|
|
7305
8284
|
}
|
|
7306
8285
|
}
|