impaktapps-ui-builder 1.0.410 → 1.0.411

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, arrayLabel) => {
7820
+ const getArrayControlMultiField = (parentScope, firstFieldScope, secondFieldScope, firstFieldLabel, secondFieldLabel) => {
7821
7821
  return {
7822
7822
  type: "Control",
7823
7823
  scope: `#/properties/${parentScope}`,
@@ -7826,9 +7826,7 @@ const getArrayControlMultiField = (parentScope, firstFieldScope, secondFieldScop
7826
7826
  },
7827
7827
  config: {
7828
7828
  layout: 12,
7829
- main: {
7830
- label: arrayLabel
7831
- },
7829
+ main: {},
7832
7830
  style: {
7833
7831
  marginLeft: "-24px",
7834
7832
  marginBottom: "24px !important",
@@ -8200,17 +8198,16 @@ const buildPropertiesSection = function(type) {
8200
8198
  emptyBox$1("GraphEmpty1", { xs: 6, sm: 0, md: 0, lg: 0 }),
8201
8199
  getRadioInputField("legendHide", "Legend Hide", ["YES", "No"]),
8202
8200
  getRadioInputField("legendDirection", "Legend Direction", ["Row", "Column"]),
8203
- getInputField("yAxisValue", "Y-AxisKey"),
8204
- getInputField("xAxisValue", "X-AxisKey"),
8201
+ getInputField("yAxisValue", "Y-AxisValue"),
8202
+ getInputField("xAxisValue", "X-AxisValue"),
8205
8203
  getSelectField("xAxisType", "X-AxisType"),
8206
8204
  getRadioInputField("bottomAxisAngle", "Bottom Axis Angled", ["YES", "No"]),
8207
8205
  getInputField("leftMargin", "Left Margin"),
8208
- getInputField("xAxisLabelMinWidth", "X Axis Label Width"),
8209
8206
  getInputField("yAxisTickCount", "Y Axis TickCount"),
8210
8207
  getSelectField("xAxisFormatType", "X Axis Format Type"),
8211
- emptyBox$1("GraphEmpty1", { xs: 0, sm: 0, md: 4, lg: 6 }),
8212
- getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label", "Configure Bar Labels"),
8213
- getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color", "Configure Bar Colors")
8208
+ emptyBox$1("GraphEmpty1", { xs: 6, sm: 6, md: 8, lg: 9 }),
8209
+ getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label"),
8210
+ getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color")
8214
8211
  ];
8215
8212
  break;
8216
8213
  case "WrapperSection":
@@ -13033,9 +13030,6 @@ const buildAreaGraph = (config2, componentScope2) => {
13033
13030
  if (config2.xAxisFormatType) {
13034
13031
  AreaGraph.config.main.xAxisFormatType = config2.xAxisFormatType;
13035
13032
  }
13036
- if (config2.xAxisLabelMinWidth) {
13037
- AreaGraph.config.main.xAxisLabelMinWidth = config2.xAxisLabelMinWidth;
13038
- }
13039
13033
  if (config2.yAxisTickCount) {
13040
13034
  AreaGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
13041
13035
  }
@@ -13089,9 +13083,6 @@ const buildStackBarLineGraph = (config2, componentScope2) => {
13089
13083
  if (config2.pieArcColors) {
13090
13084
  StackBarLineGraph.config.style.colorMap = createKeyValueMap(config2.pieArcColors);
13091
13085
  }
13092
- if (config2.xAxisLabelMinWidth) {
13093
- StackBarLineGraph.config.main.xAxisLabelMinWidth = config2.xAxisLabelMinWidth;
13094
- }
13095
13086
  if (config2.yAxisTickCount) {
13096
13087
  StackBarLineGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
13097
13088
  }