@hxui/angular
Version:
An Angular library based on the [HXUI design system](https://hxui.io).
22 lines (21 loc) • 879 B
TypeScript
import { Context } from '../enums';
import * as i0 from "@angular/core";
/** Default values provider for tooltip */
export declare class TooltipConfig {
/** tooltip placement, supported positions: 'top', 'bottom', 'left', 'right' */
placement: 'top' | 'bottom' | 'left' | 'right';
/** tooltip context (colour) */
context: Context;
/** should tooltip start in a disabled state */
disabled: boolean;
/** animate tooltip or not */
animation: boolean;
/** delay in ms before showing the tooltip after show is called */
showDelay: number;
/** delay in ms before hiding the tooltip after hide is called */
hideDelay: number;
/** max width of the tooltip */
maxWidth: number;
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipConfig, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<TooltipConfig>;
}