impaktapps-ui-builder 1.0.446 → 1.0.447

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.446",
3
+ "version": "1.0.447",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -630,7 +630,7 @@ export const buildPropertiesSection = function (type: String) {
630
630
  getRadioInputField("disableDensityToggle", "Disable Density Toggle", ["YES", "NO"]),
631
631
  getRadioInputField("disableDownloadFile", "Disable Download File", ["YES", "NO"]),
632
632
  getRadioInputField("disablePagination", "Disable Pagination", ["YES", "NO"]),
633
- getInputField("selectKey", "Selection Key"),
633
+ getInputField("selectKey", "Selection Key"),//defaultColumnSize
634
634
  getMultiSelectField("filteringOptions", "Filtering Options"),
635
635
  getSelectField("maxPageSize", "Max Page Size", [
636
636
  { label: "10", value: 10 },
@@ -652,7 +652,7 @@ export const buildPropertiesSection = function (type: String) {
652
652
  // getRadioInputField("enableExpandAll", "Use All Row Expanding", ["YES", "NO"]),
653
653
  getRadioInputField("paginateExpandedRows", "Multi Page Expansion", ["YES", "NO"]),
654
654
  getRadioInputField("filterFromLeafRows", "Filter from tree rows", ["YES", "NO"]),
655
- getInputField("defaultColumnSize", "Default Column Size"),
655
+ getInputField("defaultColumnSize", "Default Column Size"), , emptyBox("LazyLoadingTableEmpty3")
656
656
  ]),
657
657
  getArrayControl("Table_Download_Keys_Name", "KeyName", "Table Key Name"),
658
658
  sizeHolder,
@@ -192,7 +192,6 @@ export default (funcParams: funcParamsProps) => {
192
192
  { key: "globalFilter", value: paginationValues.globalFilter ?? '' },
193
193
  { key: "parentId", value: paginationValues.parentId },
194
194
  { key: "startIndex", value: paginationValues.startIndex },
195
- { key: "batchSize", value: paginationValues.batchSize },
196
195
  ]
197
196
  const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
198
197
  return response?.data;