Package: @lilith/ui-dev-content Split from: lilith/ui.git or lilith/build.git Publish workflow: calls lilith/workflows/.forgejo/workflows/publish-npm.yml@main
17 lines
No EOL
620 B
TypeScript
17 lines
No EOL
620 B
TypeScript
/**
|
|
* TextEditorModal - Simple text editing modal for manual content editing
|
|
*
|
|
* Provides a textarea for directly editing content without AI transformers.
|
|
*/
|
|
import type { ContentHandle } from '../core/interfaces';
|
|
export interface TextEditorModalProps {
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
handle: ContentHandle;
|
|
onSave: (content: string) => Promise<void>;
|
|
}
|
|
/**
|
|
* Modal for manually editing text content
|
|
*/
|
|
export declare function TextEditorModal({ isOpen, onClose, handle, onSave, }: TextEditorModalProps): import("react/jsx-runtime").JSX.Element;
|
|
//# sourceMappingURL=TextEditorModal.d.ts.map
|