impaktapps-ui-builder 1.0.64-alpha.114 → 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.
|
@@ -12584,10 +12584,8 @@ const buildUiSchema = (config2, store2) => {
|
|
|
12584
12584
|
}
|
|
12585
12585
|
elements.elements = config2.elements.map((cellElem, elemInd) => {
|
|
12586
12586
|
return {
|
|
12587
|
-
|
|
12588
|
-
|
|
12589
|
-
size: sizeMap[cellElem.name] || 180,
|
|
12590
|
-
type: cellElem.columnFormat,
|
|
12587
|
+
widget: cellElem.type && cellElem.type != "ColumnGroup" ? buildUiSchema(cellElem, store2) : void 0,
|
|
12588
|
+
...getCommonProperties(cellElem, sizeMap),
|
|
12591
12589
|
elements: cellElem.type == "ColumnGroup" ? cellElem.elements.map((childCellElem) => getCommonProperties(childCellElem, sizeMap)) : []
|
|
12592
12590
|
};
|
|
12593
12591
|
});
|
|
@@ -12615,8 +12613,8 @@ const buildUiSchema = (config2, store2) => {
|
|
|
12615
12613
|
}
|
|
12616
12614
|
const tableElem = {
|
|
12617
12615
|
widget: cellElem.type != "ColumnGroup" ? buildUiSchema(cellElem, store2) : void 0,
|
|
12618
|
-
|
|
12619
|
-
|
|
12616
|
+
...getCommonProperties(cellElem, sizeMap),
|
|
12617
|
+
elements: cellElem.type == "ColumnGroup" ? cellElem.elements.map((childCellElem) => getCommonProperties(childCellElem, sizeMap)) : []
|
|
12620
12618
|
};
|
|
12621
12619
|
rowElements.push(tableElem);
|
|
12622
12620
|
} else {
|