Interface JsonFormsReduxContextProps

interface JsonFormsReduxContextProps {
    cells?: JsonFormsCellRendererRegistryEntry[];
    children: any;
    config?: any;
    core?: JsonFormsCore;
    dispatch: Dispatch<unknown>;
    i18n?: JsonFormsI18nState;
    readonly?: boolean;
    renderers?: JsonFormsRendererRegistryEntry[];
    uischemas?: JsonFormsUISchemaRegistryEntry[];
}

Hierarchy

  • JsonFormsSubStates
    • JsonFormsReduxContextProps

Properties

cells?: JsonFormsCellRendererRegistryEntry[]

All available cell renderers.

children: any
config?: any

Global configuration options.

core?: JsonFormsCore

Substate for storing mandatory sub-state.

dispatch: Dispatch<unknown>
i18n?: JsonFormsI18nState

I18n settings.

readonly?: boolean

If true, sets all controls to read-only.

renderers?: JsonFormsRendererRegistryEntry[]

All available renderers.

uischemas?: JsonFormsUISchemaRegistryEntry[]

The UI schema registry used in detail renderers.

Generated using TypeDoc