@angular/cdk 19.0.0 → 19.1.0-next.0

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/fesm2022/a11y.mjs CHANGED
@@ -2391,7 +2391,7 @@ class FocusMonitor {
2391
2391
  // Make a note of when the window regains focus, so we can
2392
2392
  // restore the origin info for the focused element.
2393
2393
  this._windowFocused = true;
2394
- this._windowFocusTimeoutId = window.setTimeout(() => (this._windowFocused = false));
2394
+ this._windowFocusTimeoutId = setTimeout(() => (this._windowFocused = false));
2395
2395
  };
2396
2396
  /** Used to reference correct document/window */
2397
2397
  _document = inject(DOCUMENT, { optional: true });