Interface SidePaneContainerElementBeta

Container Element which can contain other SidePaneElements such as SidePaneContainerElement or SidePaneTableElement. Type: Defines it to 'Container' label: Text to be displayed as label above the container. Direction: Defines how the elements are placed next to each other. elements: Record<string, SidePaneElement> of elements to display.

interface SidePaneContainerElement {
    autoScroll?: string;
    direction?: SidePaneContainerDirection;
    elements: SidePaneElements;
    label?: string;
    maxHeight?: string;
    type: "Container";
}

Properties

autoScroll?: string
label?: string
maxHeight?: string
type: "Container"

Generated using TypeDoc