@tanstack/svelte-table 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.
@@ -616,10 +616,8 @@
616
616
  }
617
617
  return 0;
618
618
  };
619
- header.getResizeHandler = function (contextDocument) {
620
- if (contextDocument === void 0) {
621
- contextDocument = document;
622
- }
619
+ header.getResizeHandler = _contextDocument => {
620
+ const contextDocument = _contextDocument || document;
623
621
  const column = table.getColumn(header.column.id);
624
622
  const canResize = column == null ? void 0 : column.getCanResize();
625
623
  return e => {