@telus-uds/theme-allium 4.15.0 → 4.17.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 +1101 -942
- package/build/android/theme.json +84 -2
- package/build/ios/schema.json +1101 -942
- package/build/ios/theme.json +84 -2
- package/build/rn/schema.json +1101 -942
- package/build/rn/theme.js +69 -5
- package/package.json +5 -5
- package/theme.json +81 -3
package/build/ios/theme.json
CHANGED
|
@@ -1836,6 +1836,11 @@
|
|
|
1836
1836
|
"description": "The size label for the current screen viewport based on the current screen width",
|
|
1837
1837
|
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
1838
1838
|
"type": "state"
|
|
1839
|
+
},
|
|
1840
|
+
"width": {
|
|
1841
|
+
"description": "Available in default, or responsive. Default-width expands based on content. Responsive automatically applies full-width when is displayed on the XS viewport.",
|
|
1842
|
+
"type": "variant",
|
|
1843
|
+
"values": ["responsive"]
|
|
1839
1844
|
}
|
|
1840
1845
|
},
|
|
1841
1846
|
"rules": [
|
|
@@ -1846,6 +1851,16 @@
|
|
|
1846
1851
|
"tokens": {
|
|
1847
1852
|
"space": 3
|
|
1848
1853
|
}
|
|
1854
|
+
},
|
|
1855
|
+
{
|
|
1856
|
+
"if": {
|
|
1857
|
+
"viewport": ["xs"],
|
|
1858
|
+
"width": "responsive"
|
|
1859
|
+
},
|
|
1860
|
+
"tokens": {
|
|
1861
|
+
"alignItems": "stretch",
|
|
1862
|
+
"direction": "column"
|
|
1863
|
+
}
|
|
1849
1864
|
}
|
|
1850
1865
|
],
|
|
1851
1866
|
"tokens": {
|
|
@@ -1879,6 +1894,11 @@
|
|
|
1879
1894
|
"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`.",
|
|
1880
1895
|
"values": [true],
|
|
1881
1896
|
"type": "state"
|
|
1897
|
+
},
|
|
1898
|
+
"width": {
|
|
1899
|
+
"description": "Available in default, or responsive. Default-width expands based on content. Responsive automatically applies full-width when is displayed on the XS viewport.",
|
|
1900
|
+
"type": "variant",
|
|
1901
|
+
"values": ["responsive"]
|
|
1882
1902
|
}
|
|
1883
1903
|
},
|
|
1884
1904
|
"rules": [
|
|
@@ -1969,6 +1989,14 @@
|
|
|
1969
1989
|
"tokens": {
|
|
1970
1990
|
"iconSpace": 1
|
|
1971
1991
|
}
|
|
1992
|
+
},
|
|
1993
|
+
{
|
|
1994
|
+
"if": {
|
|
1995
|
+
"width": "responsive"
|
|
1996
|
+
},
|
|
1997
|
+
"tokens": {
|
|
1998
|
+
"width": "100%"
|
|
1999
|
+
}
|
|
1972
2000
|
}
|
|
1973
2001
|
],
|
|
1974
2002
|
"tokens": {
|
|
@@ -2973,6 +3001,52 @@
|
|
|
2973
3001
|
"textTransform": "none"
|
|
2974
3002
|
}
|
|
2975
3003
|
},
|
|
3004
|
+
"CheckboxCardGroup": {
|
|
3005
|
+
"appearances": {
|
|
3006
|
+
"fullWidth": {
|
|
3007
|
+
"description": "Makes cards always occupy the full width of the parent, regardless of viewport",
|
|
3008
|
+
"type": "variant",
|
|
3009
|
+
"values": [true]
|
|
3010
|
+
},
|
|
3011
|
+
"viewport": {
|
|
3012
|
+
"description": "The size label for the current screen viewport based on the current screen width",
|
|
3013
|
+
"values": ["xs", "sm", "md", "lg", "xl"],
|
|
3014
|
+
"type": "state"
|
|
3015
|
+
}
|
|
3016
|
+
},
|
|
3017
|
+
"rules": [
|
|
3018
|
+
{
|
|
3019
|
+
"if": {
|
|
3020
|
+
"viewport": ["md", "lg", "xl"]
|
|
3021
|
+
},
|
|
3022
|
+
"tokens": {
|
|
3023
|
+
"direction": "row",
|
|
3024
|
+
"space": 5
|
|
3025
|
+
}
|
|
3026
|
+
},
|
|
3027
|
+
{
|
|
3028
|
+
"if": {
|
|
3029
|
+
"fullWidth": true
|
|
3030
|
+
},
|
|
3031
|
+
"tokens": {
|
|
3032
|
+
"direction": "column",
|
|
3033
|
+
"fieldSpace": 3,
|
|
3034
|
+
"space": 3
|
|
3035
|
+
}
|
|
3036
|
+
}
|
|
3037
|
+
],
|
|
3038
|
+
"tokens": {
|
|
3039
|
+
"borderBottomLeftRadius": 1,
|
|
3040
|
+
"borderBottomRightRadius": 1,
|
|
3041
|
+
"borderTopLeftRadius": 1,
|
|
3042
|
+
"borderTopRightRadius": 1,
|
|
3043
|
+
"direction": "column",
|
|
3044
|
+
"fieldSpace": 3,
|
|
3045
|
+
"outlineOffset": 8,
|
|
3046
|
+
"outlineWidth": 1,
|
|
3047
|
+
"space": 3
|
|
3048
|
+
}
|
|
3049
|
+
},
|
|
2976
3050
|
"CheckboxGroup": {
|
|
2977
3051
|
"appearances": {},
|
|
2978
3052
|
"rules": [],
|
|
@@ -5527,6 +5601,7 @@
|
|
|
5527
5601
|
"viewport": ["xs", "sm"]
|
|
5528
5602
|
},
|
|
5529
5603
|
"tokens": {
|
|
5604
|
+
"direction": "column",
|
|
5530
5605
|
"height": "100%",
|
|
5531
5606
|
"paddingBottom": 24,
|
|
5532
5607
|
"paddingLeft": 24,
|
|
@@ -5541,6 +5616,7 @@
|
|
|
5541
5616
|
"tokens": {
|
|
5542
5617
|
"containerPaddingBottom": 32,
|
|
5543
5618
|
"containerPaddingTop": 32,
|
|
5619
|
+
"direction": "row",
|
|
5544
5620
|
"maxWidth": 576
|
|
5545
5621
|
}
|
|
5546
5622
|
},
|
|
@@ -5662,6 +5738,7 @@
|
|
|
5662
5738
|
"containerPaddingLeft": 0,
|
|
5663
5739
|
"containerPaddingRight": 0,
|
|
5664
5740
|
"containerPaddingTop": 0,
|
|
5741
|
+
"direction": "row",
|
|
5665
5742
|
"gap": 16,
|
|
5666
5743
|
"headingColor": {
|
|
5667
5744
|
"red": 0.2549,
|
|
@@ -10196,6 +10273,7 @@
|
|
|
10196
10273
|
}
|
|
10197
10274
|
],
|
|
10198
10275
|
"tokens": {
|
|
10276
|
+
"amexIcon": "PaletteIconAmex",
|
|
10199
10277
|
"backgroundColor": {
|
|
10200
10278
|
"red": 1,
|
|
10201
10279
|
"green": 1,
|
|
@@ -10220,6 +10298,7 @@
|
|
|
10220
10298
|
"blue": 0.27843,
|
|
10221
10299
|
"alpha": 1
|
|
10222
10300
|
},
|
|
10301
|
+
"defaultCreditIcon": "PaletteIconCreditCard",
|
|
10223
10302
|
"fontName": "HelveticaNow",
|
|
10224
10303
|
"fontSize": 16,
|
|
10225
10304
|
"fontWeight": 400,
|
|
@@ -10231,7 +10310,9 @@
|
|
|
10231
10310
|
"alpha": 0
|
|
10232
10311
|
},
|
|
10233
10312
|
"iconSize": 24,
|
|
10313
|
+
"leftIconPaddingBottom": 8,
|
|
10234
10314
|
"lineHeight": 1.5,
|
|
10315
|
+
"masterCardIcon": "PaletteIconMasterCard",
|
|
10235
10316
|
"outerBackgroundColor": {
|
|
10236
10317
|
"red": 0,
|
|
10237
10318
|
"green": 0,
|
|
@@ -10250,7 +10331,8 @@
|
|
|
10250
10331
|
"paddingRight": 16,
|
|
10251
10332
|
"paddingTop": 12,
|
|
10252
10333
|
"passwordHideButtonIcon": "PaletteIconInvisible",
|
|
10253
|
-
"passwordShowButtonIcon": "PaletteIconVisible"
|
|
10334
|
+
"passwordShowButtonIcon": "PaletteIconVisible",
|
|
10335
|
+
"visaIcon": "PaletteIconVisa"
|
|
10254
10336
|
}
|
|
10255
10337
|
},
|
|
10256
10338
|
"Timeline": {
|
|
@@ -12040,7 +12122,7 @@
|
|
|
12040
12122
|
}
|
|
12041
12123
|
},
|
|
12042
12124
|
"metadata": {
|
|
12043
|
-
"themeTokensVersion": "2.
|
|
12125
|
+
"themeTokensVersion": "2.44.0",
|
|
12044
12126
|
"name": "theme-allium"
|
|
12045
12127
|
}
|
|
12046
12128
|
}
|