Merge branch 'RED-3800' into 'master'
RED-3800 fix build See merge request redactmanager/red-ui!306
This commit is contained in:
commit
1409a06ae9
@ -1,12 +1,16 @@
|
|||||||
import { Component, inject } from '@angular/core';
|
import { Component, inject } from '@angular/core';
|
||||||
import { FormBuilder } from '@angular/forms';
|
import { FormBuilder, ReactiveFormsModule } from '@angular/forms';
|
||||||
import { IconButtonTypes, IqserDialogComponent } from '@iqser/common-ui';
|
import { MatDialogClose } from '@angular/material/dialog';
|
||||||
|
import { CircleButtonComponent, HasScrollbarDirective, IconButtonComponent, IconButtonTypes, IqserDialogComponent } from '@iqser/common-ui';
|
||||||
|
import { TranslateModule } from '@ngx-translate/core';
|
||||||
import { ActiveDossiersService } from '@services/dossiers/active-dossiers.service';
|
import { ActiveDossiersService } from '@services/dossiers/active-dossiers.service';
|
||||||
import { DictionariesMapService } from '@services/entity-services/dictionaries-map.service';
|
import { DictionariesMapService } from '@services/entity-services/dictionaries-map.service';
|
||||||
import { ResizeAnnotationData, ResizeAnnotationResult } from '../../../utils/dialog-types';
|
import { ResizeAnnotationData, ResizeAnnotationResult } from '../../../utils/dialog-types';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
templateUrl: './resize-annotation-dialog.component.html',
|
templateUrl: './resize-annotation-dialog.component.html',
|
||||||
|
standalone: true,
|
||||||
|
imports: [ReactiveFormsModule, TranslateModule, HasScrollbarDirective, IconButtonComponent, CircleButtonComponent, MatDialogClose],
|
||||||
})
|
})
|
||||||
export class ResizeAnnotationDialogComponent extends IqserDialogComponent<
|
export class ResizeAnnotationDialogComponent extends IqserDialogComponent<
|
||||||
ResizeAnnotationDialogComponent,
|
ResizeAnnotationDialogComponent,
|
||||||
@ -21,6 +25,10 @@ export class ResizeAnnotationDialogComponent extends IqserDialogComponent<
|
|||||||
comment: [null],
|
comment: [null],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
save() {
|
save() {
|
||||||
const formValue = this.form.getRawValue();
|
const formValue = this.form.getRawValue();
|
||||||
|
|
||||||
|
|||||||
@ -55,7 +55,6 @@ import { ChangeLegalBasisDialogComponent } from './dialogs/change-legal-basis-di
|
|||||||
import { AddAnnotationDialogComponent } from './dialogs/docu-mine/add-annotation-dialog/add-annotation-dialog.component';
|
import { AddAnnotationDialogComponent } from './dialogs/docu-mine/add-annotation-dialog/add-annotation-dialog.component';
|
||||||
import { EditAnnotationDialogComponent } from './dialogs/docu-mine/edit-annotation-dialog/edit-annotation-dialog.component';
|
import { EditAnnotationDialogComponent } from './dialogs/docu-mine/edit-annotation-dialog/edit-annotation-dialog.component';
|
||||||
import { RemoveAnnotationDialogComponent } from './dialogs/docu-mine/remove-annotation-dialog/remove-annotation-dialog.component';
|
import { RemoveAnnotationDialogComponent } from './dialogs/docu-mine/remove-annotation-dialog/remove-annotation-dialog.component';
|
||||||
import { ResizeAnnotationDialogComponent } from './dialogs/docu-mine/resize-annotation-dialog/resize-annotation-dialog.component';
|
|
||||||
import { DocumentInfoDialogComponent } from './dialogs/document-info-dialog/document-info-dialog.component';
|
import { DocumentInfoDialogComponent } from './dialogs/document-info-dialog/document-info-dialog.component';
|
||||||
import { EditRedactionDialogComponent } from './dialogs/edit-redaction-dialog/edit-redaction-dialog.component';
|
import { EditRedactionDialogComponent } from './dialogs/edit-redaction-dialog/edit-redaction-dialog.component';
|
||||||
import { ForceAnnotationDialogComponent } from './dialogs/force-redaction-dialog/force-annotation-dialog.component';
|
import { ForceAnnotationDialogComponent } from './dialogs/force-redaction-dialog/force-annotation-dialog.component';
|
||||||
@ -96,7 +95,6 @@ const dialogs = [
|
|||||||
RemoveRedactionDialogComponent,
|
RemoveRedactionDialogComponent,
|
||||||
AddAnnotationDialogComponent,
|
AddAnnotationDialogComponent,
|
||||||
RemoveAnnotationDialogComponent,
|
RemoveAnnotationDialogComponent,
|
||||||
ResizeAnnotationDialogComponent,
|
|
||||||
RedactRecommendationDialogComponent,
|
RedactRecommendationDialogComponent,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user