impaktapps-ui-builder 0.0.592-alpha.3 → 0.0.592-alpha.5
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/dist/impaktapps-ui-builder.es.js +3 -1
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +8 -8
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +1 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -0
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +1 -0
|
@@ -6346,7 +6346,8 @@ const ComponentSchema = {
|
|
|
6346
6346
|
{ title: "Stack Bar Graph", const: "StackBarGraph" },
|
|
6347
6347
|
{ title: "Line Graph", const: "LineGraph" },
|
|
6348
6348
|
{ title: "Pie Graph", const: "PieGraph" },
|
|
6349
|
-
{ title: "Horizontal Bar Graph", const: "HorizontalBarGraph" }
|
|
6349
|
+
{ title: "Horizontal Bar Graph", const: "HorizontalBarGraph" },
|
|
6350
|
+
{ label: "Stack Horizontal Bar Graph", value: "HorizontalStackBarGraph" }
|
|
6350
6351
|
]
|
|
6351
6352
|
},
|
|
6352
6353
|
iconName: {
|
|
@@ -10234,6 +10235,7 @@ const buildHorizontalBarGraph = (config, componentScope) => {
|
|
|
10234
10235
|
if (config.layout) {
|
|
10235
10236
|
horizontalBarGraph.config.layout = createLayoutFormat(config.layout);
|
|
10236
10237
|
}
|
|
10238
|
+
horizontalBarGraph.config.main.type = config.graphType;
|
|
10237
10239
|
horizontalBarGraph.scope = componentScope;
|
|
10238
10240
|
horizontalBarGraph.config.main.header = config.heading;
|
|
10239
10241
|
if (config.barColor) {
|