DefaultDetailsPanelProps

Configuration for the default details panel using the built-in ObjectDetailsPanel.

Definition

type DefaultDetailsPanelProps = ObjectDetailsPanelBaseProps & BaseDetailsPanelConfig & {
    /**
     * Function to fetch details for the selected row based on its ID.
     */
    data: (id: string) => Promise<RowData>;
}

Usage

import { DefaultDetailsPanelProps } from 'uxp/components';

Last updated