@telus-uds/system-theme-tokens 2.32.0 → 2.33.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 CHANGED
@@ -1,12 +1,24 @@
1
1
  # Change Log - @telus-uds/system-theme-tokens
2
2
 
3
- This log was last generated on Wed, 14 Jun 2023 00:01:25 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 16 Jun 2023 21:05:00 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 2.33.0
8
+
9
+ Fri, 16 Jun 2023 21:05:00 GMT
10
+
11
+ ### Minor changes
12
+
13
+ - add tokens to allow borderColor for feature variant for Countdown (kyle.king2@telus.com)
14
+ - feature:update MultiSelectFilter to follow design (samuraix221@hotmail.com)
15
+ - New tokens added for the toast component (35577399+JoshHC@users.noreply.github.com)
16
+ - Unused token removed for tags component (35577399+JoshHC@users.noreply.github.com)
17
+ - standardize QuickLinksFeatureItem (kyle.king2@telus.com)
18
+
7
19
  ## 2.32.0
8
20
 
9
- Wed, 14 Jun 2023 00:01:25 GMT
21
+ Wed, 14 Jun 2023 00:06:30 GMT
10
22
 
11
23
  ### Minor changes
12
24
 
package/appearances.js CHANGED
@@ -144,6 +144,20 @@ module.exports = {
144
144
  type: 'state'
145
145
  }
146
146
  },
