Interface StatePropsOfRenderer

State-based props of a Renderer.

interface StatePropsOfRenderer {
    cells?: JsonFormsCellRendererRegistryEntry[];
    config?: any;
    data?: any;
    enabled: boolean;
    path: string;
    renderers?: JsonFormsRendererRegistryEntry[];
    schema: JsonSchema;
    uischema: UISchemaElement;
    visible: boolean;
}

Hierarchy (view full)

Properties

All available cell renderers.

config?: any

Any configuration options for the element.

data?: any

The data to be rendered.

enabled: boolean

Whether the rendered element should be enabled.

path: string

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

All available renderers.

schema: JsonSchema

The JSON schema that describes the data.

uischema: UISchemaElement

The UI schema to be rendered.

visible: boolean

Whether the rendered element should be visible.

Generated using TypeDoc