@telus-uds/system-theme-tokens 2.59.0 → 2.61.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 +18 -2
- package/components.js +21 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,28 @@
|
|
|
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 Mon, 12 Aug 2024 06:26:58 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.61.0
|
|
8
|
+
|
|
9
|
+
Mon, 12 Aug 2024 06:26:58 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- OrderedList: add itemTextColor token (jacqui.koroll@telus.com)
|
|
14
|
+
|
|
15
|
+
## 2.60.0
|
|
16
|
+
|
|
17
|
+
Fri, 26 Jul 2024 21:24:32 GMT
|
|
18
|
+
|
|
19
|
+
### Minor changes
|
|
20
|
+
|
|
21
|
+
- `Status`: add component's tokens (guillermo.peitzner@telus.com)
|
|
22
|
+
|
|
7
23
|
## 2.59.0
|
|
8
24
|
|
|
9
|
-
Thu, 04 Jul 2024 19:
|
|
25
|
+
Thu, 04 Jul 2024 19:35:15 GMT
|
|
10
26
|
|
|
11
27
|
### Minor changes
|
|
12
28
|
|
package/components.js
CHANGED
|
@@ -131,6 +131,25 @@ module.exports = {
|
|
|
131
131
|
size: 'size',
|
|
132
132
|
thickness: 'border'
|
|
133
133
|
},
|
|
134
|
+
Status: {
|
|
135
|
+
backgroundColor: 'color',
|
|
136
|
+
backgroundGradient: 'gradient',
|
|
137
|
+
borderColor: 'color',
|
|
138
|
+
borderRadius: 'radius',
|
|
139
|
+
borderWidth: 'border',
|
|
140
|
+
fontName: 'fontName',
|
|
141
|
+
fontSize: 'fontSize',
|
|
142
|
+
fontWeight: 'fontWeight',
|
|
143
|
+
icon: 'icon',
|
|
144
|
+
iconColor: 'color',
|
|
145
|
+
iconGradient: 'gradient',
|
|
146
|
+
paddingBottom: 'size',
|
|
147
|
+
paddingLeft: 'size',
|
|
148
|
+
paddingRight: 'size',
|
|
149
|
+
paddingTop: 'size',
|
|
150
|
+
textColor: 'color',
|
|
151
|
+
textLineHeight: 'lineHeight'
|
|
152
|
+
},
|
|
134
153
|
Video: {
|
|
135
154
|
borderColor: 'color',
|
|
136
155
|
pauseIcon: 'icon',
|
|
@@ -1081,7 +1100,8 @@ module.exports = {
|
|
|
1081
1100
|
itemFontWeight: 'fontWeight',
|
|
1082
1101
|
itemFontSize: 'fontSize',
|
|
1083
1102
|
itemLineHeight: 'lineHeight',
|
|
1084
|
-
itemColor: 'color'
|
|
1103
|
+
itemColor: 'color',
|
|
1104
|
+
itemTextColor: 'color'
|
|
1085
1105
|
},
|
|
1086
1106
|
Modal: {
|
|
1087
1107
|
backdropColor: 'color',
|