@telus-uds/system-theme-tokens 4.1.0 → 4.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 +18 -2
- package/build/cjs/components.js +4 -1
- package/build/esm/components.js +4 -1
- package/package.json +1 -1
- package/src/components.js +8 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,28 @@
|
|
|
1
1
|
# Change Log - @telus-uds/system-theme-tokens
|
|
2
2
|
|
|
3
|
-
This log was last generated on Mon,
|
|
3
|
+
This log was last generated on Mon, 24 Mar 2025 16:24:15 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 4.3.0
|
|
8
|
+
|
|
9
|
+
Mon, 24 Mar 2025 16:24:15 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- `ActivityIndicator`: new tokens added for the `dots` variant (35577399+JoshHC@users.noreply.github.com)
|
|
14
|
+
|
|
15
|
+
## 4.2.0
|
|
16
|
+
|
|
17
|
+
Fri, 14 Feb 2025 19:03:35 GMT
|
|
18
|
+
|
|
19
|
+
### Minor changes
|
|
20
|
+
|
|
21
|
+
- `Link`: add new tokens to refactoring bullet icon (Mauricio.BatresMontejo@telus.com)
|
|
22
|
+
|
|
7
23
|
## 4.1.0
|
|
8
24
|
|
|
9
|
-
Mon, 10 Feb 2025 17:
|
|
25
|
+
Mon, 10 Feb 2025 17:36:47 GMT
|
|
10
26
|
|
|
11
27
|
### Minor changes
|
|
12
28
|
|
package/build/cjs/components.js
CHANGED
|
@@ -418,8 +418,10 @@ var _default = exports.default = {
|
|
|
418
418
|
},
|
|
419
419
|
ActivityIndicator: {
|
|
420
420
|
size: 'size',
|
|
421
|
+
dotSize: 'size',
|
|
421
422
|
thickness: 'border',
|
|
422
|
-
color: 'color'
|
|
423
|
+
color: 'color',
|
|
424
|
+
indicatorBackgroundColor: 'color'
|
|
423
425
|
},
|
|
424
426
|
Badge: {
|
|
425
427
|
fontWeight: 'fontWeight',
|
|
@@ -1104,6 +1106,7 @@ var _default = exports.default = {
|
|
|
1104
1106
|
dividerColor: 'color',
|
|
1105
1107
|
dividerSize: 'border',
|
|
1106
1108
|
itemBulletContainerWidth: 'size',
|
|
1109
|
+
itemBulletContainerHeight: 'size',
|
|
1107
1110
|
itemBulletContainerAlign: 'textAlign',
|
|
1108
1111
|
itemBulletColor: 'color',
|
|
1109
1112
|
itemTextColor: 'color',
|
package/build/esm/components.js
CHANGED
|
@@ -412,8 +412,10 @@ export default {
|
|
|
412
412
|
},
|
|
413
413
|
ActivityIndicator: {
|
|
414
414
|
size: 'size',
|
|
415
|
+
dotSize: 'size',
|
|
415
416
|
thickness: 'border',
|
|
416
|
-
color: 'color'
|
|
417
|
+
color: 'color',
|
|
418
|
+
indicatorBackgroundColor: 'color'
|
|
417
419
|
},
|
|
418
420
|
Badge: {
|
|
419
421
|
fontWeight: 'fontWeight',
|
|
@@ -1098,6 +1100,7 @@ export default {
|
|
|
1098
1100
|
dividerColor: 'color',
|
|
1099
1101
|
dividerSize: 'border',
|
|
1100
1102
|
itemBulletContainerWidth: 'size',
|
|
1103
|
+
itemBulletContainerHeight: 'size',
|
|
1101
1104
|
itemBulletContainerAlign: 'textAlign',
|
|
1102
1105
|
itemBulletColor: 'color',
|
|
1103
1106
|
itemTextColor: 'color',
|
package/package.json
CHANGED
package/src/components.js
CHANGED
|
@@ -406,7 +406,13 @@ export default {
|
|
|
406
406
|
paddingVertical: 'size',
|
|
407
407
|
selectedButtonIcon: 'icon'
|
|
408
408
|
},
|
|
409
|
-
ActivityIndicator: {
|
|
409
|
+
ActivityIndicator: {
|
|
410
|
+
size: 'size',
|
|
411
|
+
dotSize: 'size',
|
|
412
|
+
thickness: 'border',
|
|
413
|
+
color: 'color',
|
|
414
|
+
indicatorBackgroundColor: 'color'
|
|
415
|
+
},
|
|
410
416
|
Badge: {
|
|
411
417
|
fontWeight: 'fontWeight',
|
|
412
418
|
fontSize: 'fontSize',
|
|
@@ -1102,6 +1108,7 @@ export default {
|
|
|
1102
1108
|
dividerColor: 'color',
|
|
1103
1109
|
dividerSize: 'border',
|
|
1104
1110
|
itemBulletContainerWidth: 'size',
|
|
1111
|
+
itemBulletContainerHeight: 'size',
|
|
1105
1112
|
itemBulletContainerAlign: 'textAlign',
|
|
1106
1113
|
itemBulletColor: 'color',
|
|
1107
1114
|
itemTextColor: 'color',
|