@dev-tcloud/tcloud-ui 4.1.1 → 4.2.0
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.
|
@@ -3,16 +3,24 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class TCloudUiTooltipDirective {
|
|
4
4
|
private el;
|
|
5
5
|
private renderer;
|
|
6
|
+
tooltipMode: 'click' | 'hover';
|
|
6
7
|
remove: boolean;
|
|
7
8
|
info_text: string;
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
set TCtooltip(tooltip: any);
|
|
9
|
+
tooltipVisible: boolean;
|
|
10
|
+
private tooltipElement;
|
|
11
11
|
private _direction;
|
|
12
|
+
set TCtooltip(tooltip: any);
|
|
12
13
|
set TCdirection(direction: any);
|
|
13
14
|
constructor(el: ElementRef, renderer: Renderer2);
|
|
14
|
-
|
|
15
|
-
|
|
15
|
+
onDocumentClick(event: MouseEvent): void;
|
|
16
|
+
onMouseOver(event: MouseEvent): void;
|
|
17
|
+
onMouseOut(event: MouseEvent): void;
|
|
18
|
+
onClick(event: MouseEvent): void;
|
|
19
|
+
private createTooltip;
|
|
20
|
+
private removeTooltip;
|
|
21
|
+
private repositionTooltip;
|
|
22
|
+
private generateID;
|
|
23
|
+
private start_tooltip;
|
|
16
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiTooltipDirective, never>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TCloudUiTooltipDirective, "[TCtooltip]", never, { "TCtooltip": { "alias": "TCtooltip"; "required": false; }; "TCdirection": { "alias": "TCdirection"; "required": false; }; }, {}, never, never, false, never>;
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TCloudUiTooltipDirective, "[TCtooltip]", never, { "tooltipMode": { "alias": "tooltipMode"; "required": false; }; "TCtooltip": { "alias": "TCtooltip"; "required": false; }; "TCdirection": { "alias": "TCdirection"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
26
|
}
|