@telus-uds/system-theme-tokens 2.64.0 → 2.65.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 +11 -2
- package/components.js +7 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
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 Sat, 12 Oct 2024 00:31:05 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.65.0
|
|
8
|
+
|
|
9
|
+
Sat, 12 Oct 2024 00:31:05 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- `Progress`: add shadow tokens to Progress and ProgressBar (jacqui.koroll@telus.com)
|
|
14
|
+
- `Card`: new token backgroundGradient added to be able to use the gradient as background (35577399+JoshHC@users.noreply.github.com)
|
|
15
|
+
|
|
7
16
|
## 2.64.0
|
|
8
17
|
|
|
9
|
-
Wed, 25 Sep 2024
|
|
18
|
+
Wed, 25 Sep 2024 17:07:47 GMT
|
|
10
19
|
|
|
11
20
|
### Minor changes
|
|
12
21
|
|
package/components.js
CHANGED
|
@@ -376,7 +376,8 @@ module.exports = {
|
|
|
376
376
|
footnoteLinkFontName: 'fontName',
|
|
377
377
|
footnoteLinkFontWeight: 'fontWeight',
|
|
378
378
|
footnoteLinkFontSize: 'fontSize',
|
|
379
|
-
footnoteLinkLineHeight: 'lineHeight'
|
|
379
|
+
footnoteLinkLineHeight: 'lineHeight',
|
|
380
|
+
alignItemsText: 'flexAlign'
|
|
380
381
|
},
|
|
381
382
|
ProductCard: {
|
|
382
383
|
borderStyle: 'borderStyle',
|
|
@@ -561,6 +562,7 @@ module.exports = {
|
|
|
561
562
|
backgroundColor: 'color',
|
|
562
563
|
borderColor: 'color',
|
|
563
564
|
gradient: 'gradient',
|
|
565
|
+
backgroundGradient: 'gradient',
|
|
564
566
|
borderRadius: 'radius',
|
|
565
567
|
borderWidth: 'border',
|
|
566
568
|
paddingBottom: 'size',
|
|
@@ -1330,14 +1332,16 @@ module.exports = {
|
|
|
1330
1332
|
borderWidth: 'border',
|
|
1331
1333
|
borderColor: 'color',
|
|
1332
1334
|
borderRadius: 'radius',
|
|
1333
|
-
height: 'size'
|
|
1335
|
+
height: 'size',
|
|
1336
|
+
shadow: 'shadow'
|
|
1334
1337
|
},
|
|
1335
1338
|
ProgressBar: {
|
|
1336
1339
|
backgroundColor: 'color',
|
|
1337
1340
|
borderRadius: 'radius',
|
|
1338
1341
|
gradient: 'gradient',
|
|
1339
1342
|
outlineColor: 'color',
|
|
1340
|
-
outlineWidth: 'border'
|
|
1343
|
+
outlineWidth: 'border',
|
|
1344
|
+
shadow: 'shadow'
|
|
1341
1345
|
},
|
|
1342
1346
|
QuickLinks: {
|
|
1343
1347
|
// Sets which subcomponents are rendered
|