digitaform-preview-react
Version:
A comprehensive React form preview component library with form controls,responsive design
21 lines • 764 B
TypeScript
import React from 'react';
import { ISignatureComponent, IFormControlChange, IFormValidationErrors } from '../df-form-preview-interfaces';
interface DfFormSignatureProps {
id: string;
properties: ISignatureComponent;
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 DfFormSignature: React.FC<DfFormSignatureProps>;
export default DfFormSignature;
//# sourceMappingURL=DfFormSignature.d.ts.map