@hmcts/ccd-case-ui-toolkit 7.1.71 → 7.1.72-exui-1832-rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/shared/components/case-history/case-history.component.mjs +5 -3
- package/esm2022/lib/shared/components/palette/base-field/field-write.component.mjs +2 -2
- package/esm2022/lib/shared/components/palette/document/write-document-field.component.mjs +46 -21
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs +48 -23
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/lib/shared/components/case-history/case-history.component.d.ts.map +1 -1
- package/lib/shared/components/palette/document/write-document-field.component.d.ts +5 -1
- package/lib/shared/components/palette/document/write-document-field.component.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -15017,7 +15017,7 @@ class FileUploadStateService {
|
|
|
15017
15017
|
const _c0$R = ["fileInput"];
|
|
15018
15018
|
const _c1$l = a0 => ({ "form-group-error bottom-30": a0 });
|
|
15019
15019
|
function WriteDocumentFieldComponent_span_6_Template(rf, ctx) { if (rf & 1) {
|
|
15020
|
-
i0.ɵɵelementStart(0, "span",
|
|
15020
|
+
i0.ɵɵelementStart(0, "span", 15);
|
|
15021
15021
|
i0.ɵɵtext(1);
|
|
15022
15022
|
i0.ɵɵpipe(2, "rpxTranslate");
|
|
15023
15023
|
i0.ɵɵelementEnd();
|
|
@@ -15027,7 +15027,7 @@ function WriteDocumentFieldComponent_span_6_Template(rf, ctx) { if (rf & 1) {
|
|
|
15027
15027
|
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(2, 1, ctx_r1.caseField.hint_text), " ");
|
|
15028
15028
|
} }
|
|
15029
15029
|
function WriteDocumentFieldComponent_ccd_read_document_field_11_Template(rf, ctx) { if (rf & 1) {
|
|
15030
|
-
i0.ɵɵelement(0, "ccd-read-document-field",
|
|
15030
|
+
i0.ɵɵelement(0, "ccd-read-document-field", 16);
|
|
15031
15031
|
} if (rf & 2) {
|
|
15032
15032
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
15033
15033
|
i0.ɵɵproperty("caseField", ctx_r1.caseField);
|
|
@@ -15039,6 +15039,7 @@ class WriteDocumentFieldComponent extends AbstractFieldWriteComponent {
|
|
|
15039
15039
|
dialog;
|
|
15040
15040
|
fileUploadStateService;
|
|
15041
15041
|
jurisdictionService;
|
|
15042
|
+
rpxTranslationService;
|
|
15042
15043
|
static DOCUMENT_URL = 'document_url';
|
|
15043
15044
|
static DOCUMENT_BINARY_URL = 'document_binary_url';
|
|
15044
15045
|
static DOCUMENT_FILENAME = 'document_filename';
|
|
@@ -15049,6 +15050,7 @@ class WriteDocumentFieldComponent extends AbstractFieldWriteComponent {
|
|
|
15049
15050
|
static UPLOAD_ERROR_INVALID_FORMAT = 'Document format is not supported';
|
|
15050
15051
|
static UPLOAD_WAITING_FILE_STATUS = 'Uploading...';
|
|
15051
15052
|
static ERROR_UPLOADING_FILE = 'Error Uploading File';
|
|
15053
|
+
static NO_FILE_CHOSED = 'No file chosen';
|
|
15052
15054
|
fileInput;
|
|
15053
15055
|
selectedFile;
|
|
15054
15056
|
valid = true;
|
|
@@ -15060,12 +15062,13 @@ class WriteDocumentFieldComponent extends AbstractFieldWriteComponent {
|
|
|
15060
15062
|
dialogSubscription;
|
|
15061
15063
|
caseNotifierSubscription;
|
|
15062
15064
|
jurisdictionSubs;
|
|
15065
|
+
fileName = WriteDocumentFieldComponent.NO_FILE_CHOSED;
|
|
15063
15066
|
uploadedDocument;
|
|
15064
15067
|
dialogConfig;
|
|
15065
15068
|
secureModeOn;
|
|
15066
15069
|
jurisdictionId;
|
|
15067
15070
|
caseTypeId;
|
|
15068
|
-
constructor(appConfig, caseNotifier, documentManagement, dialog, fileUploadStateService, jurisdictionService) {
|
|
15071
|
+
constructor(appConfig, caseNotifier, documentManagement, dialog, fileUploadStateService, jurisdictionService, rpxTranslationService) {
|
|
15069
15072
|
super();
|
|
15070
15073
|
this.appConfig = appConfig;
|
|
15071
15074
|
this.caseNotifier = caseNotifier;
|
|
@@ -15073,9 +15076,15 @@ class WriteDocumentFieldComponent extends AbstractFieldWriteComponent {
|
|
|
15073
15076
|
this.dialog = dialog;
|
|
15074
15077
|
this.fileUploadStateService = fileUploadStateService;
|
|
15075
15078
|
this.jurisdictionService = jurisdictionService;
|
|
15079
|
+
this.rpxTranslationService = rpxTranslationService;
|
|
15076
15080
|
}
|
|
15077
15081
|
ngOnInit() {
|
|
15078
15082
|
this.secureModeOn = this.appConfig.getDocumentSecureMode();
|
|
15083
|
+
if (this.rpxTranslationService.language === 'cy') {
|
|
15084
|
+
this.rpxTranslationService.getTranslation$(WriteDocumentFieldComponent.NO_FILE_CHOSED).subscribe((translation) => {
|
|
15085
|
+
this.fileName = translation;
|
|
15086
|
+
});
|
|
15087
|
+
}
|
|
15079
15088
|
if (this.secureModeOn) {
|
|
15080
15089
|
this.subscribeToCaseDetails();
|
|
15081
15090
|
}
|
|
@@ -15134,6 +15143,7 @@ class WriteDocumentFieldComponent extends AbstractFieldWriteComponent {
|
|
|
15134
15143
|
}
|
|
15135
15144
|
else if (fileInput.target.files[0]) {
|
|
15136
15145
|
this.selectedFile = fileInput.target.files[0];
|
|
15146
|
+
this.fileName = fileInput.target.files[0].name;
|
|
15137
15147
|
this.displayFileUploadMessages(WriteDocumentFieldComponent.UPLOAD_WAITING_FILE_STATUS);
|
|
15138
15148
|
const documentUpload = this.buildDocumentUploadData(this.selectedFile);
|
|
15139
15149
|
this.fileUploadStateService.setUploadInProgress(true);
|
|
@@ -15368,13 +15378,13 @@ class WriteDocumentFieldComponent extends AbstractFieldWriteComponent {
|
|
|
15368
15378
|
this.valid = false;
|
|
15369
15379
|
this.fileUploadStateService.setUploadInProgress(false);
|
|
15370
15380
|
}
|
|
15371
|
-
static ɵfac = function WriteDocumentFieldComponent_Factory(t) { return new (t || WriteDocumentFieldComponent)(i0.ɵɵdirectiveInject(AbstractAppConfig), i0.ɵɵdirectiveInject(CaseNotifier), i0.ɵɵdirectiveInject(DocumentManagementService), i0.ɵɵdirectiveInject(i1$3.MatLegacyDialog), i0.ɵɵdirectiveInject(FileUploadStateService), i0.ɵɵdirectiveInject(JurisdictionService)); };
|
|
15381
|
+
static ɵfac = function WriteDocumentFieldComponent_Factory(t) { return new (t || WriteDocumentFieldComponent)(i0.ɵɵdirectiveInject(AbstractAppConfig), i0.ɵɵdirectiveInject(CaseNotifier), i0.ɵɵdirectiveInject(DocumentManagementService), i0.ɵɵdirectiveInject(i1$3.MatLegacyDialog), i0.ɵɵdirectiveInject(FileUploadStateService), i0.ɵɵdirectiveInject(JurisdictionService), i0.ɵɵdirectiveInject(i1.RpxTranslationService)); };
|
|
15372
15382
|
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: WriteDocumentFieldComponent, selectors: [["ccd-write-document-field"]], viewQuery: function WriteDocumentFieldComponent_Query(rf, ctx) { if (rf & 1) {
|
|
15373
15383
|
i0.ɵɵviewQuery(_c0$R, 5);
|
|
15374
15384
|
} if (rf & 2) {
|
|
15375
15385
|
let _t;
|
|
15376
15386
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.fileInput = _t.first);
|
|
15377
|
-
} }, features: [i0.ɵɵInheritDefinitionFeature], decls:
|
|
15387
|
+
} }, features: [i0.ɵɵInheritDefinitionFeature], decls: 27, vars: 28, consts: [["fileInput", ""], [1, "form-group", 3, "ngClass"], [3, "for"], [1, "form-label"], ["class", "form-hint", 4, "ngIf"], ["role", "alert", "tabindex", "0", 1, "error-message", 3, "hidden"], [3, "caseField", 4, "ngIf"], [2, "position", "relative"], [3, "click", "keyup", "id"], [1, "upload-file-container"], ["aria-label", "Choose file", 1, "button", "button-secondary", "input-label", 3, "for"], [1, "form-control", "bottom-30"], ["type", "file", 1, "input-upload-file", 3, "keydown.Tab", "change", "id", "accept"], [1, "form-group", "bottom-30"], ["type", "button", "aria-label", "Cancel upload", 1, "button", "button-secondary", 3, "click", "disabled"], [1, "form-hint"], [3, "caseField"]], template: function WriteDocumentFieldComponent_Template(rf, ctx) { if (rf & 1) {
|
|
15378
15388
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
15379
15389
|
i0.ɵɵelementStart(0, "div", 1)(1, "label", 2)(2, "span", 3);
|
|
15380
15390
|
i0.ɵɵpipe(3, "ccdFieldLabel");
|
|
@@ -15392,49 +15402,62 @@ class WriteDocumentFieldComponent extends AbstractFieldWriteComponent {
|
|
|
15392
15402
|
i0.ɵɵelementStart(12, "div", 7)(13, "div", 8);
|
|
15393
15403
|
i0.ɵɵlistener("click", function WriteDocumentFieldComponent_Template_div_click_13_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.fileSelectEvent()); })("keyup", function WriteDocumentFieldComponent_Template_div_keyup_13_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.fileSelectEvent()); });
|
|
15394
15404
|
i0.ɵɵelementEnd();
|
|
15395
|
-
i0.ɵɵelementStart(14, "
|
|
15396
|
-
i0.ɵɵ
|
|
15405
|
+
i0.ɵɵelementStart(14, "div", 9)(15, "label", 10);
|
|
15406
|
+
i0.ɵɵtext(16);
|
|
15407
|
+
i0.ɵɵpipe(17, "rpxTranslate");
|
|
15408
|
+
i0.ɵɵelementEnd();
|
|
15409
|
+
i0.ɵɵelementStart(18, "span", 11)(19, "span");
|
|
15410
|
+
i0.ɵɵtext(20);
|
|
15397
15411
|
i0.ɵɵelementEnd()()();
|
|
15398
|
-
i0.ɵɵelementStart(
|
|
15399
|
-
i0.ɵɵlistener("
|
|
15400
|
-
i0.ɵɵ
|
|
15401
|
-
i0.ɵɵ
|
|
15412
|
+
i0.ɵɵelementStart(21, "input", 12, 0);
|
|
15413
|
+
i0.ɵɵlistener("keydown.Tab", function WriteDocumentFieldComponent_Template_input_keydown_Tab_21_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.fileValidationsOnTab()); })("change", function WriteDocumentFieldComponent_Template_input_change_21_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.fileChangeEvent($event, ctx.caseField.field_type.regular_expression)); });
|
|
15414
|
+
i0.ɵɵelementEnd()()();
|
|
15415
|
+
i0.ɵɵelementStart(23, "div", 13)(24, "button", 14);
|
|
15416
|
+
i0.ɵɵlistener("click", function WriteDocumentFieldComponent_Template_button_click_24_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.cancelUpload()); });
|
|
15417
|
+
i0.ɵɵtext(25);
|
|
15418
|
+
i0.ɵɵpipe(26, "rpxTranslate");
|
|
15402
15419
|
i0.ɵɵelementEnd()();
|
|
15403
15420
|
} if (rf & 2) {
|
|
15404
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(
|
|
15421
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(26, _c1$l, !ctx.valid));
|
|
15405
15422
|
i0.ɵɵadvance();
|
|
15406
15423
|
i0.ɵɵproperty("for", ctx.id());
|
|
15407
15424
|
i0.ɵɵadvance();
|
|
15408
|
-
i0.ɵɵattribute("aria-label", i0.ɵɵpipeBind1(3,
|
|
15425
|
+
i0.ɵɵattribute("aria-label", i0.ɵɵpipeBind1(3, 16, ctx.caseField));
|
|
15409
15426
|
i0.ɵɵadvance(2);
|
|
15410
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5,
|
|
15427
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 18, ctx.caseField));
|
|
15411
15428
|
i0.ɵɵadvance(2);
|
|
15412
15429
|
i0.ɵɵproperty("ngIf", ctx.caseField.hint_text);
|
|
15413
15430
|
i0.ɵɵadvance();
|
|
15414
15431
|
i0.ɵɵproperty("hidden", !(ctx.fileUploadMessages && !ctx.valid));
|
|
15415
15432
|
i0.ɵɵadvance();
|
|
15416
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(9,
|
|
15433
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(9, 20, ctx.fileUploadMessages), " ");
|
|
15417
15434
|
i0.ɵɵadvance(3);
|
|
15418
15435
|
i0.ɵɵproperty("ngIf", ctx.caseField);
|
|
15419
15436
|
i0.ɵɵadvance(2);
|
|
15420
15437
|
i0.ɵɵproperty("id", ctx.createElementId("fileInputWrapper"));
|
|
15438
|
+
i0.ɵɵadvance(2);
|
|
15439
|
+
i0.ɵɵproperty("for", ctx.id());
|
|
15440
|
+
i0.ɵɵadvance();
|
|
15441
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(17, 22, "Choose file"), " ");
|
|
15442
|
+
i0.ɵɵadvance(4);
|
|
15443
|
+
i0.ɵɵtextInterpolate(ctx.fileName);
|
|
15421
15444
|
i0.ɵɵadvance();
|
|
15422
15445
|
i0.ɵɵpropertyInterpolate("accept", ctx.caseField.field_type.regular_expression);
|
|
15423
15446
|
i0.ɵɵproperty("id", ctx.id());
|
|
15424
15447
|
i0.ɵɵadvance(3);
|
|
15425
15448
|
i0.ɵɵproperty("disabled", !ctx.isUploadInProgress());
|
|
15426
15449
|
i0.ɵɵadvance();
|
|
15427
|
-
i0.ɵɵ
|
|
15428
|
-
} },
|
|
15450
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(26, 24, "Cancel upload"), " ");
|
|
15451
|
+
} }, styles: [".input-upload-file[_ngcontent-%COMP%]{width:100%;display:none}.upload-file-container[_ngcontent-%COMP%]{display:flex;align-items:baseline}.input-label[_ngcontent-%COMP%]{width:8rem}.form [_nghost-%COMP%] .grey-bar>*>.form-group, .form [_nghost-%COMP%] .grey-bar>*>*>.form-group, .form [_nghost-%COMP%] .grey-bar>*>dl.case-field{margin-left:15px;padding-left:15px}.form [_nghost-%COMP%] .grey-bar>*>.form-group:not(.form-group-error), .form [_nghost-%COMP%] .grey-bar>*>*>.form-group:not(.form-group-error), .form [_nghost-%COMP%] .grey-bar>*>dl.case-field:not(.form-group-error){border-left:solid 5px #b1b4b6}.form [_nghost-%COMP%] .grey-bar>*>.form-group input:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>.form-group select:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>.form-group textarea:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>*>.form-group input:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>*>.form-group select:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>*>.form-group textarea:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>dl.case-field input:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>dl.case-field select:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>dl.case-field textarea:not(.inline-block){display:block}"] });
|
|
15429
15452
|
}
|
|
15430
15453
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(WriteDocumentFieldComponent, [{
|
|
15431
15454
|
type: Component,
|
|
15432
|
-
args: [{ selector: 'ccd-write-document-field', template: "<div class=\"form-group\" [ngClass]=\"{'form-group-error bottom-30': !valid}\">\n <label [for]=\"id()\">\n <span class=\"form-label\" attr.aria-label=\"{{caseField | ccdFieldLabel}}\">{{(caseField | ccdFieldLabel)}}</span>\n </label>\n <span class=\"form-hint\" *ngIf=\"caseField.hint_text\">\n {{ caseField.hint_text | rpxTranslate }}\n </span>\n <span class=\"error-message\"\n role=\"alert\"\n tabindex=\"0\"\n [hidden]=\"!(fileUploadMessages && !valid)\">\n {{ fileUploadMessages | rpxTranslate }}\n </span>\n <div>\n <!--<span *ngIf=\"getUploadedFileName()\" class=\"text-16\">File name: {{getUploadedFileName()}}</span>-->\n <ccd-read-document-field *ngIf=\"caseField\" [caseField]=\"caseField\"></ccd-read-document-field>\n </div>\n\n <div style
|
|
15433
|
-
}], () => [{ type: AbstractAppConfig }, { type: CaseNotifier }, { type: DocumentManagementService }, { type: i1$3.MatLegacyDialog }, { type: FileUploadStateService }, { type: JurisdictionService }], { fileInput: [{
|
|
15455
|
+
args: [{ selector: 'ccd-write-document-field', template: "<div class=\"form-group\" [ngClass]=\"{'form-group-error bottom-30': !valid}\">\n <label [for]=\"id()\">\n <span class=\"form-label\" attr.aria-label=\"{{caseField | ccdFieldLabel}}\">{{(caseField | ccdFieldLabel)}}</span>\n </label>\n <span class=\"form-hint\" *ngIf=\"caseField.hint_text\">\n {{ caseField.hint_text | rpxTranslate }}\n </span>\n <span class=\"error-message\"\n role=\"alert\"\n tabindex=\"0\"\n [hidden]=\"!(fileUploadMessages && !valid)\">\n {{ fileUploadMessages | rpxTranslate }}\n </span>\n <div>\n <!--<span *ngIf=\"getUploadedFileName()\" class=\"text-16\">File name: {{getUploadedFileName()}}</span>-->\n <ccd-read-document-field *ngIf=\"caseField\" [caseField]=\"caseField\"></ccd-read-document-field>\n </div>\n\n <div style=\"position:relative\">\n <div\n [id]=\"createElementId('fileInputWrapper')\"\n (click)=\"fileSelectEvent()\"\n (keyup)=\"fileSelectEvent()\"\n ></div>\n <div class=\"upload-file-container\">\n <label\n [for]=\"id()\"\n class=\"button button-secondary input-label\"\n aria-label=\"Choose file\">\n {{'Choose file' | rpxTranslate}}\n </label>\n <span class=\"form-control bottom-30\">\n <span>{{fileName}}</span>\n </span>\n </div>\n <input\n [id]=\"id()\"\n type=\"file\"\n class=\"input-upload-file\"\n (keydown.Tab)=\"fileValidationsOnTab()\"\n (change)=\"fileChangeEvent($event, caseField.field_type.regular_expression)\"\n accept=\"{{caseField.field_type.regular_expression}}\"\n #fileInput/>\n </div>\n</div>\n<div class=\"form-group bottom-30\">\n <button\n class=\"button button-secondary\"\n type=\"button\"\n aria-label=\"Cancel upload\"\n (click)=\"cancelUpload()\"\n [disabled]=\"!isUploadInProgress()\">\n {{'Cancel upload' | rpxTranslate}}\n </button>\n</div>\n", styles: [".input-upload-file{width:100%;display:none}.upload-file-container{display:flex;align-items:baseline}.input-label{width:8rem}.form :host::ng-deep .grey-bar>*>.form-group,.form :host::ng-deep .grey-bar>*>*>.form-group,.form :host::ng-deep .grey-bar>*>dl.case-field{margin-left:15px;padding-left:15px}.form :host::ng-deep .grey-bar>*>.form-group:not(.form-group-error),.form :host::ng-deep .grey-bar>*>*>.form-group:not(.form-group-error),.form :host::ng-deep .grey-bar>*>dl.case-field:not(.form-group-error){border-left:solid 5px #b1b4b6}.form :host::ng-deep .grey-bar>*>.form-group input:not(.inline-block),.form :host::ng-deep .grey-bar>*>.form-group select:not(.inline-block),.form :host::ng-deep .grey-bar>*>.form-group textarea:not(.inline-block),.form :host::ng-deep .grey-bar>*>*>.form-group input:not(.inline-block),.form :host::ng-deep .grey-bar>*>*>.form-group select:not(.inline-block),.form :host::ng-deep .grey-bar>*>*>.form-group textarea:not(.inline-block),.form :host::ng-deep .grey-bar>*>dl.case-field input:not(.inline-block),.form :host::ng-deep .grey-bar>*>dl.case-field select:not(.inline-block),.form :host::ng-deep .grey-bar>*>dl.case-field textarea:not(.inline-block){display:block}\n"] }]
|
|
15456
|
+
}], () => [{ type: AbstractAppConfig }, { type: CaseNotifier }, { type: DocumentManagementService }, { type: i1$3.MatLegacyDialog }, { type: FileUploadStateService }, { type: JurisdictionService }, { type: i1.RpxTranslationService }], { fileInput: [{
|
|
15434
15457
|
type: ViewChild,
|
|
15435
15458
|
args: ['fileInput', { static: false }]
|
|
15436
15459
|
}] }); })();
|
|
15437
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(WriteDocumentFieldComponent, { className: "WriteDocumentFieldComponent", filePath: "lib/shared/components/palette/document/write-document-field.component.ts", lineNumber:
|
|
15460
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(WriteDocumentFieldComponent, { className: "WriteDocumentFieldComponent", filePath: "lib/shared/components/palette/document/write-document-field.component.ts", lineNumber: 25 }); })();
|
|
15438
15461
|
|
|
15439
15462
|
class DynamicListPipe {
|
|
15440
15463
|
static EMPTY = '';
|
|
@@ -23606,11 +23629,11 @@ class FieldWriteComponent extends AbstractFieldWriteComponent {
|
|
|
23606
23629
|
} if (rf & 2) {
|
|
23607
23630
|
i0.ɵɵclassProp("grey-bar", ctx.canHaveGreyBar && !ctx.caseField.hiddenCannotChange);
|
|
23608
23631
|
i0.ɵɵproperty("hidden", ctx.caseField.hidden);
|
|
23609
|
-
} }, styles: [".form [_nghost-%COMP%] .grey-bar>*>.form-group, .form [_nghost-%COMP%] .grey-bar>*>*>.form-group, .form [_nghost-%COMP%] .grey-bar>*>dl.case-field{margin-left:15px;padding-left:15px}.form [_nghost-%COMP%] .grey-bar>*>.form-group:not(.form-group-error), .form [_nghost-%COMP%] .grey-bar>*>*>.form-group:not(.form-group-error), .form [_nghost-%COMP%] .grey-bar>*>dl.case-field:not(.form-group-error){border-left:solid 5px #b1b4b6}.form [_nghost-%COMP%] .grey-bar>*>.form-group input:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>.form-group select:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>.form-group textarea:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>*>.form-group input:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>*>.form-group select:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>*>.form-group textarea:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>dl.case-field input:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>dl.case-field select:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>dl.case-field textarea:not(.inline-block){display:block}"] });
|
|
23632
|
+
} }, styles: [".input-upload-file[_ngcontent-%COMP%]{width:100%;display:none}.upload-file-container[_ngcontent-%COMP%]{display:flex;align-items:baseline}.input-label[_ngcontent-%COMP%]{width:8rem}.form [_nghost-%COMP%] .grey-bar>*>.form-group, .form [_nghost-%COMP%] .grey-bar>*>*>.form-group, .form [_nghost-%COMP%] .grey-bar>*>dl.case-field{margin-left:15px;padding-left:15px}.form [_nghost-%COMP%] .grey-bar>*>.form-group:not(.form-group-error), .form [_nghost-%COMP%] .grey-bar>*>*>.form-group:not(.form-group-error), .form [_nghost-%COMP%] .grey-bar>*>dl.case-field:not(.form-group-error){border-left:solid 5px #b1b4b6}.form [_nghost-%COMP%] .grey-bar>*>.form-group input:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>.form-group select:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>.form-group textarea:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>*>.form-group input:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>*>.form-group select:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>*>.form-group textarea:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>dl.case-field input:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>dl.case-field select:not(.inline-block), .form [_nghost-%COMP%] .grey-bar>*>dl.case-field textarea:not(.inline-block){display:block}"] });
|
|
23610
23633
|
}
|
|
23611
23634
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FieldWriteComponent, [{
|
|
23612
23635
|
type: Component,
|
|
23613
|
-
args: [{ selector: 'ccd-field-write', template: "<div [hidden]=\"caseField.hidden\" [class.grey-bar]=\"canHaveGreyBar && !caseField.hiddenCannotChange\">\n <ng-container #fieldContainer></ng-container>\n</div>\n", styles: [".form :host::ng-deep .grey-bar>*>.form-group,.form :host::ng-deep .grey-bar>*>*>.form-group,.form :host::ng-deep .grey-bar>*>dl.case-field{margin-left:15px;padding-left:15px}.form :host::ng-deep .grey-bar>*>.form-group:not(.form-group-error),.form :host::ng-deep .grey-bar>*>*>.form-group:not(.form-group-error),.form :host::ng-deep .grey-bar>*>dl.case-field:not(.form-group-error){border-left:solid 5px #b1b4b6}.form :host::ng-deep .grey-bar>*>.form-group input:not(.inline-block),.form :host::ng-deep .grey-bar>*>.form-group select:not(.inline-block),.form :host::ng-deep .grey-bar>*>.form-group textarea:not(.inline-block),.form :host::ng-deep .grey-bar>*>*>.form-group input:not(.inline-block),.form :host::ng-deep .grey-bar>*>*>.form-group select:not(.inline-block),.form :host::ng-deep .grey-bar>*>*>.form-group textarea:not(.inline-block),.form :host::ng-deep .grey-bar>*>dl.case-field input:not(.inline-block),.form :host::ng-deep .grey-bar>*>dl.case-field select:not(.inline-block),.form :host::ng-deep .grey-bar>*>dl.case-field textarea:not(.inline-block){display:block}\n"] }]
|
|
23636
|
+
args: [{ selector: 'ccd-field-write', template: "<div [hidden]=\"caseField.hidden\" [class.grey-bar]=\"canHaveGreyBar && !caseField.hiddenCannotChange\">\n <ng-container #fieldContainer></ng-container>\n</div>\n", styles: [".input-upload-file{width:100%;display:none}.upload-file-container{display:flex;align-items:baseline}.input-label{width:8rem}.form :host::ng-deep .grey-bar>*>.form-group,.form :host::ng-deep .grey-bar>*>*>.form-group,.form :host::ng-deep .grey-bar>*>dl.case-field{margin-left:15px;padding-left:15px}.form :host::ng-deep .grey-bar>*>.form-group:not(.form-group-error),.form :host::ng-deep .grey-bar>*>*>.form-group:not(.form-group-error),.form :host::ng-deep .grey-bar>*>dl.case-field:not(.form-group-error){border-left:solid 5px #b1b4b6}.form :host::ng-deep .grey-bar>*>.form-group input:not(.inline-block),.form :host::ng-deep .grey-bar>*>.form-group select:not(.inline-block),.form :host::ng-deep .grey-bar>*>.form-group textarea:not(.inline-block),.form :host::ng-deep .grey-bar>*>*>.form-group input:not(.inline-block),.form :host::ng-deep .grey-bar>*>*>.form-group select:not(.inline-block),.form :host::ng-deep .grey-bar>*>*>.form-group textarea:not(.inline-block),.form :host::ng-deep .grey-bar>*>dl.case-field input:not(.inline-block),.form :host::ng-deep .grey-bar>*>dl.case-field select:not(.inline-block),.form :host::ng-deep .grey-bar>*>dl.case-field textarea:not(.inline-block){display:block}\n"] }]
|
|
23614
23637
|
}], () => [{ type: i0.ComponentFactoryResolver }, { type: PaletteService }], { caseFields: [{
|
|
23615
23638
|
type: Input
|
|
23616
23639
|
}], fieldContainer: [{
|
|
@@ -33347,7 +33370,9 @@ class CaseHistoryComponent {
|
|
|
33347
33370
|
this.caseHistoryService = caseHistoryService;
|
|
33348
33371
|
}
|
|
33349
33372
|
ngOnInit() {
|
|
33350
|
-
this.caseSubscription = this.caseNotifier.caseView
|
|
33373
|
+
this.caseSubscription = this.caseNotifier.caseView
|
|
33374
|
+
.pipe(take(1))
|
|
33375
|
+
.subscribe((caseDetails) => {
|
|
33351
33376
|
this.caseDetails = caseDetails;
|
|
33352
33377
|
const eventId = this.route.snapshot.paramMap.get(CaseHistoryComponent.PARAM_EVENT_ID) || this.event;
|
|
33353
33378
|
this.caseHistoryService
|