df-ae-forms-package
Version:
A comprehensive React form preview component library with form controls, validation, and responsive design for Angular/Ionic integration
13 lines • 512 B
TypeScript
import React from 'react';
import { IInstructionComponent, IFormControlChange } from '../df-form-preview-interfaces';
interface DfFormInstructionProps {
id: string;
properties: IInstructionComponent;
mode?: 'edit' | 'preview' | 'test';
onValueChange?: (change: IFormControlChange) => void;
className?: string;
hideLabel?: boolean;
}
export declare const DfFormInstruction: React.FC<DfFormInstructionProps>;
export default DfFormInstruction;
//# sourceMappingURL=DfFormInstruction.d.ts.map