impaktapps-ui-builder 0.0.592-alpha.6 → 0.0.592-alpha.8

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.592-alpha.6",
3
+ "version": "0.0.592-alpha.8",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -264,6 +264,7 @@ const buildUiSchema = (config: any, store?: any) => {
264
264
  elements = buildPieGraph(config, componentScope);
265
265
  break;
266
266
  case "HorizontalBarGraph":
267
+ case "HorizontalStackBarGraph":
267
268
  elements = buildHorizontalBarGraph(config, componentScope);
268
269
  break;
269
270
  }
@@ -273,7 +273,7 @@ export const ComponentSchema: any = {
273
273
  { title: "Line Graph", const: "LineGraph" },
274
274
  { title: "Pie Graph", const: "PieGraph" },
275
275
  { title: "Horizontal Bar Graph", const: "HorizontalBarGraph" },
276
- { label: "Stack Horizontal Bar Graph", value: "HorizontalStackBarGraph" }
276
+ { title: "Stack Horizontal Bar Graph", const: "HorizontalStackBarGraph" }
277
277
  ]
278
278
  },
279
279
  iconName: {