AdditionaDetails

Configuration for additional details tabs in the ObjectDetailsPanel.

Definition

export interface AdditionaDetails {
    /**
     * FontAwesome icon identifier for the additional details tab.
     */
    icon: string;

    /**
     * Unique identifier for the additional details tab.
     */
    id: string;

    /**
     * Label for the additional details tab.
     */
    label: string;

    /**
     * Content to display in the additional details tab, either static or a function of row data.
     */
    content: DetailsContent;
}

Usage

Last updated