impaktapps-ui-builder 0.0.412-d → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.412d",
3
+ "version": "0.0.412f",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -54,5 +54,8 @@ export const buildTreeMap = (config, componentScope) => {
54
54
  if (config.graphZoomWidth) {
55
55
  treMap.config.main.graphZoomWidth = config.graphZoomWidth;
56
56
  }
57
+ if (config.style) {
58
+ treMap.config.style = JSON.parse(config.style)
59
+ }
57
60
  return treMap;
58
61
  }
@@ -245,6 +245,7 @@ export const buildPropertiesSection = function (type: String) {
245
245
  getInputField("graphWidth", "Graph Width"),
246
246
  getInputField("graphZoomHeight", "Zoom Height"),
247
247
  ]
248
+ break;
248
249
  case "InputSlider":
249
250
  uiSchema.elements = [
250
251
  getInputField("max", "Max Limit"),