From 3742937aeaad6917644d2f5bcb758baaa9a99f5a Mon Sep 17 00:00:00 2001 From: padreug Date: Sun, 28 Sep 2025 12:57:57 +0200 Subject: [PATCH] refactor: remove ImageDisplay component and update base module exports - Deleted the ImageDisplay component to streamline image handling. - Updated the base module to export only the ImageUpload component, simplifying the component structure. These changes enhance the clarity and maintainability of the image handling components in the application. --- src/modules/base/components/ImageDisplay.vue | 238 ------------------- src/modules/base/index.ts | 4 +- 2 files changed, 1 insertion(+), 241 deletions(-) delete mode 100644 src/modules/base/components/ImageDisplay.vue diff --git a/src/modules/base/components/ImageDisplay.vue b/src/modules/base/components/ImageDisplay.vue deleted file mode 100644 index 0e18969..0000000 --- a/src/modules/base/components/ImageDisplay.vue +++ /dev/null @@ -1,238 +0,0 @@ - - - \ No newline at end of file diff --git a/src/modules/base/index.ts b/src/modules/base/index.ts index db6df6b..640482f 100644 --- a/src/modules/base/index.ts +++ b/src/modules/base/index.ts @@ -20,7 +20,6 @@ import { ImageUploadService } from './services/ImageUploadService' // Import components import ImageUpload from './components/ImageUpload.vue' -import ImageDisplay from './components/ImageDisplay.vue' // Create service instances const invoiceService = new InvoiceService() @@ -143,8 +142,7 @@ export const baseModule: ModulePlugin = { // Export components for use by other modules components: { - ImageUpload, - ImageDisplay + ImageUpload } }