@telus-uds/system-theme-tokens 2.0.2 → 2.3.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 +28 -2
- package/appearances.js +3 -1
- package/components.js +50 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,38 @@
|
|
|
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, 17 Aug 2022 20:48:46 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.3.0
|
|
8
|
+
|
|
9
|
+
Wed, 17 Aug 2022 20:48:46 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- Allowing icons to the button component (srikanthkhari@gmail.com)
|
|
14
|
+
|
|
15
|
+
## 2.2.0
|
|
16
|
+
|
|
17
|
+
Fri, 12 Aug 2022 20:17:12 GMT
|
|
18
|
+
|
|
19
|
+
### Minor changes
|
|
20
|
+
|
|
21
|
+
- Define SkipLink component's theme schema (bill.somen@telus.com)
|
|
22
|
+
- feat: add thumbnail navigation to carousel (ruslan.bredikhin@nearform.com)
|
|
23
|
+
- Add CarouselTabs and subcomponents (alan.slater@nearform.com)
|
|
24
|
+
|
|
25
|
+
## 2.1.0
|
|
26
|
+
|
|
27
|
+
Wed, 20 Jul 2022 23:57:28 GMT
|
|
28
|
+
|
|
29
|
+
### Minor changes
|
|
30
|
+
|
|
31
|
+
- Define schema for Carousel (shahzaibkhalidmalik@outlook.com)
|
|
32
|
+
|
|
7
33
|
## 2.0.2
|
|
8
34
|
|
|
9
|
-
Tue, 14 Jun 2022 15:
|
|
35
|
+
Tue, 14 Jun 2022 15:27:31 GMT
|
|
10
36
|
|
|
11
37
|
### Patches
|
|
12
38
|
|
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
|
@@ -24,6 +24,9 @@ module.exports = {
|
|
|
24
24
|
paddingBottom: 'size',
|
|
25
25
|
width: 'size',
|
|
26
26
|
minWidth: 'size',
|
|
27
|
+
iconSize: 'size',
|
|
28
|
+
iconSpace: 'integer',
|
|
29
|
+
icon: 'icon',
|
|
27
30
|
|
|
28
31
|
outerBorderColor: 'color',
|
|
29
32
|
outerBorderWidth: 'border',
|
|
@@ -79,6 +82,42 @@ module.exports = {
|
|
|
79
82
|
minWidth: 'size',
|
|
80
83
|
shadow: 'shadow'
|
|
81
84
|
},
|
|
85
|
+
Carousel: {
|
|
86
|
+
nextIcon: 'icon',
|
|
87
|
+
previousIcon: 'icon',
|
|
88
|
+
showPreviousNextNavigation: 'show',
|
|
89
|
+
showPanelNavigation: 'show',
|
|
90
|
+
spaceBetweenSlideAndPreviousNextNavigation: 'size',
|
|
91
|
+
spaceBetweenSlideAndPanelNavigation: 'size',
|
|
92
|
+
thumbnailBorderColor: 'color',
|
|
93
|
+
thumbnailBorderRadius: 'radius',
|
|
94
|
+
thumbnailBorderWidth: 'border',
|
|
95
|
+
thumbnailContainerPaddingTop: 'size',
|
|
96
|
+
thumbnailMargin: 'size',
|
|
97
|
+
thumbnailPadding: 'size',
|
|
98
|
+
thumbnailSelectedBorderColor: 'color',
|
|
99
|
+
thumbnailSelectedBorderWidth: 'border',
|
|
100
|
+
thumbnailSize: 'size'
|
|
101
|
+
},
|
|
102
|
+
CarouselTabsPanelItem: {
|
|
103
|
+
paddingLeft: 'size',
|
|
104
|
+
paddingRight: 'size',
|
|
105
|
+
paddingTop: 'size',
|
|
106
|
+
paddingBottom: 'size',
|
|
107
|
+
borderBottomColor: 'color',
|
|
108
|
+
borderBottomWidth: 'border',
|
|
109
|
+
borderBottomStyle: 'borderStyle',
|
|
110
|
+
flex: 'integer',
|
|
111
|
+
alignItems: 'flexAlign',
|
|
112
|
+
justifyContent: 'flexJustifyContent',
|
|
113
|
+
color: 'color',
|
|
114
|
+
fontSize: 'fontSize',
|
|
115
|
+
fontScaleCap: 'fontSize',
|
|
116
|
+
lineHeight: 'lineHeight',
|
|
117
|
+
letterSpacing: 'letterSpacing',
|
|
118
|
+
fontWeight: 'fontWeight',
|
|
119
|
+
fontName: 'fontName'
|
|
120
|
+
},
|
|
82
121
|
Checkbox: {
|
|
83
122
|
containerBackgroundColor: 'color',
|
|
84
123
|
feedbackMarginBottom: 'size',
|
|
@@ -593,6 +632,17 @@ module.exports = {
|
|
|
593
632
|
showStepName: 'show',
|
|
594
633
|
showStepTrackerLabel: 'show'
|
|
595
634
|
},
|
|
635
|
+
SkipLink: {
|
|
636
|
+
backgroundColor: 'color',
|
|
637
|
+
color: 'color',
|
|
638
|
+
outlineColor: 'color',
|
|
639
|
+
outlineOffset: 'border',
|
|
640
|
+
outlineStyle: 'borderStyle',
|
|
641
|
+
outlineWidth: 'border',
|
|
642
|
+
paddingHorizontal: 'size',
|
|
643
|
+
paddingVertical: 'size',
|
|
644
|
+
borderRadius: 'radius'
|
|
645
|
+
},
|
|
596
646
|
Tabs: {
|
|
597
647
|
nextIcon: 'icon',
|
|
598
648
|
previousIcon: 'icon',
|