master-control 0.3.28 → 0.3.29
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/esm2022/lib/directives/customized.tooltip.directive.mjs +86 -9
- package/fesm2022/master-control.mjs +85 -9
- package/fesm2022/master-control.mjs.map +1 -1
- package/lib/directives/customized.tooltip.directive.d.ts +6 -3
- package/master-control-0.3.29.tgz +0 -0
- package/package.json +2 -2
- package/master-control-0.3.28.tgz +0 -0
|
@@ -1,13 +1,16 @@
|
|
|
1
|
-
import { ElementRef, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
1
|
+
import { ElementRef, TemplateRef, ViewContainerRef, OnDestroy } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CustomizedTooltipDirective {
|
|
3
|
+
export declare class CustomizedTooltipDirective implements OnDestroy {
|
|
4
4
|
private el;
|
|
5
5
|
private vcr;
|
|
6
|
+
private document;
|
|
6
7
|
template: TemplateRef<any>;
|
|
7
8
|
private tooltipElement;
|
|
8
9
|
private showTimeout;
|
|
9
10
|
private hideTimeout;
|
|
10
|
-
|
|
11
|
+
private static styleInjected;
|
|
12
|
+
constructor(el: ElementRef, vcr: ViewContainerRef, document: Document);
|
|
13
|
+
private injectStyles;
|
|
11
14
|
showTooltip(): void;
|
|
12
15
|
hideTooltip(): void;
|
|
13
16
|
ngOnDestroy(): void;
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|