@stemy/ngx-utils 19.9.43 → 19.9.45
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.
|
@@ -4,6 +4,7 @@ import { DropdownAttachTo } from "../common-types";
|
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class DropdownDirective implements OnDestroy {
|
|
6
6
|
protected element: ElementRef<HTMLElement>;
|
|
7
|
+
protected rootElem: HTMLElement;
|
|
7
8
|
protected static active: DropdownDirective;
|
|
8
9
|
protected opened: boolean;
|
|
9
10
|
protected disabled: boolean;
|
|
@@ -55,12 +56,12 @@ export declare class DropdownDirective implements OnDestroy {
|
|
|
55
56
|
get isOpened(): boolean;
|
|
56
57
|
get getDisabled(): boolean;
|
|
57
58
|
set isDisabled(value: boolean);
|
|
58
|
-
constructor(element: ElementRef<HTMLElement
|
|
59
|
+
constructor(element: ElementRef<HTMLElement>, rootElem: HTMLElement);
|
|
59
60
|
ngOnDestroy(): void;
|
|
60
61
|
showEvent(): void;
|
|
61
62
|
hideEvent(): void;
|
|
62
63
|
show($event?: Event): boolean;
|
|
63
64
|
hide(): boolean;
|
|
64
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownDirective,
|
|
65
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownDirective, [null, { optional: true; }]>;
|
|
65
66
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownDirective, "[dd],[drop-down]", ["dropdown"], { "closeInside": { "alias": "closeInside"; "required": false; }; "attachTo": { "alias": "attachTo"; "required": false; }; "boundary": { "alias": "boundary"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "autoPlacement": { "alias": "autoPlacement"; "required": false; }; "mobileViewUnder": { "alias": "mobileViewUnder"; "required": false; }; "fixed": { "alias": "fixed"; "required": false; }; "keyboardHandler": { "alias": "keyboardHandler"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, { "onShown": "onShown"; "onHidden": "onHidden"; "onKeyboard": "onKeyboard"; }, never, never, false, never>;
|
|
66
67
|
}
|