@datarailsshared/datarailsshared 1.4.52-dragons → 1.4.53-dragons
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.
- package/bundles/datarailsshared-datarailsshared.umd.js +27 -6
- package/bundles/datarailsshared-datarailsshared.umd.js.map +1 -1
- package/datarailsshared-datarailsshared-1.4.53-dragons.tgz +0 -0
- package/datarailsshared-datarailsshared.metadata.json +1 -1
- package/esm2015/lib/dr-dropdown/dr-dropdown.component.js +6 -2
- package/esm2015/lib/dr-dropdown/dr-dropdown.directive.js +21 -5
- package/fesm2015/datarailsshared-datarailsshared.js +25 -5
- package/fesm2015/datarailsshared-datarailsshared.js.map +1 -1
- package/lib/dr-dropdown/dr-dropdown.component.d.ts +2 -0
- package/lib/dr-dropdown/dr-dropdown.directive.d.ts +2 -0
- package/package.json +1 -1
- package/datarailsshared-datarailsshared-1.4.52-dragons.tgz +0 -0
|
@@ -11,9 +11,11 @@ export declare class DrDropdownComponent {
|
|
|
11
11
|
drDropdownInHover: boolean;
|
|
12
12
|
list: IDropdownItem<unknown>[];
|
|
13
13
|
containerClass: string;
|
|
14
|
+
wasHovered: boolean;
|
|
14
15
|
private firstInit;
|
|
15
16
|
constructor(menuService: DrDropdownService, cdr: ChangeDetectorRef);
|
|
16
17
|
set options(data: IDropdown<IDropdownItem<any>>);
|
|
18
|
+
onMouseEnter(): void;
|
|
17
19
|
onMouseLeave(): void;
|
|
18
20
|
onClickedOutside(): void;
|
|
19
21
|
hide(): void;
|
|
@@ -12,9 +12,11 @@ export declare class DrDropdownDirective<T> implements OnDestroy {
|
|
|
12
12
|
drDropdownClass: string;
|
|
13
13
|
drDropdownInHover: boolean;
|
|
14
14
|
contentCmpRef: any;
|
|
15
|
+
private readonly mouseleaveTimeout;
|
|
15
16
|
constructor(componentFactoryResolver: ComponentFactoryResolver, viewContainerRef: ViewContainerRef, service: DrDropdownService, el: ElementRef, _document: any);
|
|
16
17
|
elementHover(): void;
|
|
17
18
|
elementClick(): void;
|
|
19
|
+
leaveDropdownTriggerElement(): void;
|
|
18
20
|
documentClick(e: any): void;
|
|
19
21
|
private openDropdown;
|
|
20
22
|
private closeDropdown;
|
package/package.json
CHANGED
|
Binary file
|