flexlayout-react
    Preparing search index...

    Interface IJsonRowNode

    interface IJsonRowNode {
        children: (IJsonRowNode | IJsonTabSetNode)[];
        id?: string;
        type?: string;
        weight?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    id?: string

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

    Default: undefined

    type?: string

    Fixed value: "row"

    weight?: number

    relative weight for sizing of this row in parent row

    Default: 100