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