@telus-uds/components-base 1.41.0 → 1.42.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/component-docs.json +9 -1
- package/lib/Button/ButtonBase.js +2 -1
- package/lib/StackView/StackView.js +1 -1
- package/lib-module/Button/ButtonBase.js +2 -1
- package/lib-module/StackView/StackView.js +1 -1
- package/package.json +1 -1
- package/src/Button/ButtonBase.jsx +2 -1
- package/src/StackView/StackView.jsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# Change Log - @telus-uds/components-base
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 19 May 2023 04:52:38 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 1.42.0
|
|
8
|
+
|
|
9
|
+
Fri, 19 May 2023 04:52:38 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- update default space value for stackview component (evander.owusu@telus.com)
|
|
14
|
+
|
|
7
15
|
## 1.41.0
|
|
8
16
|
|
|
9
|
-
Wed, 17 May 2023 00:
|
|
17
|
+
Wed, 17 May 2023 00:20:05 GMT
|
|
10
18
|
|
|
11
19
|
### Minor changes
|
|
12
20
|
|
package/component-docs.json
CHANGED
|
@@ -190,9 +190,17 @@
|
|
|
190
190
|
"footnoteBodyPaddingRight": "size",
|
|
191
191
|
"footnoteBodyPaddingTop": "size",
|
|
192
192
|
"footnoteBodyPaddingBottom": "size",
|
|
193
|
+
"footnoteHeaderPaddingLeft": "size",
|
|
194
|
+
"footnoteHeaderPaddingRight": "size",
|
|
195
|
+
"footnoteHeaderPaddingTop": "size",
|
|
196
|
+
"footnoteHeaderPaddingBottom": "size",
|
|
193
197
|
"listPaddingLeft": "size",
|
|
194
198
|
"listItemMarkerFontSize": "size",
|
|
195
199
|
"listItemMarkerLineHeight": "lineHeight",
|
|
200
|
+
"headerLineHeight": "size",
|
|
201
|
+
"headerFontSize": "size",
|
|
202
|
+
"headerFontName": "fontName",
|
|
203
|
+
"headerFontWeight": "fontWeight",
|
|
196
204
|
"listItemColor": "color",
|
|
197
205
|
"listItemFontSize": "size",
|
|
198
206
|
"listItemLineHeight": "lineHeight",
|
|
@@ -9253,7 +9261,7 @@
|
|
|
9253
9261
|
"props": {
|
|
9254
9262
|
"space": {
|
|
9255
9263
|
"defaultValue": {
|
|
9256
|
-
"value": "
|
|
9264
|
+
"value": "0",
|
|
9257
9265
|
"computed": false
|
|
9258
9266
|
},
|
|
9259
9267
|
"type": {
|
package/lib/Button/ButtonBase.js
CHANGED
|
@@ -345,7 +345,8 @@ ButtonBase.defaultProps = {
|
|
|
345
345
|
const staticStyles = _StyleSheet.default.create({
|
|
346
346
|
row: {
|
|
347
347
|
// Apply all button alignment horizontally; no vertical stacking within a button
|
|
348
|
-
flexDirection: 'row'
|
|
348
|
+
flexDirection: 'row',
|
|
349
|
+
justifyContent: 'center'
|
|
349
350
|
},
|
|
350
351
|
text: { ..._Platform.default.select({
|
|
351
352
|
// TODO: https://github.com/telus/universal-design-system/issues/487
|
|
@@ -318,7 +318,8 @@ ButtonBase.defaultProps = {
|
|
|
318
318
|
const staticStyles = StyleSheet.create({
|
|
319
319
|
row: {
|
|
320
320
|
// Apply all button alignment horizontally; no vertical stacking within a button
|
|
321
|
-
flexDirection: 'row'
|
|
321
|
+
flexDirection: 'row',
|
|
322
|
+
justifyContent: 'center'
|
|
322
323
|
},
|
|
323
324
|
text: { ...Platform.select({
|
|
324
325
|
// TODO: https://github.com/telus/universal-design-system/issues/487
|
package/package.json
CHANGED
|
@@ -285,7 +285,8 @@ ButtonBase.defaultProps = { id: undefined }
|
|
|
285
285
|
const staticStyles = StyleSheet.create({
|
|
286
286
|
row: {
|
|
287
287
|
// Apply all button alignment horizontally; no vertical stacking within a button
|
|
288
|
-
flexDirection: 'row'
|
|
288
|
+
flexDirection: 'row',
|
|
289
|
+
justifyContent: 'center'
|
|
289
290
|
},
|
|
290
291
|
text: {
|
|
291
292
|
...Platform.select({
|