@tanstack/table-core 8.11.4 → 8.11.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tanstack/table-core",
3
3
  "author": "Tanner Linsley",
4
- "version": "8.11.4",
4
+ "version": "8.11.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",
@@ -319,7 +319,8 @@ export const ColumnSizing: TableFeature = {
319
319
 
320
320
  return 0
321
321
  }
322
- header.getResizeHandler = (contextDocument = document) => {
322
+ header.getResizeHandler = _contextDocument => {
323
+ const contextDocument = _contextDocument || document
323
324
  const column = table.getColumn(header.column.id)
324
325
  const canResize = column?.getCanResize()
325
326