impaktapps-ui-builder 0.0.412-mtreemap.21 → 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 -2
- 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
- package/src/impaktapps-ui-builder/runtime/services/events.ts +0 -1
|
@@ -8757,7 +8757,6 @@ function getRefreshElements(eventConfig, eventGropus) {
|
|
|
8757
8757
|
result.push(result[0]);
|
|
8758
8758
|
}
|
|
8759
8759
|
}
|
|
8760
|
-
console.log(result);
|
|
8761
8760
|
return result;
|
|
8762
8761
|
}
|
|
8763
8762
|
async function executeRefreshHandler(params2) {
|
|
@@ -9976,6 +9975,7 @@ const buildStackbarGraph = (config, componentScope) => {
|
|
|
9976
9975
|
if (config.leftLabel) {
|
|
9977
9976
|
barGraph.config.main.leftLabel = config.leftLabel;
|
|
9978
9977
|
}
|
|
9978
|
+
barGraph.scope = componentScope;
|
|
9979
9979
|
return barGraph;
|
|
9980
9980
|
};
|
|
9981
9981
|
var RunnerBoyProgressBar = {
|
|
@@ -11348,7 +11348,7 @@ const buildUiSchema = (config) => {
|
|
|
11348
11348
|
switch (config.graphType) {
|
|
11349
11349
|
case "BarGraph":
|
|
11350
11350
|
case "StackBarGraph":
|
|
11351
|
-
elements = buildStackbarGraph(config);
|
|
11351
|
+
elements = buildStackbarGraph(config, componentScope);
|
|
11352
11352
|
break;
|
|
11353
11353
|
case "LineGraph":
|
|
11354
11354
|
elements = buildLineGraph(config, componentScope);
|