@telus-uds/theme-koodo 0.1.0-prerelease.0 → 1.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/CHANGELOG.md +127 -0
- package/README.md +1 -1
- package/build/schema.json +2607 -3508
- package/build/theme.js +25 -10
- package/package.json +6 -6
- package/theme.json +952 -937
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 Mon, 21 Mar 2022 20:22:31 GMT
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -745,6 +745,7 @@ module.exports = {
|
|
|
745
745
|
tokens: {
|
|
746
746
|
dividerColor: '#c9c8c8',
|
|
747
747
|
dividerSize: 1,
|
|
748
|
+
iconMarginTop: 4,
|
|
748
749
|
interItemMargin: 8,
|
|
749
750
|
interItemMarginWithDivider: 16,
|
|
750
751
|
itemBulletColor: '#7c1366',
|
|
@@ -1674,7 +1675,7 @@ module.exports = {
|
|
|
1674
1675
|
baseWidth: 40,
|
|
1675
1676
|
characters: 10,
|
|
1676
1677
|
color: '#666666',
|
|
1677
|
-
radius:
|
|
1678
|
+
radius: 99999999999999,
|
|
1678
1679
|
size: 2,
|
|
1679
1680
|
spaceBetweenLines: 4,
|
|
1680
1681
|
squareRadius: 4
|
|
@@ -1731,18 +1732,18 @@ module.exports = {
|
|
|
1731
1732
|
knobCurrentInnerSize: null,
|
|
1732
1733
|
knobCurrentPaddingLeft: null,
|
|
1733
1734
|
knobCurrentPaddingTop: null,
|
|
1734
|
-
knobSize:
|
|
1735
|
+
knobSize: 15,
|
|
1735
1736
|
labelColor: '#016b6a',
|
|
1736
1737
|
labelCurrentColor: '#016b6a',
|
|
1737
1738
|
labelCurrentFontName: 'StagSans',
|
|
1738
|
-
labelCurrentFontWeight: '
|
|
1739
|
+
labelCurrentFontWeight: '700',
|
|
1739
1740
|
labelDirection: 'row',
|
|
1740
1741
|
labelFontName: 'StagSans',
|
|
1741
1742
|
labelFontSize: 16,
|
|
1742
1743
|
labelFontWeight: '400',
|
|
1743
1744
|
labelGap: 4,
|
|
1744
1745
|
labelLineHeight: 1.5,
|
|
1745
|
-
labelMarginTop:
|
|
1746
|
+
labelMarginTop: 10,
|
|
1746
1747
|
labelPaddingLeft: 16,
|
|
1747
1748
|
labelPaddingRight: 16,
|
|
1748
1749
|
showStepLabel: false,
|
|
@@ -2103,6 +2104,12 @@ module.exports = {
|
|
|
2103
2104
|
icon: null,
|
|
2104
2105
|
iconColor: 'rgba(0, 0, 0, 0)',
|
|
2105
2106
|
iconSize: 16,
|
|
2107
|
+
labelColor: '#000000',
|
|
2108
|
+
labelFontName: 'StagSans',
|
|
2109
|
+
labelFontSize: 16,
|
|
2110
|
+
labelFontWeight: '400',
|
|
2111
|
+
labelLineHeight: 1.5,
|
|
2112
|
+
labelMarginLeft: 8,
|
|
2106
2113
|
opacity: 1,
|
|
2107
2114
|
outerBackgroundColor: 'rgba(0, 0, 0, 0)',
|
|
2108
2115
|
outerBorderColor: 'rgba(0, 0, 0, 0)',
|
|
@@ -2125,6 +2132,18 @@ module.exports = {
|
|
|
2125
2132
|
width: 64
|
|
2126
2133
|
}
|
|
2127
2134
|
},
|
|
2135
|
+
ToggleSwitchGroup: {
|
|
2136
|
+
appearances: {},
|
|
2137
|
+
rules: [],
|
|
2138
|
+
tokens: {
|
|
2139
|
+
alignItems: 'flex-start',
|
|
2140
|
+
direction: 'column',
|
|
2141
|
+
flexGrow: 0,
|
|
2142
|
+
flexShrink: 0,
|
|
2143
|
+
justifyContent: 'flex-start',
|
|
2144
|
+
space: 3
|
|
2145
|
+
}
|
|
2146
|
+
},
|
|
2128
2147
|
Tooltip: {
|
|
2129
2148
|
appearances: {},
|
|
2130
2149
|
rules: [],
|
|
@@ -2357,9 +2376,5 @@ module.exports = {
|
|
|
2357
2376
|
tokens: { size: 96 }
|
|
2358
2377
|
}
|
|
2359
2378
|
},
|
|
2360
|
-
metadata: {
|
|
2361
|
-
name: 'koodo',
|
|
2362
|
-
package: '@telus-uds/theme-koodo',
|
|
2363
|
-
themeTokensVersion: '0.0.2-prerelease.0'
|
|
2364
|
-
}
|
|
2379
|
+
metadata: { name: 'theme-koodo', themeTokensVersion: '1.2.1' }
|
|
2365
2380
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telus-uds/theme-koodo",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Koodo theme",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"koodo"
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {},
|
|
17
17
|
"peerDependencies": {
|
|
18
|
-
"@telus-uds/palette-koodo": "^0.1.0-prerelease.
|
|
18
|
+
"@telus-uds/palette-koodo": "^0.1.0-prerelease.4"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@telus-uds/palette-koodo": "^0.1.0-prerelease.
|
|
22
|
-
"@telus-uds/system-
|
|
23
|
-
"@telus-uds/system-
|
|
21
|
+
"@telus-uds/palette-koodo": "^0.1.0-prerelease.4",
|
|
22
|
+
"@telus-uds/system-theme-tokens": "^1.2.1",
|
|
23
|
+
"@telus-uds/system-themes": "^0.0.1"
|
|
24
24
|
},
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
30
|
"release": "standard-version",
|
|
31
|
-
"build": "
|
|
31
|
+
"build": "UDS_PALETTE=@telus-uds/palette-koodo system-themes-build",
|
|
32
32
|
"dev": "nodemon -w src -x 'yarn build'"
|
|
33
33
|
},
|
|
34
34
|
"bugs": {
|