UNPKG

@visma/rjsf-material-ui

Version:

Material UI theme, fields and widgets for react-jsonschema-form

7 lines (6 loc) 353 B
import { WidgetProps } from "@visma/rjsf-core"; declare type CustomWidgetProps = WidgetProps & { options: any; }; declare const TextareaWidget: ({ id, placeholder, value, label, required, disabled, autofocus, readonly, onBlur, onFocus, onChange, options, schema, rawErrors, }: CustomWidgetProps) => JSX.Element; export default TextareaWidget;