Is your feature request related to a problem? Please describe.
In order to translate AJV error messages, the errors should be passed to the renderer.
Describe the solution you'd like
The errors handling on the JsonForms component is partially supported:
export const JsonForms = (
props: JsonFormsInitStateProps & JsonFormsReactProps
) => {
const {
ajv,
data,
schema,
uischema,
renderers,
refParserOptions,
onChange
} = props;
return (
<JsonFormsStateProvider
initState={{
core: {
ajv,
data,
refParserOptions,
schema,
uischema,
errors: [] // TODO
},
renderers
}}
>
<JsonFormsDispatch onChange={onChange} />
</JsonFormsStateProvider>
);
};
Describe for which setup you like to have the improvement
Framework: react
RendererSet: all
Is your feature request related to a problem? Please describe.
In order to translate AJV error messages, the errors should be passed to the renderer.
Describe the solution you'd like
The errors handling on the JsonForms component is partially supported:
Describe for which setup you like to have the improvement
Framework: react
RendererSet: all