@telus-uds/components-base 3.14.0 → 3.14.1

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,25 +1,16 @@
1
1
  # Change Log - @telus-uds/components-base
2
2
 
3
- This log was last generated on Thu, 04 Sep 2025 06:46:41 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 05 Sep 2025 17:37:54 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## 3.14.0
7
+ ## 3.14.1
8
8
 
9
- Thu, 04 Sep 2025 06:46:41 GMT
10
-
11
- ### Minor changes
12
-
13
- - `ViewportProvider`: add default-viewport prop (guillermo.peitzner@telus.com)
14
- - `Card`: position and align props added (35577399+JoshHC@users.noreply.github.com)
15
- - `Tabs`: new dropdown feature added for xs and sm viewports (35577399+JoshHC@users.noreply.github.com)
16
- - Bump @telus-uds/system-theme-tokens to v4.13.0
9
+ Fri, 05 Sep 2025 17:37:54 GMT
17
10
 
18
11
  ### Patches
19
12
 
20
- - `Card`: fix media queries styles (guillermo.peitzner@telus.com)
21
- - `FlexGrid`: change limitWidth default prop value from true to false (guillermo.peitzner@telus.com)
22
- - `Icon - backgroundColor`: update icon documentation with new section (sergio.ramirez@telus.com)
13
+ - `FlexGrid`: change default limitWidth value prop to true (guillermo.peitzner@telus.com)
23
14
 
24
15
  ## 3.13.0
25
16
 
@@ -66,7 +66,7 @@ const getMaxWidthForViewport = (viewportKey, limitWidth, contentMinWidth, maxWid
66
66
 
67
67
  const FlexGrid = /*#__PURE__*/_react.default.forwardRef((_ref, ref) => {
68
68
  let {
69
- limitWidth = false,
69
+ limitWidth = true,
70
70
  gutter = true,
71
71
  outsideGutter = true,
72
72
  xsReverse,
@@ -59,7 +59,7 @@ const getMaxWidthForViewport = (viewportKey, limitWidth, contentMinWidth, maxWid
59
59
 
60
60
  const FlexGrid = /*#__PURE__*/React.forwardRef((_ref, ref) => {
61
61
  let {
62
- limitWidth = false,
62
+ limitWidth = true,
63
63
  gutter = true,
64
64
  outsideGutter = true,
65
65
  xsReverse,
package/lib/package.json CHANGED
@@ -84,6 +84,6 @@
84
84
  "standard-engine": {
85
85
  "skip": true
86
86
  },
87
- "version": "3.14.0",
87
+ "version": "3.14.1",
88
88
  "types": "types/index.d.ts"
89
89
  }
package/package.json CHANGED
@@ -84,6 +84,6 @@
84
84
  "standard-engine": {
85
85
  "skip": true
86
86
  },
87
- "version": "3.14.0",
87
+ "version": "3.14.1",
88
88
  "types": "types/index.d.ts"
89
89
  }
@@ -77,7 +77,7 @@ const getMaxWidthForViewport = (viewportKey, limitWidth, contentMinWidth, maxWid
77
77
  const FlexGrid = React.forwardRef(
78
78
  (
79
79
  {
80
- limitWidth = false,
80
+ limitWidth = true,
81
81
  gutter = true,
82
82
  outsideGutter = true,
83
83
  xsReverse,