impaktapps-ui-builder 0.0.97-alpha.10 → 0.0.97-alpha.12

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.
@@ -12,6 +12,7 @@ export declare const BarGraph: {
12
12
  lg: number;
13
13
  };
14
14
  main: {
15
+ type: string;
15
16
  legendLabels: any;
16
17
  };
17
18
  style: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.97-alpha.10",
3
+ "version": "0.0.97-alpha.12",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -264,6 +264,9 @@ const buildUiSchema = (config: any, store?: any) => {
264
264
  case "HorizontalStackBarGraph":
265
265
  elements = buildHorizontalBarGraph(config, componentScope);
266
266
  break;
267
+ default:
268
+ elements = buildStackbarGraph(config, componentScope);
269
+ break;
267
270
  }
268
271
  break;
269
272
  case "ProgressBar":
@@ -8,6 +8,7 @@ export const BarGraph = {
8
8
  config: {
9
9
  layout: {xs :12,sm:12,md:12,lg:6},
10
10
  main: {
11
+ type: "BarGraph",
11
12
  legendLabels: null
12
13
  },
13
14
  style: { containerStyle: {},labelStyle:{} }