@@ -10,25 +10,32 @@ export declare class CdkConnectedOverlay implements OnDestroy, OnChanges {
10
10
backdropClass : string ;
11
11
backdropClick : EventEmitter < MouseEvent > ;
12
12
detach : EventEmitter < void > ;
13
- readonly dir : Direction ;
14
- flexibleDimensions : boolean ;
15
- growAfterOpen : boolean ;
16
- hasBackdrop : any ;
13
+ get dir ( ) : Direction ;
14
+ get flexibleDimensions ( ) : boolean ;
15
+ set flexibleDimensions ( value : boolean ) ;
16
+ get growAfterOpen ( ) : boolean ;
17
+ set growAfterOpen ( value : boolean ) ;
18
+ get hasBackdrop ( ) : any ;
19
+ set hasBackdrop ( value : any ) ;
17
20
height : number | string ;
18
- lockPosition : any ;
21
+ get lockPosition ( ) : any ;
22
+ set lockPosition ( value : any ) ;
19
23
minHeight : number | string ;
20
24
minWidth : number | string ;
21
- offsetX : number ;
22
- offsetY : number ;
25
+ get offsetX ( ) : number ;
26
+ set offsetX ( offsetX : number ) ;
27
+ get offsetY ( ) : number ;
28
+ set offsetY ( offsetY : number ) ;
23
29
open : boolean ;
24
30
origin : CdkOverlayOrigin ;
25
31
overlayKeydown : EventEmitter < KeyboardEvent > ;
26
- readonly overlayRef : OverlayRef ;
32
+ get overlayRef ( ) : OverlayRef ;
27
33
panelClass : string | string [ ] ;
28
34
positionChange : EventEmitter < ConnectedOverlayPositionChange > ;
29
35
positionStrategy : FlexibleConnectedPositionStrategy ;
30
36
positions : ConnectedPosition [ ] ;
31
- push : boolean ;
37
+ get push ( ) : boolean ;
38
+ set push ( value : boolean ) ;
32
39
scrollStrategy : ScrollStrategy ;
33
40
transformOriginSelector : string ;
34
41
viewportMargin : number ;
@@ -81,11 +88,11 @@ export interface ConnectedPosition {
81
88
}
82
89
83
90
export declare class ConnectedPositionStrategy implements PositionStrategy {
84
- readonly _isRtl : boolean ;
91
+ get _isRtl ( ) : boolean ;
85
92
_positionStrategy : FlexibleConnectedPositionStrategy ;
86
93
_preferredPositions : ConnectionPositionPair [ ] ;
87
- readonly onPositionChange : Observable < ConnectedOverlayPositionChange > ;
88
- readonly positions : ConnectionPositionPair [ ] ;
94
+ get onPositionChange ( ) : Observable < ConnectedOverlayPositionChange > ;
95
+ get positions ( ) : ConnectionPositionPair [ ] ;
89
96
constructor ( originPos : OriginConnectionPosition , overlayPos : OverlayConnectionPosition , connectedTo : ElementRef < HTMLElement > , viewportRuler : ViewportRuler , document : Document , platform : Platform , overlayContainer : OverlayContainer ) ;
90
97
apply ( ) : void ;
91
98
attach ( overlayRef : OverlayReference ) : void ;
@@ -119,7 +126,7 @@ export declare class ConnectionPositionPair {
119
126
export declare class FlexibleConnectedPositionStrategy implements PositionStrategy {
120
127
_preferredPositions : ConnectionPositionPair [ ] ;
121
128
positionChanges : Observable < ConnectedOverlayPositionChange > ;
122
- readonly positions : ConnectionPositionPair [ ] ;
129
+ get positions ( ) : ConnectionPositionPair [ ] ;
123
130
constructor ( connectedTo : FlexibleConnectedPositionStrategyOrigin , _viewportRuler : ViewportRuler , _document : Document , _platform : Platform , _overlayContainer : OverlayContainer ) ;
124
131
apply ( ) : void ;
125
132
attach ( overlayRef : OverlayReference ) : void ;
@@ -255,9 +262,9 @@ export declare class OverlayPositionBuilder {
255
262
export declare class OverlayRef implements PortalOutlet , OverlayReference {
256
263
_keydownEventSubscriptions : number ;
257
264
_keydownEvents : Subject < KeyboardEvent > ;
258
- readonly backdropElement : HTMLElement | null ;
259
- readonly hostElement : HTMLElement ;
260
- readonly overlayElement : HTMLElement ;
265
+ get backdropElement ( ) : HTMLElement | null ;
266
+ get hostElement ( ) : HTMLElement ;
267
+ get overlayElement ( ) : HTMLElement ;
261
268
constructor ( _portalOutlet : PortalOutlet , _host : HTMLElement , _pane : HTMLElement , _config : ImmutableObject < OverlayConfig > , _ngZone : NgZone , _keyboardDispatcher : OverlayKeyboardDispatcher , _document : Document , _location ?: Location | undefined ) ;
262
269
addPanelClass ( classes : string | string [ ] ) : void ;
263
270
attach < T > ( portal : ComponentPortal < T > ) : ComponentRef < T > ;
0 commit comments