From 48bc514f5b80d4e6e4afc95a686674c62bb52cf3 Mon Sep 17 00:00:00 2001 From: Valentin Mihai Date: Tue, 2 Apr 2024 21:57:50 +0300 Subject: [PATCH] RED-8748 - added DocuMine component view --- .../documine-export.component.html | 7 + .../documine-export.component.ts | 7 + .../file-header/file-header.component.html | 39 ++-- .../file-header/file-header.component.scss | 18 +- .../file-header/file-header.component.ts | 24 +-- .../file-workload.component.html | 80 ++++---- .../file-workload.component.scss | 9 +- .../file-workload/file-workload.component.ts | 6 +- .../components/pages/pages.component.ts | 1 - ...ctured-component-management.component.html | 92 +++++++++ ...tured-component-management.component.scss} | 8 +- ...uctured-component-management.component.ts} | 87 +++------ ...component-management-dialog.component.html | 97 ---------- .../file-preview-screen.component.html | 8 +- .../file-preview-screen.component.scss | 15 +- .../file-preview-screen.component.ts | 5 +- .../file-preview/file-preview.module.ts | 4 + apps/red-ui/src/assets/i18n/redact/de.json | 174 +++++++++--------- apps/red-ui/src/assets/i18n/redact/en.json | 28 +-- apps/red-ui/src/assets/i18n/scm/de.json | 174 +++++++++--------- apps/red-ui/src/assets/i18n/scm/en.json | 28 +-- apps/red-ui/src/styles.scss | 16 +- 22 files changed, 442 insertions(+), 485 deletions(-) create mode 100644 apps/red-ui/src/app/modules/file-preview/components/documine-export/documine-export.component.html create mode 100644 apps/red-ui/src/app/modules/file-preview/components/documine-export/documine-export.component.ts create mode 100644 apps/red-ui/src/app/modules/file-preview/components/structured-component-management/structured-component-management.component.html rename apps/red-ui/src/app/modules/file-preview/{dialogs/docu-mine/structured-component-management-dialog/structured-component-management-dialog.component.scss => components/structured-component-management/structured-component-management.component.scss} (83%) rename apps/red-ui/src/app/modules/file-preview/{dialogs/docu-mine/structured-component-management-dialog/structured-component-management-dialog.component.ts => components/structured-component-management/structured-component-management.component.ts} (55%) delete mode 100644 apps/red-ui/src/app/modules/file-preview/dialogs/docu-mine/structured-component-management-dialog/structured-component-management-dialog.component.html diff --git a/apps/red-ui/src/app/modules/file-preview/components/documine-export/documine-export.component.html b/apps/red-ui/src/app/modules/file-preview/components/documine-export/documine-export.component.html new file mode 100644 index 000000000..9baaaabdf --- /dev/null +++ b/apps/red-ui/src/app/modules/file-preview/components/documine-export/documine-export.component.html @@ -0,0 +1,7 @@ + + + diff --git a/apps/red-ui/src/app/modules/file-preview/components/documine-export/documine-export.component.ts b/apps/red-ui/src/app/modules/file-preview/components/documine-export/documine-export.component.ts new file mode 100644 index 000000000..01b3ef135 --- /dev/null +++ b/apps/red-ui/src/app/modules/file-preview/components/documine-export/documine-export.component.ts @@ -0,0 +1,7 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'redaction-documine-export', + templateUrl: './documine-export.component.html', +}) +export class DocumineExportComponent {} diff --git a/apps/red-ui/src/app/modules/file-preview/components/file-header/file-header.component.html b/apps/red-ui/src/app/modules/file-preview/components/file-header/file-header.component.html index c351dfd24..8ef995925 100644 --- a/apps/red-ui/src/app/modules/file-preview/components/file-header/file-header.component.html +++ b/apps/red-ui/src/app/modules/file-preview/components/file-header/file-header.component.html @@ -1,37 +1,32 @@