@telus-uds/system-theme-tokens 2.25.0 → 2.26.1
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 +29 -2
- package/appearances.js +1 -0
- package/components.js +90 -52
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,39 @@
|
|
|
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, 24 May 2023 01:36:34 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.26.1
|
|
8
|
+
|
|
9
|
+
Wed, 24 May 2023 01:36:34 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- license update in readme.md (srikanthkhari@gmail.com)
|
|
14
|
+
- Bump @telus-uds/system-constants to v1.2.1
|
|
15
|
+
|
|
16
|
+
## 2.26.0
|
|
17
|
+
|
|
18
|
+
Wed, 17 May 2023 00:20:05 GMT
|
|
19
|
+
|
|
20
|
+
### Minor changes
|
|
21
|
+
|
|
22
|
+
- add 'strikeThroughPosition' token to schema (kyle.king2@telus.com)
|
|
23
|
+
- standardize expand collapse accross all brands (akshay.pandey1@telus.com)
|
|
24
|
+
- Add `feedbackBackgroundColor` in `Select` to override background color of `Feedback` (shahzaibkhalidmalik@outlook.com)
|
|
25
|
+
- Added individual border tokens to Pagination button components (wlsdud194@hotmail.com)
|
|
26
|
+
- update public mobile and description fontFamily bug (samuraix221@hotmail.com)
|
|
27
|
+
- padding added for the iconsize of the notification component (35577399+JoshHC@users.noreply.github.com)
|
|
28
|
+
- Standardize DatePicker for TELUS, Public Mobile, and Koodo (samuraix221@hotmail.com)
|
|
29
|
+
|
|
30
|
+
### Patches
|
|
31
|
+
|
|
32
|
+
- Fix an issue where `Toast` doesn't render as expected on smaller screens (shahzaibkhalidmalik@outlook.com)
|
|
33
|
+
|
|
7
34
|
## 2.25.0
|
|
8
35
|
|
|
9
|
-
Tue, 09 May 2023 00:
|
|
36
|
+
Tue, 09 May 2023 00:29:54 GMT
|
|
10
37
|
|
|
11
38
|
### Minor changes
|
|
12
39
|
|
package/appearances.js
CHANGED
|
@@ -94,6 +94,7 @@ module.exports = {
|
|
|
94
94
|
CarouselTabsPanelItem: { focus, hover, pressed, inactive, selected },
|
|
95
95
|
Checkbox: { checked, error, focus, hover, inactive },
|
|
96
96
|
ChevronLink: { focus, hover, pressed },
|
|
97
|
+
DatePicker: { pressed, selected, focus },
|
|
97
98
|
ExpandCollapseControl: { pressed, hover, focus, expanded },
|
|
98
99
|
ExpandCollapsePanel: { expanded },
|
|
99
100
|
Feedback: { validation },
|
package/components.js
CHANGED
|
@@ -188,9 +188,17 @@ module.exports = {
|
|
|
188
188
|
footnoteBodyPaddingRight: 'size',
|
|
189
189
|
footnoteBodyPaddingTop: 'size',
|
|
190
190
|
footnoteBodyPaddingBottom: 'size',
|
|
191
|
+
footnoteHeaderPaddingLeft: 'size',
|
|
192
|
+
footnoteHeaderPaddingRight: 'size',
|
|
193
|
+
footnoteHeaderPaddingTop: 'size',
|
|
194
|
+
footnoteHeaderPaddingBottom: 'size',
|
|
191
195
|
listPaddingLeft: 'size',
|
|
192
196
|
listItemMarkerFontSize: 'size',
|
|
193
197
|
listItemMarkerLineHeight: 'lineHeight',
|
|
198
|
+
headerLineHeight: 'size',
|
|
199
|
+
headerFontSize: 'size',
|
|
200
|
+
headerFontName: 'fontName',
|
|
201
|
+
headerFontWeight: 'fontWeight',
|
|
194
202
|
listItemColor: 'color',
|
|
195
203
|
listItemFontSize: 'size',
|
|
196
204
|
listItemLineHeight: 'lineHeight',
|
|
@@ -221,6 +229,7 @@ module.exports = {
|
|
|
221
229
|
fontColor: 'color',
|
|
222
230
|
dividerColor: 'color',
|
|
223
231
|
topTextFontSize: 'fontSize',
|
|
232
|
+
strikeThroughPosition: 'size',
|
|
224
233
|
topTextLineHeight: 'lineHeight',
|
|
225
234
|
currencySymbolFontSize: 'fontSize',
|
|
226
235
|
currencySymbolLineHeight: 'lineHeight',
|
|
@@ -296,11 +305,16 @@ module.exports = {
|
|
|
296
305
|
paddingTop: 'size',
|
|
297
306
|
paddingBottom: 'size',
|
|
298
307
|
width: 'size',
|
|
308
|
+
height: 'size',
|
|
299
309
|
minWidth: 'size',
|
|
300
310
|
iconSize: 'size',
|
|
301
311
|
iconSpace: 'integer',
|
|
302
312
|
icon: 'icon',
|
|
303
313
|
|
|
314
|
+
borderLeftWidth: 'border',
|
|
315
|
+
borderRightWidth: 'border',
|
|
316
|
+
borderTopWidth: 'border',
|
|
317
|
+
borderBottomWidth: 'border',
|
|
304
318
|
outerBorderColor: 'color',
|
|
305
319
|
outerBorderWidth: 'border',
|
|
306
320
|
outerBorderGap: 'size',
|
|
@@ -497,59 +511,54 @@ module.exports = {
|
|
|
497
511
|
CheckboxGroup: { space: 'integer', fieldSpace: 'integer' },
|
|
498
512
|
Divider: { width: 'size', color: 'color' },
|
|
499
513
|
DatePicker: {
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
514
|
+
calendarBackgroundColor: 'color',
|
|
515
|
+
calendarDayBlockedCalendarHoverBackground: 'color',
|
|
516
|
+
calendarDayBlockedCalendarHoverColor: 'color',
|
|
517
|
+
calendarDayDefaultBackgroundColor: 'color',
|
|
518
|
+
calendarDayDefaultBorder: 'border',
|
|
519
|
+
calendarDayDefaultBorderColor: 'color',
|
|
520
|
+
calendarDayDefaultCalendarDaySelectedHoverBackground: 'color',
|
|
521
|
+
calendarDayDefaultCalendarDaySelectedHoverBeforeBackground: 'color',
|
|
522
|
+
calendarDayDefaultCalendarDaySelectedHoverColor: 'color',
|
|
523
|
+
calendarDayDefaultColor: 'color',
|
|
524
|
+
calendarDayDefaultFontName: 'fontName',
|
|
525
|
+
calendarDayDefaultFontSize: 'fontSize',
|
|
526
|
+
calendarDayDefaultFontWeight: 'fontWeight',
|
|
527
|
+
calendarDaySelectedFocusBeforeBackground: 'color',
|
|
528
|
+
calendarDaySelectedHoverBackground: 'color',
|
|
529
|
+
calendarDaySelectedHoverBeforeBackground: 'color',
|
|
530
|
+
calendarDaySelectedHoverBeforeBorderColor: 'color',
|
|
531
|
+
calendarDaySelectedHoverBorderColor: 'color',
|
|
532
|
+
calendarDaySelectedHoverColor: 'color',
|
|
533
|
+
calendarMonthCaptionColor: 'color',
|
|
534
|
+
calendarMonthCaptionFontName: 'fontName',
|
|
535
|
+
calendarMonthCaptionFontSize: 'fontSize',
|
|
536
|
+
calendarMonthCaptionFontWeight: 'fontWeight',
|
|
537
|
+
calendarMonthCaptionLineHeight: 'lineHeight',
|
|
538
|
+
calendarMonthCaptionPaddingBottom: 'size',
|
|
508
539
|
dateInputBorderColor: 'color',
|
|
509
540
|
dateInputBorderRadius: 'radius',
|
|
510
|
-
invalidInputMixin: 'color',
|
|
511
|
-
validInputMixin: 'color',
|
|
512
|
-
dateInputHoverBorderColor: 'color',
|
|
513
541
|
dateInputFocusBorderColor: 'color',
|
|
542
|
+
dateInputHoverBorderColor: 'color',
|
|
514
543
|
dateInputInsideBorderColor: 'color',
|
|
515
544
|
dateInputInsideColor: 'color',
|
|
516
545
|
dateInputStrokeColor: 'color',
|
|
517
|
-
calendarMonthCaptionColor: 'color',
|
|
518
|
-
calendarMonthCaptionFontSize: 'fontSize',
|
|
519
|
-
calendarMonthCaptionLineHeight: 'lineHeight',
|
|
520
|
-
calendarMonthCaptionPaddingBottom: 'size',
|
|
521
|
-
dayPickerNavigationButtonBorderColor: 'color',
|
|
522
|
-
dayPickerNavigationButtonBackgroundColor: 'color',
|
|
523
|
-
dayPickerNavigationButtonMaxHeight: 'size',
|
|
524
|
-
dayPickerNavigationButtonMaxWidth: 'size',
|
|
525
|
-
dayPickerNavigationButtonPadding: 'size',
|
|
526
|
-
dayPickerNavigationButtonChildLeft: 'size',
|
|
527
|
-
dayPickerNavigationButtonChildRight: 'size',
|
|
528
|
-
dayPickerNavigationButtonChildSvgFill: 'color',
|
|
529
|
-
dayPickerNavigationButtonDefaultHoverBorderColor: 'color',
|
|
530
|
-
dayPickerNavigationSVGHorizontalFill: 'color',
|
|
531
546
|
dayPickerWeekHeaderColor: 'color',
|
|
532
|
-
dayPickerWeekHeaderLineHeight: 'lineHeight',
|
|
533
|
-
dayPickerWeekHeaderSmall: 'fontSize',
|
|
534
|
-
calendarDayDefaultBorder: 'border',
|
|
535
|
-
calendarDayDefaultBorderColor: 'color',
|
|
536
|
-
calendarDayDefaultFontSize: 'fontSize',
|
|
537
|
-
calendarDayDefaultColor: 'color',
|
|
538
|
-
calendarDayDefaultBeforeHeight: 'size',
|
|
539
|
-
calendarDayDefaultBeforeWidth: 'size',
|
|
540
|
-
calendarDaySelectedHoverBorderColor: 'color',
|
|
541
|
-
calendarDaySelectedHoverColor: 'color',
|
|
542
|
-
calendarDaySelectedHoverBeforeBackground: 'color',
|
|
543
|
-
calendarDayDefaultCalendarDaySelectedHoverColor: 'color',
|
|
544
|
-
calendarDayDefaultCalendarDaySelectedHoverBackground: 'color',
|
|
545
|
-
calendarDayBlockedCalendarHoverBackground: 'color',
|
|
546
|
-
calendarDayBlockedCalendarHoverColor: 'color',
|
|
547
|
-
calendarMonthCaptionFontName: 'fontName',
|
|
548
547
|
dayPickerWeekHeaderFontName: 'fontName',
|
|
549
|
-
calendarDayDefaultFontName: 'fontName',
|
|
550
|
-
calendarMonthCaptionFontWeight: 'fontWeight',
|
|
551
548
|
dayPickerWeekHeaderFontWeight: 'fontWeight',
|
|
552
|
-
|
|
549
|
+
dayPickerWeekHeaderLineHeight: 'lineHeight',
|
|
550
|
+
dayPickerWeekHeaderSmall: 'fontSize',
|
|
551
|
+
hiddenInputFieldContainerHeight: 'size',
|
|
552
|
+
hiddenInputFieldContainerWidth: 'size',
|
|
553
|
+
dayPickerNavigationButtonPadding: 'size',
|
|
554
|
+
invalidInputMixin: 'color',
|
|
555
|
+
nextIcon: 'icon',
|
|
556
|
+
previousIcon: 'icon',
|
|
557
|
+
singleDatePickerBorderColor: 'color',
|
|
558
|
+
singleDatePickerLeftRight: 'size',
|
|
559
|
+
singleDatePickerPaddingTopBottom: 'size',
|
|
560
|
+
singleDatePickerRadius: 'radius',
|
|
561
|
+
validInputMixin: 'color'
|
|
553
562
|
},
|
|
554
563
|
ExpandCollapse: { borderColor: 'color', borderWidth: 'border', borderStyle: 'borderStyle' },
|
|
555
564
|
ExpandCollapseMini: { borderWidth: 'border' },
|
|
@@ -580,7 +589,13 @@ module.exports = {
|
|
|
580
589
|
contentPaddingLeft: 'size',
|
|
581
590
|
contentPaddingRight: 'size',
|
|
582
591
|
contentPaddingTop: 'size',
|
|
583
|
-
contentPaddingBottom: 'size'
|
|
592
|
+
contentPaddingBottom: 'size',
|
|
593
|
+
marginBottom: 'size',
|
|
594
|
+
borderColor: 'color',
|
|
595
|
+
borderRadius: 'radius',
|
|
596
|
+
borderWidth: 'border',
|
|
597
|
+
expandDividerColor: 'color',
|
|
598
|
+
expanddDividerWidth: 'size'
|
|
584
599
|
},
|
|
585
600
|
Feedback: {
|
|
586
601
|
backgroundColor: 'color',
|
|
@@ -816,8 +831,8 @@ module.exports = {
|
|
|
816
831
|
iconGap: 'size',
|
|
817
832
|
dismissIcon: 'icon',
|
|
818
833
|
dismissIconColor: 'color',
|
|
819
|
-
|
|
820
|
-
|
|
834
|
+
dismissButtonGap: 'size',
|
|
835
|
+
justifyContent: 'flexJustifyContent'
|
|
821
836
|
},
|
|
822
837
|
Pagination: {
|
|
823
838
|
gap: 'size',
|
|
@@ -826,13 +841,28 @@ module.exports = {
|
|
|
826
841
|
fontName: 'fontName',
|
|
827
842
|
fontWeight: 'fontWeight',
|
|
828
843
|
fontSize: 'fontSize',
|
|
829
|
-
lineHeight: 'lineHeight'
|
|
844
|
+
lineHeight: 'lineHeight',
|
|
845
|
+
borderLeftWidth: 'border',
|
|
846
|
+
borderRightWidth: 'border',
|
|
847
|
+
borderTopWidth: 'border',
|
|
848
|
+
borderBottomWidth: 'border',
|
|
849
|
+
borderColor: 'color',
|
|
850
|
+
ellipsisPadding: 'size',
|
|
851
|
+
ellipsisBorderRightWidth: 'border',
|
|
852
|
+
ellipsisBorderLeftWidth: 'border',
|
|
853
|
+
ellipsisBorderTopWidth: 'border',
|
|
854
|
+
ellipsisBorderBottomWidth: 'border',
|
|
855
|
+
ellipsisHeight: 'size'
|
|
830
856
|
},
|
|
831
857
|
PaginationPageButton: {
|
|
832
858
|
borderColor: 'color',
|
|
833
|
-
|
|
859
|
+
borderLeftWidth: 'border',
|
|
860
|
+
borderRightWidth: 'border',
|
|
861
|
+
borderTopWidth: 'border',
|
|
862
|
+
borderBottomWidth: 'border',
|
|
834
863
|
borderRadius: 'radius',
|
|
835
864
|
backgroundColor: 'color',
|
|
865
|
+
height: 'size',
|
|
836
866
|
paddingLeft: 'size',
|
|
837
867
|
paddingRight: 'size',
|
|
838
868
|
paddingTop: 'size',
|
|
@@ -851,7 +881,10 @@ module.exports = {
|
|
|
851
881
|
},
|
|
852
882
|
PaginationSideButton: {
|
|
853
883
|
borderColor: 'color',
|
|
854
|
-
|
|
884
|
+
borderLeftWidth: 'border',
|
|
885
|
+
borderRightWidth: 'border',
|
|
886
|
+
borderTopWidth: 'border',
|
|
887
|
+
borderBottomWidth: 'border',
|
|
855
888
|
borderRadius: 'radius',
|
|
856
889
|
backgroundColor: 'color',
|
|
857
890
|
paddingLeft: 'size',
|
|
@@ -859,6 +892,7 @@ module.exports = {
|
|
|
859
892
|
paddingTop: 'size',
|
|
860
893
|
paddingBottom: 'size',
|
|
861
894
|
outerBorderColor: 'color',
|
|
895
|
+
outerBorderWidth: 'border',
|
|
862
896
|
color: 'color',
|
|
863
897
|
fontName: 'fontName',
|
|
864
898
|
fontWeight: 'fontWeight',
|
|
@@ -870,7 +904,8 @@ module.exports = {
|
|
|
870
904
|
iconDisplace: 'size',
|
|
871
905
|
width: 'size',
|
|
872
906
|
textAlign: 'flexJustifyContent',
|
|
873
|
-
displayLabel: 'show'
|
|
907
|
+
displayLabel: 'show',
|
|
908
|
+
height: 'size'
|
|
874
909
|
},
|
|
875
910
|
Progress: {
|
|
876
911
|
backgroundColor: 'color',
|
|
@@ -999,6 +1034,8 @@ module.exports = {
|
|
|
999
1034
|
descriptionFontSize: 'fontSize',
|
|
1000
1035
|
descriptionLineHeight: 'lineHeight',
|
|
1001
1036
|
descriptionMarginLeft: 'size',
|
|
1037
|
+
descriptionFontName: 'fontName',
|
|
1038
|
+
descriptionFontWeight: 'fontWeight',
|
|
1002
1039
|
inputBackgroundColor: 'color',
|
|
1003
1040
|
inputBorderColor: 'color',
|
|
1004
1041
|
inputBorderWidth: 'border',
|
|
@@ -1157,7 +1194,8 @@ module.exports = {
|
|
|
1157
1194
|
iconColor: 'color',
|
|
1158
1195
|
validationIcon: 'icon',
|
|
1159
1196
|
validationIconSize: 'size',
|
|
1160
|
-
validationIconColor: 'color'
|
|
1197
|
+
validationIconColor: 'color',
|
|
1198
|
+
feedbackBackgroundColor: 'color'
|
|
1161
1199
|
},
|
|
1162
1200
|
SideNav: { borderColor: 'color', borderWidth: 'border', borderStyle: 'borderStyle' },
|
|
1163
1201
|
SideNavItem: {
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telus-uds/system-theme-tokens",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.26.1",
|
|
4
4
|
"description": "Theme token schema for UDS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"system"
|
|
7
7
|
],
|
|
8
8
|
"author": "TELUS Digital",
|
|
9
9
|
"homepage": "https://github.com/telus/universal-design-system#readme",
|
|
10
|
-
"license": "
|
|
10
|
+
"license": "MIT",
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
13
|
"url": "git+https://github.com/telus/universal-design-system.git"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"skip": true
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@telus-uds/system-constants": "^1.2.
|
|
31
|
+
"@telus-uds/system-constants": "^1.2.1"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"chalk": "^4.1.2",
|