Interface Category

The category layout.

interface Category {
    elements: UISchemaElement[];
    i18n?: string;
    label: string;
    options?: {
        [key: string]: any;
    };
    rule?: Rule;
    type: "Category";
}

Hierarchy (view full)

Properties

elements: UISchemaElement[]

The child elements of this layout.

i18n?: string
label: string

Label for UI schema element.

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

Any additional options.

Type declaration

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

An optional rule.

type: "Category"

The type of this UI schema element.

Generated using TypeDoc