Interface OwnPropsOfEnumCell

interface OwnPropsOfEnumCell {
    cells?: JsonFormsCellRendererRegistryEntry[];
    data?: any;
    enabled?: boolean;
    id?: string;
    options?: EnumOption[];
    path?: string;
    renderers?: JsonFormsRendererRegistryEntry[];
    schema?: JsonSchema;
    uischema?: ControlElement;
    uischemas?: JsonFormsUISchemaRegistryEntry[];
    visible?: boolean;
}

Hierarchy (view full)

Properties

data?: any
enabled?: boolean

Whether the rendered element should be enabled.

id?: string
options?: EnumOption[]
path?: string

Optional instance path. Necessary when the actual data path can not be inferred via the UI schema element as it is the case with nested controls.

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