impaktapps-ui-builder 0.0.412-mtreemap.22 → 0.0.412-mtreemap.23
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 +2 -1
- 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/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildStackBarGraph.ts +1 -5
- package/src/impaktapps-ui-builder/builder/build/uischema/graph.ts +0 -117
|
@@ -9975,6 +9975,7 @@ const buildStackbarGraph = (config, componentScope) => {
|
|
|
9975
9975
|
if (config.leftLabel) {
|
|
9976
9976
|
barGraph.config.main.leftLabel = config.leftLabel;
|
|
9977
9977
|
}
|
|
9978
|
+
barGraph.scope = componentScope;
|
|
9978
9979
|
return barGraph;
|
|
9979
9980
|
};
|
|
9980
9981
|
var RunnerBoyProgressBar = {
|
|
@@ -11347,7 +11348,7 @@ const buildUiSchema = (config) => {
|
|
|
11347
11348
|
switch (config.graphType) {
|
|
11348
11349
|
case "BarGraph":
|
|
11349
11350
|
case "StackBarGraph":
|
|
11350
|
-
elements = buildStackbarGraph(config);
|
|
11351
|
+
elements = buildStackbarGraph(config, componentScope);
|
|
11351
11352
|
break;
|
|
11352
11353
|
case "LineGraph":
|
|
11353
11354
|
elements = buildLineGraph(config, componentScope);
|