UNPKG

react-super-forms-library

Version:

React Super Forms allow you to create forms elements like text input, phone number input, text-area box , radio input , checkbox input box etcetera elements with basic styling, just with minimal configurations so you can focus on the task that is more imp

16 lines (15 loc) 573 B
import { FormikConfig } from "formik"; import React from "react"; import { BuilderSettingsProps, FormActionProps, RowSchema } from "../lib/ml-form-builder"; export * from "./ml-form-builder"; export * from "./ml-form-builder/lib"; export * from './ml-form-builder/Utils'; export interface ReactFormProps extends FormikConfig<any> { config: Array<RowSchema>; formId: string; actionConfig?: FormActionProps; formSettings?: BuilderSettingsProps; isInProgress?: boolean; isReadOnly?: boolean; } export declare const ReactForm: React.FC<ReactFormProps>;