impaktapps-ui-builder 1.0.431 → 1.0.450

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.
@@ -8206,10 +8206,10 @@ const buildPropertiesSection = function(type) {
8206
8206
  getRadioInputField("bottomAxisAngle", "Bottom Axis Angled", ["YES", "No"]),
8207
8207
  getInputField("leftMargin", "Left Margin"),
8208
8208
  getInputField("yAxisTickCount", "Y Axis TickCount"),
8209
+ getInputField("xAxisTickCount", "X Axis TickCount"),
8209
8210
  getSelectField("xAxisFormatType", "X Axis Format Type"),
8210
8211
  getInputField("growthRateKey", "Growth Rate Key"),
8211
8212
  getInputField("tooltipUnit", "Tooltip Unit"),
8212
- emptyBox$1("GraphEmpty1", { xs: 6, sm: 6, md: 4, lg: 3 }),
8213
8213
  getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label", "Configure Bar Labels"),
8214
8214
  getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color", "Configure Bar Colors")
8215
8215
  ];
@@ -8258,11 +8258,11 @@ const buildPropertiesSection = function(type) {
8258
8258
  buildWrapper("Tree Table Properties", [
8259
8259
  getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
8260
8260
  getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
8261
- getRadioInputField("lazyLoadTree", "Lazy Load Tree", ["YES", "NO"]),
8262
8261
  getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
8262
+ getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
8263
8263
  getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
8264
8264
  getInputField("defaultColumnSize", "Default Column Size"),
8265
- getInputField("subRowsExpansionPageSize", "Page Size for Subrows Expansion"),
8265
+ ,
8266
8266
  emptyBox$1("LazyLoadingTableEmpty3")
8267
8267
  ]),
8268
8268
  getArrayControl("Table_Download_Keys_Name", "KeyName", "Table Key Name"),
@@ -10931,10 +10931,7 @@ var service = (funcParams) => {
10931
10931
  { key: "sorting", value: paginationValues.sorting || [] },
10932
10932
  { key: "filters", value: paginationValues.tableColumnConfig || [] },
10933
10933
  { key: "globalFilter", value: (_a = paginationValues.globalFilter) != null ? _a : "" },
10934
- { key: "expandedRowIds", value: (_b = paginationValues.expandedRowIds) != null ? _b : [] },
10935
- { key: "parentId", value: paginationValues.parentId },
10936
- { key: "prevRowCount", value: paginationValues.prevRowCount },
10937
- { key: "newDataCount", value: paginationValues.newDataCount }
10934
+ { key: "expandedRowIds", value: (_b = paginationValues.expandedRowIds) != null ? _b : [] }
10938
10935
  ];
10939
10936
  const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
10940
10937
  return response == null ? void 0 : response.data;
@@ -11747,15 +11744,9 @@ const buildTable = (config2, componentScope2) => {
11747
11744
  if (config2.lazyLoading) {
11748
11745
  table.config.main.lazyLoading = config2.lazyLoading === "YES" ? true : false;
11749
11746
  }
11750
- if (config2.lazyLoadTree) {
11751
- table.config.main.lazyTree = config2.lazyLoadTree === "YES" ? true : false;
11752
- }
11753
11747
  if (config2.defaultColumnSize) {
11754
11748
  table.config.main.defaultColumnSize = config2.defaultColumnSize;
11755
11749
  }
11756
- if (config2.subRowsExpansionPageSize) {
11757
- table.config.main.subRowsExpansionPageSize = config2.subRowsExpansionPageSize;
11758
- }
11759
11750
  if (config2.enableRowMovement) {
11760
11751
  table.config.main.enableRowMovement = config2.enableRowMovement === "YES" ? true : false;
11761
11752
  }
@@ -11771,6 +11762,9 @@ const buildTable = (config2, componentScope2) => {
11771
11762
  if (config2.paginateExpandedRows) {
11772
11763
  table.config.main.paginateExpandedRows = config2.paginateExpandedRows === "YES" ? true : false;
11773
11764
  }
11765
+ if (config2.treeStructure) {
11766
+ table.config.main.treeStructure = config2.treeStructure === "YES" ? "flatTreeMap" : false;
11767
+ }
11774
11768
  if (config2.SelectionAvailable) {
11775
11769
  table.config.main.Selection = config2.SelectionAvailable === "YES" ? true : false;
11776
11770
  }
@@ -13043,6 +13037,9 @@ const buildAreaGraph = (config2, componentScope2) => {
13043
13037
  if (config2.yAxisTickCount) {
13044
13038
  AreaGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
13045
13039
  }
13040
+ if (config2.xAxisTickCount) {
13041
+ AreaGraph.config.main.xAxisTickCount = config2.xAxisTickCount;
13042
+ }
13046
13043
  if (config2.xAxisValue) {
13047
13044
  AreaGraph.config.main.xAxisValue = config2.xAxisValue;
13048
13045
  }
@@ -13096,6 +13093,9 @@ const buildStackBarLineGraph = (config2, componentScope2) => {
13096
13093
  if (config2.yAxisTickCount) {
13097
13094
  StackBarLineGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
13098
13095
  }
13096
+ if (config2.xAxisTickCount) {
13097
+ StackBarLineGraph.config.main.xAxisTickCount = config2.xAxisTickCount;
13098
+ }
13099
13099
  if (config2.xAxisValue) {
13100
13100
  StackBarLineGraph.config.main.xAxisValue = config2.xAxisValue;
13101
13101
  }