@telus-uds/theme-allium 3.1.1 → 3.2.1
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/CHANGELOG.json +76 -1
- package/CHANGELOG.md +31 -2
- package/build/schema.json +805 -786
- package/build/theme.js +14 -3
- package/package.json +5 -5
- package/theme.json +29 -1
package/build/theme.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
*
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on Thu,
|
|
4
|
+
* Generated on Thu, 16 Jun 2022 15:06:45 GMT
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -266,6 +266,7 @@ module.exports = {
|
|
|
266
266
|
tokens: {
|
|
267
267
|
alignItems: 'center',
|
|
268
268
|
direction: 'row',
|
|
269
|
+
fieldSpace: 2,
|
|
269
270
|
flexGrow: 0,
|
|
270
271
|
flexShrink: 0,
|
|
271
272
|
justifyContent: 'flex-start',
|
|
@@ -1675,6 +1676,15 @@ module.exports = {
|
|
|
1675
1676
|
radioInputBorderColor: 'rgba(0, 0, 0, 0)'
|
|
1676
1677
|
}
|
|
1677
1678
|
},
|
|
1679
|
+
{ if: { checked: true }, tokens: { borderColor: '#7c53a5' } },
|
|
1680
|
+
{
|
|
1681
|
+
if: { checked: true, pressed: true },
|
|
1682
|
+
tokens: { borderColor: '#4b286d' }
|
|
1683
|
+
},
|
|
1684
|
+
{
|
|
1685
|
+
if: { checked: true, hover: true },
|
|
1686
|
+
tokens: { borderColor: '#4b286d' }
|
|
1687
|
+
},
|
|
1678
1688
|
{
|
|
1679
1689
|
if: { error: true },
|
|
1680
1690
|
tokens: {
|
|
@@ -1951,7 +1961,7 @@ module.exports = {
|
|
|
1951
1961
|
fontWeight: '400',
|
|
1952
1962
|
height: 48,
|
|
1953
1963
|
icon: PaletteIconCaretDown,
|
|
1954
|
-
iconColor: '#
|
|
1964
|
+
iconColor: '#414547',
|
|
1955
1965
|
iconSize: 24,
|
|
1956
1966
|
outerBackgroundColor: 'rgba(0, 0, 0, 0)',
|
|
1957
1967
|
outerBorderColor: 'rgba(0, 0, 0, 0)',
|
|
@@ -2648,6 +2658,7 @@ module.exports = {
|
|
|
2648
2658
|
tokens: {
|
|
2649
2659
|
alignItems: 'flex-start',
|
|
2650
2660
|
direction: 'column',
|
|
2661
|
+
fieldSpace: 2,
|
|
2651
2662
|
flexGrow: 0,
|
|
2652
2663
|
flexShrink: 0,
|
|
2653
2664
|
justifyContent: 'flex-start',
|
|
@@ -3026,5 +3037,5 @@ module.exports = {
|
|
|
3026
3037
|
tokens: { size: 96 }
|
|
3027
3038
|
}
|
|
3028
3039
|
},
|
|
3029
|
-
metadata: { name: 'theme-allium', themeTokensVersion: '
|
|
3040
|
+
metadata: { name: 'theme-allium', themeTokensVersion: '2.0.2' }
|
|
3030
3041
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telus-uds/theme-allium",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "Allium theme",
|
|
5
5
|
"author": "TELUS Digital",
|
|
6
6
|
"homepage": "https://github.com/telus/allium-design-system#readme",
|
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
"main": "build/theme.js",
|
|
9
9
|
"dependencies": {},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@telus-uds/palette-allium": "^2.
|
|
12
|
-
"@telus-uds/system-theme-tokens": "^
|
|
13
|
-
"@telus-uds/system-tokens": "^0.1.
|
|
11
|
+
"@telus-uds/palette-allium": "^2.1.0",
|
|
12
|
+
"@telus-uds/system-theme-tokens": "^2.0.2",
|
|
13
|
+
"@telus-uds/system-tokens": "^0.1.5"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"@telus-uds/palette-allium": "^2.
|
|
16
|
+
"@telus-uds/palette-allium": "^2.1.0"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"build",
|
package/theme.json
CHANGED
|
@@ -390,6 +390,7 @@
|
|
|
390
390
|
"tokens": {
|
|
391
391
|
"alignItems": "{system.flexAlign.center}",
|
|
392
392
|
"direction": "{system.direction.row}",
|
|
393
|
+
"fieldSpace": "{system.integer.2}",
|
|
393
394
|
"flexGrow": "{system.integer.0}",
|
|
394
395
|
"flexShrink": "{system.integer.0}",
|
|
395
396
|
"justifyContent": "{system.flexJustifyContent.flexStart}",
|
|
@@ -2110,6 +2111,32 @@
|
|
|
2110
2111
|
"radioInputBorderColor": "{palette.color.transparent}"
|
|
2111
2112
|
}
|
|
2112
2113
|
},
|
|
2114
|
+
{
|
|
2115
|
+
"if": {
|
|
2116
|
+
"checked": true
|
|
2117
|
+
},
|
|
2118
|
+
"tokens": {
|
|
2119
|
+
"borderColor": "{palette.color.purpleDeluge}"
|
|
2120
|
+
}
|
|
2121
|
+
},
|
|
2122
|
+
{
|
|
2123
|
+
"if": {
|
|
2124
|
+
"checked": true,
|
|
2125
|
+
"pressed": true
|
|
2126
|
+
},
|
|
2127
|
+
"tokens": {
|
|
2128
|
+
"borderColor": "{palette.color.purpleTelus}"
|
|
2129
|
+
}
|
|
2130
|
+
},
|
|
2131
|
+
{
|
|
2132
|
+
"if": {
|
|
2133
|
+
"checked": true,
|
|
2134
|
+
"hover": true
|
|
2135
|
+
},
|
|
2136
|
+
"tokens": {
|
|
2137
|
+
"borderColor": "{palette.color.purpleTelus}"
|
|
2138
|
+
}
|
|
2139
|
+
},
|
|
2113
2140
|
{
|
|
2114
2141
|
"if": {
|
|
2115
2142
|
"error": true
|
|
@@ -2401,7 +2428,7 @@
|
|
|
2401
2428
|
"fontWeight": "{palette.fontWeight.weight400}",
|
|
2402
2429
|
"height": "{palette.size.size48}",
|
|
2403
2430
|
"icon": "{palette.icon.CaretDown}",
|
|
2404
|
-
"iconColor": "{palette.color.
|
|
2431
|
+
"iconColor": "{palette.color.greyCharcoal}",
|
|
2405
2432
|
"iconSize": "{palette.size.size24}",
|
|
2406
2433
|
"outerBackgroundColor": "{palette.color.transparent}",
|
|
2407
2434
|
"outerBorderColor": "{palette.color.transparent}",
|
|
@@ -3161,6 +3188,7 @@
|
|
|
3161
3188
|
"tokens": {
|
|
3162
3189
|
"alignItems": "{system.flexAlign.flexStart}",
|
|
3163
3190
|
"direction": "{system.direction.column}",
|
|
3191
|
+
"fieldSpace": "{system.integer.2}",
|
|
3164
3192
|
"flexGrow": "{system.integer.0}",
|
|
3165
3193
|
"flexShrink": "{system.integer.0}",
|
|
3166
3194
|
"justifyContent": "{system.flexJustifyContent.flexStart}",
|