@telus-uds/system-theme-tokens 2.40.0 → 2.41.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 +11 -2
- package/components.js +6 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
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 Tue, 08 Aug 2023 23:51:39 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.41.0
|
|
8
|
+
|
|
9
|
+
Tue, 08 Aug 2023 23:51:39 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- Add fontColor token to Table (wlsdud194@hotmail.com)
|
|
14
|
+
- Koodo rebranding for PriceLockup (wlsdud194@hotmail.com)
|
|
15
|
+
|
|
7
16
|
## 2.40.0
|
|
8
17
|
|
|
9
|
-
Fri, 28 Jul 2023 18:
|
|
18
|
+
Fri, 28 Jul 2023 18:18:38 GMT
|
|
10
19
|
|
|
11
20
|
### Minor changes
|
|
12
21
|
|
package/components.js
CHANGED
|
@@ -76,7 +76,10 @@ module.exports = {
|
|
|
76
76
|
fontName: 'fontName',
|
|
77
77
|
fontSize: 'fontSize',
|
|
78
78
|
lineHeight: 'lineHeight',
|
|
79
|
-
stickyBackgroundColor: 'color'
|
|
79
|
+
stickyBackgroundColor: 'color',
|
|
80
|
+
fontColor: 'color',
|
|
81
|
+
borderColor: 'color',
|
|
82
|
+
borderWidth: 'border'
|
|
80
83
|
},
|
|
81
84
|
Image: { borderRadius: 'radius' },
|
|
82
85
|
Spinner: {
|
|
@@ -283,7 +286,8 @@ module.exports = {
|
|
|
283
286
|
footnoteLinkColor: 'color',
|
|
284
287
|
footnoteLinkFontName: 'fontName',
|
|
285
288
|
footnoteLinkFontWeight: 'fontWeight',
|
|
286
|
-
footnoteLinkFontSize: 'fontSize'
|
|
289
|
+
footnoteLinkFontSize: 'fontSize',
|
|
290
|
+
footnoteLinkLineHeight: 'lineHeight'
|
|
287
291
|
},
|
|
288
292
|
ActivityIndicator: { size: 'size', thickness: 'border', color: 'color' },
|
|
289
293
|
Badge: {
|