feedbacker-react
Version:
A drop-in React feedback system for component-level feedback capture during development and design review
23 lines • 722 B
TypeScript
/**
* FeedbackModal Component
* Main modal for collecting feedback with minimize/restore functionality
*
* Requirements: 4.1, 4.2, 4.3, 4.4, 4.6, 9.5
*/
import React from 'react';
import { ComponentInfo, Draft } from '../../types';
interface FeedbackModalProps {
isOpen: boolean;
isMinimized: boolean;
componentInfo: ComponentInfo | null;
screenshot: string | null;
initialComment?: string;
onSubmit: (comment: string, screenshot?: string) => void;
onCancel: () => void;
onMinimize: () => void;
onRestore: () => void;
onSaveDraft: (draft: Draft) => void;
}
export declare const FeedbackModal: React.FC<FeedbackModalProps>;
export {};
//# sourceMappingURL=FeedbackModal.d.ts.map