impaktapps-ui-builder 1.0.147-test.15 → 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.
@@ -8043,11 +8043,14 @@ const buildPropertiesSection = function(type) {
8043
8043
  getRadioInputField("disableFullScreenToggle", "Disable Full Screen", ["YES", "NO"]),
8044
8044
  getRadioInputField("disableDensityToggle", "Disable Density Toggle", ["YES", "NO"]),
8045
8045
  getRadioInputField("disableDownloadFile", "Disable Download File", ["YES", "NO"]),
8046
+ getRadioInputField("disableTopToolbar", "Disable Top Toolbar", ["YES", "NO"]),
8047
+ getRadioInputField("disableBottomToolbar", "Disable Bottom Toolbar", ["YES", "NO"]),
8046
8048
  getRadioInputField("disablePagination", "Disable Pagination", ["YES", "NO"]),
8047
8049
  getInputField("selectKey", "Selection Key"),
8048
8050
  getMultiSelectField("filteringOptions", "Filtering Options"),
8049
8051
  getSelectField("maxPageSize", "Max Page Size"),
8050
8052
  getSelectField("initialDensity", "Initial Toggle Density"),
8053
+ emptyBox$1("emptyBoxTable", { xs: 6, sm: 6, md: 0, lg: 3 }),
8051
8054
  buildWrapper("Tree Table Properties", [
8052
8055
  getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
8053
8056
  getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
@@ -10963,6 +10966,9 @@ const buildHorizontalBarGraph = (config, componentScope) => {
10963
10966
  if (config.disableLeftLabel) {
10964
10967
  horizontalBarGraph.config.main.disableLeftLabel = config.disableLeftLabel === "YES" ? true : false;
10965
10968
  }
10969
+ if (config.style) {
10970
+ horizontalBarGraph.config.style = JSON.parse(config.style);
10971
+ }
10966
10972
  return horizontalBarGraph;
10967
10973
  };
10968
10974
  var SpeedoMeter = {
@@ -11083,6 +11089,9 @@ const buildPieGraph = (config, componentScope) => {
11083
11089
  if (config.pieArcColors) {
11084
11090
  pieGraph.config.style.pieStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
11085
11091
  }
11092
+ if (config.style) {
11093
+ pieGraph.config.style = JSON.parse(config.style);
11094
+ }
11086
11095
  return pieGraph;
11087
11096
  };
11088
11097
  const buildStackbarGraph = (config, componentScope) => {
@@ -11129,6 +11138,9 @@ const buildStackbarGraph = (config, componentScope) => {
11129
11138
  if (config.disableLeftLabel) {
11130
11139
  barGraph.config.main.disableLeftLabel = config.disableLeftLabel === "YES" ? true : false;
11131
11140
  }
11141
+ if (config.style) {
11142
+ barGraph.config.style = JSON.parse(config.style);
11143
+ }
11132
11144
  barGraph.scope = componentScope;
11133
11145
  return barGraph;
11134
11146
  };
@@ -11431,6 +11443,12 @@ const buildTable = (config, componentScope) => {
11431
11443
  if (config.disableDownloadFile) {
11432
11444
  table.config.main.disableDownloadFile = config.disableDownloadFile === "YES" ? true : false;
11433
11445
  }
11446
+ if (config.disableTopToolbar) {
11447
+ table.config.main.disableTopToolbar = config.disableTopToolbar === "YES" ? true : false;
11448
+ }
11449
+ if (config.disableBottomToolbar) {
11450
+ table.config.main.disableBottomToolbar = config.disableBottomToolbar === "YES" ? true : false;
11451
+ }
11434
11452
  if (config.disablePagination) {
11435
11453
  table.config.main.disablePagination = config.disablePagination === "YES" ? true : false;
11436
11454
  }
@@ -11662,6 +11680,7 @@ function Card(theme) {
11662
11680
  maxWidth: "200px",
11663
11681
  whiteSpace: "nowrap",
11664
11682
  overflowX: "auto",
11683
+ overflowY: "hidden",
11665
11684
  scrollbarWidth: "none",
11666
11685
  "&::-webkit-scrollbar": {
11667
11686
  display: "none"
@@ -12047,6 +12066,9 @@ const buildLineGraph = (config, componentScope) => {
12047
12066
  if (config.pieArcColors) {
12048
12067
  lineGraph.config.style.lineStyle.colorRange = flatObjectValueInArray(config.pieArcColors);
12049
12068
  }
12069
+ if (config.style) {
12070
+ lineGraph.config.style = JSON.parse(config.style);
12071
+ }
12050
12072
  lineGraph.scope = componentScope;
12051
12073
  return lineGraph;
12052
12074
  };