flexlayout-react
    Preparing search index...

    Interface IJsonTabGroupNode

    interface IJsonTabGroupNode {
        children?: ITabAttributes[];
        color?: string;
        config?: any;
        enableDrag?: boolean;
        id?: string;
        name?: string;
        opened?: boolean;
        type?: string;
    }

    Hierarchy (View Summary)

    Index
    children?: ITabAttributes[]
    color?: string

    the color of the group pill and the underline of its tabs (a css color)

    Default: "#9e9e9e"

    config?: any

    a place to hold json config used in your own code

    Default: undefined

    enableDrag?: boolean

    whether the user can drag the group pill to a new location

    Default: true

    id?: string

    the unique id of the group, if left undefined a uuid will be assigned

    Default: undefined

    name?: string

    the name of the group shown in its pill

    Default: "Group"

    opened?: boolean

    whether the group is expanded to show its tabs; when false only the pill is shown

    Default: true

    type?: string

    Fixed value: "tabgroup"