@telus-uds/system-theme-tokens 2.1.0 → 2.2.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 +12 -2
- package/appearances.js +3 -1
- package/components.js +40 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
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 Fri, 12 Aug 2022 20:14:48 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.2.0
|
|
8
|
+
|
|
9
|
+
Fri, 12 Aug 2022 20:14:48 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- Define SkipLink component's theme schema (bill.somen@telus.com)
|
|
14
|
+
- feat: add thumbnail navigation to carousel (ruslan.bredikhin@nearform.com)
|
|
15
|
+
- Add CarouselTabs and subcomponents (alan.slater@nearform.com)
|
|
16
|
+
|
|
7
17
|
## 2.1.0
|
|
8
18
|
|
|
9
|
-
Wed, 20 Jul 2022 23:
|
|
19
|
+
Wed, 20 Jul 2022 23:57:28 GMT
|
|
10
20
|
|
|
11
21
|
### Minor changes
|
|
12
22
|
|
package/appearances.js
CHANGED
|
@@ -71,6 +71,7 @@ module.exports = {
|
|
|
71
71
|
},
|
|
72
72
|
Button: { focus, hover, pressed, inactive, selected },
|
|
73
73
|
ButtonGroupItem: { focus, hover, pressed, inactive, selected },
|
|
74
|
+
CarouselTabsPanelItem: { focus, hover, pressed, inactive, selected },
|
|
74
75
|
Checkbox: { checked, error, focus, hover, inactive },
|
|
75
76
|
ChevronLink: { hover },
|
|
76
77
|
ExpandCollapseControl: { pressed, hover, focus, expanded },
|
|
@@ -157,5 +158,6 @@ module.exports = {
|
|
|
157
158
|
TagsItem: { focus, hover, pressed, inactive, selected },
|
|
158
159
|
TextInput: { validation, hover, focus, inactive },
|
|
159
160
|
ToggleSwitch: { focus, hover, pressed, inactive, selected },
|
|
160
|
-
TooltipButton: { focus, hover, pressed }
|
|
161
|
+
TooltipButton: { focus, hover, pressed },
|
|
162
|
+
SkipLink: { focus }
|
|
161
163
|
}
|
package/components.js
CHANGED
|
@@ -85,7 +85,35 @@ module.exports = {
|
|
|
85
85
|
showPreviousNextNavigation: 'show',
|
|
86
86
|
showPanelNavigation: 'show',
|
|
87
87
|
spaceBetweenSlideAndPreviousNextNavigation: 'size',
|
|
88
|
-
spaceBetweenSlideAndPanelNavigation: 'size'
|
|
88
|
+
spaceBetweenSlideAndPanelNavigation: 'size',
|
|
89
|
+
thumbnailBorderColor: 'color',
|
|
90
|
+
thumbnailBorderRadius: 'radius',
|
|
91
|
+
thumbnailBorderWidth: 'border',
|
|
92
|
+
thumbnailContainerPaddingTop: 'size',
|
|
93
|
+
thumbnailMargin: 'size',
|
|
94
|
+
thumbnailPadding: 'size',
|
|
95
|
+
thumbnailSelectedBorderColor: 'color',
|
|
96
|
+
thumbnailSelectedBorderWidth: 'border',
|
|
97
|
+
thumbnailSize: 'size'
|
|
98
|
+
},
|
|
99
|
+
CarouselTabsPanelItem: {
|
|
100
|
+
paddingLeft: 'size',
|
|
101
|
+
paddingRight: 'size',
|
|
102
|
+
paddingTop: 'size',
|
|
103
|
+
paddingBottom: 'size',
|
|
104
|
+
borderBottomColor: 'color',
|
|
105
|
+
borderBottomWidth: 'border',
|
|
106
|
+
borderBottomStyle: 'borderStyle',
|
|
107
|
+
flex: 'integer',
|
|
108
|
+
alignItems: 'flexAlign',
|
|
109
|
+
justifyContent: 'flexJustifyContent',
|
|
110
|
+
color: 'color',
|
|
111
|
+
fontSize: 'fontSize',
|
|
112
|
+
fontScaleCap: 'fontSize',
|
|
113
|
+
lineHeight: 'lineHeight',
|
|
114
|
+
letterSpacing: 'letterSpacing',
|
|
115
|
+
fontWeight: 'fontWeight',
|
|
116
|
+
fontName: 'fontName'
|
|
89
117
|
},
|
|
90
118
|
Checkbox: {
|
|
91
119
|
containerBackgroundColor: 'color',
|
|
@@ -601,6 +629,17 @@ module.exports = {
|
|
|
601
629
|
showStepName: 'show',
|
|
602
630
|
showStepTrackerLabel: 'show'
|
|
603
631
|
},
|
|
632
|
+
SkipLink: {
|
|
633
|
+
backgroundColor: 'color',
|
|
634
|
+
color: 'color',
|
|
635
|
+
outlineColor: 'color',
|
|
636
|
+
outlineOffset: 'border',
|
|
637
|
+
outlineStyle: 'borderStyle',
|
|
638
|
+
outlineWidth: 'border',
|
|
639
|
+
paddingHorizontal: 'size',
|
|
640
|
+
paddingVertical: 'size',
|
|
641
|
+
borderRadius: 'radius'
|
|
642
|
+
},
|
|
604
643
|
Tabs: {
|
|
605
644
|
nextIcon: 'icon',
|
|
606
645
|
previousIcon: 'icon',
|