impaktapps-ui-builder 0.0.382-alpha.40 → 0.0.382-alpha.42

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.
@@ -9175,7 +9175,7 @@ const BarGraph = {
9175
9175
  style: {
9176
9176
  containerStyle: {
9177
9177
  width: "100%",
9178
- height: 300
9178
+ height: "450"
9179
9179
  },
9180
9180
  headerStyle: {},
9181
9181
  tooltipStyle: {},
@@ -9473,9 +9473,6 @@ const buildStackbarGraph = (config, componentScope) => {
9473
9473
  if (config.barColor) {
9474
9474
  barGraph.config.barStyle.color = config.barColor;
9475
9475
  }
9476
- if (config.containerBackground) {
9477
- barGraph.config.containerStyle.background = config.containerBackground;
9478
- }
9479
9476
  if (config.height) {
9480
9477
  barGraph.config.style.containerStyle.height = config.height;
9481
9478
  }
@@ -9485,7 +9482,6 @@ const buildStackbarGraph = (config, componentScope) => {
9485
9482
  if (config.leftLabel) {
9486
9483
  barGraph.config.main.leftLabel = config.leftLabel;
9487
9484
  }
9488
- barGraph.scope = componentScope;
9489
9485
  return barGraph;
9490
9486
  };
9491
9487
  var RunnerBoyProgressBar = {
@@ -9881,7 +9877,7 @@ var Card = {
9881
9877
  rowSpacing: 0.5
9882
9878
  },
9883
9879
  style: {
9884
- wrapperStyle: {
9880
+ componentsBoxStyle: {
9885
9881
  position: "relative",
9886
9882
  color: "white",
9887
9883
  height: { xs: "120px", md: "160px" },
@@ -10736,7 +10732,7 @@ const buildUiSchema = (config) => {
10736
10732
  switch (config.graphType) {
10737
10733
  case "BarGraph":
10738
10734
  case "StackBarGraph":
10739
- elements = buildStackbarGraph(config, componentScope);
10735
+ elements = buildStackbarGraph(config);
10740
10736
  break;
10741
10737
  case "LineGraph":
10742
10738
  elements = buildLineGraph(config, componentScope);