@rjsf/semantic-ui
Version:
Semantic UI theme, fields and widgets for react-jsonschema-form
7 lines (6 loc) • 502 B
TypeScript
import { FieldErrorProps, FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';
/** The `FieldErrorTemplate` component renders the errors local to the particular field
*
* @param props - The `FieldErrorProps` for the errors being rendered
*/
export default function FieldErrorTemplate<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>({ errors, idSchema, uiSchema, registry }: FieldErrorProps<T, S, F>): import("react/jsx-runtime").JSX.Element | null;