@tanstack/table-core 8.5.9 → 8.5.10

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@tanstack/table-core",
3
3
  "author": "Tanner Linsley",
4
- "version": "8.5.9",
4
+ "version": "8.5.10",
5
5
  "description": "Headless UI for building powerful tables & datagrids for TS/JS.",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/tanstack/table#readme",
@@ -21,7 +21,6 @@ export function getExpandedRowModel<TData extends RowData>(): (
21
21
 
22
22
  if (!paginateExpandedRows) {
23
23
  // Only expand rows at this point if they are being paginated
24
- console.log(rowModel.rows)
25
24
  return rowModel
26
25
  }
27
26
 
@@ -42,8 +42,6 @@ export function getPaginationRowModel<TData extends RowData>(opts?: {
42
42
  }
43
43
  }
44
44
 
45
- console.log(paginatedRowModel.rows)
46
-
47
45
  paginatedRowModel.flatRows = []
48
46
 
49
47
  const handleRow = (row: Row<TData>) => {