@telus-uds/system-theme-tokens 2.3.0 → 2.4.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 +10 -2
- package/appearances.js +5 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
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 Tue, 23 Aug 2022 19:30:28 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.4.0
|
|
8
|
+
|
|
9
|
+
Tue, 23 Aug 2022 19:30:28 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- feat: add width variant to the Allium modal (ruslan.bredikhin@nearform.com)
|
|
14
|
+
|
|
7
15
|
## 2.3.0
|
|
8
16
|
|
|
9
|
-
Wed, 17 Aug 2022 20:
|
|
17
|
+
Wed, 17 Aug 2022 20:50:59 GMT
|
|
10
18
|
|
|
11
19
|
### Minor changes
|
|
12
20
|
|
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: {
|