@telus-uds/system-theme-tokens 2.27.0 → 2.28.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 +10 -2
- package/components.js +24 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
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 Sat, 27 May 2023 00:37:34 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.28.0
|
|
8
|
+
|
|
9
|
+
Sat, 27 May 2023 00:37:34 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- feature:fieldset tokenization (samuraix221@hotmail.com)
|
|
14
|
+
|
|
7
15
|
## 2.27.0
|
|
8
16
|
|
|
9
|
-
Wed, 24 May 2023 23:
|
|
17
|
+
Wed, 24 May 2023 23:46:34 GMT
|
|
10
18
|
|
|
11
19
|
### Minor changes
|
|
12
20
|
|
package/components.js
CHANGED
|
@@ -619,6 +619,19 @@ module.exports = {
|
|
|
619
619
|
iconColor: 'color',
|
|
620
620
|
iconGap: 'size'
|
|
621
621
|
},
|
|
622
|
+
Fieldset: {
|
|
623
|
+
outlineWidth: 'border',
|
|
624
|
+
outlineColor: 'color',
|
|
625
|
+
borderTopLeftRadius: 'radius',
|
|
626
|
+
borderTopRightRadius: 'radius',
|
|
627
|
+
borderBottomLeftRadius: 'radius',
|
|
628
|
+
borderBottomRightRadius: 'radius',
|
|
629
|
+
paddingBottom: 'size',
|
|
630
|
+
paddingTop: 'size',
|
|
631
|
+
paddingLeft: 'size',
|
|
632
|
+
paddingRight: 'size',
|
|
633
|
+
outlineOffset: 'size'
|
|
634
|
+
},
|
|
622
635
|
HorizontalScrollButton: {
|
|
623
636
|
backgroundColor: 'color',
|
|
624
637
|
borderRadius: 'radius',
|
|
@@ -1110,7 +1123,17 @@ module.exports = {
|
|
|
1110
1123
|
// Fieldset
|
|
1111
1124
|
fieldSpace: 'integer'
|
|
1112
1125
|
},
|
|
1113
|
-
RadioGroup: {
|
|
1126
|
+
RadioGroup: {
|
|
1127
|
+
space: 'integer',
|
|
1128
|
+
fieldSpace: 'integer',
|
|
1129
|
+
showIcon: 'show',
|
|
1130
|
+
outlineWidth: 'border',
|
|
1131
|
+
borderBottomLeftRadius: 'radius',
|
|
1132
|
+
borderBottomRightRadius: 'radius',
|
|
1133
|
+
borderTopLeftRadius: 'radius',
|
|
1134
|
+
borderTopRightRadius: 'radius',
|
|
1135
|
+
outlineOffset: 'size'
|
|
1136
|
+
},
|
|
1114
1137
|
Ribbon: {
|
|
1115
1138
|
paddingLeft: 'size',
|
|
1116
1139
|
paddingRight: 'size',
|