@telus-uds/system-theme-tokens 2.46.0 → 2.48.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,36 @@
1
1
  # Change Log - @telus-uds/system-theme-tokens
2
2
 
3
- This log was last generated on Sat, 18 Nov 2023 02:25:11 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 13 Dec 2023 21:13:57 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 2.48.0
8
+
9
+ Wed, 13 Dec 2023 21:13:57 GMT
10
+
11
+ ### Minor changes
12
+
13
+ - new ColourToggle component tokens (mauricio.batresmontejo@telus.com)
14
+
15
+ ### Patches
16
+
17
+ - add row reverse property for direction token (mauricio.batresmontejo@telus.com)
18
+
19
+ ## 2.47.0
20
+
21
+ Fri, 01 Dec 2023 21:08:37 GMT
22
+
23
+ ### Minor changes
24
+
25
+ - `Card`: Add interactive section states (shahzaibkhalidmalik@outlook.com)
26
+
27
+ ### Patches
28
+
29
+ - add blocklineHeight to chevronLink system theme tokens (evander.owusu@telus.com)
30
+
7
31
  ## 2.46.0
8
32
 
9
- Sat, 18 Nov 2023 02:25:11 GMT
33
+ Sat, 18 Nov 2023 02:32:49 GMT
10
34
 
11
35
  ### Minor changes
12
36
 
package/appearances.js CHANGED
@@ -91,11 +91,13 @@ module.exports = {
91
91
  PreviewCard: { pressed, hover, focus },
92
92
  ButtonDropdown: { focus, hover, pressed, inactive, selected, open },
93
93
  ButtonGroupItem: { focus, hover, pressed, inactive, selected },
94
+ Card: { focus, hover, pressed },
94
95
  CarouselTabsPanelItem: { focus, hover, pressed, inactive, selected },
95
96
  CarouselThumbnail: { focus, hover, pressed },
96
97
  Checkbox: { checked, error, focus, hover, inactive },
97
98
  CheckboxCard: { pressed, checked, error, focus, hover, inactive },
98
99
  ChevronLink: { focus, hover, pressed },
100
+ ColourToggle: { focus, hover, pressed, selected },
99
101
  DatePicker: { pressed, selected, focus },
100
102
  ExpandCollapseControl: { pressed, hover, focus, expanded },
101
103
  ExpandCollapseMiniControl: { focus },
package/components.js CHANGED
@@ -631,7 +631,8 @@ module.exports = {
631
631
  iconDisplace: 'size',
632
632
  iconSize: 'size',
633
633
  iconSpace: 'integer',
634
- textLine: 'textLine'
634
+ textLine: 'textLine',
635
+ blockLineHeight: 'lineHeight'
635
636
  },
636
637
  CheckboxGroup: {
637
638
  space: 'integer',
@@ -644,6 +645,31 @@ module.exports = {
644
645
  borderTopRightRadius: 'radius',
645
646
  outlineOffset: 'size'
646
647
  },
648
+ ColourToggle: {
649
+ space: 'integer',
650
+ shadow: 'shadow',
651
+
652
+ // general Border Bubble
653
+ borderColor: 'color',
654
+ borderWidth: 'border',
655
+ borderRadius: 'radius',
656
+
657
+ // Border Bubble
658
+ bubbleBorderColor: 'color',
659
+ bubbleBorderWidth: 'border',
660
+ bubbleBorderRadius: 'radius',
661
+
662
+ // Outer Colour Bubble
663
+ outerBubbleContentAlignItems: 'flexAlign',
664
+ outerBubbleJustifyContent: 'flexJustifyContent',
665
+ outerBubbleHeight: 'size',
666
+ outerBubbleWidth: 'size',
667
+
668
+ // Inner Colour Bubble
669
+ innerBubbleHeight: 'size',
670
+ innerBubbleWidth: 'size',
671
+ innerBubbleBorderRadius: 'radius'
672
+ },
647
673
  Divider: { width: 'size', color: 'color' },
648
674
  DatePicker: {
649
675
  calendarBackgroundColor: 'color',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telus-uds/system-theme-tokens",
3
- "version": "2.46.0",
3
+ "version": "2.48.0",
4
4
  "description": "Theme token schema for UDS",
5
5
  "keywords": [
6
6
  "system"
package/tokens.js CHANGED
@@ -264,7 +264,8 @@ const tokenTypes = applyDynamicTypes({
264
264
  type: types.enum,
265
265
  values: {
266
266
  column: 'column', // Stacks children vertically
267
- row: 'row' // Stacks children horizontally
267
+ row: 'row', // Stacks children horizontally
268
+ rowReverse: 'row-reverse' // Stacks children horizontally, but reversed
268
269
  }
269
270
  },
270
271
  show: {