@telus-uds/system-theme-tokens 3.0.0 → 3.1.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 +13 -2
- package/components.js +15 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
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 Mon, 02 Dec 2024 20:23:48 GMT and should not be manually modified. -->
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 3.1.0
|
|
8
|
+
|
|
9
|
+
Mon, 02 Dec 2024 20:23:48 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- `Video`: new tokens remainingTimestampMarginRight and remainingTimestampMarginLeft added (35577399+JoshHC@users.noreply.github.com)
|
|
14
|
+
- `Tooltip`: Customized/optional props implemented, max width and min width (shivam.gupta3@telus.com)
|
|
15
|
+
- `Modal`: update component to enable heading bottom border and content spacing (eduardo.pereira1@telus.com)
|
|
16
|
+
- `Status` and `Icon` additional token implemented (shivam.gupta3@telus.com)
|
|
17
|
+
|
|
7
18
|
## 3.0.0
|
|
8
19
|
|
|
9
|
-
Fri, 22 Nov 2024 23:
|
|
20
|
+
Fri, 22 Nov 2024 23:43:48 GMT
|
|
10
21
|
|
|
11
22
|
### Major changes
|
|
12
23
|
|
package/components.js
CHANGED
|
@@ -170,7 +170,9 @@ export default {
|
|
|
170
170
|
paddingRight: 'size',
|
|
171
171
|
paddingTop: 'size',
|
|
172
172
|
textColor: 'color',
|
|
173
|
-
textLineHeight: 'lineHeight'
|
|
173
|
+
textLineHeight: 'lineHeight',
|
|
174
|
+
iconSize: 'size',
|
|
175
|
+
iconPaddingTop: 'size'
|
|
174
176
|
},
|
|
175
177
|
Video: {
|
|
176
178
|
borderColor: 'color',
|
|
@@ -218,6 +220,8 @@ export default {
|
|
|
218
220
|
thumbBackground: 'color',
|
|
219
221
|
timestampMarginLeft: 'size',
|
|
220
222
|
timestampMarginRight: 'size',
|
|
223
|
+
remainingTimestampMarginLeft: 'size',
|
|
224
|
+
remainingTimestampMarginRight: 'size',
|
|
221
225
|
trackGradientStart: 'color',
|
|
222
226
|
trackGradientEnd: 'color',
|
|
223
227
|
rangeBackground: 'color'
|
|
@@ -1005,7 +1009,8 @@ export default {
|
|
|
1005
1009
|
scale: 'integer',
|
|
1006
1010
|
translateX: 'size',
|
|
1007
1011
|
translateY: 'size',
|
|
1008
|
-
width: 'size'
|
|
1012
|
+
width: 'size',
|
|
1013
|
+
paddingTop: 'size'
|
|
1009
1014
|
},
|
|
1010
1015
|
InputLabel: {
|
|
1011
1016
|
gap: 'size',
|
|
@@ -1155,15 +1160,20 @@ export default {
|
|
|
1155
1160
|
cancelButtonColor: 'color',
|
|
1156
1161
|
subHeadingMarginTop: 'size',
|
|
1157
1162
|
headingPaddingRight: 'size',
|
|
1163
|
+
headingPaddingTop: 'size',
|
|
1164
|
+
headingBorderBottomWidth: 'size',
|
|
1158
1165
|
height: 'size',
|
|
1159
1166
|
maxWidth: 'size',
|
|
1160
1167
|
containerPaddingLeft: 'size',
|
|
1161
1168
|
containerPaddingRight: 'size',
|
|
1162
1169
|
containerPaddingTop: 'size',
|
|
1163
1170
|
containerPaddingBottom: 'size',
|
|
1171
|
+
contentPaddingTop: 'size',
|
|
1172
|
+
contentPaddingBottom: 'size',
|
|
1164
1173
|
backgroundColor: 'color',
|
|
1165
1174
|
borderRadius: 'radius',
|
|
1166
1175
|
borderColor: 'color',
|
|
1176
|
+
borderWidth: 'size',
|
|
1167
1177
|
shadow: 'shadow',
|
|
1168
1178
|
paddingLeft: 'size',
|
|
1169
1179
|
paddingRight: 'size',
|
|
@@ -2117,7 +2127,9 @@ export default {
|
|
|
2117
2127
|
fontWeight: 'fontWeight',
|
|
2118
2128
|
arrowWidth: 'size',
|
|
2119
2129
|
arrowBorderRadius: 'radius',
|
|
2120
|
-
arrowOffset: 'size'
|
|
2130
|
+
arrowOffset: 'size',
|
|
2131
|
+
maxWidth: 'size',
|
|
2132
|
+
minWidth: 'size'
|
|
2121
2133
|
},
|
|
2122
2134
|
TooltipButton: {
|
|
2123
2135
|
outerBorderColor: 'color',
|