impaktapps-ui-builder 1.0.420 → 1.0.421

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.
@@ -7817,7 +7817,7 @@ const getArrayControl = (parentScope, childScope, childLabel) => {
7817
7817
  ]
7818
7818
  };
7819
7819
  };
7820
- const getArrayControlMultiField = (parentScope, firstFieldScope, secondFieldScope, firstFieldLabel, secondFieldLabel) => {
7820
+ const getArrayControlMultiField = (parentScope, firstFieldScope, secondFieldScope, firstFieldLabel, secondFieldLabel, arrayLabel) => {
7821
7821
  return {
7822
7822
  type: "Control",
7823
7823
  scope: `#/properties/${parentScope}`,
@@ -7826,7 +7826,9 @@ const getArrayControlMultiField = (parentScope, firstFieldScope, secondFieldScop
7826
7826
  },
7827
7827
  config: {
7828
7828
  layout: 12,
7829
- main: {},
7829
+ main: {
7830
+ label: arrayLabel
7831
+ },
7830
7832
  style: {
7831
7833
  marginLeft: "-24px",
7832
7834
  marginBottom: "24px !important",
@@ -8198,8 +8200,8 @@ const buildPropertiesSection = function(type) {
8198
8200
  emptyBox$1("GraphEmpty1", { xs: 6, sm: 0, md: 0, lg: 0 }),
8199
8201
  getRadioInputField("legendHide", "Legend Hide", ["YES", "No"]),
8200
8202
  getRadioInputField("legendDirection", "Legend Direction", ["Row", "Column"]),
8201
- getInputField("yAxisValue", "Y-AxisValue"),
8202
- getInputField("xAxisValue", "X-AxisValue"),
8203
+ getInputField("yAxisValue", "Y-Axis Key"),
8204
+ getInputField("xAxisValue", "X-Axis Key"),
8203
8205
  getSelectField("xAxisType", "X-AxisType"),
8204
8206
  getRadioInputField("bottomAxisAngle", "Bottom Axis Angled", ["YES", "No"]),
8205
8207
  getInputField("leftMargin", "Left Margin"),
@@ -8208,8 +8210,8 @@ const buildPropertiesSection = function(type) {
8208
8210
  getInputField("growthRateKey", "Growth Rate Key"),
8209
8211
  getInputField("tooltipUnit", "Tooltip Unit"),
8210
8212
  emptyBox$1("GraphEmpty1", { xs: 6, sm: 6, md: 4, lg: 3 }),
8211
- getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label"),
8212
- getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color")
8213
+ getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label", "Configure Bar Labels"),
8214
+ getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color", "Configure Bar Colors")
8213
8215
  ];
8214
8216
  break;
8215
8217
  case "WrapperSection":