@telus-uds/system-theme-tokens 2.40.0 → 2.41.1
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/components.js +8 -3
- 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 Tue, 12 Sep 2023 15:31:30 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.41.1
|
|
8
|
+
|
|
9
|
+
Tue, 12 Sep 2023 15:31:30 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- new tokens for WaffleGrid (mauricio.batresmontejo@telus.com)
|
|
14
|
+
|
|
15
|
+
## 2.41.0
|
|
16
|
+
|
|
17
|
+
Wed, 09 Aug 2023 00:02:59 GMT
|
|
18
|
+
|
|
19
|
+
### Minor changes
|
|
20
|
+
|
|
21
|
+
- Add fontColor token to Table (wlsdud194@hotmail.com)
|
|
22
|
+
- Koodo rebranding for PriceLockup (wlsdud194@hotmail.com)
|
|
23
|
+
|
|
7
24
|
## 2.40.0
|
|
8
25
|
|
|
9
|
-
Fri, 28 Jul 2023 18:
|
|
26
|
+
Fri, 28 Jul 2023 18:18:38 GMT
|
|
10
27
|
|
|
11
28
|
### Minor changes
|
|
12
29
|
|
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: {
|
|
@@ -167,7 +170,8 @@ module.exports = {
|
|
|
167
170
|
WaffleGrid: {
|
|
168
171
|
rowBorderWidth: 'border',
|
|
169
172
|
itemBorderColor: 'color',
|
|
170
|
-
itemPadding: 'size'
|
|
173
|
+
itemPadding: 'size',
|
|
174
|
+
rowSize: 'integer'
|
|
171
175
|
},
|
|
172
176
|
QuantitySelector: {
|
|
173
177
|
inputBorderColor: 'color',
|
|
@@ -283,7 +287,8 @@ module.exports = {
|
|
|
283
287
|
footnoteLinkColor: 'color',
|
|
284
288
|
footnoteLinkFontName: 'fontName',
|
|
285
289
|
footnoteLinkFontWeight: 'fontWeight',
|
|
286
|
-
footnoteLinkFontSize: 'fontSize'
|
|
290
|
+
footnoteLinkFontSize: 'fontSize',
|
|
291
|
+
footnoteLinkLineHeight: 'lineHeight'
|
|
287
292
|
},
|
|
288
293
|
ActivityIndicator: { size: 'size', thickness: 'border', color: 'color' },
|
|
289
294
|
Badge: {
|