@telus-uds/system-theme-tokens 2.53.0 → 2.54.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 +11 -2
- package/components.js +20 -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, 05 Apr 2024 17:10:34 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 2.54.0
|
|
8
|
+
|
|
9
|
+
Fri, 05 Apr 2024 17:10:34 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- Add `ProductCard` component (chris.tafts@telus.com)
|
|
14
|
+
- add tokens to icon component for circle container (mauricio.batresmontejo@telus.com)
|
|
15
|
+
|
|
7
16
|
## 2.53.0
|
|
8
17
|
|
|
9
|
-
Wed, 06 Mar 2024 00:
|
|
18
|
+
Wed, 06 Mar 2024 00:09:16 GMT
|
|
10
19
|
|
|
11
20
|
### Minor changes
|
|
12
21
|
|
package/components.js
CHANGED
|
@@ -294,6 +294,15 @@ module.exports = {
|
|
|
294
294
|
footnoteLinkFontSize: 'fontSize',
|
|
295
295
|
footnoteLinkLineHeight: 'lineHeight'
|
|
296
296
|
},
|
|
297
|
+
ProductCard: {
|
|
298
|
+
borderStyle: 'borderStyle',
|
|
299
|
+
borderColor: 'color',
|
|
300
|
+
borderWidth: 'border',
|
|
301
|
+
borderRadius: 'radius',
|
|
302
|
+
paddingHorizontal: 'size',
|
|
303
|
+
paddingVertical: 'size',
|
|
304
|
+
selectedButtonIcon: 'icon'
|
|
305
|
+
},
|
|
297
306
|
ActivityIndicator: { size: 'size', thickness: 'border', color: 'color' },
|
|
298
307
|
Badge: {
|
|
299
308
|
fontWeight: 'fontWeight',
|
|
@@ -848,7 +857,17 @@ module.exports = {
|
|
|
848
857
|
padding: 'size',
|
|
849
858
|
shadow: 'shadow'
|
|
850
859
|
},
|
|
851
|
-
Icon: {
|
|
860
|
+
Icon: {
|
|
861
|
+
size: 'size',
|
|
862
|
+
color: 'color',
|
|
863
|
+
backgroundColor: 'color',
|
|
864
|
+
borderRadius: 'radius',
|
|
865
|
+
padding: 'size',
|
|
866
|
+
scale: 'integer',
|
|
867
|
+
translateX: 'size',
|
|
868
|
+
translateY: 'size',
|
|
869
|
+
width: 'size'
|
|
870
|
+
},
|
|
852
871
|
InputLabel: {
|
|
853
872
|
gap: 'size',
|
|
854
873
|
color: 'color',
|