impaktapps-ui-builder 0.0.57 → 0.0.59

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.
@@ -7828,7 +7828,7 @@ const createLayoutFormat = (config) => {
7828
7828
  });
7829
7829
  return data;
7830
7830
  };
7831
- const flatObjectValueInArray = (config) => {
7831
+ const flatObjectValueInArray = (config = []) => {
7832
7832
  if (config[0].length < 1) {
7833
7833
  return;
7834
7834
  }
@@ -10127,7 +10127,8 @@ const BarGraph = {
10127
10127
  widget: "Graph"
10128
10128
  },
10129
10129
  config: {
10130
- main: {}
10130
+ main: {},
10131
+ style: { containerStyle: {} }
10131
10132
  }
10132
10133
  };
10133
10134
  const PieGraph = {
@@ -10139,7 +10140,8 @@ const PieGraph = {
10139
10140
  config: {
10140
10141
  main: {
10141
10142
  type: "PieGraph"
10142
- }
10143
+ },
10144
+ style: {}
10143
10145
  }
10144
10146
  };
10145
10147
  const LineGraph = {
@@ -10187,7 +10189,8 @@ const HorizontalBarGraph = {
10187
10189
  config: {
10188
10190
  main: {
10189
10191
  type: "HorizontalBarGraph"
10190
- }
10192
+ },
10193
+ style: {}
10191
10194
  }
10192
10195
  };
10193
10196
  const buildHorizontalBarGraph = (config, componentScope) => {
@@ -10611,8 +10614,8 @@ const buildTable = (config, componentScope) => {
10611
10614
  if (config.enableExpanding) {
10612
10615
  table.config.main.enableExpanding = config.enableExpanding === "YES" ? true : false;
10613
10616
  }
10614
- if (config.enableExpandAll) {
10615
- table.config.main.enableExpandAll = config.enableExpandAll === "YES" ? true : false;
10617
+ if (config.paginateExpandedRows) {
10618
+ table.config.main.paginateExpandedRows = config.paginateExpandedRows === "YES" ? true : false;
10616
10619
  }
10617
10620
  if (config.treeStructure) {
10618
10621
  table.config.main.treeStructure = config.treeStructure === "YES" ? "flatTreeMap" : false;