impaktapps-ui-builder 1.0.454 → 1.0.455

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.
@@ -8263,7 +8263,6 @@ const buildPropertiesSection = function(type) {
8263
8263
  buildWrapper("Tree Table Properties", [
8264
8264
  getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
8265
8265
  getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
8266
- getRadioInputField("lazyLoadTree", "Lazy Load Tree", ["YES", "NO"]),
8267
8266
  getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
8268
8267
  getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
8269
8268
  getInputField("defaultColumnSize", "Default Column Size"),
@@ -11785,9 +11784,6 @@ const buildTable = (config2, componentScope2) => {
11785
11784
  if (config2.lazyLoading) {
11786
11785
  table.config.main.lazyLoading = config2.lazyLoading === "YES" ? true : false;
11787
11786
  }
11788
- if (config2.lazyLoadTree) {
11789
- table.config.main.lazyTree = config2.lazyLoadTree === "YES" ? true : false;
11790
- }
11791
11787
  if (config2.defaultColumnSize) {
11792
11788
  table.config.main.defaultColumnSize = config2.defaultColumnSize;
11793
11789
  }