@tanstack/react-table 8.7.8 → 8.7.9

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.
@@ -2035,7 +2035,7 @@
2035
2035
  rowSelection
2036
2036
  } = table.getState();
2037
2037
  let isAllPageRowsSelected = !!paginationFlatRows.length;
2038
- if (isAllPageRowsSelected && paginationFlatRows.some(row => !rowSelection[row.id])) {
2038
+ if (isAllPageRowsSelected && paginationFlatRows.some(row => row.getCanSelect() && !rowSelection[row.id])) {
2039
2039
  isAllPageRowsSelected = false;
2040
2040
  }
2041
2041
  return isAllPageRowsSelected;