@builder.io/sdk-qwik 0.1.8 → 0.1.9
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/lib/index.qwik.cjs +2 -2
- package/lib/index.qwik.mjs +2 -2
- package/package.json +1 -1
package/lib/index.qwik.cjs
CHANGED
|
@@ -1591,9 +1591,9 @@ const SectionComponent = /* @__PURE__ */ qwik.componentQrl(qwik.inlinedQrl((prop
|
|
|
1591
1591
|
style: {
|
|
1592
1592
|
width: "100%",
|
|
1593
1593
|
alignSelf: "stretch",
|
|
1594
|
-
flexGrow:
|
|
1594
|
+
flexGrow: 1,
|
|
1595
1595
|
boxSizing: "border-box",
|
|
1596
|
-
maxWidth:
|
|
1596
|
+
maxWidth: props.maxWidth || 1200,
|
|
1597
1597
|
display: "flex",
|
|
1598
1598
|
flexDirection: "column",
|
|
1599
1599
|
alignItems: "stretch",
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -1589,9 +1589,9 @@ const SectionComponent = /* @__PURE__ */ componentQrl(inlinedQrl((props) => {
|
|
|
1589
1589
|
style: {
|
|
1590
1590
|
width: "100%",
|
|
1591
1591
|
alignSelf: "stretch",
|
|
1592
|
-
flexGrow:
|
|
1592
|
+
flexGrow: 1,
|
|
1593
1593
|
boxSizing: "border-box",
|
|
1594
|
-
maxWidth:
|
|
1594
|
+
maxWidth: props.maxWidth || 1200,
|
|
1595
1595
|
display: "flex",
|
|
1596
1596
|
flexDirection: "column",
|
|
1597
1597
|
alignItems: "stretch",
|