@pagamio/frontend-commons-lib 0.8.328 → 0.8.330
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.
|
@@ -233,7 +233,14 @@ const PagamioTable = ({ columns, data, isLoading = false, isFetching = false, ro
|
|
|
233
233
|
// State
|
|
234
234
|
state: {
|
|
235
235
|
isLoading,
|
|
236
|
-
|
|
236
|
+
// Translucent overlay + centered spinner over the rows during background
|
|
237
|
+
// refetch (pagination/sort/filter with `keepPreviousData`). Rows stay
|
|
238
|
+
// visible underneath so the table doesn't blank, but the overlay makes
|
|
239
|
+
// the loading state unambiguous on slower connections.
|
|
240
|
+
showLoadingOverlay: isFetching,
|
|
241
|
+
// MRT defaults showProgressBars based on its own fetch heuristics — turn
|
|
242
|
+
// it off explicitly so only the overlay above renders during refetch.
|
|
243
|
+
showProgressBars: false,
|
|
237
244
|
pagination: paginationState,
|
|
238
245
|
sorting: sortingState,
|
|
239
246
|
expanded,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pagamio/frontend-commons-lib",
|
|
3
3
|
"description": "Pagamio library for Frontend reusable components like the form engine and table container",
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.330",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
7
7
|
"provenance": false
|