@telus-uds/system-theme-tokens 2.2.0 → 2.5.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 Fri, 12 Aug 2022 20:14:48 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 12 Sep 2022 20:03:12 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 2.5.0
8
+
9
+ Mon, 12 Sep 2022 20:03:12 GMT
10
+
11
+ ### Minor changes
12
+
13
+ - Add showPanelTabs token to Carousel (alan.slater@nearform.com)
14
+
15
+ ## 2.4.0
16
+
17
+ Tue, 23 Aug 2022 19:32:37 GMT
18
+
19
+ ### Minor changes
20
+
21
+ - feat: add width variant to the Allium modal (ruslan.bredikhin@nearform.com)
22
+
23
+ ## 2.3.0
24
+
25
+ Wed, 17 Aug 2022 20:50:59 GMT
26
+
27
+ ### Minor changes
28
+
29
+ - Allowing icons to the button component (srikanthkhari@gmail.com)
30
+
7
31
  ## 2.2.0
8
32
 
9
- Fri, 12 Aug 2022 20:14:48 GMT
33
+ Fri, 12 Aug 2022 20:17:12 GMT
10
34
 
11
35
  ### Minor changes
12
36
 
package/appearances.js CHANGED
@@ -100,6 +100,11 @@ module.exports = {
100
100
  'Whether a modal should expand responsively to the maximum of 8 layout columns width',
101
101
  values: [true],
102
102
  type: 'state'
103
+ },
104
+ width: {
105
+ description: 'The width of the modal',
106
+ values: ['s', 'm', 'l', 'xl'],
107
+ type: 'state'
103
108
  }
104
109
  },
105
110
  Notification: {
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',
@@ -84,6 +87,7 @@ module.exports = {
84
87
  previousIcon: 'icon',
85
88
  showPreviousNextNavigation: 'show',
86
89
  showPanelNavigation: 'show',
90
+ showPanelTabs: 'show',
87
91
  spaceBetweenSlideAndPreviousNextNavigation: 'size',
88
92
  spaceBetweenSlideAndPanelNavigation: 'size',
89
93
  thumbnailBorderColor: 'color',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@telus-uds/system-theme-tokens",
3
- "version": "2.2.0",
4
- "description": "Theme token schema",
3
+ "version": "2.5.0",
4
+ "description": "Theme token schema for UDS",
5
5
  "keywords": [
6
6
  "system"
7
7
  ],