IConfigurationViewProps
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
Related Types
Last updated