@hxui/angular
Version:
* * *
19 lines (18 loc) • 708 B
TypeScript
import { Context } from '../enums';
/** 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;
}