@@ -61,12 +61,6 @@ export class AriaDescriber implements OnDestroy {
6161// @public
6262export type AriaLivePoliteness = ' off' | ' polite' | ' assertive' ;
6363
64- // @public @deprecated
65- export const CDK_DESCRIBEDBY_HOST_ATTRIBUTE = " cdk-describedby-host" ;
66-
67- // @public @deprecated
68- export const CDK_DESCRIBEDBY_ID_PREFIX = " cdk-describedby-message" ;
69-
7064// @public
7165export class CdkAriaLive implements OnDestroy {
7266 constructor ();
@@ -124,7 +118,7 @@ export class CdkTrapFocus implements OnDestroy, AfterContentInit, OnChanges, DoC
124118
125119// @public
126120export class ConfigurableFocusTrap extends FocusTrap implements ManagedFocusTrap {
127- constructor (_element : HTMLElement , _checker : InteractivityChecker , _ngZone : NgZone , _document : Document , _focusTrapManager : FocusTrapManager , _inertStrategy : FocusTrapInertStrategy , config : ConfigurableFocusTrapConfig , injector ? : Injector );
121+ constructor (_element : HTMLElement , _checker : InteractivityChecker , _ngZone : NgZone , _document : Document , _focusTrapManager : FocusTrapManager , _inertStrategy : FocusTrapInertStrategy , config : ConfigurableFocusTrapConfig , injector : Injector );
128122 destroy(): void ;
129123 _disable(): void ;
130124 _enable(): void ;
@@ -141,8 +135,6 @@ export interface ConfigurableFocusTrapConfig {
141135export class ConfigurableFocusTrapFactory {
142136 constructor ();
143137 create(element : HTMLElement , config ? : ConfigurableFocusTrapConfig ): ConfigurableFocusTrap ;
144- // @deprecated (undocumented)
145- create(element : HTMLElement , deferCaptureElements : boolean ): ConfigurableFocusTrap ;
146138 // (undocumented)
147139 static ɵfac: i0 .ɵɵFactoryDeclaration <ConfigurableFocusTrapFactory , never >;
148140 // (undocumented)
@@ -216,8 +208,7 @@ export type FocusOrigin = 'touch' | 'mouse' | 'keyboard' | 'program' | null;
216208
217209// @public
218210export class FocusTrap {
219- constructor (_element : HTMLElement , _checker : InteractivityChecker , _ngZone : NgZone , _document : Document , deferAnchors ? : boolean ,
220- _injector ? : Injector | undefined );
211+ constructor (_element : HTMLElement , _checker : InteractivityChecker , _ngZone : NgZone , _document : Document , deferAnchors : boolean | undefined , _injector : Injector );
221212 attachAnchors(): boolean ;
222213 destroy(): void ;
223214 // (undocumented)
@@ -237,7 +228,8 @@ export class FocusTrap {
237228 focusLastTabbableElement(options ? : FocusOptions ): boolean ;
238229 focusLastTabbableElementWhenReady(options ? : FocusOptions ): Promise <boolean >;
239230 hasAttached(): boolean ;
240- readonly _injector? : Injector | undefined ;
231+ // (undocumented)
232+ readonly _injector: Injector ;
241233 // (undocumented)
242234 readonly _ngZone: NgZone ;
243235 // (undocumented)
@@ -425,9 +417,6 @@ export interface LiveAnnouncerDefaultOptions {
425417// @public
426418export type LiveAnnouncerMessage = string | SafeHtml ;
427419
428- // @public @deprecated
429- export const MESSAGES_CONTAINER_ID = " cdk-describedby-message-container" ;
430-
431420// @public @deprecated
432421export const NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER: Provider ;
433422
0 commit comments