@telus-uds/system-theme-tokens 3.2.0 → 3.3.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 +12 -2
- package/components.js +21 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
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 Fri, 10 Jan 2025 21:41:25 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 3.3.0
|
|
8
|
+
|
|
9
|
+
Fri, 10 Jan 2025 21:41:25 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- `MultiSelectFilter`: add label and button icon tokens (kristina.kirpichnikova@telus.com)
|
|
14
|
+
- `Search`: `leftIcon` and `leftIconColor` tokens added to customize the new icon in the left side of the component (35577399+JoshHC@users.noreply.github.com)
|
|
15
|
+
- `PriceLockup`: new tokens `centsPaddingTop` and `currencySymbolPaddingTop` added to the component (35577399+JoshHC@users.noreply.github.com)
|
|
16
|
+
|
|
7
17
|
## 3.2.0
|
|
8
18
|
|
|
9
|
-
Thu, 19 Dec 2024
|
|
19
|
+
Thu, 19 Dec 2024 05:02:20 GMT
|
|
10
20
|
|
|
11
21
|
### Minor changes
|
|
12
22
|
|
package/components.js
CHANGED
|
@@ -364,6 +364,7 @@ export default {
|
|
|
364
364
|
currencySymbolLineHeight: 'lineHeight',
|
|
365
365
|
currencySymbolFontName: 'fontName',
|
|
366
366
|
currencySymbolFontWeight: 'fontWeight',
|
|
367
|
+
currencySymbolPaddingTop: 'size',
|
|
367
368
|
amountFontSize: 'fontSize',
|
|
368
369
|
amountLineHeight: 'lineHeight',
|
|
369
370
|
amountLetterSpacing: 'letterSpacing',
|
|
@@ -373,6 +374,7 @@ export default {
|
|
|
373
374
|
centsLineHeight: 'lineHeight',
|
|
374
375
|
centsFontName: 'fontName',
|
|
375
376
|
centsFontWeight: 'fontWeight',
|
|
377
|
+
centsPaddingTop: 'size',
|
|
376
378
|
topTextFontName: 'fontName',
|
|
377
379
|
topTextFontWeight: 'fontWeight',
|
|
378
380
|
rateFontSize: 'fontSize',
|
|
@@ -1200,6 +1202,9 @@ export default {
|
|
|
1200
1202
|
},
|
|
1201
1203
|
MultiSelectFilter: {
|
|
1202
1204
|
buttonDirection: 'direction',
|
|
1205
|
+
buttonIconSize: 'size',
|
|
1206
|
+
buttonIconPadding: 'size',
|
|
1207
|
+
buttonBorderColor: 'color',
|
|
1203
1208
|
contentMarginBottom: 'size',
|
|
1204
1209
|
contentMarginLeft: 'size',
|
|
1205
1210
|
contentMarginRight: 'size',
|
|
@@ -1211,6 +1216,15 @@ export default {
|
|
|
1211
1216
|
headerFontSize: 'fontSize',
|
|
1212
1217
|
headerFontWeight: 'fontWeight',
|
|
1213
1218
|
headerLineHeight: 'lineHeight',
|
|
1219
|
+
labelFontSize: 'fontSize',
|
|
1220
|
+
labelFontName: 'fontName',
|
|
1221
|
+
labelFontWeight: 'fontWeight',
|
|
1222
|
+
labelLineHeight: 'lineHeight',
|
|
1223
|
+
labelColor: 'color',
|
|
1224
|
+
labelPaddingLeft: 'size',
|
|
1225
|
+
labelPaddingRight: 'size',
|
|
1226
|
+
labelPaddingTop: 'size',
|
|
1227
|
+
labelPaddingBottom: 'size',
|
|
1214
1228
|
maxHeightSize: 'size',
|
|
1215
1229
|
maxWidthSize: 'size',
|
|
1216
1230
|
minHeight: 'size',
|
|
@@ -1630,13 +1644,17 @@ export default {
|
|
|
1630
1644
|
placeholderColor: 'color',
|
|
1631
1645
|
buttonsGap: 'size',
|
|
1632
1646
|
clearButtonIcon: 'icon',
|
|
1633
|
-
submitButtonIcon: 'icon'
|
|
1647
|
+
submitButtonIcon: 'icon',
|
|
1648
|
+
iconLeftColor: 'color',
|
|
1649
|
+
iconLeftSize: 'size',
|
|
1650
|
+
mobileBorderWidth: 'border'
|
|
1634
1651
|
},
|
|
1635
1652
|
SearchButton: {
|
|
1636
1653
|
borderColor: 'color',
|
|
1637
1654
|
borderWidth: 'border',
|
|
1638
1655
|
borderRadius: 'radius',
|
|
1639
1656
|
backgroundColor: 'color',
|
|
1657
|
+
mobileBackgroundColor: 'color',
|
|
1640
1658
|
opacity: 'opacity',
|
|
1641
1659
|
paddingLeft: 'size',
|
|
1642
1660
|
paddingRight: 'size',
|
|
@@ -2012,6 +2030,8 @@ export default {
|
|
|
2012
2030
|
fontWeight: 'fontWeight',
|
|
2013
2031
|
fontSize: 'fontSize',
|
|
2014
2032
|
leftIconPaddingBottom: 'size',
|
|
2033
|
+
iconLeftPaddingBottom: 'size',
|
|
2034
|
+
iconLeftGap: 'size',
|
|
2015
2035
|
lineHeight: 'lineHeight',
|
|
2016
2036
|
icon: 'icon',
|
|
2017
2037
|
iconSize: 'size',
|