impaktapps-ui-builder 1.0.224 → 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;
@@ -11764,7 +11766,8 @@ const Box = {
11764
11766
  config: {
11765
11767
  layout: { xs: 6, sm: 6, md: 4, lg: 3 },
11766
11768
  main: {
11767
- iconName: ""
11769
+ iconName: "",
11770
+ onClick: "onClick"
11768
11771
  },
11769
11772
  style: {}
11770
11773
  }
@@ -12529,6 +12532,7 @@ const buildArray = (config2, componentScope2) => {
12529
12532
  array.config.style = JSON.parse(config2.style);
12530
12533
  }
12531
12534
  array.config.main.childElementLabel = config2.childElementLabel;
12535
+ array.config.main.showKeyAsLabel = config2.showKeyAsLabel;
12532
12536
  array.config.main.label = config2.label;
12533
12537
  array.scope = componentScope2;
12534
12538
  return array;
@@ -12910,7 +12914,8 @@ const imageUiSchema = {
12910
12914
  config: {
12911
12915
  layout: 3,
12912
12916
  main: {
12913
- url: ""
12917
+ url: "",
12918
+ onClick: "onClick"
12914
12919
  },
12915
12920
  style: {}
12916
12921
  }
@@ -12928,6 +12933,8 @@ const buildImage = (config2, componentScope2) => {
12928
12933
  if (config2.height) {
12929
12934
  image.config.style.imageStyle = { ...image.config.style.imageStyle, height: config2.height };
12930
12935
  }
12936
+ image.config.main.toolTip = config2.toolTip;
12937
+ image.config.main.toolTipPosition = config2.toolTipPosition;
12931
12938
  return image;
12932
12939
  };
12933
12940
  const buildAreaGraph = (config2, componentScope2) => {