interface IRowAttributes {
    id?: string;
    type?: string;
    weight?: number;
}

Hierarchy (view full)

Properties

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