impaktapps-ui-builder 1.0.430-test-4 → 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,13 +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")
8271
+ ,
8272
+ emptyBox$1("LazyLoadingTableEmpty3")
8274
8273
  ]),
8275
8274
  getArrayControl("Table_Download_Keys_Name", "KeyName", "Table Key Name"),
8276
8275
  sizeHolder,
@@ -11650,8 +11649,8 @@ const buildTextField = (config2, componentScope2) => {
11650
11649
  if (config2.toolTipPosition) {
11651
11650
  inputField.config.main.toolTipPosition = config2.toolTipPosition;
11652
11651
  }
11653
- if (config2.iconName) {
11654
- inputField.config.main.startIcon = config2.iconName;
11652
+ if (config2.startIcon) {
11653
+ inputField.config.main.startIcon = config2.startIcon;
11655
11654
  }
11656
11655
  inputField.config.main.errorMessage = `${config2.name} is empty or invalid`;
11657
11656
  inputField.scope = componentScope2;
@@ -11861,15 +11860,6 @@ const buildTable = (config2, componentScope2) => {
11861
11860
  if (config2.layout) {
11862
11861
  table.config.layout = createLayoutFormat(config2.layout);
11863
11862
  }
11864
- if (config2.mergeExpandIcon) {
11865
- table.config.main.mergeExpandIcon = config2.mergeExpandIcon === "YES" ? true : false;
11866
- }
11867
- if (config2.expandedKey) {
11868
- table.config.main.expandedKey = config2.expandedKey;
11869
- }
11870
- if (config2.parentIdKey) {
11871
- table.config.main.parentIdKey = config2.parentIdKey;
11872
- }
11873
11863
  return table;
11874
11864
  };
11875
11865
  const Box = {