@telus-uds/system-theme-tokens 2.56.0 → 2.58.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 +19 -2
- package/appearances.js +1 -0
- package/components.js +47 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,29 @@
|
|
|
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, 24 Jun 2024 16:19:28 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.58.0
|
|
8
|
+
|
|
9
|
+
Mon, 24 Jun 2024 16:19:28 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- Notification: new tokens added containerPaddingLeft and containerPaddingRight (35577399+JoshHC@users.noreply.github.com)
|
|
14
|
+
- `ActionCard`: add component (guillermo.peitzner@telus.com)
|
|
15
|
+
|
|
16
|
+
## 2.57.0
|
|
17
|
+
|
|
18
|
+
Fri, 07 Jun 2024 22:42:09 GMT
|
|
19
|
+
|
|
20
|
+
### Minor changes
|
|
21
|
+
|
|
22
|
+
- `List`: Add `itemTextColor` token (kristina.kirpichnikova@telus.com)
|
|
23
|
+
|
|
7
24
|
## 2.56.0
|
|
8
25
|
|
|
9
|
-
Fri, 17 May 2024 16:
|
|
26
|
+
Fri, 17 May 2024 16:34:46 GMT
|
|
10
27
|
|
|
11
28
|
### Minor changes
|
|
12
29
|
|
package/appearances.js
CHANGED
package/components.js
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
// Define the required components and their supported tokens
|
|
2
2
|
module.exports = {
|
|
3
|
+
ActionCard: {
|
|
4
|
+
actionIcon: 'icon',
|
|
5
|
+
actionIconColor: 'color',
|
|
6
|
+
actionIconMarginBottom: 'size',
|
|
7
|
+
actionIconMarginLeft: 'size',
|
|
8
|
+
actionIconMarginRight: 'size',
|
|
9
|
+
actionIconMarginTop: 'size',
|
|
10
|
+
actionIconTranslate: 'size',
|
|
11
|
+
backgroundColor: 'color',
|
|
12
|
+
borderColor: 'color',
|
|
13
|
+
borderRadius: 'radius',
|
|
14
|
+
borderWidth: 'border',
|
|
15
|
+
contentFontColor: 'color',
|
|
16
|
+
contentFontName: 'fontName',
|
|
17
|
+
contentFontSize: 'fontSize',
|
|
18
|
+
contentFontWeight: 'fontWeight',
|
|
19
|
+
contentLineHeight: 'lineHeight',
|
|
20
|
+
contentMarginBottom: 'size',
|
|
21
|
+
contentMarginLeft: 'size',
|
|
22
|
+
contentMarginRight: 'size',
|
|
23
|
+
contentMarginTop: 'size',
|
|
24
|
+
iconBackgroundColor: 'color',
|
|
25
|
+
iconColor: 'color',
|
|
26
|
+
iconMarginBottom: 'size',
|
|
27
|
+
iconMarginLeft: 'size',
|
|
28
|
+
iconMarginRight: 'size',
|
|
29
|
+
iconMarginTop: 'size',
|
|
30
|
+
paddingBottom: 'size',
|
|
31
|
+
paddingLeft: 'size',
|
|
32
|
+
paddingRight: 'size',
|
|
33
|
+
paddingTop: 'size',
|
|
34
|
+
statusIcon: 'icon',
|
|
35
|
+
statusIconColor: 'color',
|
|
36
|
+
titleFontColor: 'color',
|
|
37
|
+
titleFontName: 'fontName',
|
|
38
|
+
titleFontSize: 'fontSize',
|
|
39
|
+
titleFontWeight: 'fontWeight',
|
|
40
|
+
titleLineHeight: 'lineHeight',
|
|
41
|
+
titleMarginBottom: 'size',
|
|
42
|
+
titleMarginLeft: 'size',
|
|
43
|
+
titleMarginRight: 'size',
|
|
44
|
+
titleMarginTop: 'size'
|
|
45
|
+
},
|
|
3
46
|
SplashButton: {
|
|
4
47
|
playIcon: 'icon',
|
|
5
48
|
playIconColor: 'color',
|
|
@@ -974,6 +1017,7 @@ module.exports = {
|
|
|
974
1017
|
itemBulletContainerWidth: 'size',
|
|
975
1018
|
itemBulletContainerAlign: 'textAlign',
|
|
976
1019
|
itemBulletColor: 'color',
|
|
1020
|
+
itemTextColor: 'color',
|
|
977
1021
|
itemIconSize: 'size',
|
|
978
1022
|
itemIconColor: 'color',
|
|
979
1023
|
listGutter: 'size',
|
|
@@ -1134,7 +1178,9 @@ module.exports = {
|
|
|
1134
1178
|
dismissIcon: 'icon',
|
|
1135
1179
|
dismissIconColor: 'color',
|
|
1136
1180
|
dismissButtonGap: 'size',
|
|
1137
|
-
justifyContent: 'flexJustifyContent'
|
|
1181
|
+
justifyContent: 'flexJustifyContent',
|
|
1182
|
+
containerPaddingLeft: 'size',
|
|
1183
|
+
containerPaddingRight: 'size'
|
|
1138
1184
|
},
|
|
1139
1185
|
Pagination: {
|
|
1140
1186
|
gap: 'size',
|