@angular/cdk 19.2.0-next.0 → 19.2.0-next.2

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.
Files changed (53) hide show
  1. package/a11y/index.d.ts +3 -4
  2. package/dialog/index.d.ts +5 -1
  3. package/drag-drop/index.d.ts +4 -0
  4. package/fesm2022/a11y.mjs +56 -56
  5. package/fesm2022/a11y.mjs.map +1 -1
  6. package/fesm2022/accordion.mjs +10 -10
  7. package/fesm2022/accordion.mjs.map +1 -1
  8. package/fesm2022/bidi.mjs +10 -10
  9. package/fesm2022/bidi.mjs.map +1 -1
  10. package/fesm2022/cdk.mjs +1 -1
  11. package/fesm2022/cdk.mjs.map +1 -1
  12. package/fesm2022/clipboard.mjs +10 -10
  13. package/fesm2022/clipboard.mjs.map +1 -1
  14. package/fesm2022/collections.mjs +3 -3
  15. package/fesm2022/collections.mjs.map +1 -1
  16. package/fesm2022/dialog.mjs +16 -12
  17. package/fesm2022/dialog.mjs.map +1 -1
  18. package/fesm2022/drag-drop.mjs +86 -93
  19. package/fesm2022/drag-drop.mjs.map +1 -1
  20. package/fesm2022/layout.mjs +10 -10
  21. package/fesm2022/layout.mjs.map +1 -1
  22. package/fesm2022/listbox.mjs +10 -10
  23. package/fesm2022/listbox.mjs.map +1 -1
  24. package/fesm2022/menu.mjs +49 -49
  25. package/fesm2022/menu.mjs.map +1 -1
  26. package/fesm2022/observers/private.mjs +3 -3
  27. package/fesm2022/observers/private.mjs.map +1 -1
  28. package/fesm2022/observers.mjs +13 -13
  29. package/fesm2022/observers.mjs.map +1 -1
  30. package/fesm2022/overlay.mjs +62 -71
  31. package/fesm2022/overlay.mjs.map +1 -1
  32. package/fesm2022/platform.mjs +7 -7
  33. package/fesm2022/platform.mjs.map +1 -1
  34. package/fesm2022/portal.mjs +16 -16
  35. package/fesm2022/portal.mjs.map +1 -1
  36. package/fesm2022/private.mjs +6 -6
  37. package/fesm2022/private.mjs.map +1 -1
  38. package/fesm2022/scrolling.mjs +35 -35
  39. package/fesm2022/scrolling.mjs.map +1 -1
  40. package/fesm2022/stepper.mjs +22 -22
  41. package/fesm2022/stepper.mjs.map +1 -1
  42. package/fesm2022/table.mjs +77 -77
  43. package/fesm2022/table.mjs.map +1 -1
  44. package/fesm2022/text-field.mjs +47 -43
  45. package/fesm2022/text-field.mjs.map +1 -1
  46. package/fesm2022/tree.mjs +25 -25
  47. package/fesm2022/tree.mjs.map +1 -1
  48. package/overlay/index.d.ts +6 -5
  49. package/package.json +1 -1
  50. package/platform/index.d.ts +8 -2
  51. package/schematics/ng-add/index.js +1 -1
  52. package/schematics/ng-add/index.mjs +1 -1
  53. package/text-field/index.d.ts +2 -1
package/a11y/index.d.ts CHANGED
@@ -11,6 +11,7 @@ import { NgZone } from '@angular/core';
11
11
  import { Observable } from 'rxjs';
12
12
  import { OnChanges } from '@angular/core';
13
13
  import { OnDestroy } from '@angular/core';
14
+ import { Provider } from '@angular/core';
14
15
  import { QueryList } from '@angular/core';
15
16
  import { Signal } from '@angular/core';
16
17
  import { SimpleChanges } from '@angular/core';
@@ -788,6 +789,7 @@ export declare type InputModality = 'keyboard' | 'mouse' | 'touch' | null;
788
789
  */
