@telus-uds/theme-allium 3.1.2 → 3.2.2
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 +12 -4
- package/package.json +5 -5
- package/theme.json +5 -1
package/build/theme.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
*
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on
|
|
4
|
+
* Generated on Wed, 22 Jun 2022 16:26:52 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',
|
|
@@ -1092,11 +1093,17 @@ module.exports = {
|
|
|
1092
1093
|
rules: [
|
|
1093
1094
|
{
|
|
1094
1095
|
if: { size: 'large' },
|
|
1095
|
-
tokens: {
|
|
1096
|
+
tokens: {
|
|
1097
|
+
iconMarginTop: 8,
|
|
1098
|
+
itemFontSize: 20,
|
|
1099
|
+
itemLineHeight: 1.6,
|
|
1100
|
+
listGutter: 12
|
|
1101
|
+
}
|
|
1096
1102
|
},
|
|
1097
1103
|
{
|
|
1098
1104
|
if: { size: 'small' },
|
|
1099
1105
|
tokens: {
|
|
1106
|
+
iconMarginTop: 2,
|
|
1100
1107
|
itemFontSize: 14,
|
|
1101
1108
|
itemLineHeight: 1.42857142857,
|
|
1102
1109
|
listGutter: 12
|
|
@@ -1960,7 +1967,7 @@ module.exports = {
|
|
|
1960
1967
|
fontWeight: '400',
|
|
1961
1968
|
height: 48,
|
|
1962
1969
|
icon: PaletteIconCaretDown,
|
|
1963
|
-
iconColor: '#
|
|
1970
|
+
iconColor: '#414547',
|
|
1964
1971
|
iconSize: 24,
|
|
1965
1972
|
outerBackgroundColor: 'rgba(0, 0, 0, 0)',
|
|
1966
1973
|
outerBorderColor: 'rgba(0, 0, 0, 0)',
|
|
@@ -2657,6 +2664,7 @@ module.exports = {
|
|
|
2657
2664
|
tokens: {
|
|
2658
2665
|
alignItems: 'flex-start',
|
|
2659
2666
|
direction: 'column',
|
|
2667
|
+
fieldSpace: 2,
|
|
2660
2668
|
flexGrow: 0,
|
|
2661
2669
|
flexShrink: 0,
|
|
2662
2670
|
justifyContent: 'flex-start',
|
|
@@ -3035,5 +3043,5 @@ module.exports = {
|
|
|
3035
3043
|
tokens: { size: 96 }
|
|
3036
3044
|
}
|
|
3037
3045
|
},
|
|
3038
|
-
metadata: { name: 'theme-allium', themeTokensVersion: '
|
|
3046
|
+
metadata: { name: 'theme-allium', themeTokensVersion: '2.0.2' }
|
|
3039
3047
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telus-uds/theme-allium",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.2",
|
|
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}",
|
|
@@ -1502,6 +1503,7 @@
|
|
|
1502
1503
|
"size": "large"
|
|
1503
1504
|
},
|
|
1504
1505
|
"tokens": {
|
|
1506
|
+
"iconMarginTop": "{palette.size.size8}",
|
|
1505
1507
|
"itemFontSize": "{palette.fontSize.size20}",
|
|
1506
1508
|
"itemLineHeight": "{palette.lineHeight.ratio8to5}",
|
|
1507
1509
|
"listGutter": "{palette.size.size12}"
|
|
@@ -1512,6 +1514,7 @@
|
|
|
1512
1514
|
"size": "small"
|
|
1513
1515
|
},
|
|
1514
1516
|
"tokens": {
|
|
1517
|
+
"iconMarginTop": "{palette.size.size2}",
|
|
1515
1518
|
"itemFontSize": "{palette.fontSize.size14}",
|
|
1516
1519
|
"itemLineHeight": "{palette.lineHeight.ratio10to7}",
|
|
1517
1520
|
"listGutter": "{palette.size.size12}"
|
|
@@ -2427,7 +2430,7 @@
|
|
|
2427
2430
|
"fontWeight": "{palette.fontWeight.weight400}",
|
|
2428
2431
|
"height": "{palette.size.size48}",
|
|
2429
2432
|
"icon": "{palette.icon.CaretDown}",
|
|
2430
|
-
"iconColor": "{palette.color.
|
|
2433
|
+
"iconColor": "{palette.color.greyCharcoal}",
|
|
2431
2434
|
"iconSize": "{palette.size.size24}",
|
|
2432
2435
|
"outerBackgroundColor": "{palette.color.transparent}",
|
|
2433
2436
|
"outerBorderColor": "{palette.color.transparent}",
|
|
@@ -3187,6 +3190,7 @@
|
|
|
3187
3190
|
"tokens": {
|
|
3188
3191
|
"alignItems": "{system.flexAlign.flexStart}",
|
|
3189
3192
|
"direction": "{system.direction.column}",
|
|
3193
|
+
"fieldSpace": "{system.integer.2}",
|
|
3190
3194
|
"flexGrow": "{system.integer.0}",
|
|
3191
3195
|
"flexShrink": "{system.integer.0}",
|
|
3192
3196
|
"justifyContent": "{system.flexJustifyContent.flexStart}",
|