@telus-uds/system-theme-tokens 4.3.0 → 4.4.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 +10 -2
- package/build/cjs/components.js +5 -1
- package/build/esm/components.js +5 -1
- package/package.json +1 -1
- package/src/components.js +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
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, 24 Apr 2025 18:52:13 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 4.4.0
|
|
8
|
+
|
|
9
|
+
Thu, 24 Apr 2025 18:52:13 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- `Add MultiSelectFilter` new tokens (sergio.ramirez@telus.com)
|
|
14
|
+
|
|
7
15
|
## 4.3.0
|
|
8
16
|
|
|
9
|
-
Mon, 24 Mar 2025 16:
|
|
17
|
+
Mon, 24 Mar 2025 16:30:05 GMT
|
|
10
18
|
|
|
11
19
|
### Minor changes
|
|
12
20
|
|
package/build/cjs/components.js
CHANGED
|
@@ -1213,6 +1213,7 @@ var _default = exports.default = {
|
|
|
1213
1213
|
footerTopWidth: 'size'
|
|
1214
1214
|
},
|
|
1215
1215
|
MultiSelectFilter: {
|
|
1216
|
+
buttonBackgroundColor: 'color',
|
|
1216
1217
|
buttonDirection: 'direction',
|
|
1217
1218
|
buttonIconSize: 'size',
|
|
1218
1219
|
buttonIconPadding: 'size',
|
|
@@ -1229,6 +1230,7 @@ var _default = exports.default = {
|
|
|
1229
1230
|
headerFontSize: 'fontSize',
|
|
1230
1231
|
headerFontWeight: 'fontWeight',
|
|
1231
1232
|
headerLineHeight: 'lineHeight',
|
|
1233
|
+
iconColor: 'color',
|
|
1232
1234
|
labelFontSize: 'fontSize',
|
|
1233
1235
|
labelFontName: 'fontName',
|
|
1234
1236
|
labelFontWeight: 'fontWeight',
|
|
@@ -1245,7 +1247,9 @@ var _default = exports.default = {
|
|
|
1245
1247
|
subHeaderFontName: 'fontName',
|
|
1246
1248
|
subHeaderFontSize: 'fontSize',
|
|
1247
1249
|
subHeaderFontWeight: 'fontWeight',
|
|
1248
|
-
subHeaderLineHeight: 'lineHeight'
|
|
1250
|
+
subHeaderLineHeight: 'lineHeight',
|
|
1251
|
+
buttonBackgroundColorSelected: 'color',
|
|
1252
|
+
iconColorSelected: 'color'
|
|
1249
1253
|
},
|
|
1250
1254
|
NavigationBar: {
|
|
1251
1255
|
alignSelf: 'flexAlign',
|
package/build/esm/components.js
CHANGED
|
@@ -1207,6 +1207,7 @@ export default {
|
|
|
1207
1207
|
footerTopWidth: 'size'
|
|
1208
1208
|
},
|
|
1209
1209
|
MultiSelectFilter: {
|
|
1210
|
+
buttonBackgroundColor: 'color',
|
|
1210
1211
|
buttonDirection: 'direction',
|
|
1211
1212
|
buttonIconSize: 'size',
|
|
1212
1213
|
buttonIconPadding: 'size',
|
|
@@ -1223,6 +1224,7 @@ export default {
|
|
|
1223
1224
|
headerFontSize: 'fontSize',
|
|
1224
1225
|
headerFontWeight: 'fontWeight',
|
|
1225
1226
|
headerLineHeight: 'lineHeight',
|
|
1227
|
+
iconColor: 'color',
|
|
1226
1228
|
labelFontSize: 'fontSize',
|
|
1227
1229
|
labelFontName: 'fontName',
|
|
1228
1230
|
labelFontWeight: 'fontWeight',
|
|
@@ -1239,7 +1241,9 @@ export default {
|
|
|
1239
1241
|
subHeaderFontName: 'fontName',
|
|
1240
1242
|
subHeaderFontSize: 'fontSize',
|
|
1241
1243
|
subHeaderFontWeight: 'fontWeight',
|
|
1242
|
-
subHeaderLineHeight: 'lineHeight'
|
|
1244
|
+
subHeaderLineHeight: 'lineHeight',
|
|
1245
|
+
buttonBackgroundColorSelected: 'color',
|
|
1246
|
+
iconColorSelected: 'color'
|
|
1243
1247
|
},
|
|
1244
1248
|
NavigationBar: {
|
|
1245
1249
|
alignSelf: 'flexAlign',
|
package/package.json
CHANGED
package/src/components.js
CHANGED
|
@@ -1215,6 +1215,7 @@ export default {
|
|
|
1215
1215
|
footerTopWidth: 'size'
|
|
1216
1216
|
},
|
|
1217
1217
|
MultiSelectFilter: {
|
|
1218
|
+
buttonBackgroundColor: 'color',
|
|
1218
1219
|
buttonDirection: 'direction',
|
|
1219
1220
|
buttonIconSize: 'size',
|
|
1220
1221
|
buttonIconPadding: 'size',
|
|
@@ -1231,6 +1232,7 @@ export default {
|
|
|
1231
1232
|
headerFontSize: 'fontSize',
|
|
1232
1233
|
headerFontWeight: 'fontWeight',
|
|
1233
1234
|
headerLineHeight: 'lineHeight',
|
|
1235
|
+
iconColor: 'color',
|
|
1234
1236
|
labelFontSize: 'fontSize',
|
|
1235
1237
|
labelFontName: 'fontName',
|
|
1236
1238
|
labelFontWeight: 'fontWeight',
|
|
@@ -1247,7 +1249,9 @@ export default {
|
|
|
1247
1249
|
subHeaderFontName: 'fontName',
|
|
1248
1250
|
subHeaderFontSize: 'fontSize',
|
|
1249
1251
|
subHeaderFontWeight: 'fontWeight',
|
|
1250
|
-
subHeaderLineHeight: 'lineHeight'
|
|
1252
|
+
subHeaderLineHeight: 'lineHeight',
|
|
1253
|
+
buttonBackgroundColorSelected: 'color',
|
|
1254
|
+
iconColorSelected: 'color'
|
|
1251
1255
|
},
|
|
1252
1256
|
NavigationBar: {
|
|
1253
1257
|
alignSelf: 'flexAlign',
|