Interface Layout

Represents a layout element which can order its children in a specific way.

interface Layout {
    elements: UISchemaElement[];
    options?: {
        [key: string]: any;
    };
    rule?: Rule;
    type: string;
}

Hierarchy (view full)

Properties

elements: UISchemaElement[]

The child elements of this layout.

options?: {
    [key: string]: any;
}

Any additional options.

Type declaration

  • [key: string]: any
rule?: Rule

An optional rule.

type: string

The type of this UI schema element.

Generated using TypeDoc