impaktapps-ui-builder 1.0.147-test.16 → 1.0.147-test.17

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.
@@ -8050,6 +8050,7 @@ const buildPropertiesSection = function(type) {
8050
8050
  getMultiSelectField("filteringOptions", "Filtering Options"),
8051
8051
  getSelectField("maxPageSize", "Max Page Size"),
8052
8052
  getSelectField("initialDensity", "Initial Toggle Density"),
8053
+ emptyBox$1("emptyBoxTable", { xs: 6, sm: 6, md: 0, lg: 3 }),
8053
8054
  buildWrapper("Tree Table Properties", [
8054
8055
  getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
8055
8056
  getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
@@ -10965,6 +10966,9 @@ const buildHorizontalBarGraph = (config, componentScope) => {
10965
10966
  if (config.disableLeftLabel) {
10966
10967
  horizontalBarGraph.config.main.disableLeftLabel = config.disableLeftLabel === "YES" ? true : false;
10967
10968
  }
10969
+ if (config.style) {
10970
+ horizontalBarGraph.config.style = JSON.parse(config.style);
10971
+ }
10968
10972
  return horizontalBarGraph;
10969
10973
  };
10970
10974
  var SpeedoMeter = {
@@ -11085,6 +11089,9 @@ const buildPieGraph = (config, componentScope) => {
11085
11089
  if (config.pieArcColors) {
11086
11090
  pieGraph.config.style.pieStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
11087
11091
  }
11092
+ if (config.style) {
11093
+ pieGraph.config.style = JSON.parse(config.style);
11094
+ }
11088
11095
  return pieGraph;
11089
11096
  };
11090
11097
  const buildStackbarGraph = (config, componentScope) => {
@@ -11131,6 +11138,9 @@ const buildStackbarGraph = (config, componentScope) => {
11131
11138
  if (config.disableLeftLabel) {
11132
11139
  barGraph.config.main.disableLeftLabel = config.disableLeftLabel === "YES" ? true : false;
11133
11140
  }
11141
+ if (config.style) {
11142
+ barGraph.config.style = JSON.parse(config.style);
11143
+ }
11134
11144
  barGraph.scope = componentScope;
11135
11145
  return barGraph;
11136
11146
  };
@@ -12056,6 +12066,9 @@ const buildLineGraph = (config, componentScope) => {
12056
12066
  if (config.pieArcColors) {
12057
12067
  lineGraph.config.style.lineStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
12058
12068
  }
12069
+ if (config.style) {
12070
+ lineGraph.config.style = JSON.parse(config.style);
12071
+ }
12059
12072
  lineGraph.scope = componentScope;
12060
12073
  return lineGraph;
12061
12074
  };