impaktapps-ui-builder 1.0.430-test-7 → 1.0.430-test.1

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.
@@ -8088,8 +8088,7 @@ const buildPropertiesSection = function(type) {
8088
8088
  getSelectField("variant", "Variant"),
8089
8089
  getInputField("toolTip", "Tooltip"),
8090
8090
  getSelectField("toolTipPosition", "Tooltip Position"),
8091
- getSelectField("iconName", "Start Icon"),
8092
- emptyBox$1("Radio", { xs: 0, sm: 0, md: 0, lg: 6 }),
8091
+ emptyBox$1("Radio", { xs: 6, sm: 6, md: 8, lg: 9 }),
8093
8092
  getArrayControl("InputFormatingAndMasking", "formatElement", "Format Element"),
8094
8093
  getInputField("keyName", "Event Key Name")
8095
8094
  ];
@@ -8265,7 +8264,6 @@ const buildPropertiesSection = function(type) {
8265
8264
  getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
8266
8265
  getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
8267
8266
  getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
8268
- getRadioInputField("treeStructure", "Flat Tree Structure", ["YES", "NO"]),
8269
8267
  getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
8270
8268
  getInputField("defaultColumnSize", "Default Column Size"),
8271
8269
  ,
@@ -11649,9 +11647,6 @@ const buildTextField = (config2, componentScope2) => {
11649
11647
  if (config2.toolTipPosition) {
11650
11648
  inputField.config.main.toolTipPosition = config2.toolTipPosition;
11651
11649
  }
11652
- if (config2.iconName) {
11653
- inputField.config.main.startIcon = config2.iconName;
11654
- }
11655
11650
  inputField.config.main.errorMessage = `${config2.name} is empty or invalid`;
11656
11651
  inputField.scope = componentScope2;
11657
11652
  return inputField;
@@ -11806,9 +11801,6 @@ const buildTable = (config2, componentScope2) => {
11806
11801
  if (config2.paginateExpandedRows) {
11807
11802
  table.config.main.paginateExpandedRows = config2.paginateExpandedRows === "YES" ? true : false;
11808
11803
  }
11809
- if (config2.treeStructure) {
11810
- table.config.main.treeStructure = config2.treeStructure === "YES" ? "flatTreeMap" : false;
11811
- }
11812
11804
  if (config2.SelectionAvailable) {
11813
11805
  table.config.main.Selection = config2.SelectionAvailable === "YES" ? true : false;
11814
11806
  }