@telus-uds/system-theme-tokens 2.30.0 → 2.32.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 +19 -2
- package/appearances.js +2 -1
- package/components.js +11 -22
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,29 @@
|
|
|
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 Wed, 14 Jun 2023 00:01:25 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.32.0
|
|
8
|
+
|
|
9
|
+
Wed, 14 Jun 2023 00:01:25 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- Datepicker refactor (srikanthkhari@gmail.com)
|
|
14
|
+
|
|
15
|
+
## 2.31.0
|
|
16
|
+
|
|
17
|
+
Fri, 09 Jun 2023 00:28:33 GMT
|
|
18
|
+
|
|
19
|
+
### Minor changes
|
|
20
|
+
|
|
21
|
+
- expand collapse mini variant introduced (akshay.pandey1@telus.com)
|
|
22
|
+
- added new 'panelBorderColor' for alignment to design intentions (kyle.king2@telus.com)
|
|
23
|
+
|
|
7
24
|
## 2.30.0
|
|
8
25
|
|
|
9
|
-
Tue, 06 Jun 2023 20:
|
|
26
|
+
Tue, 06 Jun 2023 20:46:12 GMT
|
|
10
27
|
|
|
11
28
|
### Minor changes
|
|
12
29
|
|
package/appearances.js
CHANGED
package/components.js
CHANGED
|
@@ -544,12 +544,6 @@ module.exports = {
|
|
|
544
544
|
calendarMonthCaptionFontWeight: 'fontWeight',
|
|
545
545
|
calendarMonthCaptionLineHeight: 'lineHeight',
|
|
546
546
|
calendarMonthCaptionPaddingBottom: 'size',
|
|
547
|
-
dateInputBorderColor: 'color',
|
|
548
|
-
dateInputBorderRadius: 'radius',
|
|
549
|
-
dateInputFocusBorderColor: 'color',
|
|
550
|
-
dateInputHoverBorderColor: 'color',
|
|
551
|
-
dateInputInsideBorderColor: 'color',
|
|
552
|
-
dateInputInsideColor: 'color',
|
|
553
547
|
dateInputStrokeColor: 'color',
|
|
554
548
|
dayPickerWeekHeaderColor: 'color',
|
|
555
549
|
dayPickerWeekHeaderFontName: 'fontName',
|
|
@@ -568,7 +562,11 @@ module.exports = {
|
|
|
568
562
|
singleDatePickerRadius: 'radius',
|
|
569
563
|
validInputMixin: 'color'
|
|
570
564
|
},
|
|
571
|
-
ExpandCollapse: {
|
|
565
|
+
ExpandCollapse: {
|
|
566
|
+
borderColor: 'color',
|
|
567
|
+
borderWidth: 'border',
|
|
568
|
+
borderStyle: 'borderStyle'
|
|
569
|
+
},
|
|
572
570
|
ExpandCollapseMini: { borderWidth: 'border' },
|
|
573
571
|
ExpandCollapseControl: {
|
|
574
572
|
icon: 'icon',
|
|
@@ -585,7 +583,12 @@ module.exports = {
|
|
|
585
583
|
paddingBottom: 'size',
|
|
586
584
|
borderWidth: 'border',
|
|
587
585
|
borderColor: 'color',
|
|
588
|
-
backgroundColor: 'color'
|
|
586
|
+
backgroundColor: 'color',
|
|
587
|
+
borderTopLeftRadius: 'radius',
|
|
588
|
+
borderBottomLeftRadius: 'radius',
|
|
589
|
+
borderTopRightRadius: 'radius',
|
|
590
|
+
borderBottomRightRadius: 'radius',
|
|
591
|
+
textLine: 'textLine'
|
|
589
592
|
},
|
|
590
593
|
ExpandCollapseMiniControl: {
|
|
591
594
|
size: 'size',
|
|
@@ -619,20 +622,6 @@ module.exports = {
|
|
|
619
622
|
expandDividerColor: 'color',
|
|
620
623
|
expandDividerWidth: 'size'
|
|
621
624
|
},
|
|
622
|
-
ExpandCollapseMiniPanel: {
|
|
623
|
-
expandDuration: 'duration',
|
|
624
|
-
collapseDuration: 'duration',
|
|
625
|
-
contentPaddingLeft: 'size',
|
|
626
|
-
contentPaddingRight: 'size',
|
|
627
|
-
contentPaddingTop: 'size',
|
|
628
|
-
contentPaddingBottom: 'size',
|
|
629
|
-
marginBottom: 'size',
|
|
630
|
-
borderColor: 'color',
|
|
631
|
-
borderRadius: 'radius',
|
|
632
|
-
borderWidth: 'border',
|
|
633
|
-
expandDividerColor: 'color',
|
|
634
|
-
expandDividerWidth: 'size'
|
|
635
|
-
},
|
|
636
625
|
Feedback: {
|
|
637
626
|
backgroundColor: 'color',
|
|
638
627
|
borderColor: 'color',
|