UNPKG

@ezform/mui

Version:

Material UI form components for use with EZForm React validation and form library

12 lines (11 loc) 280 B
import { FormRefObject, ValidatorType } from "@ezform/core"; export interface FieldBaseProps { name: string; form: FormRefObject; id?: string; validator?: ValidatorType; disabled?: boolean; readonly?: boolean; label?: string; defaultValue?: any; }