UNPKG

@hxui/angular

Version:

This README includes the steps that are necessary to import the HxUi-angular into a project or to contribute with development.

13 lines (12 loc) 457 B
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; }