@telus-uds/system-theme-tokens 2.39.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 +24 -2
- package/components.js +25 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,34 @@
|
|
|
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
|
+
|
|
16
|
+
## 2.40.0
|
|
17
|
+
|
|
18
|
+
Fri, 28 Jul 2023 18:18:38 GMT
|
|
19
|
+
|
|
20
|
+
### Minor changes
|
|
21
|
+
|
|
22
|
+
- changes for quicklinks to accomodate icons per theme (akshay.pandey1@telus.com)
|
|
23
|
+
|
|
24
|
+
### Patches
|
|
25
|
+
|
|
26
|
+
- add new token to checkbox for outline border (mauricio.batresmontejo@telus.com)
|
|
27
|
+
- adding token for ribbon (mauricio.batresmontejo@telus.com)
|
|
28
|
+
|
|
7
29
|
## 2.39.0
|
|
8
30
|
|
|
9
|
-
Fri, 21 Jul 2023 00:
|
|
31
|
+
Fri, 21 Jul 2023 00:51:24 GMT
|
|
10
32
|
|
|
11
33
|
### Minor changes
|
|
12
34
|
|
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: {
|
|
@@ -548,7 +552,8 @@ module.exports = {
|
|
|
548
552
|
labelFontSize: 'fontSize',
|
|
549
553
|
labelFontWeight: 'fontWeight',
|
|
550
554
|
labelLineHeight: 'lineHeight',
|
|
551
|
-
labelMarginLeft: 'size'
|
|
555
|
+
labelMarginLeft: 'size',
|
|
556
|
+
inputOutlineOffset: 'size'
|
|
552
557
|
},
|
|
553
558
|
ChevronLink: {
|
|
554
559
|
fontSize: 'fontSize',
|
|
@@ -561,7 +566,17 @@ module.exports = {
|
|
|
561
566
|
iconSpace: 'integer',
|
|
562
567
|
textLine: 'textLine'
|
|
563
568
|
},
|
|
564
|
-
CheckboxGroup: {
|
|
569
|
+
CheckboxGroup: {
|
|
570
|
+
space: 'integer',
|
|
571
|
+
fieldSpace: 'integer',
|
|
572
|
+
showIcon: 'show',
|
|
573
|
+
outlineWidth: 'border',
|
|
574
|
+
borderBottomLeftRadius: 'radius',
|
|
575
|
+
borderBottomRightRadius: 'radius',
|
|
576
|
+
borderTopLeftRadius: 'radius',
|
|
577
|
+
borderTopRightRadius: 'radius',
|
|
578
|
+
outlineOffset: 'size'
|
|
579
|
+
},
|
|
565
580
|
Divider: { width: 'size', color: 'color' },
|
|
566
581
|
DatePicker: {
|
|
567
582
|
calendarBackgroundColor: 'color',
|
|
@@ -1100,7 +1115,7 @@ module.exports = {
|
|
|
1100
1115
|
itemIconSize: 'size',
|
|
1101
1116
|
itemLineHeight: 'lineHeight',
|
|
1102
1117
|
listGutter: 'size',
|
|
1103
|
-
|
|
1118
|
+
itemUnderline: 'textLine',
|
|
1104
1119
|
// PressableListItemBase tokens
|
|
1105
1120
|
backgroundColor: 'color',
|
|
1106
1121
|
paddingLeft: 'size',
|
|
@@ -1283,7 +1298,11 @@ module.exports = {
|
|
|
1283
1298
|
gradient: 'gradient',
|
|
1284
1299
|
fontColor: 'color',
|
|
1285
1300
|
borderRadiusBottomLeft: 'size',
|
|
1286
|
-
borderRadiusBottomRight: 'size'
|
|
1301
|
+
borderRadiusBottomRight: 'size',
|
|
1302
|
+
fontName: 'fontName',
|
|
1303
|
+
fontWeight: 'fontWeight',
|
|
1304
|
+
fontSize: 'fontSize',
|
|
1305
|
+
lineHeight: 'lineHeight'
|
|
1287
1306
|
},
|
|
1288
1307
|
Search: {
|
|
1289
1308
|
backgroundColor: 'color',
|