df-ae-forms-package
Version:
A comprehensive React form preview component library with form controls, validation, and responsive design for Angular/Ionic integration
24 lines • 837 B
TypeScript
import React from 'react';
import { FormComponentType } from '../df-form-controls/df-form-preview-interfaces';
interface IRaiseIssueModalProps {
isOpen: boolean;
onClose: () => void;
onSuccess?: (createdIssue?: any) => void;
component?: FormComponentType;
formTemplateId?: string;
formInstanceId?: string;
notes?: string;
attachments?: File[] | null;
issue?: any | null;
}
/**
* RaiseIssueModal - Stub implementation for package
*
* This is a stub component that can be replaced by the consuming application
* with their own implementation that integrates with their issue management system.
*
* For now, it simply calls onSuccess when the user "raises" an issue.
*/
export declare const RaiseIssueModal: React.FC<IRaiseIssueModalProps>;
export {};
//# sourceMappingURL=RaiseIssueModal.d.ts.map