@telus-uds/system-theme-tokens 2.44.0 → 2.44.1
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 +11 -2
- package/appearances.js +5 -0
- package/components.js +11 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
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 Fri, 10 Nov 2023 22:28:25 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.44.1
|
|
8
|
+
|
|
9
|
+
Fri, 10 Nov 2023 22:28:25 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- fixes for error border validation to checkboxgroup, checkboxcardgroup, radiogroup and radiocardgroup (email not defined)
|
|
14
|
+
- new design tokens for quiet variant for link component (email not defined)
|
|
15
|
+
|
|
7
16
|
## 2.44.0
|
|
8
17
|
|
|
9
|
-
Tue, 07 Nov 2023 16:
|
|
18
|
+
Tue, 07 Nov 2023 16:32:21 GMT
|
|
10
19
|
|
|
11
20
|
### Minor changes
|
|
12
21
|
|
package/appearances.js
CHANGED
|
@@ -116,6 +116,11 @@ module.exports = {
|
|
|
116
116
|
'Theme styles to be applied to icon links depending on where the icon is in relation to the link text',
|
|
117
117
|
values: ['left', 'right'],
|
|
118
118
|
type: 'state'
|
|
119
|
+
},
|
|
120
|
+
quiet: {
|
|
121
|
+
description: 'When it is true, it does not show the decoration',
|
|
122
|
+
values: [true, false],
|
|
123
|
+
type: 'state'
|
|
119
124
|
}
|
|
120
125
|
},
|
|
121
126
|
Listbox: {
|
package/components.js
CHANGED
|
@@ -614,6 +614,7 @@ module.exports = {
|
|
|
614
614
|
fieldSpace: 'integer',
|
|
615
615
|
|
|
616
616
|
// Border for error feedback
|
|
617
|
+
showIcon: 'show',
|
|
617
618
|
outlineWidth: 'border',
|
|
618
619
|
borderBottomLeftRadius: 'radius',
|
|
619
620
|
borderBottomRightRadius: 'radius',
|
|
@@ -1331,7 +1332,16 @@ module.exports = {
|
|
|
1331
1332
|
space: 'integer',
|
|
1332
1333
|
|
|
1333
1334
|
// Fieldset
|
|
1334
|
-
fieldSpace: 'integer'
|
|
1335
|
+
fieldSpace: 'integer',
|
|
1336
|
+
|
|
1337
|
+
// Border for error feedback
|
|
1338
|
+
showIcon: 'show',
|
|
1339
|
+
outlineWidth: 'border',
|
|
1340
|
+
borderBottomLeftRadius: 'radius',
|
|
1341
|
+
borderBottomRightRadius: 'radius',
|
|
1342
|
+
borderTopLeftRadius: 'radius',
|
|
1343
|
+
borderTopRightRadius: 'radius',
|
|
1344
|
+
outlineOffset: 'size'
|
|
1335
1345
|
},
|
|
1336
1346
|
RadioGroup: {
|
|
1337
1347
|
space: 'integer',
|