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.
- package/dist/impaktapps-ui-builder.es.js +4 -0
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/graph.d.ts +1 -0
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +1 -0
|
@@ -10225,6 +10225,7 @@ const BarGraph = {
|
|
|
10225
10225
|
config: {
|
|
10226
10226
|
layout: { xs: 12, sm: 12, md: 12, lg: 6 },
|
|
10227
10227
|
main: {
|
|
10228
|
+
type: "BarGraph",
|
|
10228
10229
|
legendLabels: null
|
|
10229
10230
|
},
|
|
10230
10231
|
style: { containerStyle: {}, labelStyle: {} }
|
|
@@ -11946,6 +11947,9 @@ const buildUiSchema = (config, store2) => {
|
|
|
11946
11947
|
case "HorizontalStackBarGraph":
|
|
11947
11948
|
elements = buildHorizontalBarGraph(config, componentScope);
|
|
11948
11949
|
break;
|
|
11950
|
+
default:
|
|
11951
|
+
elements = buildStackbarGraph(config, componentScope);
|
|
11952
|
+
break;
|
|
11949
11953
|
}
|
|
11950
11954
|
break;
|
|
11951
11955
|
case "ProgressBar":
|