impaktapps-ui-builder 0.0.412-e → 0.0.412-f
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 +3 -3
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTreeMap.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -0
|
@@ -6952,6 +6952,7 @@ const buildPropertiesSection = function(type) {
|
|
|
6952
6952
|
getInputField("graphWidth", "Graph Width"),
|
|
6953
6953
|
getInputField("graphZoomHeight", "Zoom Height")
|
|
6954
6954
|
];
|
|
6955
|
+
break;
|
|
6955
6956
|
case "InputSlider":
|
|
6956
6957
|
uiSchema.elements = [
|
|
6957
6958
|
getInputField("max", "Max Limit"),
|
|
@@ -10922,6 +10923,9 @@ const buildTreeMap = (config, componentScope) => {
|
|
|
10922
10923
|
if (config.graphZoomWidth) {
|
|
10923
10924
|
treMap.config.main.graphZoomWidth = config.graphZoomWidth;
|
|
10924
10925
|
}
|
|
10926
|
+
if (config.style) {
|
|
10927
|
+
treMap.config.style = JSON.parse(config.style);
|
|
10928
|
+
}
|
|
10925
10929
|
return treMap;
|
|
10926
10930
|
};
|
|
10927
10931
|
let schema = {
|