@telus-uds/theme-allium 4.12.1 → 4.13.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 +938 -931
- package/build/android/theme.json +39 -7
- package/build/ios/schema.json +938 -931
- package/build/ios/theme.json +39 -7
- package/build/rn/schema.json +938 -931
- package/build/rn/theme.js +17 -6
- package/package.json +5 -5
- package/theme.json +32 -4
package/build/rn/theme.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
*
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on
|
|
4
|
+
* Generated on Tue, 12 Sep 2023 15:30:42 GMT
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -4629,7 +4629,7 @@ module.exports = {
|
|
|
4629
4629
|
borderColor: '#2b8000',
|
|
4630
4630
|
feedbackBackgroundColor: '#f4f9f2',
|
|
4631
4631
|
validationIcon: PaletteIconStatusSuccess,
|
|
4632
|
-
validationIconColor: '#
|
|
4632
|
+
validationIconColor: '#2b8000'
|
|
4633
4633
|
}
|
|
4634
4634
|
},
|
|
4635
4635
|
{
|
|
@@ -6595,12 +6595,23 @@ module.exports = {
|
|
|
6595
6595
|
}
|
|
6596
6596
|
},
|
|
6597
6597
|
WaffleGrid: {
|
|
6598
|
-
appearances: {
|
|
6599
|
-
|
|
6598
|
+
appearances: {
|
|
6599
|
+
viewport: {
|
|
6600
|
+
description: 'The size label for the current screen viewport based on the current screen width',
|
|
6601
|
+
type: 'state',
|
|
6602
|
+
values: [ 'xs', 'sm', 'md', 'lg', 'xl' ]
|
|
6603
|
+
}
|
|
6604
|
+
},
|
|
6605
|
+
rules: [
|
|
6606
|
+
{ if: { viewport: [ 'xs' ] }, tokens: { rowSize: 2 } },
|
|
6607
|
+
{ if: { viewport: [ 'sm', 'md' ] }, tokens: { rowSize: 3 } },
|
|
6608
|
+
{ if: { viewport: [ 'lg', 'xl' ] }, tokens: { rowSize: 6 } }
|
|
6609
|
+
],
|
|
6600
6610
|
tokens: {
|
|
6601
6611
|
itemBorderColor: '#b2b9bf',
|
|
6602
6612
|
itemPadding: 16,
|
|
6603
|
-
rowBorderWidth: 1
|
|
6613
|
+
rowBorderWidth: 1,
|
|
6614
|
+
rowSize: 6
|
|
6604
6615
|
}
|
|
6605
6616
|
},
|
|
6606
6617
|
spacingScale: {
|
|
@@ -6663,5 +6674,5 @@ module.exports = {
|
|
|
6663
6674
|
tokens: { size: 96 }
|
|
6664
6675
|
}
|
|
6665
6676
|
},
|
|
6666
|
-
metadata: { name: 'theme-allium', themeTokensVersion: '2.41.
|
|
6677
|
+
metadata: { name: 'theme-allium', themeTokensVersion: '2.41.1' }
|
|
6667
6678
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telus-uds/theme-allium",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.13.0",
|
|
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/rn/theme.js",
|
|
9
9
|
"dependencies": {},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@telus-uds/palette-allium": "^2.24.
|
|
12
|
-
"@telus-uds/system-theme-tokens": "^2.41.
|
|
13
|
-
"@telus-uds/system-tokens": "^0.7.
|
|
11
|
+
"@telus-uds/palette-allium": "^2.24.5",
|
|
12
|
+
"@telus-uds/system-theme-tokens": "^2.41.1",
|
|
13
|
+
"@telus-uds/system-tokens": "^0.7.22"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"@telus-uds/palette-allium": "^2.24.
|
|
16
|
+
"@telus-uds/palette-allium": "^2.24.5"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"build",
|
package/theme.json
CHANGED
|
@@ -5662,7 +5662,7 @@
|
|
|
5662
5662
|
"borderColor": "{palette.color.greenAccessible}",
|
|
5663
5663
|
"feedbackBackgroundColor": "{palette.color.greenPanache}",
|
|
5664
5664
|
"validationIcon": "{palette.icon.StatusSuccess}",
|
|
5665
|
-
"validationIconColor": "{palette.color.
|
|
5665
|
+
"validationIconColor": "{palette.color.greenAccessible}"
|
|
5666
5666
|
}
|
|
5667
5667
|
},
|
|
5668
5668
|
{
|
|
@@ -8034,12 +8034,40 @@
|
|
|
8034
8034
|
}
|
|
8035
8035
|
},
|
|
8036
8036
|
"WaffleGrid": {
|
|
8037
|
-
"appearances": {
|
|
8038
|
-
|
|
8037
|
+
"appearances": {
|
|
8038
|
+
"viewport": "{appearances.system.viewport}"
|
|
8039
|
+
},
|
|
8040
|
+
"rules": [
|
|
8041
|
+
{
|
|
8042
|
+
"if": {
|
|
8043
|
+
"viewport": ["xs"]
|
|
8044
|
+
},
|
|
8045
|
+
"tokens": {
|
|
8046
|
+
"rowSize": "{system.integer.2}"
|
|
8047
|
+
}
|
|
8048
|
+
},
|
|
8049
|
+
{
|
|
8050
|
+
"if": {
|
|
8051
|
+
"viewport": ["sm", "md"]
|
|
8052
|
+
},
|
|
8053
|
+
"tokens": {
|
|
8054
|
+
"rowSize": "{system.integer.3}"
|
|
8055
|
+
}
|
|
8056
|
+
},
|
|
8057
|
+
{
|
|
8058
|
+
"if": {
|
|
8059
|
+
"viewport": ["lg", "xl"]
|
|
8060
|
+
},
|
|
8061
|
+
"tokens": {
|
|
8062
|
+
"rowSize": "{system.integer.6}"
|
|
8063
|
+
}
|
|
8064
|
+
}
|
|
8065
|
+
],
|
|
8039
8066
|
"tokens": {
|
|
8040
8067
|
"itemBorderColor": "{palette.color.greyCloud}",
|
|
8041
8068
|
"itemPadding": "{palette.size.size16}",
|
|
8042
|
-
"rowBorderWidth": "{palette.border.border1}"
|
|
8069
|
+
"rowBorderWidth": "{palette.border.border1}",
|
|
8070
|
+
"rowSize": "{system.integer.6}"
|
|
8043
8071
|
}
|
|
8044
8072
|
},
|
|
8045
8073
|
"spacingScale": {
|