@telus-uds/system-theme-tokens 2.41.0 → 2.42.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 +22 -2
- package/appearances.js +1 -0
- package/components.js +56 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,32 @@
|
|
|
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, 26 Oct 2023 19:24:58 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.42.0
|
|
8
|
+
|
|
9
|
+
Thu, 26 Oct 2023 19:24:58 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- Add `width` token for `StackView` (shahzaibkhalidmalik@outlook.com)
|
|
14
|
+
|
|
15
|
+
### Patches
|
|
16
|
+
|
|
17
|
+
- new tokens for checkboxcard (mauricio.batresmontejo@telus.com)
|
|
18
|
+
|
|
19
|
+
## 2.41.1
|
|
20
|
+
|
|
21
|
+
Tue, 12 Sep 2023 15:37:53 GMT
|
|
22
|
+
|
|
23
|
+
### Patches
|
|
24
|
+
|
|
25
|
+
- new tokens for WaffleGrid (mauricio.batresmontejo@telus.com)
|
|
26
|
+
|
|
7
27
|
## 2.41.0
|
|
8
28
|
|
|
9
|
-
|
|
29
|
+
Wed, 09 Aug 2023 00:02:59 GMT
|
|
10
30
|
|
|
11
31
|
### Minor changes
|
|
12
32
|
|
package/appearances.js
CHANGED
|
@@ -94,6 +94,7 @@ module.exports = {
|
|
|
94
94
|
CarouselTabsPanelItem: { focus, hover, pressed, inactive, selected },
|
|
95
95
|
CarouselThumbnail: { focus, hover, pressed },
|
|
96
96
|
Checkbox: { checked, error, focus, hover, inactive },
|
|
97
|
+
CheckboxCard: { pressed, checked, error, focus, hover, inactive },
|
|
97
98
|
ChevronLink: { focus, hover, pressed },
|
|
98
99
|
DatePicker: { pressed, selected, focus },
|
|
99
100
|
ExpandCollapseControl: { pressed, hover, focus, expanded },
|
package/components.js
CHANGED
|
@@ -170,7 +170,8 @@ module.exports = {
|
|
|
170
170
|
WaffleGrid: {
|
|
171
171
|
rowBorderWidth: 'border',
|
|
172
172
|
itemBorderColor: 'color',
|
|
173
|
-
itemPadding: 'size'
|
|
173
|
+
itemPadding: 'size',
|
|
174
|
+
rowSize: 'integer'
|
|
174
175
|
},
|
|
175
176
|
QuantitySelector: {
|
|
176
177
|
inputBorderColor: 'color',
|
|
@@ -555,6 +556,55 @@ module.exports = {
|
|
|
555
556
|
labelMarginLeft: 'size',
|
|
556
557
|
inputOutlineOffset: 'size'
|
|
557
558
|
},
|
|
559
|
+
CheckboxCard: {
|
|
560
|
+
// Outer border
|
|
561
|
+
outerBorderColor: 'color',
|
|
562
|
+
outerBorderWidth: 'border',
|
|
563
|
+
outerBorderGap: 'size',
|
|
564
|
+
|
|
565
|
+
// Card
|
|
566
|
+
flex: 'integer',
|
|
567
|
+
backgroundColor: 'color',
|
|
568
|
+
borderColor: 'color',
|
|
569
|
+
borderRadius: 'radius',
|
|
570
|
+
borderWidth: 'border',
|
|
571
|
+
paddingBottom: 'size',
|
|
572
|
+
paddingLeft: 'size',
|
|
573
|
+
paddingRight: 'size',
|
|
574
|
+
paddingTop: 'size',
|
|
575
|
+
minWidth: 'size',
|
|
576
|
+
shadow: 'shadow',
|
|
577
|
+
contentAlignItems: 'flexAlign',
|
|
578
|
+
contentJustifyContent: 'flexJustifyContent',
|
|
579
|
+
contentFlexGrow: 'integer',
|
|
580
|
+
contentFlexShrink: 'integer',
|
|
581
|
+
|
|
582
|
+
// Checkbox
|
|
583
|
+
checkboxCheckedBackgroundColor: 'color',
|
|
584
|
+
checkboxCheckedSize: 'size',
|
|
585
|
+
checkboxInputBackgroundColor: 'color',
|
|
586
|
+
checkboxInputBorderColor: 'color',
|
|
587
|
+
checkboxInputBorderWidth: 'border',
|
|
588
|
+
checkboxInputOutlineColor: 'color',
|
|
589
|
+
checkboxInputOutlineWidth: 'border',
|
|
590
|
+
checkboxInputSize: 'size',
|
|
591
|
+
checkboxOuterBorderColor: 'color',
|
|
592
|
+
checkboxOuterBorderWidth: 'border',
|
|
593
|
+
checkboxOuterBorderGap: 'size',
|
|
594
|
+
|
|
595
|
+
// Title text - duplicates Typography variant { size: 'h3' }
|
|
596
|
+
fontSize: 'fontSize',
|
|
597
|
+
fontName: 'fontName',
|
|
598
|
+
lineHeight: 'lineHeight',
|
|
599
|
+
color: 'color',
|
|
600
|
+
letterSpacing: 'letterSpacing',
|
|
601
|
+
textTransform: 'textTransform',
|
|
602
|
+
fontWeight: 'fontWeight',
|
|
603
|
+
|
|
604
|
+
// Spacing
|
|
605
|
+
checkboxSpace: 'integer',
|
|
606
|
+
contentSpace: 'integer'
|
|
607
|
+
},
|
|
558
608
|
ChevronLink: {
|
|
559
609
|
fontSize: 'fontSize',
|
|
560
610
|
color: 'color',
|
|
@@ -788,7 +838,9 @@ module.exports = {
|
|
|
788
838
|
iconSize: 'size',
|
|
789
839
|
iconScale: 'iconScale',
|
|
790
840
|
iconTranslateX: 'size',
|
|
791
|
-
iconTranslateY: 'size'
|
|
841
|
+
iconTranslateY: 'size',
|
|
842
|
+
height: 'size',
|
|
843
|
+
width: 'size'
|
|
792
844
|
},
|
|
793
845
|
Link: {
|
|
794
846
|
color: 'color',
|
|
@@ -1407,7 +1459,8 @@ module.exports = {
|
|
|
1407
1459
|
alignItems: 'flexAlign',
|
|
1408
1460
|
justifyContent: 'flexJustifyContent',
|
|
1409
1461
|
flexGrow: 'integer',
|
|
1410
|
-
flexShrink: 'integer'
|
|
1462
|
+
flexShrink: 'integer',
|
|
1463
|
+
width: 'size'
|
|
1411
1464
|
},
|
|
1412
1465
|
StepTracker: {
|
|
1413
1466
|
completedIcon: 'icon',
|