@builder.io/mitosis 0.5.33 → 0.5.34

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.
@@ -371,7 +371,7 @@ const componentMappers = {
371
371
  * If width if undefined, do not create a binding otherwise its JSX will
372
372
  * be <Column width={} /> which is not valid due to the empty expression.
373
373
  */
374
- ...(col.width !== undefined && {
374
+ ...(col.width != null && {
375
375
  bindings: {
376
376
  width: { code: col.width.toString() },
377
377
  },
package/package.json CHANGED
@@ -22,7 +22,7 @@
22
22
  "name": "Builder.io",
23
23
  "url": "https://www.builder.io"
24
24
  },
25
- "version": "0.5.33",
25
+ "version": "0.5.34",
26
26
  "homepage": "https://github.com/BuilderIO/mitosis",
27
27
  "main": "./dist/src/index.js",
28
28
  "exports": {