lct-components
Version:
LCT basic components
18 lines (17 loc) • 892 B
TypeScript
import { ComponentFactoryResolver, Renderer2, ViewContainerRef } from '@angular/core';
import * as i0 from "@angular/core";
export declare class TooltipDirective {
private renderer;
private viewContainerRef;
private resolver;
constructor(renderer: Renderer2, viewContainerRef: ViewContainerRef, resolver: ComponentFactoryResolver);
tooltipText: string;
secondaryMessage?: string;
position: 'top' | 'right' | 'left';
color: 'primary' | 'secondary' | 'tertiary';
marginBottom?: string;
onMouseEnter(): void;
onMouseLeave(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[lctTooltip]", never, { "tooltipText": "tooltipText"; "secondaryMessage": "secondaryMessage"; "position": "position"; "color": "color"; "marginBottom": "marginBottom"; }, {}, never>;
}