BaseDetailsPanelConfig
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';Related Types
Last updated