impaktapps-ui-builder 1.0.225 → 1.0.226

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.
@@ -8004,7 +8004,7 @@ const buildPropertiesSection = function(type) {
8004
8004
  getRadioInputField("disableExpandAllButton", "Disable Expand Buttons", ["YES", "NO"]),
8005
8005
  getRadioInputField("disableRowActions", "Disable Row Actions", ["YES", "NO"]),
8006
8006
  getInputField("childElementLabel", "Child Element Label"),
8007
- emptyBox$1("empty1", { xs: 12, sm: 6, md: 4, lg: 3 })
8007
+ getInputField("showKeyAsLabel", "ShowKey As Label")
8008
8008
  ];
8009
8009
  break;
8010
8010
  case "TreeMap":
@@ -8310,6 +8310,8 @@ const buildPropertiesSection = function(type) {
8310
8310
  uiSchema.elements = [
8311
8311
  getInputField("imageUrl", "Image URL"),
8312
8312
  getInputField("height", "Image Height"),
8313
+ getInputField("toolTip", "Tooltip"),
8314
+ getSelectField("toolTipPosition", "Tooltip Position"),
8313
8315
  emptyBox$1("imageEmpty", { xs: 0, sm: 0, md: 4, lg: 6 })
8314
8316
  ];
8315
8317
  break;
@@ -12530,6 +12532,7 @@ const buildArray = (config2, componentScope2) => {
12530
12532
  array.config.style = JSON.parse(config2.style);
12531
12533
  }
12532
12534
  array.config.main.childElementLabel = config2.childElementLabel;
12535
+ array.config.main.showKeyAsLabel = config2.showKeyAsLabel;
12533
12536
  array.config.main.label = config2.label;
12534
12537
  array.scope = componentScope2;
12535
12538
  return array;
@@ -12911,7 +12914,8 @@ const imageUiSchema = {
12911
12914
  config: {
12912
12915
  layout: 3,
12913
12916
  main: {
12914
- url: ""
12917
+ url: "",
12918
+ onClick: "onClick"
12915
12919
  },
12916
12920
  style: {}
12917
12921
  }
@@ -12929,6 +12933,8 @@ const buildImage = (config2, componentScope2) => {
12929
12933
  if (config2.height) {
12930
12934
  image.config.style.imageStyle = { ...image.config.style.imageStyle, height: config2.height };
12931
12935
  }
12936
+ image.config.main.toolTip = config2.toolTip;
12937
+ image.config.main.toolTipPosition = config2.toolTipPosition;
12932
12938
  return image;
12933
12939
  };
12934
12940
  const buildAreaGraph = (config2, componentScope2) => {