impaktapps-ui-builder 0.0.101-alpha.262 → 0.0.101-alpha.263

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.
@@ -12623,13 +12623,14 @@ const buildUiSchema = (config2, store2) => {
12623
12623
  tableHeaderElements.push(headerElem);
12624
12624
  return false;
12625
12625
  }
12626
- rowElements.push({
12626
+ const tableElem = {
12627
12627
  widget: cellElem.type != "ColumnGroup" ? buildUiSchema(cellElem, store2) : void 0,
12628
12628
  elements: cellElem.type == "ColumnGroup" ? cellElem.elements.map((childCellElem) => buildUiSchema(childCellElem, store2)) : [],
12629
12629
  ...commonProperties
12630
- });
12630
+ };
12631
+ rowElements.push(tableElem);
12631
12632
  } else {
12632
- rowElements.push(commonProperties);
12633
+ rowElements.push({ ...commonProperties });
12633
12634
  }
12634
12635
  });
12635
12636
  elements.elements = rowElements;