impaktapps-ui-builder 0.0.592-alpha.3 → 0.0.592-alpha.4

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.3",
3
+ "version": "0.0.592-alpha.4",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -9,6 +9,7 @@ const buildHorizontalBarGraph = (config:any,componentScope:string) => {
9
9
  if (config.layout) {
10
10
  horizontalBarGraph.config.layout = createLayoutFormat(config.layout);
11
11
  }
12
+ horizontalBarGraph.config.main.type = config.graphType;
12
13
  horizontalBarGraph.scope = componentScope;
13
14
  horizontalBarGraph.config.main.header = config.heading;
14
15
  if (config.barColor) {
@@ -382,6 +382,7 @@ export const buildPropertiesSection = function (type: String) {
382
382
  { label: "Line Graph", value: "LineGraph" },
383
383
  { label: "Pie Graph", value: "PieGraph" },
384
384
  { label: "Horizontal Bar Graph", value: "HorizontalBarGraph" },
385
+ { label: "Stack Horizontal Bar Graph", value: "HorizontalStackBarGraph" },
385
386
  ]),
386
387
  getInputField("leftLabel", "Left Label"),
387
388
  getInputField("bottomLabel", "Bottom Label"),