@xcelsior/ui-spreadsheets 1.3.0 → 1.3.1

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.mjs CHANGED
@@ -4875,7 +4875,7 @@ function Spreadsheet({
4875
4875
  }, [popRedoEntry, onCellsEdit, markAsChanged]);
4876
4876
  const paginatedData = useMemo7(() => {
4877
4877
  if (serverSide) {
4878
- return filteredData;
4878
+ return filteredData.toArray();
4879
4879
  }
4880
4880
  const startIndex = (currentPage - 1) * pageSize;
4881
4881
  return filteredData.slice(startIndex, startIndex + pageSize);