@telus-uds/system-theme-tokens 2.45.0 → 2.47.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 +22 -2
- package/appearances.js +1 -4
- package/components.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,32 @@
|
|
|
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, 01 Dec 2023 20:57:37 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.47.0
|
|
8
|
+
|
|
9
|
+
Fri, 01 Dec 2023 20:57:37 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- `Card`: Add interactive section states (shahzaibkhalidmalik@outlook.com)
|
|
14
|
+
|
|
15
|
+
### Patches
|
|
16
|
+
|
|
17
|
+
- add blocklineHeight to chevronLink system theme tokens (evander.owusu@telus.com)
|
|
18
|
+
|
|
19
|
+
## 2.46.0
|
|
20
|
+
|
|
21
|
+
Sat, 18 Nov 2023 02:32:49 GMT
|
|
22
|
+
|
|
23
|
+
### Minor changes
|
|
24
|
+
|
|
25
|
+
- incorrect schema on notification fixed (srikanthkhari@gmail.com)
|
|
26
|
+
|
|
7
27
|
## 2.45.0
|
|
8
28
|
|
|
9
|
-
Wed, 15 Nov 2023 18:
|
|
29
|
+
Wed, 15 Nov 2023 18:45:58 GMT
|
|
10
30
|
|
|
11
31
|
### Minor changes
|
|
12
32
|
|
package/appearances.js
CHANGED
|
@@ -91,6 +91,7 @@ module.exports = {
|
|
|
91
91
|
PreviewCard: { pressed, hover, focus },
|
|
92
92
|
ButtonDropdown: { focus, hover, pressed, inactive, selected, open },
|
|
93
93
|
ButtonGroupItem: { focus, hover, pressed, inactive, selected },
|
|
94
|
+
Card: { focus, hover, pressed },
|
|
94
95
|
CarouselTabsPanelItem: { focus, hover, pressed, inactive, selected },
|
|
95
96
|
CarouselThumbnail: { focus, hover, pressed },
|
|
96
97
|
Checkbox: { checked, error, focus, hover, inactive },
|
|
@@ -183,10 +184,6 @@ module.exports = {
|
|
|
183
184
|
system: {
|
|
184
185
|
values: [true],
|
|
185
186
|
type: 'state'
|
|
186
|
-
},
|
|
187
|
-
style: {
|
|
188
|
-
values: ['success', 'warning', 'error'],
|
|
189
|
-
type: 'state'
|
|
190
187
|
}
|
|
191
188
|
},
|
|
192
189
|
PaginationPageButton: { focus, hover, pressed, selected },
|
package/components.js
CHANGED