@telus-uds/system-theme-tokens 2.19.0 → 2.21.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/components.js +16 -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, 20 Apr 2023 19:05:54 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.21.0
|
|
8
|
+
|
|
9
|
+
Thu, 20 Apr 2023 19:05:54 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- Added Spinner (wlsdud194@hotmail.com)
|
|
14
|
+
- update token schema for ChevronLink (kyle.king2@telus.com)
|
|
15
|
+
|
|
16
|
+
## 2.20.0
|
|
17
|
+
|
|
18
|
+
Wed, 19 Apr 2023 18:49:51 GMT
|
|
19
|
+
|
|
20
|
+
### Minor changes
|
|
21
|
+
|
|
22
|
+
- Add new Content Flex tokens to Card Component (carlos.jeronimo@telus.com)
|
|
23
|
+
|
|
7
24
|
## 2.19.0
|
|
8
25
|
|
|
9
|
-
Wed, 19 Apr 2023 11:
|
|
26
|
+
Wed, 19 Apr 2023 11:32:31 GMT
|
|
10
27
|
|
|
11
28
|
### Minor changes
|
|
12
29
|
|
package/components.js
CHANGED
|
@@ -34,6 +34,11 @@ module.exports = {
|
|
|
34
34
|
cellPaddingBottom: 'size'
|
|
35
35
|
},
|
|
36
36
|
Image: { borderRadius: 'radius' },
|
|
37
|
+
Spinner: {
|
|
38
|
+
fullScreenOverLayBackground: 'color',
|
|
39
|
+
size: 'size',
|
|
40
|
+
thickness: 'border'
|
|
41
|
+
},
|
|
37
42
|
Callout: {
|
|
38
43
|
background: 'color',
|
|
39
44
|
gap: 'size',
|
|
@@ -232,7 +237,11 @@ module.exports = {
|
|
|
232
237
|
paddingRight: 'size',
|
|
233
238
|
paddingTop: 'size',
|
|
234
239
|
minWidth: 'size',
|
|
235
|
-
shadow: 'shadow'
|
|
240
|
+
shadow: 'shadow',
|
|
241
|
+
contentAlignItems: 'flexAlign',
|
|
242
|
+
contentJustifyContent: 'flexJustifyContent',
|
|
243
|
+
contentFlexGrow: 'integer',
|
|
244
|
+
contentFlexShrink: 'integer'
|
|
236
245
|
},
|
|
237
246
|
PreviewCard: {
|
|
238
247
|
flex: 'integer',
|
|
@@ -313,6 +322,8 @@ module.exports = {
|
|
|
313
322
|
labelMarginLeft: 'size'
|
|
314
323
|
},
|
|
315
324
|
ChevronLink: {
|
|
325
|
+
height: 'size',
|
|
326
|
+
textLineHeight: 'lineHeight',
|
|
316
327
|
color: 'color',
|
|
317
328
|
outerBorderColor: 'color',
|
|
318
329
|
leftIcon: 'icon',
|
|
@@ -802,6 +813,10 @@ module.exports = {
|
|
|
802
813
|
paddingTop: 'size',
|
|
803
814
|
minWidth: 'size',
|
|
804
815
|
shadow: 'shadow',
|
|
816
|
+
contentAlignItems: 'flexAlign',
|
|
817
|
+
contentJustifyContent: 'flexJustifyContent',
|
|
818
|
+
contentFlexGrow: 'integer',
|
|
819
|
+
contentFlexShrink: 'integer',
|
|
805
820
|
|
|
806
821
|
// RadioButton
|
|
807
822
|
radioCheckedBackgroundColor: 'color',
|