@telus-uds/theme-koodo 3.2.0 → 3.3.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/README.md +1 -1
- package/build/schema.json +21 -0
- package/build/theme.js +5 -2
- package/package.json +2 -2
- package/theme.json +3 -0
package/README.md
CHANGED
package/build/schema.json
CHANGED
|
@@ -1392,6 +1392,15 @@
|
|
|
1392
1392
|
"minWidth": {
|
|
1393
1393
|
"$ref": "#size"
|
|
1394
1394
|
},
|
|
1395
|
+
"iconSize": {
|
|
1396
|
+
"$ref": "#size"
|
|
1397
|
+
},
|
|
1398
|
+
"iconSpace": {
|
|
1399
|
+
"$ref": "#integer"
|
|
1400
|
+
},
|
|
1401
|
+
"icon": {
|
|
1402
|
+
"$ref": "#icon"
|
|
1403
|
+
},
|
|
1395
1404
|
"outerBorderColor": {
|
|
1396
1405
|
"$ref": "#color"
|
|
1397
1406
|
},
|
|
@@ -1425,6 +1434,9 @@
|
|
|
1425
1434
|
"paddingBottom",
|
|
1426
1435
|
"width",
|
|
1427
1436
|
"minWidth",
|
|
1437
|
+
"iconSize",
|
|
1438
|
+
"iconSpace",
|
|
1439
|
+
"icon",
|
|
1428
1440
|
"outerBorderColor",
|
|
1429
1441
|
"outerBorderWidth",
|
|
1430
1442
|
"outerBorderGap",
|
|
@@ -1502,6 +1514,15 @@
|
|
|
1502
1514
|
"minWidth": {
|
|
1503
1515
|
"$ref": "#size"
|
|
1504
1516
|
},
|
|
1517
|
+
"iconSize": {
|
|
1518
|
+
"$ref": "#size"
|
|
1519
|
+
},
|
|
1520
|
+
"iconSpace": {
|
|
1521
|
+
"$ref": "#integer"
|
|
1522
|
+
},
|
|
1523
|
+
"icon": {
|
|
1524
|
+
"$ref": "#icon"
|
|
1525
|
+
},
|
|
1505
1526
|
"outerBorderColor": {
|
|
1506
1527
|
"$ref": "#color"
|
|
1507
1528
|
},
|
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, 17 Aug 2022 20:48:18 GMT
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -187,6 +187,9 @@ module.exports = {
|
|
|
187
187
|
fontName: 'StagSans',
|
|
188
188
|
fontSize: 16,
|
|
189
189
|
fontWeight: '600',
|
|
190
|
+
icon: null,
|
|
191
|
+
iconSize: 24,
|
|
192
|
+
iconSpace: 2,
|
|
190
193
|
lineHeight: 1.5,
|
|
191
194
|
minWidth: 0,
|
|
192
195
|
opacity: 1,
|
|
@@ -2520,5 +2523,5 @@ module.exports = {
|
|
|
2520
2523
|
tokens: { size: 96 }
|
|
2521
2524
|
}
|
|
2522
2525
|
},
|
|
2523
|
-
metadata: { name: 'theme-koodo', themeTokensVersion: '2.
|
|
2526
|
+
metadata: { name: 'theme-koodo', themeTokensVersion: '2.3.0' }
|
|
2524
2527
|
}
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"description": "Koodo theme",
|
|
7
7
|
"devDependencies": {
|
|
8
8
|
"@telus-uds/palette-koodo": "^0.1.2",
|
|
9
|
-
"@telus-uds/system-theme-tokens": "^2.
|
|
9
|
+
"@telus-uds/system-theme-tokens": "^2.3.0"
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
12
|
"build",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"build": "UDS_PALETTE=@telus-uds/palette-koodo system-tokens-build-theme",
|
|
32
32
|
"dev": "nodemon -w src -x 'npm run build'"
|
|
33
33
|
},
|
|
34
|
-
"version": "3.
|
|
34
|
+
"version": "3.3.0"
|
|
35
35
|
}
|
package/theme.json
CHANGED
|
@@ -220,6 +220,9 @@
|
|
|
220
220
|
"fontName": "{palette.fontName.StagSans}",
|
|
221
221
|
"fontSize": "{palette.fontSize.size16}",
|
|
222
222
|
"fontWeight": "{palette.fontWeight.weight600}",
|
|
223
|
+
"icon": "{system.icon.none}",
|
|
224
|
+
"iconSize": "{palette.size.size24}",
|
|
225
|
+
"iconSpace": "{system.integer.2}",
|
|
223
226
|
"lineHeight": "{palette.lineHeight.multiply150}",
|
|
224
227
|
"minWidth": "{system.size.zero}",
|
|
225
228
|
"opacity": "{system.opacity.opaque}",
|