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