IConfigurationViewProps

ConfigurationView component props

Definition

interface IConfigurationViewProps {
    uxpContext: IContextProvider;

    /** Settings panel title */
    title: string;

    /** Configuration sections with sidebar links and content */
    sections: IConfigurationViewSection[];

    /** Selected section id (controlled mode) */
    selected?: string;

    /** Callback when section changes, receives section id */
    onChangeSection?: (id: string) => void;
}

Usage

Last updated