@telus-uds/system-theme-tokens 2.6.0 → 2.7.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 +13 -2
- package/appearances.js +5 -0
- package/components.js +8 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
1
|
# Change Log - @telus-uds/system-theme-tokens
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 14 Oct 2022 19:26:37 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.7.0
|
|
8
|
+
|
|
9
|
+
Fri, 14 Oct 2022 19:26:37 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- Implementing hide label for pagination on larger screens (tiagohldb@gmail.com)
|
|
14
|
+
- feat: add tokens for TextInput buttons (ruslan.bredikhin@nearform.com)
|
|
15
|
+
- Update `Button` theme with `textLine` and `textLineStyle` (shahzaibkhalidmalik@outlook.com)
|
|
16
|
+
- Bump @telus-uds/system-constants to v1.1.0
|
|
17
|
+
|
|
7
18
|
## 2.6.0
|
|
8
19
|
|
|
9
|
-
Mon, 19 Sep 2022 22:
|
|
20
|
+
Mon, 19 Sep 2022 22:51:24 GMT
|
|
10
21
|
|
|
11
22
|
### Minor changes
|
|
12
23
|
|
package/appearances.js
CHANGED
|
@@ -127,6 +127,11 @@ module.exports = {
|
|
|
127
127
|
values: ['previous', 'next'],
|
|
128
128
|
description: "Determines which way does the button navigate in Pagination's context",
|
|
129
129
|
type: 'state'
|
|
130
|
+
},
|
|
131
|
+
compact: {
|
|
132
|
+
values: [true],
|
|
133
|
+
description: 'Determines if the "Next" and "Previous" labels should be omitted',
|
|
134
|
+
type: 'state'
|
|
130
135
|
}
|
|
131
136
|
},
|
|
132
137
|
ProgressBar: { inactive },
|
package/components.js
CHANGED
|
@@ -31,7 +31,9 @@ module.exports = {
|
|
|
31
31
|
outerBorderColor: 'color',
|
|
32
32
|
outerBorderWidth: 'border',
|
|
33
33
|
outerBorderGap: 'size',
|
|
34
|
-
outerBackgroundColor: 'color'
|
|
34
|
+
outerBackgroundColor: 'color',
|
|
35
|
+
textLine: 'textLine',
|
|
36
|
+
textLineStyle: 'textLineStyle'
|
|
35
37
|
},
|
|
36
38
|
ButtonGroup: {
|
|
37
39
|
space: 'integer',
|
|
@@ -383,7 +385,8 @@ module.exports = {
|
|
|
383
385
|
iconSize: 'size',
|
|
384
386
|
iconDisplace: 'size',
|
|
385
387
|
width: 'size',
|
|
386
|
-
textAlign: 'flexJustifyContent'
|
|
388
|
+
textAlign: 'flexJustifyContent',
|
|
389
|
+
displayLabel: 'show'
|
|
387
390
|
},
|
|
388
391
|
Progress: {
|
|
389
392
|
backgroundColor: 'color',
|
|
@@ -814,6 +817,9 @@ module.exports = {
|
|
|
814
817
|
borderWidth: 'border',
|
|
815
818
|
borderColor: 'color',
|
|
816
819
|
borderRadius: 'radius',
|
|
820
|
+
buttonSize: 'size',
|
|
821
|
+
buttonsGap: 'size',
|
|
822
|
+
buttonsPaddingRight: 'size',
|
|
817
823
|
paddingTop: 'size',
|
|
818
824
|
paddingBottom: 'size',
|
|
819
825
|
paddingLeft: 'size',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telus-uds/system-theme-tokens",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"description": "Theme token schema for UDS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"system"
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
"skip": true
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@telus-uds/system-constants": "^1.0
|
|
28
|
+
"@telus-uds/system-constants": "^1.1.0"
|
|
29
29
|
}
|
|
30
30
|
}
|