Configuration for the tooltip component

interface TooltipConfig {
    ariaLabel?: string;
    autoHide?: boolean;
    buttonDisabled?: any;
    buttonFeedback?: boolean;
    buttonLoader?: string;
    buttonLook?: string;
    caption?: string;
    description?: string;
    iconLook?: string;
    isBtn?: boolean;
    isLink?: boolean;
    isVisible: boolean;
    linkText?: string;
    look?: string;
    notificationClass?: string;
    tooltip?: string;
}

Properties

ariaLabel?: string

the aria-label of the content

autoHide?: boolean

Whether the tooltip is automatically hidden after some time

buttonDisabled?: any

Whether the button is disabled

buttonFeedback?: boolean

Whether the button is in feedback mode

buttonLoader?: string

Use to make loader in the button. Empty by default. To add loader to the button set loader="color" for default buttons and loader="transparent" for action and delete buttons

buttonLook?: string

CSS modifiers for the button element

caption?: string

The h4 title of the tooltip

description?: string

The content of the tooltip

iconLook?: string

CSS modifiers for the icon or the link element

isBtn?: boolean

should the clickable element be rendered as a button

isLink?: boolean

should the clickable element be rendered as a link, instead of an icon

isVisible: boolean

Is the tooltip visible or not

linkText?: string

The text of the link for isLink mode

look?: string

CSS modifiers for the notification element

notificationClass?: string

CSS modifiers for the notification wrapper element

tooltip?: string

the html title/tooltip of the content

Generated using TypeDoc