@telus-uds/theme-public-mobile 1.5.0 → 1.6.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/build/schema.json +22 -0
- package/build/theme.js +5 -2
- package/package.json +2 -2
- package/theme.json +3 -0
package/build/schema.json
CHANGED
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"{appearances.Link.pressed}",
|
|
46
46
|
"{appearances.Link.iconPosition}",
|
|
47
47
|
"{appearances.Modal.maxWidth}",
|
|
48
|
+
"{appearances.Modal.width}",
|
|
48
49
|
"{appearances.Notification.system}",
|
|
49
50
|
"{appearances.Notification.style}",
|
|
50
51
|
"{appearances.PaginationPageButton.focus}",
|
|
@@ -1257,6 +1258,15 @@
|
|
|
1257
1258
|
"minWidth": {
|
|
1258
1259
|
"$ref": "#size"
|
|
1259
1260
|
},
|
|
1261
|
+
"iconSize": {
|
|
1262
|
+
"$ref": "#size"
|
|
1263
|
+
},
|
|
1264
|
+
"iconSpace": {
|
|
1265
|
+
"$ref": "#integer"
|
|
1266
|
+
},
|
|
1267
|
+
"icon": {
|
|
1268
|
+
"$ref": "#icon"
|
|
1269
|
+
},
|
|
1260
1270
|
"outerBorderColor": {
|
|
1261
1271
|
"$ref": "#color"
|
|
1262
1272
|
},
|
|
@@ -1290,6 +1300,9 @@
|
|
|
1290
1300
|
"paddingBottom",
|
|
1291
1301
|
"width",
|
|
1292
1302
|
"minWidth",
|
|
1303
|
+
"iconSize",
|
|
1304
|
+
"iconSpace",
|
|
1305
|
+
"icon",
|
|
1293
1306
|
"outerBorderColor",
|
|
1294
1307
|
"outerBorderWidth",
|
|
1295
1308
|
"outerBorderGap",
|
|
@@ -1367,6 +1380,15 @@
|
|
|
1367
1380
|
"minWidth": {
|
|
1368
1381
|
"$ref": "#size"
|
|
1369
1382
|
},
|
|
1383
|
+
"iconSize": {
|
|
1384
|
+
"$ref": "#size"
|
|
1385
|
+
},
|
|
1386
|
+
"iconSpace": {
|
|
1387
|
+
"$ref": "#integer"
|
|
1388
|
+
},
|
|
1389
|
+
"icon": {
|
|
1390
|
+
"$ref": "#icon"
|
|
1391
|
+
},
|
|
1370
1392
|
"outerBorderColor": {
|
|
1371
1393
|
"$ref": "#color"
|
|
1372
1394
|
},
|
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 Tue, 23 Aug 2022 19:30:00 GMT
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -146,6 +146,9 @@ module.exports = {
|
|
|
146
146
|
fontName: 'CerebriSans',
|
|
147
147
|
fontSize: 18,
|
|
148
148
|
fontWeight: '700',
|
|
149
|
+
icon: null,
|
|
150
|
+
iconSize: 24,
|
|
151
|
+
iconSpace: 2,
|
|
149
152
|
lineHeight: 1,
|
|
150
153
|
minWidth: 0,
|
|
151
154
|
opacity: 1,
|
|
@@ -2335,5 +2338,5 @@ module.exports = {
|
|
|
2335
2338
|
tokens: { size: 90 }
|
|
2336
2339
|
}
|
|
2337
2340
|
},
|
|
2338
|
-
metadata: { name: 'theme-public-mobile', themeTokensVersion: '2.
|
|
2341
|
+
metadata: { name: 'theme-public-mobile', themeTokensVersion: '2.4.0' }
|
|
2339
2342
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telus-uds/theme-public-mobile",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "Public Mobile theme",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"public mobile"
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
],
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@telus-uds/palette-public-mobile": "^0.2.0",
|
|
18
|
-
"@telus-uds/system-theme-tokens": "^2.
|
|
18
|
+
"@telus-uds/system-theme-tokens": "^2.4.0"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"@telus-uds/palette-public-mobile": "^0.2.0"
|
package/theme.json
CHANGED
|
@@ -155,6 +155,9 @@
|
|
|
155
155
|
"fontName": "{palette.fontName.CerebriSans}",
|
|
156
156
|
"fontSize": "{palette.fontSize.size18}",
|
|
157
157
|
"fontWeight": "{palette.fontWeight.weight700}",
|
|
158
|
+
"icon": "{system.icon.none}",
|
|
159
|
+
"iconSize": "{palette.size.size24}",
|
|
160
|
+
"iconSpace": "{system.integer.2}",
|
|
158
161
|
"lineHeight": "{palette.lineHeight.multiply100}",
|
|
159
162
|
"minWidth": "{system.size.zero}",
|
|
160
163
|
"opacity": "{system.opacity.opaque}",
|