File tree 2 files changed +0
-33
lines changed
tools/public_api_guard/material
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
44
44
} ,
45
45
) ;
46
46
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
-
69
47
/**
70
48
* Service to open Material Design modal dialogs.
71
49
*/
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ import { Observable } from 'rxjs';
25
25
import { OnChanges } from ' @angular/core' ;
26
26
import { OnDestroy } from ' @angular/core' ;
27
27
import { OnInit } from ' @angular/core' ;
28
- import { Overlay } from ' @angular/cdk/overlay' ;
29
28
import { ScrollStrategy } from ' @angular/cdk/overlay' ;
30
29
import { SimpleChanges } from ' @angular/core' ;
31
30
import { Subject } from ' rxjs' ;
@@ -66,16 +65,6 @@ export const MAT_DIALOG_DEFAULT_OPTIONS: InjectionToken<MatDialogConfig<any>>;
66
65
// @public
67
66
export const MAT_DIALOG_SCROLL_STRATEGY: InjectionToken <() => ScrollStrategy >;
68
67
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
-
79
68
// @public
80
69
export class MatDialog implements OnDestroy {
81
70
constructor (... args : unknown []);
You can’t perform that action at this time.
0 commit comments