Interface InfoPanelButtonParams

Common params for every builder.

interface InfoPanelButtonParams {
    buttonText?: string;
    id?: string;
    label: string;
    onClick?: () => void;
    title?: string;
}

Hierarchy (View Summary)

Properties

buttonText?: string

Button face text. Defaults to label when omitted, in which case the row label is suppressed (single-line button).

id?: string

Stable id for later updates / lookups. Auto-assigned if omitted.

label: string

User-facing label rendered to the left of the control.

onClick?: () => void
title?: string

Tooltip on hover.