@telus-uds/system-theme-tokens 2.44.0 → 2.45.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 +20 -2
- package/appearances.js +5 -0
- package/components.js +13 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,30 @@
|
|
|
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 Wed, 15 Nov 2023 18:34:44 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.45.0
|
|
8
|
+
|
|
9
|
+
Wed, 15 Nov 2023 18:34:44 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- New token bulletIcon added (35577399+JoshHC@users.noreply.github.com)
|
|
14
|
+
- refactor badge component for multiplatform (guillermo.peitzner@telus.com)
|
|
15
|
+
|
|
16
|
+
## 2.44.1
|
|
17
|
+
|
|
18
|
+
Fri, 10 Nov 2023 22:37:27 GMT
|
|
19
|
+
|
|
20
|
+
### Patches
|
|
21
|
+
|
|
22
|
+
- fixes for error border validation to checkboxgroup, checkboxcardgroup, radiogroup and radiocardgroup (email not defined)
|
|
23
|
+
- new design tokens for quiet variant for link component (email not defined)
|
|
24
|
+
|
|
7
25
|
## 2.44.0
|
|
8
26
|
|
|
9
|
-
Tue, 07 Nov 2023 16:
|
|
27
|
+
Tue, 07 Nov 2023 16:32:21 GMT
|
|
10
28
|
|
|
11
29
|
### Minor changes
|
|
12
30
|
|
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',
|
|
@@ -890,12 +891,11 @@ module.exports = {
|
|
|
890
891
|
dividerSize: 'border',
|
|
891
892
|
itemBulletContainerWidth: 'size',
|
|
892
893
|
itemBulletContainerAlign: 'textAlign',
|
|
893
|
-
itemBulletWidth: 'size',
|
|
894
|
-
itemBulletHeight: 'size',
|
|
895
894
|
itemBulletColor: 'color',
|
|
896
895
|
itemIconSize: 'size',
|
|
897
896
|
itemIconColor: 'color',
|
|
898
|
-
listGutter: 'size'
|
|
897
|
+
listGutter: 'size',
|
|
898
|
+
bulletIcon: 'icon'
|
|
899
899
|
},
|
|
900
900
|
Listbox: {
|
|
901
901
|
groupBorderRadius: 'radius',
|
|
@@ -1331,7 +1331,16 @@ module.exports = {
|
|
|
1331
1331
|
space: 'integer',
|
|
1332
1332
|
|
|
1333
1333
|
// Fieldset
|
|
1334
|
-
fieldSpace: 'integer'
|
|
1334
|
+
fieldSpace: 'integer',
|
|
1335
|
+
|
|
1336
|
+
// Border for error feedback
|
|
1337
|
+
showIcon: 'show',
|
|
1338
|
+
outlineWidth: 'border',
|
|
1339
|
+
borderBottomLeftRadius: 'radius',
|
|
1340
|
+
borderBottomRightRadius: 'radius',
|
|
1341
|
+
borderTopLeftRadius: 'radius',
|
|
1342
|
+
borderTopRightRadius: 'radius',
|
|
1343
|
+
outlineOffset: 'size'
|
|
1335
1344
|
},
|
|
1336
1345
|
RadioGroup: {
|
|
1337
1346
|
space: 'integer',
|