@telus-uds/system-theme-tokens 2.63.0 → 2.64.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 +16 -2
- package/appearances.js +3 -1
- package/components.js +41 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,26 @@
|
|
|
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, 25 Sep 2024 16:57:49 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.64.0
|
|
8
|
+
|
|
9
|
+
Wed, 25 Sep 2024 16:57:49 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- `TabBar`: tokens added (35577399+JoshHC@users.noreply.github.com)
|
|
14
|
+
- `Link`: add `inline` variant to `iconPosition` (evander.owusu@telus.com)
|
|
15
|
+
- `CardGroup`: add new padding related tokens (35577399+JoshHC@users.noreply.github.com)
|
|
16
|
+
|
|
17
|
+
### Patches
|
|
18
|
+
|
|
19
|
+
- `DownloadApp`: add tokens schema (Mauricio.BatresMontejo@telus.com)
|
|
20
|
+
|
|
7
21
|
## 2.63.0
|
|
8
22
|
|
|
9
|
-
Mon, 16 Sep 2024 12:
|
|
23
|
+
Mon, 16 Sep 2024 12:35:38 GMT
|
|
10
24
|
|
|
11
25
|
### Minor changes
|
|
12
26
|
|
package/appearances.js
CHANGED
|
@@ -101,6 +101,7 @@ module.exports = {
|
|
|
101
101
|
ChevronLink: { focus, hover, pressed },
|
|
102
102
|
ColourToggle: { focus, hover, pressed, selected },
|
|
103
103
|
DatePicker: { pressed, selected, focus },
|
|
104
|
+
DownloadApp: { focus, hover, pressed },
|
|
104
105
|
ExpandCollapseControl: { pressed, hover, focus, expanded },
|
|
105
106
|
ExpandCollapseMiniControl: { focus },
|
|
106
107
|
ExpandCollapsePanel: { expanded },
|
|
@@ -118,7 +119,7 @@ module.exports = {
|
|
|
118
119
|
iconPosition: {
|
|
119
120
|
description:
|
|
120
121
|
'Theme styles to be applied to icon links depending on where the icon is in relation to the link text',
|
|
121
|
-
values: ['left', 'right'],
|
|
122
|
+
values: ['left', 'right', 'inline'],
|
|
122
123
|
type: 'state'
|
|
123
124
|
},
|
|
124
125
|
quiet: {
|
|
@@ -252,6 +253,7 @@ module.exports = {
|
|
|
252
253
|
},
|
|
253
254
|
StoryCard: { focus, hover, pressed },
|
|
254
255
|
TabsItem: { focus, hover, pressed, selected },
|
|
256
|
+
TabBarItem: { focus, hover, pressed, selected },
|
|
255
257
|
TagsItem: { focus, hover, pressed, inactive, selected },
|
|
256
258
|
TextInput: { validation, hover, inactive, focus: inputFocus },
|
|
257
259
|
TermsAndConditions: { expanded, focus, hover, pressed },
|
package/components.js
CHANGED
|
@@ -602,7 +602,13 @@ module.exports = {
|
|
|
602
602
|
borderBottomRightRadius: 'radius',
|
|
603
603
|
borderTopLeftRadius: 'radius',
|
|
604
604
|
borderTopRightRadius: 'radius',
|
|
605
|
-
outlineOffset: 'size'
|
|
605
|
+
outlineOffset: 'size',
|
|
606
|
+
|
|
607
|
+
// For padding of the card
|
|
608
|
+
paddingTop: 'size',
|
|
609
|
+
paddingBottom: 'size',
|
|
610
|
+
paddingLeft: 'size',
|
|
611
|
+
paddingRight: 'size'
|
|
606
612
|
},
|
|
607
613
|
PreviewCard: {
|
|
608
614
|
flex: 'integer',
|
|
@@ -805,6 +811,17 @@ module.exports = {
|
|
|
805
811
|
innerBubbleBorderRadius: 'radius'
|
|
806
812
|
},
|
|
807
813
|
Divider: { width: 'size', color: 'color' },
|
|
814
|
+
DownloadApp: {
|
|
815
|
+
borderColor: 'color',
|
|
816
|
+
borderWidth: 'border',
|
|
817
|
+
borderGap: 'size',
|
|
818
|
+
borderRadius: 'radius',
|
|
819
|
+
padding: 'size',
|
|
820
|
+
androidENIcon: 'icon',
|
|
821
|
+
androidFRIcon: 'icon',
|
|
822
|
+
iosENIcon: 'icon',
|
|
823
|
+
iosFRIcon: 'icon'
|
|
824
|
+
},
|
|
808
825
|
DatePicker: {
|
|
809
826
|
calendarBackgroundColor: 'color',
|
|
810
827
|
calendarDayBlockedCalendarHoverBackground: 'color',
|
|
@@ -1797,6 +1814,29 @@ module.exports = {
|
|
|
1797
1814
|
fontName: 'fontName',
|
|
1798
1815
|
fontWeight: 'fontWeight'
|
|
1799
1816
|
},
|
|
1817
|
+
TabBar: {
|
|
1818
|
+
paddingTop: 'size',
|
|
1819
|
+
paddingBottom: 'size',
|
|
1820
|
+
borderTopWidth: 'border',
|
|
1821
|
+
borderTopColor: 'color',
|
|
1822
|
+
gap: 'size',
|
|
1823
|
+
backgroundColor: 'color',
|
|
1824
|
+
paddingLeft: 'size',
|
|
1825
|
+
paddingRight: 'size'
|
|
1826
|
+
},
|
|
1827
|
+
TabBarItem: {
|
|
1828
|
+
borderRadius: 'radius',
|
|
1829
|
+
backgroundColor: 'color',
|
|
1830
|
+
paddingTop: 'size',
|
|
1831
|
+
paddingBottom: 'size',
|
|
1832
|
+
fontName: 'fontName',
|
|
1833
|
+
fontWeight: 'fontWeight',
|
|
1834
|
+
color: 'color',
|
|
1835
|
+
lineHeight: 'lineHeight',
|
|
1836
|
+
iconSize: 'size',
|
|
1837
|
+
iconColor: 'color',
|
|
1838
|
+
activeColor: 'color'
|
|
1839
|
+
},
|
|
1800
1840
|
Tags: {
|
|
1801
1841
|
space: 'integer',
|
|
1802
1842
|
direction: 'direction',
|