@telus-uds/palette-allium 2.7.0 → 2.8.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/build/android/border.xml +1 -1
- package/build/android/color.xml +1 -1
- package/build/android/font_size.xml +1 -1
- package/build/android/radius.xml +1 -1
- package/build/android/size.xml +1 -1
- package/build/ios/Border.swift +1 -1
- package/build/ios/Color.swift +1 -1
- package/build/ios/FontSize.swift +1 -1
- package/build/ios/Radius.swift +1 -1
- package/build/ios/Size.swift +1 -1
- package/build/rn/icons/Grid.js +28 -0
- package/build/rn/icons/Grid.native.js +28 -0
- package/build/rn/icons/List.js +26 -0
- package/build/rn/icons/List.native.js +26 -0
- package/build/rn/icons/Modal.js +39 -0
- package/build/rn/icons/Modal.native.js +42 -0
- package/build/rn/icons/Replay.js +4 -3
- package/build/rn/icons/Replay.native.js +4 -3
- package/build/rn/icons/SmartWearSecurity.js +41 -0
- package/build/rn/icons/SmartWearSecurity.native.js +41 -0
- package/build/rn/icons/grid.icon.svg +6 -0
- package/build/rn/icons/index.js +4 -0
- package/build/rn/icons/list.icon.svg +8 -0
- package/build/rn/icons/modal.icon.svg +105 -0
- package/build/rn/icons/replay.icon.svg +5 -3
- package/build/rn/icons/smart-wear-security.icon.svg +1 -0
- package/build/rn/palette.js +5 -1
- package/build/web/fonts/fonts-cdn-family.css +7 -7
- package/build/web/fonts/fonts-cdn.css +7 -7
- package/build/web/fonts/fonts-local-family.css +7 -7
- package/build/web/fonts/fonts-local.css +7 -7
- package/build/web/fonts/{v2_7_0-HelveticaNow-300.otf → v2_8_1-HelveticaNow-300.otf} +0 -0
- package/build/web/fonts/{v2_7_0-HelveticaNow-400.woff → v2_8_1-HelveticaNow-400.woff} +0 -0
- package/build/web/fonts/{v2_7_0-HelveticaNow-500.woff → v2_8_1-HelveticaNow-500.woff} +0 -0
- package/build/web/fonts/{v2_7_0-HelveticaNow-700.woff → v2_8_1-HelveticaNow-700.woff} +0 -0
- package/build/web/fonts/{v2_7_0-HelveticaNowOTF-400.otf → v2_8_1-HelveticaNowOTF-400.otf} +0 -0
- package/build/web/fonts/{v2_7_0-HelveticaNowOTF-500.otf → v2_8_1-HelveticaNowOTF-500.otf} +0 -0
- package/build/web/fonts/{v2_7_0-HelveticaNowOTF-700.otf → v2_8_1-HelveticaNowOTF-700.otf} +0 -0
- package/build/web/icons/Grid.js +28 -0
- package/build/web/icons/List.js +26 -0
- package/build/web/icons/Modal.js +39 -0
- package/build/web/icons/Replay.js +4 -3
- package/build/web/icons/SmartWearSecurity.js +41 -0
- package/build/web/icons/grid.icon.svg +6 -0
- package/build/web/icons/index.js +4 -0
- package/build/web/icons/list.icon.svg +8 -0
- package/build/web/icons/modal.icon.svg +105 -0
- package/build/web/icons/replay.icon.svg +5 -3
- package/build/web/icons/smart-wear-security.icon.svg +1 -0
- package/build/web/palette.js +12 -8
- package/package.json +2 -2
- package/palette.json +17 -1
package/build/web/palette.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Fri, 14 Oct 2022 19:29:28 GMT
|
|
4
4
|
*/
|
|
5
5
|
module.exports = {
|
|
6
6
|
border: {
|
|
@@ -59,15 +59,15 @@ module.exports = {
|
|
|
59
59
|
},
|
|
60
60
|
font: {
|
|
61
61
|
HelveticaNow: {
|
|
62
|
-
300: '
|
|
63
|
-
400: '
|
|
64
|
-
500: '
|
|
65
|
-
700: '
|
|
62
|
+
300: 'v2_8_1-HelveticaNow-300.otf',
|
|
63
|
+
400: 'v2_8_1-HelveticaNow-400.woff',
|
|
64
|
+
500: 'v2_8_1-HelveticaNow-500.woff',
|
|
65
|
+
700: 'v2_8_1-HelveticaNow-700.woff'
|
|
66
66
|
},
|
|
67
67
|
HelveticaNowOTF: {
|
|
68
|
-
400: '
|
|
69
|
-
500: '
|
|
70
|
-
700: '
|
|
68
|
+
400: 'v2_8_1-HelveticaNowOTF-400.otf',
|
|
69
|
+
500: 'v2_8_1-HelveticaNowOTF-500.otf',
|
|
70
|
+
700: 'v2_8_1-HelveticaNowOTF-700.otf'
|
|
71
71
|
}
|
|
72
72
|
},
|
|
73
73
|
fontSize: {
|
|
@@ -177,6 +177,7 @@ module.exports = {
|
|
|
177
177
|
Gift: '@telus-uds/palette-allium/build/web/icons/gift.icon.svg',
|
|
178
178
|
Globe1: '@telus-uds/palette-allium/build/web/icons/globe1.icon.svg',
|
|
179
179
|
Globe2: '@telus-uds/palette-allium/build/web/icons/globe2.icon.svg',
|
|
180
|
+
Grid: '@telus-uds/palette-allium/build/web/icons/grid.icon.svg',
|
|
180
181
|
HeadBoth: '@telus-uds/palette-allium/build/web/icons/head-both.icon.svg',
|
|
181
182
|
HeadFemale: '@telus-uds/palette-allium/build/web/icons/head-female.icon.svg',
|
|
182
183
|
HeadMale: '@telus-uds/palette-allium/build/web/icons/head-male.icon.svg',
|
|
@@ -197,6 +198,7 @@ module.exports = {
|
|
|
197
198
|
Lifesaver: '@telus-uds/palette-allium/build/web/icons/lifesaver.icon.svg',
|
|
198
199
|
Lightbulb: '@telus-uds/palette-allium/build/web/icons/lightbulb.icon.svg',
|
|
199
200
|
LinkExternal: '@telus-uds/palette-allium/build/web/icons/link-external.icon.svg',
|
|
201
|
+
List: '@telus-uds/palette-allium/build/web/icons/list.icon.svg',
|
|
200
202
|
LocationAdd: '@telus-uds/palette-allium/build/web/icons/location-add.icon.svg',
|
|
201
203
|
LocationHome: '@telus-uds/palette-allium/build/web/icons/location-home.icon.svg',
|
|
202
204
|
LocationIneligible: '@telus-uds/palette-allium/build/web/icons/location-ineligible.icon.svg',
|
|
@@ -213,6 +215,7 @@ module.exports = {
|
|
|
213
215
|
Medical: '@telus-uds/palette-allium/build/web/icons/medical.icon.svg',
|
|
214
216
|
Messaging: '@telus-uds/palette-allium/build/web/icons/messaging.icon.svg',
|
|
215
217
|
Mobility: '@telus-uds/palette-allium/build/web/icons/mobility.icon.svg',
|
|
218
|
+
Modal: '@telus-uds/palette-allium/build/web/icons/modal.icon.svg',
|
|
216
219
|
Money: '@telus-uds/palette-allium/build/web/icons/money.icon.svg',
|
|
217
220
|
Movie: '@telus-uds/palette-allium/build/web/icons/movie.icon.svg',
|
|
218
221
|
Music: '@telus-uds/palette-allium/build/web/icons/music.icon.svg',
|
|
@@ -271,6 +274,7 @@ module.exports = {
|
|
|
271
274
|
SignPost: '@telus-uds/palette-allium/build/web/icons/sign-post.icon.svg',
|
|
272
275
|
Signal: '@telus-uds/palette-allium/build/web/icons/signal.icon.svg',
|
|
273
276
|
SimCard: '@telus-uds/palette-allium/build/web/icons/sim-card.icon.svg',
|
|
277
|
+
SmartWearSecurity: '@telus-uds/palette-allium/build/web/icons/smart-wear-security.icon.svg',
|
|
274
278
|
Soccer: '@telus-uds/palette-allium/build/web/icons/soccer.icon.svg',
|
|
275
279
|
Speaker: '@telus-uds/palette-allium/build/web/icons/speaker.icon.svg',
|
|
276
280
|
SpeakerPhone: '@telus-uds/palette-allium/build/web/icons/speaker-phone.icon.svg',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telus-uds/palette-allium",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.8.1",
|
|
4
4
|
"description": "Allium palette",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"keywords": [
|
|
@@ -27,6 +27,6 @@
|
|
|
27
27
|
"url": "https://github.com/telus/allium-design-system/issues"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@telus-uds/system-tokens": "^0.
|
|
30
|
+
"@telus-uds/system-tokens": "^0.5.0"
|
|
31
31
|
}
|
|
32
32
|
}
|
package/palette.json
CHANGED
|
@@ -719,6 +719,10 @@
|
|
|
719
719
|
"tags": ["Decorative", "General"],
|
|
720
720
|
"value": "icon/globe-2.svg"
|
|
721
721
|
},
|
|
722
|
+
"Grid": {
|
|
723
|
+
"tags": ["Interface"],
|
|
724
|
+
"value": "icon/grid.svg"
|
|
725
|
+
},
|
|
722
726
|
"HeadBoth": {
|
|
723
727
|
"tags": ["Decorative", "General"],
|
|
724
728
|
"value": "icon/head-both.svg"
|
|
@@ -797,6 +801,10 @@
|
|
|
797
801
|
"tags": ["Interface", "Links"],
|
|
798
802
|
"value": "icon/link-external.svg"
|
|
799
803
|
},
|
|
804
|
+
"List": {
|
|
805
|
+
"tags": ["Interface"],
|
|
806
|
+
"value": "icon/list.svg"
|
|
807
|
+
},
|
|
800
808
|
"LocationAdd": {
|
|
801
809
|
"tags": ["Interface", "Location"],
|
|
802
810
|
"value": "icon/location-add.svg"
|
|
@@ -859,6 +867,10 @@
|
|
|
859
867
|
"tags": ["Decorative", "ProductsServices"],
|
|
860
868
|
"value": "icon/mobility.svg"
|
|
861
869
|
},
|
|
870
|
+
"Modal": {
|
|
871
|
+
"tags": ["Interface", "Links"],
|
|
872
|
+
"value": "icon/modal.svg"
|
|
873
|
+
},
|
|
862
874
|
"Money": {
|
|
863
875
|
"tags": ["Decorative", "General"],
|
|
864
876
|
"value": "icon/money.svg"
|
|
@@ -1015,7 +1027,7 @@
|
|
|
1015
1027
|
"value": "icon/remote-control.svg"
|
|
1016
1028
|
},
|
|
1017
1029
|
"Replay": {
|
|
1018
|
-
"tags": ["Interface"
|
|
1030
|
+
"tags": ["Interface"],
|
|
1019
1031
|
"value": "icon/replay.svg"
|
|
1020
1032
|
},
|
|
1021
1033
|
"Router": {
|
|
@@ -1086,6 +1098,10 @@
|
|
|
1086
1098
|
"tags": ["Decorative", "MobilityHomePhone"],
|
|
1087
1099
|
"value": "icon/sim-card.svg"
|
|
1088
1100
|
},
|
|
1101
|
+
"SmartWearSecurity": {
|
|
1102
|
+
"tags": ["Decorative"],
|
|
1103
|
+
"value": "icon/smart-wear-security.svg"
|
|
1104
|
+
},
|
|
1089
1105
|
"Soccer": {
|
|
1090
1106
|
"tags": ["Decorative", "General"],
|
|
1091
1107
|
"value": "icon/soccer.svg"
|