@rivet-health/design-system 2.7.0 → 2.7.1
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/esm2020/lib/modal/tooltip/tooltip.directive.mjs +4 -1
- package/fesm2015/rivet-health-design-system.mjs +3 -0
- package/fesm2015/rivet-health-design-system.mjs.map +1 -1
- package/fesm2020/rivet-health-design-system.mjs +3 -0
- package/fesm2020/rivet-health-design-system.mjs.map +1 -1
- package/lib/modal/tooltip/tooltip.directive.d.ts +3 -2
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ApplicationRef, ElementRef, TemplateRef } from '@angular/core';
|
|
1
|
+
import { ApplicationRef, ElementRef, OnDestroy, TemplateRef } from '@angular/core';
|
|
2
2
|
import { TooltipAnchoredPosition } from './tooltip.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class TooltipDirective {
|
|
4
|
+
export declare class TooltipDirective implements OnDestroy {
|
|
5
5
|
private readonly el;
|
|
6
6
|
private readonly applicationRef;
|
|
7
7
|
constructor(el: ElementRef, applicationRef: ApplicationRef);
|
|
@@ -14,6 +14,7 @@ export declare class TooltipDirective {
|
|
|
14
14
|
private closeTimeout?;
|
|
15
15
|
onMouseEnter(): void;
|
|
16
16
|
onMouseLeave(): void;
|
|
17
|
+
ngOnDestroy(): void;
|
|
17
18
|
private initiateClose;
|
|
18
19
|
private cancelClose;
|
|
19
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, never>;
|