impaktapps-ui-builder 1.0.430-test-3 → 1.0.430-test-5

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.
@@ -8264,16 +8264,12 @@ const buildPropertiesSection = function(type) {
8264
8264
  buildWrapper("Tree Table Properties", [
8265
8265
  getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
8266
8266
  getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
8267
- getRadioInputField("mergeExpandIcon", "Merge Expand Icon", ["YES", "NO"]),
8268
8267
  getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
8269
8268
  getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
8270
8269
  getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
8271
8270
  getInputField("defaultColumnSize", "Default Column Size"),
8272
- getInputField("expandedKey", "Expanded Key"),
8273
- getInputField("parentIdKey", "Parent Key"),
8274
- getInputField("defaultColumnSize", "Default Column Size"),
8275
- emptyBox$1("LazyLoadingTableEmpty3"),
8276
- emptyBox$1("LazyLoadingTableEmpty4")
8271
+ ,
8272
+ emptyBox$1("LazyLoadingTableEmpty3")
8277
8273
  ]),
8278
8274
  getArrayControl("Table_Download_Keys_Name", "KeyName", "Table Key Name"),
8279
8275
  sizeHolder,
@@ -11653,8 +11649,8 @@ const buildTextField = (config2, componentScope2) => {
11653
11649
  if (config2.toolTipPosition) {
11654
11650
  inputField.config.main.toolTipPosition = config2.toolTipPosition;
11655
11651
  }
11656
- if (config2.iconName) {
11657
- inputField.config.main.startIcon = config2.iconName;
11652
+ if (config2.startIcon) {
11653
+ inputField.config.main.startIcon = config2.startIcon;
11658
11654
  }
11659
11655
  inputField.config.main.errorMessage = `${config2.name} is empty or invalid`;
11660
11656
  inputField.scope = componentScope2;
@@ -11864,15 +11860,6 @@ const buildTable = (config2, componentScope2) => {
11864
11860
  if (config2.layout) {
11865
11861
  table.config.layout = createLayoutFormat(config2.layout);
11866
11862
  }
11867
- if (config2.mergeExpandIcon) {
11868
- table.config.main.mergeExpandIcon = config2.mergeExpandIcon === "YES" ? true : false;
11869
- }
11870
- if (config2.expandedKey) {
11871
- table.config.main.expandedKey = config2.expandedKey;
11872
- }
11873
- if (config2.parentIdKey) {
11874
- table.config.main.parentIdKey = config2.parentIdKey;
11875
- }
11876
11863
  return table;
11877
11864
  };
11878
11865
  const Box = {