@telus-uds/system-theme-tokens 2.54.0 → 2.56.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/appearances.js +2 -1
- package/components.js +39 -2
- package/package.json +1 -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 Fri,
|
|
3
|
+
This log was last generated on Fri, 17 May 2024 16:25:38 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.56.0
|
|
8
|
+
|
|
9
|
+
Fri, 17 May 2024 16:25:38 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- Add design tokens for `CardGroup` (Mauricio.BatresMontejo@telus.com)
|
|
14
|
+
|
|
15
|
+
## 2.55.0
|
|
16
|
+
|
|
17
|
+
Mon, 06 May 2024 16:39:58 GMT
|
|
18
|
+
|
|
19
|
+
### Minor changes
|
|
20
|
+
|
|
21
|
+
- `Carousel`: add `autoPlay` mode (shahzaibkhalidmalik@outlook.com)
|
|
22
|
+
|
|
7
23
|
## 2.54.0
|
|
8
24
|
|
|
9
|
-
Fri, 05 Apr 2024 17:
|
|
25
|
+
Fri, 05 Apr 2024 17:16:24 GMT
|
|
10
26
|
|
|
11
27
|
### Minor changes
|
|
12
28
|
|
package/appearances.js
CHANGED
|
@@ -91,7 +91,8 @@ module.exports = {
|
|
|
91
91
|
PreviewCard: { pressed, hover, focus },
|
|
92
92
|
ButtonDropdown: { focus, hover, pressed, inactive, selected, open },
|
|
93
93
|
ButtonGroupItem: { focus, hover, pressed, inactive, selected },
|
|
94
|
-
Card: { focus, hover, pressed },
|
|
94
|
+
Card: { focus, hover, pressed, selected },
|
|
95
|
+
CardGroup: { pressed, selected, focus, hover },
|
|
95
96
|
CarouselTabsPanelItem: { focus, hover, pressed, inactive, selected },
|
|
96
97
|
CarouselThumbnail: { focus, hover, pressed },
|
|
97
98
|
Checkbox: { checked, error, focus, hover, inactive },
|
package/components.js
CHANGED
|
@@ -484,7 +484,37 @@ module.exports = {
|
|
|
484
484
|
contentAlignItems: 'flexAlign',
|
|
485
485
|
contentJustifyContent: 'flexJustifyContent',
|
|
486
486
|
contentFlexGrow: 'integer',
|
|
487
|
-
contentFlexShrink: 'integer'
|
|
487
|
+
contentFlexShrink: 'integer',
|
|
488
|
+
|
|
489
|
+
// Tokens of the checkbox or radio input
|
|
490
|
+
inputBackgroundColor: 'color',
|
|
491
|
+
iconBackgroundColor: 'color',
|
|
492
|
+
icon: 'icon',
|
|
493
|
+
iconColor: 'color',
|
|
494
|
+
inputBorderRadius: 'radius',
|
|
495
|
+
inputHeight: 'size',
|
|
496
|
+
inputWidth: 'size',
|
|
497
|
+
iconSize: 'size',
|
|
498
|
+
inputShadow: 'shadow',
|
|
499
|
+
inputBorderWidth: 'border',
|
|
500
|
+
inputBorderColor: 'color'
|
|
501
|
+
},
|
|
502
|
+
CardGroup: {
|
|
503
|
+
// Layout
|
|
504
|
+
direction: 'direction',
|
|
505
|
+
space: 'integer',
|
|
506
|
+
|
|
507
|
+
// Fieldset
|
|
508
|
+
fieldSpace: 'integer',
|
|
509
|
+
|
|
510
|
+
// Border for error feedback
|
|
511
|
+
showIcon: 'show',
|
|
512
|
+
outlineWidth: 'border',
|
|
513
|
+
borderBottomLeftRadius: 'radius',
|
|
514
|
+
borderBottomRightRadius: 'radius',
|
|
515
|
+
borderTopLeftRadius: 'radius',
|
|
516
|
+
borderTopRightRadius: 'radius',
|
|
517
|
+
outlineOffset: 'size'
|
|
488
518
|
},
|
|
489
519
|
PreviewCard: {
|
|
490
520
|
flex: 'integer',
|
|
@@ -504,6 +534,8 @@ module.exports = {
|
|
|
504
534
|
Carousel: {
|
|
505
535
|
backgroundColor: 'color',
|
|
506
536
|
nextIcon: 'icon',
|
|
537
|
+
playIcon: 'icon',
|
|
538
|
+
pauseIcon: 'icon',
|
|
507
539
|
previousIcon: 'icon',
|
|
508
540
|
iconBackgroundColor: 'color',
|
|
509
541
|
showPreviousNextNavigation: 'show',
|
|
@@ -1324,7 +1356,12 @@ module.exports = {
|
|
|
1324
1356
|
labelFontSize: 'fontSize',
|
|
1325
1357
|
labelFontWeight: 'fontWeight',
|
|
1326
1358
|
labelLineHeight: 'lineHeight',
|
|
1327
|
-
labelMarginLeft: 'size'
|
|
1359
|
+
labelMarginLeft: 'size',
|
|
1360
|
+
|
|
1361
|
+
// Used for card group
|
|
1362
|
+
icon: 'icon',
|
|
1363
|
+
iconBackgroundColor: 'color',
|
|
1364
|
+
iconColor: 'color'
|
|
1328
1365
|
},
|
|
1329
1366
|
RadioCard: {
|
|
1330
1367
|
// Outer border
|