impaktapps-ui-builder 1.0.99 → 1.0.100

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.
@@ -7859,6 +7859,7 @@ const buildPropertiesSection = function(type) {
7859
7859
  getRadioInputField("disablePagination", "Disable Pagination", ["YES", "NO"]),
7860
7860
  getInputField("selectKey", "Selection Key"),
7861
7861
  getMultiSelectField("filteringOptions", "Filtering Options"),
7862
+ getSelectField("maxPageSize", "Max Page Size"),
7862
7863
  buildWrapper("Tree Table Properties", [
7863
7864
  getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
7864
7865
  getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
@@ -11154,6 +11155,9 @@ const buildTable = (config2, componentScope2) => {
11154
11155
  if (config2.selectKey) {
11155
11156
  table.config.main.selectKey = config2.selectKey;
11156
11157
  }
11158
+ if (config2.maxPageSize) {
11159
+ table.config.main.maxPageSize = config2.maxPageSize;
11160
+ }
11157
11161
  return table;
11158
11162
  };
11159
11163
  const Box = {