Interface IDockviewReactProps

interface IDockviewReactProps {
    components: Record<string, FunctionComponent<IDockviewPanelProps>>;
    defaultTabComponent?: FunctionComponent<IDockviewPanelHeaderProps>;
    leftHeaderActionsComponent?: FunctionComponent<IDockviewHeaderActionsProps>;
    onDidDrop?: ((event) => void);
    onReady: ((event) => void);
    onWillDrop?: ((event) => void);
    prefixHeaderActionsComponent?: FunctionComponent<IDockviewHeaderActionsProps>;
    rightHeaderActionsComponent?: FunctionComponent<IDockviewHeaderActionsProps>;
    tabComponents?: Record<string, FunctionComponent<IDockviewPanelHeaderProps>>;
    watermarkComponent?: FunctionComponent<IWatermarkPanelProps>;
}

Hierarchy (view full)

Properties

components: Record<string, FunctionComponent<IDockviewPanelProps>>
defaultTabComponent?: FunctionComponent<IDockviewPanelHeaderProps>
leftHeaderActionsComponent?: FunctionComponent<IDockviewHeaderActionsProps>
onDidDrop?: ((event) => void)

Type declaration

onReady: ((event) => void)

Type declaration

onWillDrop?: ((event) => void)

Type declaration

prefixHeaderActionsComponent?: FunctionComponent<IDockviewHeaderActionsProps>
rightHeaderActionsComponent?: FunctionComponent<IDockviewHeaderActionsProps>
tabComponents?: Record<string, FunctionComponent<IDockviewPanelHeaderProps>>
watermarkComponent?: FunctionComponent<IWatermarkPanelProps>

Generated using TypeDoc