789
790
  export declare class InputModalityDetector implements OnDestroy {
790
791
  private readonly _platform;
792
+ private readonly _listenerCleanups;
791
793
  /** Emits whenever an input modality is detected. */
792
794
  readonly modalityDetected: Observable<InputModality>;
793
795
  /** Emits when the input modality changes. */
@@ -1181,10 +1183,7 @@ export declare function NOOP_TREE_KEY_MANAGER_FACTORY<T extends TreeKeyManagerIt
1181
1183
  *
1182
1184
  * @breaking-change 21.0.0
1183
1185
  */
1184
- export declare const NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER: {
1185
- provide: InjectionToken<TreeKeyManagerFactory<any>>;
1186
- useFactory: typeof NOOP_TREE_KEY_MANAGER_FACTORY;
1187
- };
1186
+ export declare const NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER: Provider;
1188
1187
 
1189
1188
  /**
1190
1189
  * @docs-private
package/dialog/index.d.ts CHANGED
@@ -305,7 +305,11 @@ export declare class DialogConfig<D = unknown, R = unknown, C extends BasePortal
305
305
  ariaLabelledBy?: string | null;
306
306
  /** Dialog label applied via `aria-label` */
307
307
  ariaLabel?: string | null;
308
- /** Whether this is a modal dialog. Used to set the `aria-modal` attribute. */
308
+ /**
309
+ * Whether this is a modal dialog. Used to set the `aria-modal` attribute. Off by default,
310
+ * because it can interfere with other overlay-based components (e.g. `mat-select`) and because
311
+ * it is redundant since the dialog marks all outside content as `aria-hidden` anyway.
312
+ */
309
313
  ariaModal?: boolean;
310
314
  /**
311
315
  * Where the dialog should focus on open.
@@ -582,6 +582,8 @@ export declare class DragDropRegistry<_ = unknown, __ = unknown> implements OnDe
582
582
  private _ngZone;
583
583
  private _document;
584
584
  private _styleLoader;
585
+ private _renderer;
586
+ private _cleanupDocumentTouchmove;
585
587
  /** Registered drop container instances. */
586
588
  private _dropInstances;
587
589
  /** Registered drag item instances. */
@@ -699,6 +701,8 @@ export declare class DragRef<T = any> {
699
701
  private _viewportRuler;
700
702
  private _dragDropRegistry;
701
703
  private _renderer;
704
+ private _rootElementCleanups;
705
+ private _cleanupShadowRootSelectStart;
702
706
  /** Element displayed next to the user's pointer while the element is dragged. */
703
707
  private _preview;
704
708
  /** Container into which to insert the preview. */
package/fesm2022/a11y.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import { DOCUMENT } from '@angular/common';
2
2
  import * as i0 from '@angular/core';
3
- import { inject, APP_ID, Injectable, signal, QueryList, isSignal, effect, InjectionToken, afterNextRender, NgZone, Injector, ElementRef, booleanAttribute, Directive, Input, EventEmitter, Output, NgModule } from '@angular/core';
4
- import { Platform, _getFocusedElementPierceShadowDom, normalizePassiveListenerOptions, _getEventTarget, _getShadowRoot } from '@angular/cdk/platform';
3
+ import { inject, APP_ID, Injectable, signal, QueryList, isSignal, effect, InjectionToken, afterNextRender, NgZone, Injector, ElementRef, booleanAttribute, Directive, Input, RendererFactory2, EventEmitter, Output, NgModule } from '@angular/core';
4
+ import { Platform, _getFocusedElementPierceShadowDom, _getEventTarget, _bindEventWithOptions, normalizePassiveListenerOptions, _getShadowRoot } from '@angular/cdk/platform';
5
5
  import { _CdkPrivateStyleLoader, _VisuallyHiddenLoader } from '@angular/cdk/private';
6
6
  import { A, Z, ZERO, NINE, hasModifierKey, PAGE_DOWN, PAGE_UP, END, HOME, LEFT_ARROW, RIGHT_ARROW, UP_ARROW, DOWN_ARROW, TAB, ALT, CONTROL, MAC_META, META, SHIFT } from '@angular/cdk/keycodes';
7
7
  import { Subject, Subscription, isObservable, of, BehaviorSubject } from 'rxjs';
@@ -244,10 +244,10 @@ class AriaDescriber {
244
244
  _isElementNode(element) {
245
245
  return element.nodeType === this._document.ELEMENT_NODE;
246
246
  }
247
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: AriaDescriber, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
248
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: AriaDescriber, providedIn: 'root' });
247
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: AriaDescriber, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
248
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: AriaDescriber, providedIn: 'root' });
249
249
  }
250
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: AriaDescriber, decorators: [{
250
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: AriaDescriber, decorators: [{
251
251
  type: Injectable,
252
252
  args: [{ providedIn: 'root' }]
253
253
  }], ctorParameters: () => [] });
@@ -1276,10 +1276,10 @@ class InteractivityChecker {
1276
1276
  !this.isDisabled(element) &&
1277
1277
  (config?.ignoreVisibility || this.isVisible(element)));
