UNPKG

@undermuz/react-json-form

Version:
17 lines (14 loc) 503 B
import { FC, PropsWithChildren } from 'react'; import { k as IFieldWidgetSettings, G as IChildFormsSetRef } from '../types-4491bbaa.js'; import '@undermuz/use-form'; interface IInputWidgetProps { name?: string; title?: string; value?: any; settings?: IFieldWidgetSettings; onRef?: IChildFormsSetRef; onError?: CallableFunction; onChange?: CallableFunction; } declare const InputWidget: FC<PropsWithChildren & IInputWidgetProps>; export { InputWidget as default };