Interface IPaneviewReactProps

interface IPaneviewReactProps {
    className?: string;
    components: Record<string, FunctionComponent<IPaneviewPanelProps<any>>>;
    disableAutoResizing?: boolean;
    disableDnd?: boolean;
    headerComponents?: Record<string, FunctionComponent<IPaneviewPanelProps<any>>>;
    onReady: ((event) => void);
    showDndOverlay?: ((event) => boolean);
    onDidDrop?(event): void;
}

Properties

className?: string
components: Record<string, FunctionComponent<IPaneviewPanelProps<any>>>
disableAutoResizing?: boolean
disableDnd?: boolean
headerComponents?: Record<string, FunctionComponent<IPaneviewPanelProps<any>>>
onReady: ((event) => void)

Type declaration

showDndOverlay?: ((event) => boolean)

Type declaration

Methods

Generated using TypeDoc