Interface ShowMessageOptions

Options for showing a message.

interface ShowMessageOptions {
    buttons?: MessageBubbleButtonProps[];
    description?: ReactNode;
    forcePosition?: Position;
    isDraggable?: boolean;
    overlay?: boolean;
    text: ReactNode;
    title?: ReactNode;
}

Hierarchy (view full)

Properties

buttons?: MessageBubbleButtonProps[]

A list of buttons that will resolve the message. By default, a Proceed button with value ok. The helper will resolve with the value of the button that was clicked.

description?: ReactNode

A description shown under the title. Usually, describes the contents of the step.

forcePosition?: Position

Force the position of the bubble.

isDraggable?: boolean

If true, the bubble will be draggable. Default true

overlay?: boolean

Obscure the content behind the message and prevent interaction.

text: ReactNode

Markdown text to show in the content. Usually, the instructions for the current step. It also accepts ReactNodes.

title?: ReactNode

A title shown in the header. Usually, the title of the step.