BaseDetailsPanelConfig

Shared configuration for controlling table behavior when the details panel is open.

Definition

interface BaseDetailsPanelConfig {
    /**
     * Array of column IDs to hide from the main table when the details panel is open.
     */
    columnsToHide?: string[];

    /**
     * Alternative set of columns to render in the main table when the details panel is open.
     */
    columns?: OSCColumn[];
}

Usage

import { BaseDetailsPanelConfig } from 'uxp/components';

Last updated