@telus-uds/theme-koodo 2.0.0 → 3.0.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/schema.json +438 -375
- package/build/theme.js +13 -4
- package/package.json +4 -5
- package/theme.json +11 -2
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 Fri, 17 Jun 2022 16:22:53 GMT
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -209,6 +209,7 @@ module.exports = {
|
|
|
209
209
|
tokens: {
|
|
210
210
|
alignItems: 'center',
|
|
211
211
|
direction: 'row',
|
|
212
|
+
fieldSpace: 2,
|
|
212
213
|
flexGrow: 0,
|
|
213
214
|
flexShrink: 0,
|
|
214
215
|
justifyContent: 'flex-start',
|
|
@@ -566,7 +567,13 @@ module.exports = {
|
|
|
566
567
|
borderRadius: 32,
|
|
567
568
|
borderWidth: 1,
|
|
568
569
|
iconColor: '#016b6a',
|
|
570
|
+
iconScale: 1,
|
|
569
571
|
iconSize: 16,
|
|
572
|
+
iconTranslateX: 0,
|
|
573
|
+
iconTranslateY: 0,
|
|
574
|
+
outerBorderColor: 'transparent',
|
|
575
|
+
outerBorderGap: 0,
|
|
576
|
+
outerBorderWidth: 0,
|
|
570
577
|
padding: 8,
|
|
571
578
|
shadow: null
|
|
572
579
|
}
|
|
@@ -806,6 +813,7 @@ module.exports = {
|
|
|
806
813
|
closeIcon: PaletteIconTimes,
|
|
807
814
|
closeIconColor: '#000000',
|
|
808
815
|
closeIconSize: 24,
|
|
816
|
+
closePadding: 4,
|
|
809
817
|
containerPaddingBottom: 0,
|
|
810
818
|
containerPaddingLeft: 0,
|
|
811
819
|
containerPaddingRight: 0,
|
|
@@ -1514,7 +1522,7 @@ module.exports = {
|
|
|
1514
1522
|
],
|
|
1515
1523
|
tokens: {
|
|
1516
1524
|
backgroundColor: '#ffffff',
|
|
1517
|
-
borderColor: '#
|
|
1525
|
+
borderColor: '#000000',
|
|
1518
1526
|
borderRadius: 4,
|
|
1519
1527
|
borderWidth: 1,
|
|
1520
1528
|
color: '#000000',
|
|
@@ -1523,7 +1531,7 @@ module.exports = {
|
|
|
1523
1531
|
fontWeight: '400',
|
|
1524
1532
|
height: 48,
|
|
1525
1533
|
icon: PaletteIconChevronDown,
|
|
1526
|
-
iconColor: '#
|
|
1534
|
+
iconColor: '#000000',
|
|
1527
1535
|
iconSize: 24,
|
|
1528
1536
|
outerBackgroundColor: 'rgba(0, 0, 0, 0)',
|
|
1529
1537
|
outerBorderColor: 'rgba(0, 0, 0, 0)',
|
|
@@ -2130,6 +2138,7 @@ module.exports = {
|
|
|
2130
2138
|
tokens: {
|
|
2131
2139
|
alignItems: 'flex-start',
|
|
2132
2140
|
direction: 'column',
|
|
2141
|
+
fieldSpace: 2,
|
|
2133
2142
|
flexGrow: 0,
|
|
2134
2143
|
flexShrink: 0,
|
|
2135
2144
|
justifyContent: 'flex-start',
|
|
@@ -2368,5 +2377,5 @@ module.exports = {
|
|
|
2368
2377
|
tokens: { size: 96 }
|
|
2369
2378
|
}
|
|
2370
2379
|
},
|
|
2371
|
-
metadata: { name: 'theme-koodo', themeTokensVersion: '
|
|
2380
|
+
metadata: { name: 'theme-koodo', themeTokensVersion: '2.0.2' }
|
|
2372
2381
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telus-uds/theme-koodo",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Koodo theme",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"koodo"
|
|
@@ -13,13 +13,12 @@
|
|
|
13
13
|
"build",
|
|
14
14
|
"theme.json"
|
|
15
15
|
],
|
|
16
|
-
"dependencies": {},
|
|
17
16
|
"peerDependencies": {
|
|
18
|
-
"@telus-uds/palette-koodo": "^0.1.
|
|
17
|
+
"@telus-uds/palette-koodo": "^0.1.2"
|
|
19
18
|
},
|
|
20
19
|
"devDependencies": {
|
|
21
|
-
"@telus-uds/palette-koodo": "^0.1.
|
|
22
|
-
"@telus-uds/system-theme-tokens": "^
|
|
20
|
+
"@telus-uds/palette-koodo": "^0.1.2",
|
|
21
|
+
"@telus-uds/system-theme-tokens": "^2.0.2"
|
|
23
22
|
},
|
|
24
23
|
"repository": {
|
|
25
24
|
"type": "git",
|
package/theme.json
CHANGED
|
@@ -242,6 +242,7 @@
|
|
|
242
242
|
"tokens": {
|
|
243
243
|
"alignItems": "{system.flexAlign.center}",
|
|
244
244
|
"direction": "{system.direction.row}",
|
|
245
|
+
"fieldSpace": "{system.integer.2}",
|
|
245
246
|
"flexGrow": "{system.integer.0}",
|
|
246
247
|
"flexShrink": "{system.integer.0}",
|
|
247
248
|
"justifyContent": "{system.flexJustifyContent.flexStart}",
|
|
@@ -608,7 +609,13 @@
|
|
|
608
609
|
"borderRadius": "{palette.radius.pill32}",
|
|
609
610
|
"borderWidth": "{palette.border.border1}",
|
|
610
611
|
"iconColor": "{palette.color.mosque}",
|
|
612
|
+
"iconScale": "{system.iconScale.scale1}",
|
|
611
613
|
"iconSize": "{palette.size.size16}",
|
|
614
|
+
"iconTranslateX": "{system.size.zero}",
|
|
615
|
+
"iconTranslateY": "{system.size.zero}",
|
|
616
|
+
"outerBorderColor": "{system.color.transparent}",
|
|
617
|
+
"outerBorderGap": "{system.size.zero}",
|
|
618
|
+
"outerBorderWidth": "{system.border.zero}",
|
|
612
619
|
"padding": "{palette.size.size8}",
|
|
613
620
|
"shadow": "{system.shadow.none}"
|
|
614
621
|
}
|
|
@@ -935,6 +942,7 @@
|
|
|
935
942
|
"closeIcon": "{palette.icon.Times}",
|
|
936
943
|
"closeIconColor": "{palette.color.black}",
|
|
937
944
|
"closeIconSize": "{palette.size.size24}",
|
|
945
|
+
"closePadding": "{palette.size.size4}",
|
|
938
946
|
"containerPaddingBottom": "{system.size.zero}",
|
|
939
947
|
"containerPaddingLeft": "{system.size.zero}",
|
|
940
948
|
"containerPaddingRight": "{system.size.zero}",
|
|
@@ -1670,7 +1678,7 @@
|
|
|
1670
1678
|
],
|
|
1671
1679
|
"tokens": {
|
|
1672
1680
|
"backgroundColor": "{palette.color.white}",
|
|
1673
|
-
"borderColor": "{palette.color.
|
|
1681
|
+
"borderColor": "{palette.color.black}",
|
|
1674
1682
|
"borderRadius": "{palette.radius.radius4}",
|
|
1675
1683
|
"borderWidth": "{palette.border.border1}",
|
|
1676
1684
|
"color": "{palette.color.black}",
|
|
@@ -1679,7 +1687,7 @@
|
|
|
1679
1687
|
"fontWeight": "{palette.fontWeight.weight400}",
|
|
1680
1688
|
"height": "{palette.size.size48}",
|
|
1681
1689
|
"icon": "{palette.icon.ChevronDown}",
|
|
1682
|
-
"iconColor": "{palette.color.
|
|
1690
|
+
"iconColor": "{palette.color.black}",
|
|
1683
1691
|
"iconSize": "{palette.size.size24}",
|
|
1684
1692
|
"outerBackgroundColor": "{palette.color.transparent}",
|
|
1685
1693
|
"outerBorderColor": "{palette.color.transparent}",
|
|
@@ -2344,6 +2352,7 @@
|
|
|
2344
2352
|
"tokens": {
|
|
2345
2353
|
"alignItems": "{system.flexAlign.flexStart}",
|
|
2346
2354
|
"direction": "{system.direction.column}",
|
|
2355
|
+
"fieldSpace": "{system.integer.2}",
|
|
2347
2356
|
"flexGrow": "{system.integer.0}",
|
|
2348
2357
|
"flexShrink": "{system.integer.0}",
|
|
2349
2358
|
"justifyContent": "{system.flexJustifyContent.flexStart}",
|