impaktapps-ui-builder 1.0.137 → 1.0.139

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 || 0;
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
  };
@@ -12799,7 +12799,7 @@ const buildUiSchema = (config2, store2) => {
12799
12799
  if (config2 == null ? void 0 : config2.elements) {
12800
12800
  if ((config2 == null ? void 0 : config2.type) === "LeaderBoard") {
12801
12801
  const rowElements = [];
12802
- config2.elements.filter((cellElem, elemInd) => {
12802
+ config2.elements.map((cellElem) => {
12803
12803
  const commonProperties = {
12804
12804
  accessorKey: cellElem.name,
12805
12805
  type: cellElem.type === "ColumnGroup" ? "ColumnGroup" : cellElem.columnFormat,