UNPKG

digitaform-preview-react

Version:

A comprehensive React form preview component library with form controls,responsive design

22 lines 791 B
import React from 'react'; import { ISelectComponent, IFormControlChange, IFormValidationErrors } from '../df-form-preview-interfaces'; interface DfFormSelectProps { id: string; properties: ISelectComponent; validationErrors?: IFormValidationErrors; formValue?: string | 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; showCommentsInPreview?: boolean; } export declare const DfFormSelect: React.FC<DfFormSelectProps>; export default DfFormSelect; //# sourceMappingURL=DfFormSelect.d.ts.map