@tanstack/table-core 8.8.4 → 8.8.5
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/build/lib/columnHelper.js +0 -1
- package/build/lib/columnHelper.js.map +1 -1
- package/build/lib/features/ColumnSizing.js +2 -0
- package/build/lib/features/ColumnSizing.js.map +1 -1
- package/build/lib/features/Expanding.js +1 -1
- package/build/lib/features/Expanding.js.map +1 -1
- package/build/lib/index.esm.js +3 -2
- package/build/lib/index.esm.js.map +1 -1
- package/build/lib/index.mjs +3 -2
- package/build/lib/index.mjs.map +1 -1
- package/build/umd/index.development.js +3 -2
- package/build/umd/index.development.js.map +1 -1
- package/build/umd/index.production.js +1 -1
- package/build/umd/index.production.js.map +1 -1
- package/package.json +1 -1
- package/src/features/Expanding.ts +3 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/table-core",
|
|
3
3
|
"author": "Tanner Linsley",
|
|
4
|
-
"version": "8.8.
|
|
4
|
+
"version": "8.8.5",
|
|
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",
|
|
@@ -103,7 +103,9 @@ export const Expanding: TableFeature = {
|
|
|
103
103
|
)
|
|
104
104
|
},
|
|
105
105
|
getCanSomeRowsExpand: () => {
|
|
106
|
-
return table
|
|
106
|
+
return table
|
|
107
|
+
.getPrePaginationRowModel()
|
|
108
|
+
.flatRows.some(row => row.getCanExpand())
|
|
107
109
|
},
|
|
108
110
|
getToggleAllRowsExpandedHandler: () => {
|
|
109
111
|
return (e: unknown) => {
|