otimus-library 0.2.0 → 0.2.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/esm2022/lib/components/oc-modal/oc-modal.component.mjs +3 -3
- package/esm2022/lib/directives/oc-tooltip/oc-tooltip.directive.mjs +66 -25
- package/fesm2022/otimus-library.mjs +67 -26
- package/fesm2022/otimus-library.mjs.map +1 -1
- package/lib/directives/oc-tooltip/oc-tooltip.directive.d.ts +9 -4
- package/package.json +1 -1
- package/styles/components/tooltip.scss +3 -0
|
@@ -5,10 +5,15 @@ export declare class OcTooltipDirective {
|
|
|
5
5
|
private renderer;
|
|
6
6
|
constructor(elRef: ElementRef, renderer: Renderer2);
|
|
7
7
|
content: string;
|
|
8
|
-
side: 'bottom' | 'upon' | 'left' | 'right' | 'top';
|
|
9
|
-
created
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
side: 'bottom' | 'upon' | 'left' | 'right' | 'top' | 'mouse';
|
|
9
|
+
private created;
|
|
10
|
+
private tooltip;
|
|
11
|
+
createToolTip(): HTMLElement | null;
|
|
12
|
+
onMouseOver(event: MouseEvent): void;
|
|
13
|
+
mouseingInterval: any | null;
|
|
14
|
+
onMouseMove(event: MouseEvent): void;
|
|
15
|
+
private updateTooltipPosition;
|
|
16
|
+
private positionTooltipFixed;
|
|
12
17
|
onMouseOut(): void;
|
|
13
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<OcTooltipDirective, never>;
|
|
14
19
|
static ɵdir: i0.ɵɵDirectiveDeclaration<OcTooltipDirective, "[ocTooltip]", never, { "content": { "alias": "content"; "required": false; }; "side": { "alias": "side"; "required": false; }; }, {}, never, never, true, never>;
|
package/package.json
CHANGED