@telus-uds/system-theme-tokens 2.42.0 → 2.44.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/components.js +24 -2
- 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 Tue, 07 Nov 2023 16:20:19 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.44.0
|
|
8
|
+
|
|
9
|
+
Tue, 07 Nov 2023 16:20:19 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- New token direction added for Modal (35577399+JoshHC@users.noreply.github.com)
|
|
14
|
+
|
|
15
|
+
### Patches
|
|
16
|
+
|
|
17
|
+
- new Theme for CheckboxCardGroup component (email not defined)
|
|
18
|
+
|
|
19
|
+
## 2.43.0
|
|
20
|
+
|
|
21
|
+
Wed, 01 Nov 2023 01:05:43 GMT
|
|
22
|
+
|
|
23
|
+
### Minor changes
|
|
24
|
+
|
|
25
|
+
- added new tokens for TextInput component (srikanthkhari@gmail.com)
|
|
26
|
+
|
|
7
27
|
## 2.42.0
|
|
8
28
|
|
|
9
|
-
Thu, 26 Oct 2023 19:
|
|
29
|
+
Thu, 26 Oct 2023 19:35:09 GMT
|
|
10
30
|
|
|
11
31
|
### Minor changes
|
|
12
32
|
|
package/components.js
CHANGED
|
@@ -605,6 +605,22 @@ module.exports = {
|
|
|
605
605
|
checkboxSpace: 'integer',
|
|
606
606
|
contentSpace: 'integer'
|
|
607
607
|
},
|
|
608
|
+
CheckboxCardGroup: {
|
|
609
|
+
// Layout
|
|
610
|
+
direction: 'direction',
|
|
611
|
+
space: 'integer',
|
|
612
|
+
|
|
613
|
+
// Fieldset
|
|
614
|
+
fieldSpace: 'integer',
|
|
615
|
+
|
|
616
|
+
// Border for error feedback
|
|
617
|
+
outlineWidth: 'border',
|
|
618
|
+
borderBottomLeftRadius: 'radius',
|
|
619
|
+
borderBottomRightRadius: 'radius',
|
|
620
|
+
borderTopLeftRadius: 'radius',
|
|
621
|
+
borderTopRightRadius: 'radius',
|
|
622
|
+
outlineOffset: 'size'
|
|
623
|
+
},
|
|
608
624
|
ChevronLink: {
|
|
609
625
|
fontSize: 'fontSize',
|
|
610
626
|
color: 'color',
|
|
@@ -967,7 +983,8 @@ module.exports = {
|
|
|
967
983
|
closeIcon: 'icon',
|
|
968
984
|
closeIconColor: 'color',
|
|
969
985
|
closeIconSize: 'size',
|
|
970
|
-
closePadding: 'size'
|
|
986
|
+
closePadding: 'size',
|
|
987
|
+
direction: 'direction'
|
|
971
988
|
},
|
|
972
989
|
MultiSelectFilter: {
|
|
973
990
|
headerFontColor: 'color',
|
|
@@ -1728,10 +1745,15 @@ module.exports = {
|
|
|
1728
1745
|
fontName: 'fontName',
|
|
1729
1746
|
fontWeight: 'fontWeight',
|
|
1730
1747
|
fontSize: 'fontSize',
|
|
1748
|
+
leftIconPaddingBottom: 'size',
|
|
1731
1749
|
lineHeight: 'lineHeight',
|
|
1732
1750
|
icon: 'icon',
|
|
1733
1751
|
iconSize: 'size',
|
|
1734
|
-
iconColor: 'color'
|
|
1752
|
+
iconColor: 'color',
|
|
1753
|
+
defaultCreditIcon: 'icon',
|
|
1754
|
+
visaIcon: 'icon',
|
|
1755
|
+
masterCardIcon: 'icon',
|
|
1756
|
+
amexIcon: 'icon'
|
|
1735
1757
|
},
|
|
1736
1758
|
Toast: {
|
|
1737
1759
|
containerBackgroundColor: 'color',
|