Add OCRImportPanel component and ocr-integration utilities to import OCR-analyzed data from the grid detection service into the worksheet editor. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
596 B
TypeScript
17 lines
596 B
TypeScript
/**
|
|
* Worksheet Editor Components
|
|
*
|
|
* Export all worksheet editor components for easy importing
|
|
*/
|
|
|
|
export { FabricCanvas } from './FabricCanvas'
|
|
export { EditorToolbar } from './EditorToolbar'
|
|
export { PropertiesPanel } from './PropertiesPanel'
|
|
export { AIImageGenerator } from './AIImageGenerator'
|
|
export { CanvasControls } from './CanvasControls'
|
|
export { PageNavigator } from './PageNavigator'
|
|
export { ExportPanel } from './ExportPanel'
|
|
export { DocumentImporter } from './DocumentImporter'
|
|
export { CleanupPanel } from './CleanupPanel'
|
|
export { OCRImportPanel } from './OCRImportPanel'
|