impaktapps-ui-builder 1.0.57-alpha.1 → 1.0.57-alpha.100

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.
@@ -8477,7 +8477,7 @@ function refreshPage(type, store2) {
8477
8477
  const lastDotIndex = path.lastIndexOf(".");
8478
8478
  const parentPath = path.slice(0, lastDotIndex);
8479
8479
  const parentObj = _.get(currentConfig, parentPath);
8480
- if ((parentObj == null ? void 0 : parentObj.type) === "Table") {
8480
+ if ((parentObj == null ? void 0 : parentObj.type) === "Table" || "ColumnGroup") {
8481
8481
  UiSchema.elements[0].elements[0].elements[4] = {
8482
8482
  type: "Control",
8483
8483
  scope: "#/properties/columnFormat",
@@ -11032,9 +11032,6 @@ var Tabsection = {
11032
11032
  const buildTabSection = (config2, componentScope2) => {
11033
11033
  const tab = _.cloneDeep(Tabsection);
11034
11034
  tab.scope = componentScope2;
11035
- if (config2.style) {
11036
- tab.config.style = JSON.parse(config2.style);
11037
- }
11038
11035
  if (config2.lazyLoad) {
11039
11036
  tab.config.main.lazyLoad = config2.lazyLoad === "YES" ? true : false;
11040
11037
  }
@@ -12616,7 +12613,7 @@ const buildUiSchema = (config2, store2) => {
12616
12613
  config2.elements.filter((cellElem, elemInd) => {
12617
12614
  const commonProperties = {
12618
12615
  accessorKey: cellElem.name,
12619
- type: cellElem.columnFormat,
12616
+ type: cellElem.type === "ColumnGroup" ? "ColumnGroup" : cellElem.columnFormat,
12620
12617
  header: cellElem.label || cellElem.name,
12621
12618
  size: sizeMap[cellElem.name] || 180,
12622
12619
  enableColumnFilter: cellElem.enableFilter === "No" ? false : true,