impaktapps-ui-builder 1.0.444 → 1.0.445

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.444",
3
+ "version": "1.0.445",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -191,8 +191,8 @@ export default (funcParams: funcParamsProps) => {
191
191
  { key: "filters", value: paginationValues.tableColumnConfig || [] },
192
192
  { key: "globalFilter", value: paginationValues.globalFilter ?? '' },
193
193
  { key: "parentId", value: paginationValues.parentId },
194
- { key: "prevRowCount", value: paginationValues.prevRowCount },
195
- { key: "newDataCount", value: paginationValues.newDataCount },
194
+ { key: "startIndex", value: paginationValues.startIndex },
195
+ { key: "batchSize", value: paginationValues.batchSize },
196
196
  ]
197
197
  const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
198
198
  return response?.data;