1278
1278
  }
1279
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: InteractivityChecker, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1280
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: InteractivityChecker, providedIn: 'root' });
1279
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: InteractivityChecker, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1280
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: InteractivityChecker, providedIn: 'root' });
1281
1281
  }
1282
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: InteractivityChecker, decorators: [{
1282
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: InteractivityChecker, decorators: [{
1283
1283
  type: Injectable,
1284
1284
  args: [{ providedIn: 'root' }]
1285
1285
  }], ctorParameters: () => [] });
@@ -1678,10 +1678,10 @@ class FocusTrapFactory {
1678
1678
  create(element, deferCaptureElements = false) {
1679
1679
  return new FocusTrap(element, this._checker, this._ngZone, this._document, deferCaptureElements, this._injector);
1680
1680
  }
1681
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: FocusTrapFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1682
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: FocusTrapFactory, providedIn: 'root' });
1681
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: FocusTrapFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1682
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: FocusTrapFactory, providedIn: 'root' });
1683
1683
  }
1684
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: FocusTrapFactory, decorators: [{
1684
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: FocusTrapFactory, decorators: [{
1685
1685
  type: Injectable,
1686
1686
  args: [{ providedIn: 'root' }]
1687
1687
  }], ctorParameters: () => [] });
@@ -1746,10 +1746,10 @@ class CdkTrapFocus {
1746
1746
  this._previouslyFocusedElement = _getFocusedElementPierceShadowDom();
1747
1747
  this.focusTrap?.focusInitialElementWhenReady();
1748
1748
  }
1749
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: CdkTrapFocus, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1750
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.1.0-rc.0", type: CdkTrapFocus, isStandalone: true, selector: "[cdkTrapFocus]", inputs: { enabled: ["cdkTrapFocus", "enabled", booleanAttribute], autoCapture: ["cdkTrapFocusAutoCapture", "autoCapture", booleanAttribute] }, exportAs: ["cdkTrapFocus"], usesOnChanges: true, ngImport: i0 });
1749
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: CdkTrapFocus, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1750
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.1.3", type: CdkTrapFocus, isStandalone: true, selector: "[cdkTrapFocus]", inputs: { enabled: ["cdkTrapFocus", "enabled", booleanAttribute], autoCapture: ["cdkTrapFocusAutoCapture", "autoCapture", booleanAttribute] }, exportAs: ["cdkTrapFocus"], usesOnChanges: true, ngImport: i0 });
1751
1751
  }
1752
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: CdkTrapFocus, decorators: [{
1752
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: CdkTrapFocus, decorators: [{
1753
1753
  type: Directive,
1754
1754
  args: [{
1755
1755
  selector: '[cdkTrapFocus]',
@@ -1897,10 +1897,10 @@ class FocusTrapManager {
1897
1897
  }
1898
1898
  }
1899
1899
  }
1900
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: FocusTrapManager, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1901
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: FocusTrapManager, providedIn: 'root' });
1900
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: FocusTrapManager, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1901
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: FocusTrapManager, providedIn: 'root' });
1902
1902
  }
1903
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: FocusTrapManager, decorators: [{
1903
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: FocusTrapManager, decorators: [{
1904
1904
  type: Injectable,
1905
1905
  args: [{ providedIn: 'root' }]
1906
1906
  }] });
@@ -1928,10 +1928,10 @@ class ConfigurableFocusTrapFactory {
1928
1928
  }
1929
1929
  return new ConfigurableFocusTrap(element, this._checker, this._ngZone, this._document, this._focusTrapManager, this._inertStrategy, configObject, this._injector);
1930
1930
  }
1931
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: ConfigurableFocusTrapFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1932
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: ConfigurableFocusTrapFactory, providedIn: 'root' });
1931
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: ConfigurableFocusTrapFactory, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1932
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: ConfigurableFocusTrapFactory, providedIn: 'root' });
1933
1933
  }
1934
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: ConfigurableFocusTrapFactory, decorators: [{
1934
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: ConfigurableFocusTrapFactory, decorators: [{
1935
1935
  type: Injectable,
1936
1936
  args: [{ providedIn: 'root' }]
1937
1937
  }], ctorParameters: () => [] });
@@ -1994,10 +1994,10 @@ const TOUCH_BUFFER_MS = 650;
1994
1994
  * Event listener options that enable capturing and also mark the listener as passive if the browser
1995
1995
  * supports it.
1996
1996
  */
