@telus-uds/system-theme-tokens 2.57.0 → 2.59.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 Thu, 04 Jul 2024 19:28:59 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.59.0
|
|
8
|
+
|
|
9
|
+
Thu, 04 Jul 2024 19:28:59 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- `OrderedList`: add item-bullet-text-align token (guillermo.peitzner@telus.com)
|
|
14
|
+
|
|
15
|
+
## 2.58.0
|
|
16
|
+
|
|
17
|
+
Mon, 24 Jun 2024 16:28:34 GMT
|
|
18
|
+
|
|
19
|
+
### Minor changes
|
|
20
|
+
|
|
21
|
+
- Notification: new tokens added containerPaddingLeft and containerPaddingRight (35577399+JoshHC@users.noreply.github.com)
|
|
22
|
+
- `ActionCard`: add component (guillermo.peitzner@telus.com)
|
|
23
|
+
|
|
7
24
|
## 2.57.0
|
|
8
25
|
|
|
9
|
-
Fri, 07 Jun 2024 22:
|
|
26
|
+
Fri, 07 Jun 2024 22:42:09 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',
|
|
@@ -1030,6 +1073,7 @@ module.exports = {
|
|
|
1030
1073
|
itemPaddingTop: 'size',
|
|
1031
1074
|
itemBulletWidth: 'size',
|
|
1032
1075
|
itemBulletHeight: 'size',
|
|
1076
|
+
itemBulletTextAlign: 'textAlign',
|
|
1033
1077
|
itemBulletContainerWidth: 'size',
|
|
1034
1078
|
interItemMargin: 'size',
|
|
1035
1079
|
listGutter: 'size',
|
|
@@ -1135,7 +1179,9 @@ module.exports = {
|
|
|
1135
1179
|
dismissIcon: 'icon',
|
|
1136
1180
|
dismissIconColor: 'color',
|
|
1137
1181
|
dismissButtonGap: 'size',
|
|
1138
|
-
justifyContent: 'flexJustifyContent'
|
|
1182
|
+
justifyContent: 'flexJustifyContent',
|
|
1183
|
+
containerPaddingLeft: 'size',
|
|
1184
|
+
containerPaddingRight: 'size'
|
|
1139
1185
|
},
|
|
1140
1186
|
Pagination: {
|
|
1141
1187
|
gap: 'size',
|