@powerportalspro/react 6.0.0 → 6.1.0
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/index.cjs +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -1403,6 +1403,7 @@ function useViewDataSource(options) {
|
|
|
1403
1403
|
const rows = data?.tableRecords ?? EMPTY_RECORDS;
|
|
1404
1404
|
const columns = data?.columns ?? EMPTY_COLUMNS;
|
|
1405
1405
|
const totalCount = data?.pagingInfo?.totalRecordCount;
|
|
1406
|
+
const moreRecords = data?.pagingInfo?.moreRecords;
|
|
1406
1407
|
const tablePermissions = data?.tablePermissions;
|
|
1407
1408
|
const aggregations = options.aggregations ?? EMPTY_AGGREGATION_SPEC;
|
|
1408
1409
|
const isFetchingAggregations = query.isFetching && debouncedRequest.aggregations !== void 0 && debouncedRequest.aggregations !== null && debouncedRequest.aggregations.length > 0;
|
|
@@ -1428,6 +1429,7 @@ function useViewDataSource(options) {
|
|
|
1428
1429
|
status: query.status,
|
|
1429
1430
|
rows,
|
|
1430
1431
|
totalCount,
|
|
1432
|
+
moreRecords,
|
|
1431
1433
|
columns,
|
|
1432
1434
|
tablePermissions,
|
|
1433
1435
|
aggregationResults,
|
|
@@ -1453,6 +1455,7 @@ function useViewDataSource(options) {
|
|
|
1453
1455
|
query.status,
|
|
1454
1456
|
rows,
|
|
1455
1457
|
totalCount,
|
|
1458
|
+
moreRecords,
|
|
1456
1459
|
columns,
|
|
1457
1460
|
tablePermissions,
|
|
1458
1461
|
aggregationResults,
|