Type alias LayoutItemConfig

LayoutItemConfig: {
    content?: LayoutContent;
    height?: number;
    id?: string | string[];
    isClosable?: boolean;
    title?: string;
    type: string;
    width?: number;
}

Represents the arrangement of Views within a Platform window's Layout. We do not recommend trying to build Layouts or LayoutItems by hand and instead use calls such as getSnapshot or our Layout Config Generation Tool..

Type declaration

  • Optional content?: LayoutContent

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

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

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

  • Optional width?: number

Generated using TypeDoc