UNPKG

@rjsf/core

Version:

A simple React component capable of building HTML forms out of a JSON schema.

8 lines 637 B
import { FormContextType, MultiSchemaFieldTemplateProps, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils'; /** The `MultiSchemaFieldTemplate` component renders the layout for the MultiSchemaField, which supports choosing * a schema from a list of schemas defined using `anyOf` or `oneOf`. * * @param props - The `MultiSchemaFieldTemplate` to be rendered */ export default function MultiSchemaFieldTemplate<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(props: MultiSchemaFieldTemplateProps<T, S, F>): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=MultiSchemaFieldTemplate.d.ts.map