Interface StatePropsOfControl

State-based props of a Control

interface StatePropsOfControl {
    cells?: {
        cell: any;
        tester: RankedTester;
    }[];
    config?: any;
    data: any;
    description?: string;
    enabled: boolean;
    errors: string;
    i18nKeyPrefix?: string;
    id: string;
    label: string;
    path: string;
    renderers?: JsonFormsRendererRegistryEntry[];
    required?: boolean;
    rootSchema: JsonSchema;
    schema: JsonSchema;
    uischema: ControlElement;
    visible: boolean;
}

Hierarchy (view full)

Properties

cells?: {
    cell: any;
    tester: RankedTester;
}[]

All available cell renderers.

Type declaration

config?: any

Any configuration options for the element.

data: any

The data to be rendered.

description?: string

Description of input cell

enabled: boolean

Whether the rendered element should be enabled.

errors: string

Any validation errors that are caused by the data to be rendered.

i18nKeyPrefix?: string
id: string

A unique ID that should be used for rendering the scoped UI schema element.

label: string

The label for the rendered element.

path: string

Instance path the data is written to, in case of a control.

All available renderers.

required?: boolean

Whether the rendered data is required.

rootSchema: JsonSchema

The root schema as returned by the store.

schema: JsonSchema

The JSON schema that describes the data.

uischema: ControlElement

The UI schema to be rendered.

visible: boolean

Whether the rendered element should be visible.

Generated using TypeDoc