impaktapps-ui-builder 1.0.64-alpha.1 → 1.0.64-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.
@@ -6572,7 +6572,6 @@ const ComponentSchema = {
6572
6572
  { title: "Error Icon", const: "ErrorIcon" },
6573
6573
  { title: "Refresh Icon", const: "RefreshIcon" },
6574
6574
  { title: "Download Icon", const: "DownloadIcon" },
6575
- { title: "Download All Icon", const: "DownloadAllIcon" },
6576
6575
  { title: "Exception Icon", const: "ExceptionIcon" },
6577
6576
  { "title": "Alarm Icon", "const": "AlarmIcon" },
6578
6577
  { "title": "Click Icon", "const": "ClickIcon" },
@@ -8518,7 +8517,7 @@ function refreshPage(type, store2) {
8518
8517
  const lastDotIndex = path.lastIndexOf(".");
8519
8518
  const parentPath = path.slice(0, lastDotIndex);
8520
8519
  const parentObj = _.get(currentConfig, parentPath);
8521
- if ((parentObj == null ? void 0 : parentObj.type) === "Table") {
8520
+ if ((parentObj == null ? void 0 : parentObj.type) === "Table" || (parentObj == null ? void 0 : parentObj.type) === "ColumnGroup") {
8522
8521
  UiSchema.elements[0].elements[0].elements[4] = {
8523
8522
  type: "Control",
8524
8523
  scope: "#/properties/columnFormat",
@@ -12593,7 +12592,7 @@ const buildUiSchema = (config2, store2) => {
12593
12592
  config2.elements.filter((cellElem, elemInd) => {
12594
12593
  const commonProperties = {
12595
12594
  accessorKey: cellElem.name,
12596
- type: cellElem.columnFormat,
12595
+ type: cellElem.type === "ColumnGroup" ? "ColumnGroup" : cellElem.columnFormat,
12597
12596
  header: cellElem.label || cellElem.name,
12598
12597
  size: sizeMap[cellElem.name] || 180,
12599
12598
  enableColumnFilter: cellElem.enableFilter === "No" ? false : true,