@undermuz/react-json-form
Version:
Generate JSON-based forms with react
17 lines (14 loc) • 503 B
TypeScript
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 };