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.
- package/dist/impaktapps-ui-builder.es.js +4 -0
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.d.ts +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +9 -1
|
@@ -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 = {
|