impaktapps-ui-builder 1.0.64-alpha.114 → 1.0.64-alpha.115
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
|
@@ -346,11 +346,9 @@ const buildUiSchema = (config: any, store?: any) => {
|
|
|
346
346
|
}
|
|
347
347
|
elements.elements = config.elements.map((cellElem, elemInd) => {
|
|
348
348
|
return {
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
type: cellElem.columnFormat,
|
|
353
|
-
elements: cellElem.type == "ColumnGroup" ? cellElem.elements.map((childCellElem) => getCommonProperties(childCellElem, sizeMap)) : []
|
|
349
|
+
widget: (cellElem.type && cellElem.type != "ColumnGroup") ? buildUiSchema(cellElem, store) : undefined,
|
|
350
|
+
elements: cellElem.type == "ColumnGroup" ? cellElem.elements.map((childCellElem) => getCommonProperties(childCellElem, sizeMap)) : [],
|
|
351
|
+
...getCommonProperties(cellElem, sizeMap)
|
|
354
352
|
}
|
|
355
353
|
})
|
|
356
354
|
} else if (config.type == "Table") {
|