@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.
@@ -601,10 +601,8 @@ const ColumnSizing = {
601
601
  }
602
602
  return 0;
603
603
  };
604
- header.getResizeHandler = function (contextDocument) {
605
- if (contextDocument === void 0) {
606
- contextDocument = document;
607
- }
604
+ header.getResizeHandler = _contextDocument => {
605
+ const contextDocument = _contextDocument || document;
608
606
  const column = table.getColumn(header.column.id);
609
607
  const canResize = column == null ? void 0 : column.getCanResize();
610
608
  return e => {