1997
- const modalityEventListenerOptions = normalizePassiveListenerOptions({
1997
+ const modalityEventListenerOptions = {
1998
1998
  passive: true,
1999
1999
  capture: true,
2000
- });
2000
+ };
2001
2001
  /**
2002
2002
  * Service that detects the user's input modality.
2003
2003
  *
@@ -2014,6 +2014,7 @@ const modalityEventListenerOptions = normalizePassiveListenerOptions({
2014
2014
  */
2015
2015
  class InputModalityDetector {
2016
2016
  _platform = inject(Platform);
2017
+ _listenerCleanups;
2017
2018
  /** Emits whenever an input modality is detected. */
2018
2019
  modalityDetected;
2019
2020
  /** Emits when the input modality changes. */
@@ -2096,25 +2097,24 @@ class InputModalityDetector {
2096
2097
  // If we're not in a browser, this service should do nothing, as there's no relevant input
2097
2098
  // modality to detect.
2098
2099
  if (this._platform.isBrowser) {
2099
- ngZone.runOutsideAngular(() => {
2100
- document.addEventListener('keydown', this._onKeydown, modalityEventListenerOptions);
2101
- document.addEventListener('mousedown', this._onMousedown, modalityEventListenerOptions);
2102
- document.addEventListener('touchstart', this._onTouchstart, modalityEventListenerOptions);
2100
+ const renderer = inject(RendererFactory2).createRenderer(null, null);
2101
+ this._listenerCleanups = ngZone.runOutsideAngular(() => {
2102
+ return [
2103
+ _bindEventWithOptions(renderer, document, 'keydown', this._onKeydown, modalityEventListenerOptions),
2104
+ _bindEventWithOptions(renderer, document, 'mousedown', this._onMousedown, modalityEventListenerOptions),
2105
+ _bindEventWithOptions(renderer, document, 'touchstart', this._onTouchstart, modalityEventListenerOptions),
2106
+ ];
2103
2107
  });
2104
2108
  }
2105
2109
  }
2106
2110
  ngOnDestroy() {
2107
2111
  this._modality.complete();
2108
- if (this._platform.isBrowser) {
2109
- document.removeEventListener('keydown', this._onKeydown, modalityEventListenerOptions);
2110
- document.removeEventListener('mousedown', this._onMousedown, modalityEventListenerOptions);
2111
- document.removeEventListener('touchstart', this._onTouchstart, modalityEventListenerOptions);
2112
- }
2112
+ this._listenerCleanups?.forEach(cleanup => cleanup());
2113
2113
  }
2114
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: InputModalityDetector, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2115
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: InputModalityDetector, providedIn: 'root' });
2114
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: InputModalityDetector, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2115
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: InputModalityDetector, providedIn: 'root' });
2116
2116
  }
2117
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: InputModalityDetector, decorators: [{
2117
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: InputModalityDetector, decorators: [{
2118
2118
  type: Injectable,
2119
2119
  args: [{ providedIn: 'root' }]
2120
2120
  }], ctorParameters: () => [] });
@@ -2249,10 +2249,10 @@ class LiveAnnouncer {
2249
2249
  }
2250
2250
  }
2251
2251
  }
2252
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: LiveAnnouncer, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2253
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: LiveAnnouncer, providedIn: 'root' });
2252
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: LiveAnnouncer, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2253
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: LiveAnnouncer, providedIn: 'root' });
2254
2254
  }
2255
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: LiveAnnouncer, decorators: [{
2255
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: LiveAnnouncer, decorators: [{
2256
2256
  type: Injectable,
2257
2257
  args: [{ providedIn: 'root' }]
2258
2258
  }], ctorParameters: () => [] });
@@ -2305,10 +2305,10 @@ class CdkAriaLive {
2305
2305
  this._subscription.unsubscribe();
2306
2306
  }
2307
2307
  }
2308
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: CdkAriaLive, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2309
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.0-rc.0", type: CdkAriaLive, isStandalone: true, selector: "[cdkAriaLive]", inputs: { politeness: ["cdkAriaLive", "politeness"], duration: ["cdkAriaLiveDuration", "duration"] }, exportAs: ["cdkAriaLive"], ngImport: i0 });
2308
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: CdkAriaLive, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2309
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.3", type: CdkAriaLive, isStandalone: true, selector: "[cdkAriaLive]", inputs: { politeness: ["cdkAriaLive", "politeness"], duration: ["cdkAriaLiveDuration", "duration"] }, exportAs: ["cdkAriaLive"], ngImport: i0 });
2310
2310
  }
