AboutSupportDeveloper GuideVersion 14.0.21

Type alias ContactInfoButtons

ContactInfoButtons: {
    action: string;
    icon: ButtonIcon;
    tooltip: string;
    type: "button";
} | {
    action?: string;
    icon?: ButtonIcon;
    options: {
        action: string;
        icon?: ButtonIcon;
        tooltip: string;
    }[];
    tooltip: string;
    type: "dropdown";
}

Type declaration

  • action: string

    The action to execute when the button is clicked.

  • icon: ButtonIcon

    The icon to display on the button.

  • tooltip: string

    The tooltip to display on the button.

  • type: "button"

Type declaration

  • Optional action?: string

    The action to execute when the button is clicked.

  • Optional icon?: ButtonIcon

    The icon to display on the button.

  • options: {
        action: string;
        icon?: ButtonIcon;
        tooltip: string;
    }[]

    The list of options to display in the dropdown.

  • tooltip: string

    The tooltip to display on the button.

  • type: "dropdown"