@snups/rjsf-mantine
Version:
Mantine theme, fields and widgets for react-jsonschema-form
8 lines (7 loc) • 513 B
TypeScript
import { ArrayFieldTitleProps, FormContextType, RJSFSchema, StrictRJSFSchema } from '@snups/rjsf-utils';
/** The `ArrayFieldTitleTemplate` component renders a `TitleFieldTemplate` with an `id` derived from
* the `idSchema`.
*
* @param props - The `ArrayFieldTitleProps` for the component
*/
export default function ArrayFieldTitleTemplate<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(props: ArrayFieldTitleProps<T, S, F>): import("react/jsx-runtime").JSX.Element | null;