File tree Expand file tree Collapse file tree 2 files changed +0
-33
lines changed
tools/public_api_guard/material Expand file tree Collapse file tree 2 files changed +0
-33
lines changed Original file line number Diff line number Diff line change @@ -44,28 +44,6 @@ export const MAT_DIALOG_SCROLL_STRATEGY = new InjectionToken<() => ScrollStrateg
4444 } ,
4545) ;
4646
47- /**
48- * @docs -private
49- * @deprecated No longer used. To be removed.
50- * @breaking -change 19.0.0
51- */
52- export function MAT_DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY (
53- overlay : Overlay ,
54- ) : ( ) => ScrollStrategy {
55- return ( ) => overlay . scrollStrategies . block ( ) ;
56- }
57-
58- /**
59- * @docs -private
60- * @deprecated No longer used. To be removed.
61- * @breaking -change 19.0.0
62- */
63- export const MAT_DIALOG_SCROLL_STRATEGY_PROVIDER = {
64- provide : MAT_DIALOG_SCROLL_STRATEGY ,
65- deps : [ Overlay ] ,
66- useFactory : MAT_DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY ,
67- } ;
68-
6947/**
7048 * Service to open Material Design modal dialogs.
7149 */
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ import { Observable } from 'rxjs';
2525import { OnChanges } from ' @angular/core' ;
2626import { OnDestroy } from ' @angular/core' ;
2727import { OnInit } from ' @angular/core' ;
28- import { Overlay } from ' @angular/cdk/overlay' ;
2928import { ScrollStrategy } from ' @angular/cdk/overlay' ;
3029import { SimpleChanges } from ' @angular/core' ;
3130import { Subject } from ' rxjs' ;
@@ -66,16 +65,6 @@ export const MAT_DIALOG_DEFAULT_OPTIONS: InjectionToken<MatDialogConfig<any>>;
6665// @public
6766export const MAT_DIALOG_SCROLL_STRATEGY: InjectionToken <() => ScrollStrategy >;
6867
69- // @public @deprecated
70- export const MAT_DIALOG_SCROLL_STRATEGY_PROVIDER: {
71- provide: InjectionToken <() => ScrollStrategy >;
72- deps: (typeof Overlay )[];
73- useFactory: typeof MAT_DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY ;
74- };
75-
76- // @public @deprecated
77- export function MAT_DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY(overlay : Overlay ): () => ScrollStrategy ;
78-
7968// @public
8069export class MatDialog implements OnDestroy {
8170 constructor (... args : unknown []);
You can’t perform that action at this time.
0 commit comments