AboutSupportDeveloper GuideVersion 38.126.82.64
interface LayoutComponent {
    componentName: "view";
    componentState?: Partial<ViewCreationOptions>;
    content?: LayoutContent;
    height?: number;
    id?: string | string[];
    isClosable?: boolean;
    title?: string;
    type: string;
    width?: number;
}

Properties

componentName: "view"

Only a component type will have this property and it should be set to view.

componentState?: Partial<ViewCreationOptions>

Only a component type will have this property and it represents the view options of a given component.

content?: LayoutContent

Array of configurations for items that will be created as children of this item.

height?: number
id?: string | string[]
isClosable?: boolean
title?: string
type: string

The type of the item. Possible values are 'row', 'column', 'stack', and 'component'.

width?: number