@ethlete/core 2.4.1 → 2.4.3
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.
|
@@ -29,13 +29,20 @@ export declare class AnimatedOverlayDirective<T extends AnimatedOverlayComponent
|
|
|
29
29
|
private _beforeClosed;
|
|
30
30
|
private _afterClosed;
|
|
31
31
|
private readonly _isMounted$;
|
|
32
|
+
private readonly _isMounting$;
|
|
33
|
+
private readonly _isUnmounting$;
|
|
32
34
|
/**
|
|
33
|
-
* The placement of the
|
|
35
|
+
* The placement of the animated overlay.
|
|
34
36
|
* @default 'auto'
|
|
35
37
|
*/
|
|
36
38
|
placement: PopperPlacement;
|
|
37
39
|
/**
|
|
38
|
-
* The
|
|
40
|
+
* The allowed auto placements of the animated overlay.
|
|
41
|
+
* @see https://popper.js.org/docs/v2/modifiers/flip/#allowedautoplacements
|
|
42
|
+
*/
|
|
43
|
+
allowedAutoPlacements?: PopperPlacement[];
|
|
44
|
+
/**
|
|
45
|
+
* The offset of the animated overlay.
|
|
39
46
|
* @see https://popper.js.org/docs/v2/modifiers/offset/#offset-1
|
|
40
47
|
*/
|
|
41
48
|
offset: OffsetOptions['offset'] | Readonly<OffsetOptions['offset']> | null;
|
|
@@ -47,6 +54,9 @@ export declare class AnimatedOverlayDirective<T extends AnimatedOverlayComponent
|
|
|
47
54
|
arrowPadding: ArrowOptions['padding'] | null;
|
|
48
55
|
get isMounted(): boolean;
|
|
49
56
|
get isMounted$(): import("rxjs").Observable<boolean>;
|
|
57
|
+
get isMounting(): boolean;
|
|
58
|
+
get isMounting$(): import("rxjs").Observable<boolean>;
|
|
59
|
+
get isUnmounting(): boolean;
|
|
50
60
|
get portal(): ComponentPortal<T> | null;
|
|
51
61
|
get overlayRef(): OverlayRef | null;
|
|
52
62
|
get componentRef(): ComponentRef<T> | null;
|
|
@@ -65,5 +75,5 @@ export declare class AnimatedOverlayDirective<T extends AnimatedOverlayComponent
|
|
|
65
75
|
_destroy(): void;
|
|
66
76
|
_reposition(): void;
|
|
67
77
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnimatedOverlayDirective<any>, never>;
|
|
68
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AnimatedOverlayDirective<any>, never, never, { "placement": { "alias": "placement"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "arrowPadding": { "alias": "arrowPadding"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.ObserveResizeDirective; inputs: {}; outputs: {}; }]>;
|
|
78
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AnimatedOverlayDirective<any>, never, never, { "placement": { "alias": "placement"; "required": false; }; "allowedAutoPlacements": { "alias": "allowedAutoPlacements"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "arrowPadding": { "alias": "arrowPadding"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.ObserveResizeDirective; inputs: {}; outputs: {}; }]>;
|
|
69
79
|
}
|