impaktapps-ui-builder 1.0.64-alpha.115 → 1.0.64-alpha.116

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.64-alpha.115",
3
+ "version": "1.0.64-alpha.116",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -347,8 +347,8 @@ const buildUiSchema = (config: any, store?: any) => {
347
347
  elements.elements = config.elements.map((cellElem, elemInd) => {
348
348
  return {
349
349
  widget: (cellElem.type && cellElem.type != "ColumnGroup") ? buildUiSchema(cellElem, store) : undefined,
350
+ ...getCommonProperties(cellElem, sizeMap),
350
351
  elements: cellElem.type == "ColumnGroup" ? cellElem.elements.map((childCellElem) => getCommonProperties(childCellElem, sizeMap)) : [],
351
- ...getCommonProperties(cellElem, sizeMap)
352
352
  }
353
353
  })
354
354
  } else if (config.type == "Table") {
@@ -386,8 +386,8 @@ const buildUiSchema = (config: any, store?: any) => {
386
386
  }
387
387
  const tableElem = {
388
388
  widget: cellElem.type != "ColumnGroup" ? buildUiSchema(cellElem, store) : undefined,
389
+ ...getCommonProperties(cellElem, sizeMap),
389
390
  elements: cellElem.type == "ColumnGroup" ? cellElem.elements.map((childCellElem) => getCommonProperties(childCellElem, sizeMap)) : [],
390
- ...getCommonProperties(cellElem, sizeMap)
391
391
 
392
392
  }
393
393
  rowElements.push(tableElem)