UNPKG

digitaform-preview-react

Version:

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

16 lines 608 B
import React from 'react'; import { TFormComponent } from '../services/form-template.interface'; 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