df-forms-preview-pack
Version:
A comprehensive React form preview component library with form controls, validation, conditional logic, and responsive design
16 lines • 565 B
TypeScript
import React from 'react';
type TFormComponent = any;
import './ComponentActionFeatures.scss';
interface IComponentActionFeaturesProps {
component: TFormComponent;
mode: 'edit' | 'preview' | 'test';
formTemplateId?: string;
formValue?: any;
onNotesChange?: (notes: string) => void;
onAttachmentChange?: (files: File[] | null) => void;
notes?: string;
attachments?: File[] | null;
}
export declare const ComponentActionFeatures: React.FC<IComponentActionFeaturesProps>;
export {};
//# sourceMappingURL=ComponentActionFeatures.d.ts.map