UNPKG

df-ae-forms-package

Version:

A comprehensive React form preview component library with form controls, validation, and responsive design for Angular/Ionic integration

21 lines 757 B
import React from 'react'; import { ITextareaComponent, IFormControlChange, IFormValidationErrors } from '../df-form-preview-interfaces'; interface DfFormTextareaProps { id: string; properties: ITextareaComponent; validationErrors?: IFormValidationErrors; formValue?: string; readonly?: boolean; disabled?: boolean; touchedFields?: Record<string, boolean>; formSubmitted?: boolean; mode?: 'edit' | 'preview' | 'test'; onValueChange?: (change: IFormControlChange) => void; onBlur?: () => void; onFocus?: () => void; className?: string; hideLabel?: boolean; } export declare const DfFormTextarea: React.FC<DfFormTextareaProps>; export default DfFormTextarea; //# sourceMappingURL=DfFormTextarea.d.ts.map