@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 CHANGED
@@ -1,12 +1,20 @@
1
1
  # Change Log - @telus-uds/components-base
2
2
 
3
- This log was last generated on Wed, 17 May 2023 00:13:27 GMT and should not be manually modified.
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:13:27 GMT
17
+ Wed, 17 May 2023 00:20:05 GMT
10
18
 
11
19
  ### Minor changes
12
20
 
@@ -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": "1",
9264
+ "value": "0",
9257
9265
  "computed": false
9258
9266
  },
9259
9267
  "type": {
@@ -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
@@ -77,7 +77,7 @@ const [selectProps, selectedSystemPropTypes] = (0, _utils.selectSystemProps)([_u
77
77
 
78
78
  const StackView = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
79
79
  let {
80
- space = 1,
80
+ space = 0,
81
81
  divider,
82
82
  direction: directionProp = 'column',
83
83
  children,
@@ -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
@@ -54,7 +54,7 @@ const [selectProps, selectedSystemPropTypes] = selectSystemProps([a11yProps, vie
54
54
 
55
55
  const StackView = /*#__PURE__*/forwardRef((_ref, ref) => {
56
56
  let {
57
- space = 1,
57
+ space = 0,
58
58
  divider,
59
59
  direction: directionProp = 'column',
60
60
  children,
package/package.json CHANGED
@@ -72,5 +72,5 @@
72
72
  "standard-engine": {
73
73
  "skip": true
74
74
  },
75
- "version": "1.41.0"
75
+ "version": "1.42.0"
76
76
  }
@@ -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({
@@ -67,7 +67,7 @@ const [selectProps, selectedSystemPropTypes] = selectSystemProps([a11yProps, vie
67
67
  const StackView = forwardRef(
68
68
  (
69
69
  {
70
- space = 1,
70
+ space = 0,
71
71
  divider,
72
72
  direction: directionProp = 'column',
73
73
  children,