impaktapps-ui-builder 1.0.136 → 1.0.138

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.
@@ -8472,7 +8472,7 @@ const createLayoutFormat = (layout, type) => {
8472
8472
  }
8473
8473
  let data = {};
8474
8474
  layout.map((e) => {
8475
- data[e.key || "xs"] = +e.value || 5.5;
8475
+ data[e.key || "xs"] = e.value === null || e.value === void 0 || e.value === "" ? 5.5 : +e.value;
8476
8476
  });
8477
8477
  return data;
8478
8478
  };