@telus-uds/system-theme-tokens 2.60.0 → 2.62.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/appearances.js +10 -1
- package/components.js +2 -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 Thu, 22 Aug 2024 18:17:39 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.62.0
|
|
8
|
+
|
|
9
|
+
Thu, 22 Aug 2024 18:17:39 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- `Select`: Add `active` variant (Mauricio.BatresMontejo@telus.com)
|
|
14
|
+
|
|
15
|
+
## 2.61.0
|
|
16
|
+
|
|
17
|
+
Mon, 12 Aug 2024 06:35:32 GMT
|
|
18
|
+
|
|
19
|
+
### Minor changes
|
|
20
|
+
|
|
21
|
+
- OrderedList: add itemTextColor token (jacqui.koroll@telus.com)
|
|
22
|
+
|
|
7
23
|
## 2.60.0
|
|
8
24
|
|
|
9
|
-
Fri, 26 Jul 2024 21:
|
|
25
|
+
Fri, 26 Jul 2024 21:24:32 GMT
|
|
10
26
|
|
|
11
27
|
### Minor changes
|
|
12
28
|
|
package/appearances.js
CHANGED
|
@@ -215,7 +215,16 @@ module.exports = {
|
|
|
215
215
|
RadioCard: { pressed, checked, error, focus, hover, inactive },
|
|
216
216
|
Search: { hover, focus: inputFocus, inactive },
|
|
217
217
|
SearchButton: { hover, focus, pressed, inactive },
|
|
218
|
-
Select: {
|
|
218
|
+
Select: {
|
|
219
|
+
validation,
|
|
220
|
+
hover,
|
|
221
|
+
focus: inputFocus,
|
|
222
|
+
inactive,
|
|
223
|
+
active: {
|
|
224
|
+
values: [true],
|
|
225
|
+
type: 'state'
|
|
226
|
+
}
|
|
227
|
+
},
|
|
219
228
|
SideNavItem: {
|
|
220
229
|
active: {
|
|
221
230
|
description:
|
package/components.js
CHANGED
|
@@ -1100,7 +1100,8 @@ module.exports = {
|
|
|
1100
1100
|
itemFontWeight: 'fontWeight',
|
|
1101
1101
|
itemFontSize: 'fontSize',
|
|
1102
1102
|
itemLineHeight: 'lineHeight',
|
|
1103
|
-
itemColor: 'color'
|
|
1103
|
+
itemColor: 'color',
|
|
1104
|
+
itemTextColor: 'color'
|
|
1104
1105
|
},
|
|
1105
1106
|
Modal: {
|
|
1106
1107
|
backdropColor: 'color',
|