@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.
@@ -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: "1",
1594
+ flexGrow: 1,
1595
1595
  boxSizing: "border-box",
1596
- maxWidth: `${props.maxWidth && typeof props.maxWidth === "number" ? props.maxWidth : 1200}px`,
1596
+ maxWidth: props.maxWidth || 1200,
1597
1597
  display: "flex",
1598
1598
  flexDirection: "column",
1599
1599
  alignItems: "stretch",
@@ -1589,9 +1589,9 @@ const SectionComponent = /* @__PURE__ */ componentQrl(inlinedQrl((props) => {
1589
1589
  style: {
1590
1590
  width: "100%",
1591
1591
  alignSelf: "stretch",
1592
- flexGrow: "1",
1592
+ flexGrow: 1,
1593
1593
  boxSizing: "border-box",
1594
- maxWidth: `${props.maxWidth && typeof props.maxWidth === "number" ? props.maxWidth : 1200}px`,
1594
+ maxWidth: props.maxWidth || 1200,
1595
1595
  display: "flex",
1596
1596
  flexDirection: "column",
1597
1597
  alignItems: "stretch",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/sdk-qwik",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Builder.io Qwik SDK",
5
5
  "type": "module",
6
6
  "main": "./lib/index.qwik.cjs",