@telus-uds/system-theme-tokens 2.13.0 → 2.15.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 +18 -2
- package/components.js +15 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,28 @@
|
|
|
1
1
|
# Change Log - @telus-uds/system-theme-tokens
|
|
2
2
|
|
|
3
|
-
This log was last generated on Mon,
|
|
3
|
+
This log was last generated on Mon, 03 Apr 2023 20:33:24 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.15.0
|
|
8
|
+
|
|
9
|
+
Mon, 03 Apr 2023 20:33:24 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- Added color property to QuickLinksList (wlsdud194@hotmail.com)
|
|
14
|
+
|
|
15
|
+
## 2.14.0
|
|
16
|
+
|
|
17
|
+
Thu, 23 Mar 2023 20:52:43 GMT
|
|
18
|
+
|
|
19
|
+
### Minor changes
|
|
20
|
+
|
|
21
|
+
- Adding Badge component (srikanthkhari@gmail.com)
|
|
22
|
+
|
|
7
23
|
## 2.13.0
|
|
8
24
|
|
|
9
|
-
Mon, 20 Mar 2023 19:
|
|
25
|
+
Mon, 20 Mar 2023 19:48:47 GMT
|
|
10
26
|
|
|
11
27
|
### Minor changes
|
|
12
28
|
|
package/components.js
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
// Define the required components and their supported tokens
|
|
2
2
|
module.exports = {
|
|
3
3
|
ActivityIndicator: { size: 'size', thickness: 'border', color: 'color' },
|
|
4
|
+
Badge: {
|
|
5
|
+
fontWeight: 'fontWeight',
|
|
6
|
+
fontName: 'fontName',
|
|
7
|
+
backgroundColor: 'color',
|
|
8
|
+
borderColor: 'color',
|
|
9
|
+
borderRadius: 'radius',
|
|
10
|
+
borderWidth: 'border',
|
|
11
|
+
color: 'color',
|
|
12
|
+
gradient: 'gradient',
|
|
13
|
+
paddingLeft: 'size',
|
|
14
|
+
paddingRight: 'size',
|
|
15
|
+
paddingTop: 'size',
|
|
16
|
+
paddingBottom: 'size'
|
|
17
|
+
},
|
|
4
18
|
Box: { backgroundColor: 'color', gradient: 'gradient' },
|
|
5
19
|
Button: {
|
|
6
20
|
borderColor: 'color',
|
|
@@ -484,6 +498,7 @@ module.exports = {
|
|
|
484
498
|
itemBulletContainerWidth: 'size',
|
|
485
499
|
itemBulletHeight: 'size',
|
|
486
500
|
itemBulletWidth: 'size',
|
|
501
|
+
itemFontColor: 'color',
|
|
487
502
|
itemFontName: 'fontName',
|
|
488
503
|
itemFontSize: 'fontSize',
|
|
489
504
|
itemFontWeight: 'fontWeight',
|