asksuite-citrus 1.5.7 → 1.5.9
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.
@@ -10,11 +10,16 @@ export declare class AskDropdownDirective implements OnInit {
|
|
10
10
|
dropdownName: string;
|
11
11
|
positions?: Array<ConnectedPosition> | 'TOP_RIGHT' | 'TOP_LEFT' | 'BOTTOM_RIGHT' | 'BOTTOM_LEFT';
|
12
12
|
dropdownDisabled: boolean;
|
13
|
+
dropdownOpenOnHover: boolean;
|
14
|
+
mouseThreshold: number;
|
13
15
|
askDropdownOnClose: EventEmitter<any>;
|
16
|
+
private mouseLocation;
|
14
17
|
private _isRendered;
|
15
18
|
private overlayConfig;
|
16
19
|
private overlayRef;
|
17
20
|
private containerRef;
|
21
|
+
private mouseOutSubscription?;
|
22
|
+
private mouseDistanceSubscription?;
|
18
23
|
private readonly AVAILABLE_POSITIONS;
|
19
24
|
constructor(overlayPositionBuilder: OverlayPositionBuilder, elementRef: ElementRef, overlay: Overlay, _destroyRef: DestroyRef);
|
20
25
|
ngOnInit(): void;
|
@@ -22,9 +27,14 @@ export declare class AskDropdownDirective implements OnInit {
|
|
22
27
|
private createOverlay;
|
23
28
|
private getOverlayPosition;
|
24
29
|
private listenOutsideClicks;
|
30
|
+
showOnHoverIn(): void;
|
25
31
|
show(): void;
|
32
|
+
onMouseMove(event: any): {
|
33
|
+
mouseX: number;
|
34
|
+
mouseY: number;
|
35
|
+
};
|
26
36
|
close(): void;
|
27
37
|
get isRendered(): boolean;
|
28
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<AskDropdownDirective, never>;
|
29
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AskDropdownDirective, "[askDropdown]", never, { "askDropdown": { "alias": "askDropdown"; "required": false; }; "dropdownName": { "alias": "dropdownName"; "required": false; }; "positions": { "alias": "positions"; "required": false; }; "dropdownDisabled": { "alias": "dropdownDisabled"; "required": false; }; }, { "askDropdownOnClose": "askDropdownOnClose"; }, never, never, false, never>;
|
39
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AskDropdownDirective, "[askDropdown]", never, { "askDropdown": { "alias": "askDropdown"; "required": false; }; "dropdownName": { "alias": "dropdownName"; "required": false; }; "positions": { "alias": "positions"; "required": false; }; "dropdownDisabled": { "alias": "dropdownDisabled"; "required": false; }; "dropdownOpenOnHover": { "alias": "dropdownOpenOnHover"; "required": false; }; "mouseThreshold": { "alias": "mouseThreshold"; "required": false; }; }, { "askDropdownOnClose": "askDropdownOnClose"; }, never, never, false, never>;
|
30
40
|
}
|