@hxui/angular
Version:
This README includes the steps that are necessary to import the HxUi-angular into a project or to contribute with development.
17 lines (16 loc) • 648 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;
}