CustomDetailsPanelProps

Configuration for rendering a custom details panel component.

Definition

interface CustomDetailsPanelProps extends BaseDetailsPanelConfig {
    /**
     * Custom component to render for the details panel, receiving the row ID and close callback.
     */
    renderDetails: (id: string, onClose: () => void) => ReactNode;
}

Usage

import { CustomDetailsPanelProps } from 'uxp/components';

Last updated