@telus-uds/system-theme-tokens 2.63.0 → 2.65.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,35 @@
1
1
  # Change Log - @telus-uds/system-theme-tokens
2
2
 
3
- This log was last generated on Mon, 16 Sep 2024 12:26:18 GMT and should not be manually modified.
3
+ This log was last generated on Sat, 12 Oct 2024 00:31:05 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 2.65.0
8
+
9
+ Sat, 12 Oct 2024 00:31:05 GMT
10
+
11
+ ### Minor changes
12
+
13
+ - `Progress`: add shadow tokens to Progress and ProgressBar (jacqui.koroll@telus.com)
14
+ - `Card`: new token backgroundGradient added to be able to use the gradient as background (35577399+JoshHC@users.noreply.github.com)
15
+
16
+ ## 2.64.0
17
+
18
+ Wed, 25 Sep 2024 17:07:47 GMT
19
+
20
+ ### Minor changes
21
+
22
+ - `TabBar`: tokens added (35577399+JoshHC@users.noreply.github.com)
23
+ - `Link`: add `inline` variant to `iconPosition` (evander.owusu@telus.com)
24
+ - `CardGroup`: add new padding related tokens (35577399+JoshHC@users.noreply.github.com)
25
+
26
+ ### Patches
27
+
28
+ - `DownloadApp`: add tokens schema (Mauricio.BatresMontejo@telus.com)
29
+
7
30
  ## 2.63.0
8
31
 
9
- Mon, 16 Sep 2024 12:26:18 GMT
32
+ Mon, 16 Sep 2024 12:35:38 GMT
10
33
 
11
34
  ### Minor changes
12
35
 
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
@@ -376,7 +376,8 @@ module.exports = {
376
376
  footnoteLinkFontName: 'fontName',
377
377
  footnoteLinkFontWeight: 'fontWeight',
378
378
  footnoteLinkFontSize: 'fontSize',
379
- footnoteLinkLineHeight: 'lineHeight'
379
+ footnoteLinkLineHeight: 'lineHeight',
380
+ alignItemsText: 'flexAlign'
380
381
  },
381
382
  ProductCard: {
382
383
  borderStyle: 'borderStyle',
@@ -561,6 +562,7 @@ module.exports = {
561
562
  backgroundColor: 'color',
562
563
  borderColor: 'color',
563
564
  gradient: 'gradient',
565
+ backgroundGradient: 'gradient',
564
566
  borderRadius: 'radius',
565
567
  borderWidth: 'border',
566
568
  paddingBottom: 'size',
@@ -602,7 +604,13 @@ module.exports = {
602
604
  borderBottomRightRadius: 'radius',
603
605
  borderTopLeftRadius: 'radius',
604
606
  borderTopRightRadius: 'radius',
605
- outlineOffset: 'size'
607
+ outlineOffset: 'size',
608
+
609
+ // For padding of the card
610
+ paddingTop: 'size',
611
+ paddingBottom: 'size',
612
+ paddingLeft: 'size',
613
+ paddingRight: 'size'
606
614
  },
607
615
  PreviewCard: {
608
616
  flex: 'integer',
@@ -805,6 +813,17 @@ module.exports = {
805
813
  innerBubbleBorderRadius: 'radius'
806
814
  },
807
815
  Divider: { width: 'size', color: 'color' },
816
+ DownloadApp: {
817
+ borderColor: 'color',
818
+ borderWidth: 'border',
819
+ borderGap: 'size',
820
+ borderRadius: 'radius',
821
+ padding: 'size',
822
+ androidENIcon: 'icon',
823
+ androidFRIcon: 'icon',
824
+ iosENIcon: 'icon',
825
+ iosFRIcon: 'icon'
826
+ },
808
827
  DatePicker: {
809
828
  calendarBackgroundColor: 'color',
810
829
  calendarDayBlockedCalendarHoverBackground: 'color',
@@ -1313,14 +1332,16 @@ module.exports = {
1313
1332
  borderWidth: 'border',
1314
1333
  borderColor: 'color',
1315
1334
  borderRadius: 'radius',
1316
- height: 'size'
1335
+ height: 'size',
1336
+ shadow: 'shadow'
1317
1337
  },
1318
1338
  ProgressBar: {
1319
1339
  backgroundColor: 'color',
1320
1340
  borderRadius: 'radius',
1321
1341
  gradient: 'gradient',
1322
1342
  outlineColor: 'color',
1323
- outlineWidth: 'border'
1343
+ outlineWidth: 'border',
1344
+ shadow: 'shadow'
1324
1345
  },
1325
1346
  QuickLinks: {
1326
1347
  // Sets which subcomponents are rendered
@@ -1797,6 +1818,29 @@ module.exports = {
1797
1818
  fontName: 'fontName',
1798
1819
  fontWeight: 'fontWeight'
1799
1820
  },
1821
+ TabBar: {
1822
+ paddingTop: 'size',
1823
+ paddingBottom: 'size',
1824
+ borderTopWidth: 'border',
1825
+ borderTopColor: 'color',
1826
+ gap: 'size',
1827
+ backgroundColor: 'color',
1828
+ paddingLeft: 'size',
1829
+ paddingRight: 'size'
1830
+ },
1831
+ TabBarItem: {
1832
+ borderRadius: 'radius',
1833
+ backgroundColor: 'color',
1834
+ paddingTop: 'size',
1835
+ paddingBottom: 'size',
1836
+ fontName: 'fontName',
1837
+ fontWeight: 'fontWeight',
1838
+ color: 'color',
1839
+ lineHeight: 'lineHeight',
1840
+ iconSize: 'size',
1841
+ iconColor: 'color',
1842
+ activeColor: 'color'
1843
+ },
1800
1844
  Tags: {
1801
1845
  space: 'integer',
1802
1846
  direction: 'direction',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telus-uds/system-theme-tokens",
3
- "version": "2.63.0",
3
+ "version": "2.65.0",
4
4
  "description": "Theme token schema for UDS",
5
5
  "keywords": [
6
6
  "system"