147
+ MultiSelectFilter: {
148
+ maxHeight: {
149
+ description:
150
+ 'Whether MultiselectFilter modal should expand responsively to content or a set maximu height',
151
+ values: [true],
152
+ type: 'state'
153
+ },
154
+ maxWidth: {
155
+ description:
156
+ 'Whether MultiselectFilter modal should expand to content or a set maximuh width',
157
+ values: [true],
158
+ type: 'state'
159
+ }
160
+ },
147
161
  NavigationBar: {
148
162
  focus,
149
163
  pressed,
@@ -186,6 +200,7 @@ module.exports = {
186
200
  },
187
201
  ProgressBar: { inactive },
188
202
  QuickLinksList: { hover, focus, pressed },
203
+ QuickLinksFeatureItem: { hover, focus, pressed },
189
204
  QuantitySelector: { focus, hover, disabled, pressed },
190
205
  Radio: { checked, error, focus, hover, inactive },
191
206
  RadioCard: { pressed, checked, error, focus, hover, inactive },
package/components.js CHANGED
@@ -196,7 +196,7 @@ module.exports = {
196
196
  listPaddingLeft: 'size',
197
197
  listItemMarkerFontSize: 'size',
198
198
  listItemMarkerLineHeight: 'lineHeight',
199
- headerLineHeight: 'size',
199
+ headerLineHeight: 'lineHeight',
200
200
  headerFontSize: 'size',
201
201
  headerFontName: 'fontName',
202
202
  headerFontWeight: 'fontWeight',
@@ -206,6 +206,7 @@ module.exports = {
206
206
  listItemPaddingLeft: 'size',
207
207
  closeButtonBorderSize: 'border',
208
208
  closeButtonBorderColor: 'color',
209
+ closeButtonBackgroundColor: 'color',
209
210
  closeButtonHeight: 'size',
210
211
  closeButtonMarginTop: 'size',
211
212
  closeButtonMarginLeft: 'size',
@@ -820,6 +821,22 @@ module.exports = {
820
821
  closeIconSize: 'size',
821
822
  closePadding: 'size'
822
823
  },
824
+ MultiSelectFilter: {
825
+ headerFontColor: 'color',
826
+ headerFontSize: 'fontSize',
827
+ headerFontName: 'fontName',
828
+ headerFontWeight: 'fontWeight',
829
+ headerLineHeight: 'lineHeight',
830
+ maxHeightSize: 'size',
831
+ maxWidthSize: 'size',
832
+ minWidth: 'size',
833
+ minHeight: 'size',
834
+ subHeaderLineHeight: 'lineHeight',
835
+ subHeaderFontName: 'fontName',
836
+ subHeaderFontWeight: 'fontWeight',
837
+ subHeaderFontSize: 'fontSize',
838
+ buttonDirection: 'direction'
839
+ },
823
840
  NavigationBar: {
824
841
  alignSelf: 'flexAlign',
825
842
  backgroundColor: 'color',
@@ -1055,8 +1072,12 @@ module.exports = {
1055
1072
  contentDirection: 'direction',
1056
1073
  contentSpace: 'integer',
1057
1074
  contentAlignItems: 'flexAlign',
1075
+ gap: 'size',
1058
1076
  textAlign: 'textAlign',
1059
- outerBorderColor: 'color'
1077
+ outerBorderColor: 'color',
1078
+ fontWeight: 'fontWeight',
1079
+ fontName: 'fontName',
1080
+ fontSize: 'fontSize'
1060
1081
  },
1061
1082
  Radio: {
1062
1083
  checkedBackgroundColor: 'color',
@@ -1332,7 +1353,13 @@ module.exports = {
1332
1353
  labelPaddingRight: 'size',
1333
1354
  showStepLabel: 'show',
1334
1355
  showStepName: 'show',
1335
- showStepTrackerLabel: 'show'
1356
+ showStepTrackerLabel: 'show',
1357
+ textStepTrackerLabel: 'integer',
1358
+ stepLabelColor: 'color',
1359
+ stepLabelFontSize: 'fontSize',
1360
+ stepLabelFontWeight: 'fontWeight',
1361
+ stepLabelFontName: 'fontName',
1362
+ stepLabelLineHeight: 'lineHeight'
1336
1363
  },
1337
1364
  SkipLink: {
1338
1365
  backgroundColor: 'color',
@@ -1439,7 +1466,6 @@ module.exports = {
1439
1466
  paddingRight: 'size',
1440
1467
  paddingTop: 'size',
1441
1468
  paddingBottom: 'size',
1442
- width: 'size',
1443
1469
  minWidth: 'size',
1444
1470
  outerBorderColor: 'color',
1445
1471
  outerBorderWidth: 'border',
@@ -1537,7 +1563,9 @@ module.exports = {
1537
1563
  animationColorBefore: 'color',
1538
1564
  animationColorAfter: 'color',
1539
1565
  animationDivColorBefore: 'color',
1540
- animationDivColorAfter: 'color'
1566
+ animationDivColorAfter: 'color',
1567
+ chevronlinkFontWeight: 'fontWeight',
1568
+ chevronlinkFontName: 'fontName'
1541
1569
  },
1542
1570
  ToggleSwitch: {
1543
1571
  borderColor: 'color',
@@ -1655,6 +1683,8 @@ module.exports = {
1655
1683
  Countdown: {
1656
1684
  containerBorderRadius: 'radius',
1657
1685
  containerGradient: 'gradient',
1686
+ containerBorderWidth: 'border',
1687
+ containerBorderColor: 'color',
1658
1688
  containerInverseBorder: 'border',
1659
1689
  containerInverseBorderColor: 'color',
1660
1690
  containerPaddingBottomTop: 'size',
@@ -1664,6 +1694,8 @@ module.exports = {
1664
1694
  textFontSize: 'fontSize',
1665
1695
  textLineHeight: 'lineHeight',
1666
1696
  labelFontSize: 'fontSize',
1697
+ labelFontName: 'fontName',
1698
+ labelFontWeight: 'fontWeight',
1667
1699
  labelLineHeight: 'lineHeight',
1668
1700
  textTimerFontWeight: 'fontWeight',
1669
1701
  textTimerFontName: 'fontName'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telus-uds/system-theme-tokens",
3
- "version": "2.32.0",
3
+ "version": "2.33.0",
4
4
  "description": "Theme token schema for UDS",
5
5
  "keywords": [
6
6
  "system"