impaktapps-ui-builder 1.0.445 → 1.0.446
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 +1 -6
- 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/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +0 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +0 -1
package/package.json
CHANGED
|
@@ -17,9 +17,6 @@ export const buildTable = (config: any, componentScope: string) => {
|
|
|
17
17
|
if (config.defaultColumnSize) {
|
|
18
18
|
table.config.main.defaultColumnSize = config.defaultColumnSize
|
|
19
19
|
}
|
|
20
|
-
if (config.subRowsExpansionPageSize) {
|
|
21
|
-
table.config.main.subRowsExpansionPageSize = config.subRowsExpansionPageSize
|
|
22
|
-
}
|
|
23
20
|
if (config.enableRowMovement) {
|
|
24
21
|
table.config.main.enableRowMovement = config.enableRowMovement === "YES" ? true : false;
|
|
25
22
|
}
|
|
@@ -653,7 +653,6 @@ export const buildPropertiesSection = function (type: String) {
|
|
|
653
653
|
getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
|
|
654
654
|
getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
|
|
655
655
|
getInputField("defaultColumnSize", "Default Column Size"),
|
|
656
|
-
getInputField("subRowsExpansionPageSize", "Page Size for Subrows Expansion") , emptyBox("LazyLoadingTableEmpty3")
|
|
657
656
|
]),
|
|
658
657
|
getArrayControl("Table_Download_Keys_Name", "KeyName", "Table Key Name"),
|
|
659
658
|
sizeHolder,
|