2311
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: CdkAriaLive, decorators: [{
2311
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: CdkAriaLive, decorators: [{
2312
2312
  type: Directive,
2313
2313
  args: [{
2314
2314
  selector: '[cdkAriaLive]',
@@ -2721,10 +2721,10 @@ class FocusMonitor {
2721
2721
  }
2722
2722
  return false;
2723
2723
  }
2724
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: FocusMonitor, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2725
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: FocusMonitor, providedIn: 'root' });
2724
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: FocusMonitor, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2725
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: FocusMonitor, providedIn: 'root' });
2726
2726
  }
2727
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: FocusMonitor, decorators: [{
2727
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: FocusMonitor, decorators: [{
2728
2728
  type: Injectable,
2729
2729
  args: [{ providedIn: 'root' }]
2730
2730
  }], ctorParameters: () => [] });
@@ -2762,10 +2762,10 @@ class CdkMonitorFocus {
2762
2762
  this._monitorSubscription.unsubscribe();
2763
2763
  }
2764
2764
  }
2765
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: CdkMonitorFocus, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2766
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.0-rc.0", type: CdkMonitorFocus, isStandalone: true, selector: "[cdkMonitorElementFocus], [cdkMonitorSubtreeFocus]", outputs: { cdkFocusChange: "cdkFocusChange" }, exportAs: ["cdkMonitorFocus"], ngImport: i0 });
2765
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: CdkMonitorFocus, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2766
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.3", type: CdkMonitorFocus, isStandalone: true, selector: "[cdkMonitorElementFocus], [cdkMonitorSubtreeFocus]", outputs: { cdkFocusChange: "cdkFocusChange" }, exportAs: ["cdkMonitorFocus"], ngImport: i0 });
2767
2767
  }
2768
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: CdkMonitorFocus, decorators: [{
2768
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: CdkMonitorFocus, decorators: [{
2769
2769
  type: Directive,
2770
2770
  args: [{
2771
2771
  selector: '[cdkMonitorElementFocus], [cdkMonitorSubtreeFocus]',
@@ -2873,10 +2873,10 @@ class HighContrastModeDetector {
2873
2873
  }
2874
2874
  }
2875
2875
  }
2876
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: HighContrastModeDetector, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2877
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: HighContrastModeDetector, providedIn: 'root' });
2876
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: HighContrastModeDetector, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2877
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: HighContrastModeDetector, providedIn: 'root' });
2878
2878
  }
2879
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: HighContrastModeDetector, decorators: [{
2879
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: HighContrastModeDetector, decorators: [{
2880
2880
  type: Injectable,
2881
2881
  args: [{ providedIn: 'root' }]
2882
2882
  }], ctorParameters: () => [] });
@@ -2885,11 +2885,11 @@ class A11yModule {
2885
2885
  constructor() {
2886
2886
  inject(HighContrastModeDetector)._applyBodyHighContrastModeCssClasses();
2887
2887
  }
2888
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: A11yModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2889
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.0-rc.0", ngImport: i0, type: A11yModule, imports: [ObserversModule, CdkAriaLive, CdkTrapFocus, CdkMonitorFocus], exports: [CdkAriaLive, CdkTrapFocus, CdkMonitorFocus] });
2890
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: A11yModule, imports: [ObserversModule] });
2888
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: A11yModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2889
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.3", ngImport: i0, type: A11yModule, imports: [ObserversModule, CdkAriaLive, CdkTrapFocus, CdkMonitorFocus], exports: [CdkAriaLive, CdkTrapFocus, CdkMonitorFocus] });
2890
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: A11yModule, imports: [ObserversModule] });
2891
2891
  }
2892
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: A11yModule, decorators: [{
2892
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: A11yModule, decorators: [{
2893
2893
  type: NgModule,
2894
2894
  args: [{
2895
2895
  imports: [ObserversModule, CdkAriaLive, CdkTrapFocus, CdkMonitorFocus],
@@ -2921,10 +2921,10 @@ class _IdGenerator {
2921
2921
  }
2922
2922
  return `${prefix}${counters[prefix]++}`;
2923
2923
  }
2924
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: _IdGenerator, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2925
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: _IdGenerator, providedIn: 'root' });
2924
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: _IdGenerator, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2925
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: _IdGenerator, providedIn: 'root' });
2926
2926
  }
2927
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-rc.0", ngImport: i0, type: _IdGenerator, decorators: [{
2927
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.3", ngImport: i0, type: _IdGenerator, decorators: [{
2928
2928
  type: Injectable,
2929
2929
  args: [{ providedIn: 'root' }]
2930
2930
  }] });