@hmcts/ccd-case-ui-toolkit 7.2.8-invalid-message → 7.2.9
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/palette/base-field/field-write.component.mjs +2 -2
- package/esm2022/lib/shared/components/palette/document/write-document-field.component.mjs +21 -46
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs +22 -45
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/lib/shared/components/palette/document/write-document-field.component.d.ts +1 -5
- package/lib/shared/components/palette/document/write-document-field.component.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -15067,7 +15067,7 @@ class FileUploadStateService {
|
|
|
15067
15067
|
const _c0$R = ["fileInput"];
|
|
15068
15068
|
const _c1$l = a0 => ({ "form-group-error bottom-30": a0 });
|
|
15069
15069
|
function WriteDocumentFieldComponent_span_6_Template(rf, ctx) { if (rf & 1) {
|
|
15070
|
-
i0.ɵɵelementStart(0, "span",
|
|
15070
|
+
i0.ɵɵelementStart(0, "span", 12)(1, "markdown");
|
|
15071
15071
|
i0.ɵɵtext(2);
|
|
15072
15072
|
i0.ɵɵpipe(3, "rpxTranslate");
|
|
15073
15073
|
i0.ɵɵelementEnd()();
|
|
@@ -15077,7 +15077,7 @@ function WriteDocumentFieldComponent_span_6_Template(rf, ctx) { if (rf & 1) {
|
|
|
15077
15077
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 1, ctx_r1.caseField.hint_text));
|
|
15078
15078
|
} }
|
|
15079
15079
|
function WriteDocumentFieldComponent_ccd_read_document_field_11_Template(rf, ctx) { if (rf & 1) {
|
|
15080
|
-
i0.ɵɵelement(0, "ccd-read-document-field",
|
|
15080
|
+
i0.ɵɵelement(0, "ccd-read-document-field", 13);
|
|
15081
15081
|
} if (rf & 2) {
|
|
15082
15082
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
15083
15083
|
i0.ɵɵproperty("caseField", ctx_r1.caseField);
|
|
@@ -15089,7 +15089,6 @@ class WriteDocumentFieldComponent extends AbstractFieldWriteComponent {
|
|
|
15089
15089
|
dialog;
|
|
15090
15090
|
fileUploadStateService;
|
|
15091
15091
|
jurisdictionService;
|
|
15092
|
-
rpxTranslationService;
|
|
15093
15092
|
static DOCUMENT_URL = 'document_url';
|
|
15094
15093
|
static DOCUMENT_BINARY_URL = 'document_binary_url';
|
|
15095
15094
|
static DOCUMENT_FILENAME = 'document_filename';
|
|
@@ -15100,7 +15099,6 @@ class WriteDocumentFieldComponent extends AbstractFieldWriteComponent {
|
|
|
15100
15099
|
static UPLOAD_ERROR_INVALID_FORMAT = 'Document format is not supported';
|
|
15101
15100
|
static UPLOAD_WAITING_FILE_STATUS = 'Uploading...';
|
|
15102
15101
|
static ERROR_UPLOADING_FILE = 'Error Uploading File';
|
|
15103
|
-
static NO_FILE_CHOSED = 'No file chosen';
|
|
15104
15102
|
fileInput;
|
|
15105
15103
|
selectedFile;
|
|
15106
15104
|
valid = true;
|
|
@@ -15112,13 +15110,12 @@ class WriteDocumentFieldComponent extends AbstractFieldWriteComponent {
|
|
|
15112
15110
|
dialogSubscription;
|
|
15113
15111
|
caseNotifierSubscription;
|
|
15114
15112
|
jurisdictionSubs;
|
|
15115
|
-
fileName = WriteDocumentFieldComponent.NO_FILE_CHOSED;
|
|
15116
15113
|
uploadedDocument;
|
|
15117
15114
|
dialogConfig;
|
|
15118
15115
|
secureModeOn;
|
|
15119
15116
|
jurisdictionId;
|
|
15120
15117
|
caseTypeId;
|
|
15121
|
-
constructor(appConfig, caseNotifier, documentManagement, dialog, fileUploadStateService, jurisdictionService
|
|
15118
|
+
constructor(appConfig, caseNotifier, documentManagement, dialog, fileUploadStateService, jurisdictionService) {
|
|
15122
15119
|
super();
|
|
15123
15120
|
this.appConfig = appConfig;
|
|
15124
15121
|
this.caseNotifier = caseNotifier;
|
|
@@ -15126,15 +15123,9 @@ class WriteDocumentFieldComponent extends AbstractFieldWriteComponent {
|
|
|
15126
15123
|
this.dialog = dialog;
|
|
15127
15124
|
this.fileUploadStateService = fileUploadStateService;
|
|
15128
15125
|
this.jurisdictionService = jurisdictionService;
|
|
15129
|
-
this.rpxTranslationService = rpxTranslationService;
|
|
15130
15126
|
}
|
|
15131
15127
|
ngOnInit() {
|
|
15132
15128
|
this.secureModeOn = this.appConfig.getDocumentSecureMode();
|
|
15133
|
-
if (this.rpxTranslationService.language === 'cy') {
|
|
15134
|
-
this.rpxTranslationService.getTranslation$(WriteDocumentFieldComponent.NO_FILE_CHOSED).subscribe((translation) => {
|
|
15135
|
-
this.fileName = translation;
|
|
15136
|
-
});
|
|
15137
|
-
}
|
|
15138
15129
|
if (this.secureModeOn) {
|
|
15139
15130
|
this.subscribeToCaseDetails();
|
|
15140
15131
|
}
|
|
@@ -15193,7 +15184,6 @@ class WriteDocumentFieldComponent extends AbstractFieldWriteComponent {
|
|
|
15193
15184
|
}
|
|
15194
15185
|
else if (fileInput.target.files[0]) {
|
|
15195
15186
|
this.selectedFile = fileInput.target.files[0];
|
|
15196
|
-
this.fileName = fileInput.target.files[0].name;
|
|
15197
15187
|
this.displayFileUploadMessages(WriteDocumentFieldComponent.UPLOAD_WAITING_FILE_STATUS);
|
|
15198
15188
|
const documentUpload = this.buildDocumentUploadData(this.selectedFile);
|
|
15199
15189
|
this.fileUploadStateService.setUploadInProgress(true);
|
|
@@ -15428,13 +15418,13 @@ class WriteDocumentFieldComponent extends AbstractFieldWriteComponent {
|
|
|
15428
15418
|
this.valid = false;
|
|
15429
15419
|
this.fileUploadStateService.setUploadInProgress(false);
|
|
15430
15420
|
}
|
|
15431
|
-
static ɵfac = function WriteDocumentFieldComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || WriteDocumentFieldComponent)(i0.ɵɵdirectiveInject(AbstractAppConfig), i0.ɵɵdirectiveInject(CaseNotifier), i0.ɵɵdirectiveInject(DocumentManagementService), i0.ɵɵdirectiveInject(i1$3.MatLegacyDialog), i0.ɵɵdirectiveInject(FileUploadStateService), i0.ɵɵdirectiveInject(JurisdictionService)
|
|
15421
|
+
static ɵfac = function WriteDocumentFieldComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || WriteDocumentFieldComponent)(i0.ɵɵdirectiveInject(AbstractAppConfig), i0.ɵɵdirectiveInject(CaseNotifier), i0.ɵɵdirectiveInject(DocumentManagementService), i0.ɵɵdirectiveInject(i1$3.MatLegacyDialog), i0.ɵɵdirectiveInject(FileUploadStateService), i0.ɵɵdirectiveInject(JurisdictionService)); };
|
|
15432
15422
|
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: WriteDocumentFieldComponent, selectors: [["ccd-write-document-field"]], viewQuery: function WriteDocumentFieldComponent_Query(rf, ctx) { if (rf & 1) {
|
|
15433
15423
|
i0.ɵɵviewQuery(_c0$R, 5);
|
|
15434
15424
|
} if (rf & 2) {
|
|
15435
15425
|
let _t;
|
|
15436
15426
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.fileInput = _t.first);
|
|
15437
|
-
} }, features: [i0.ɵɵInheritDefinitionFeature], decls:
|
|
15427
|
+
} }, features: [i0.ɵɵInheritDefinitionFeature], decls: 20, vars: 23, 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"], ["type", "file", 1, "form-control", "bottom-30", 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) {
|
|
15438
15428
|
const _r1 = i0.ɵɵgetCurrentView();
|
|
15439
15429
|
i0.ɵɵelementStart(0, "div", 1)(1, "label", 2)(2, "span", 3);
|
|
15440
15430
|
i0.ɵɵpipe(3, "ccdFieldLabel");
|
|
@@ -15452,62 +15442,49 @@ class WriteDocumentFieldComponent extends AbstractFieldWriteComponent {
|
|
|
15452
15442
|
i0.ɵɵelementStart(12, "div", 7)(13, "div", 8);
|
|
15453
15443
|
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()); });
|
|
15454
15444
|
i0.ɵɵelementEnd();
|
|
15455
|
-
i0.ɵɵelementStart(14, "
|
|
15456
|
-
i0.ɵɵ
|
|
15457
|
-
i0.ɵɵpipe(17, "rpxTranslate");
|
|
15458
|
-
i0.ɵɵelementEnd();
|
|
15459
|
-
i0.ɵɵelementStart(18, "span", 11)(19, "span");
|
|
15460
|
-
i0.ɵɵtext(20);
|
|
15461
|
-
i0.ɵɵelementEnd()()();
|
|
15462
|
-
i0.ɵɵelementStart(21, "input", 12, 0);
|
|
15463
|
-
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)); });
|
|
15445
|
+
i0.ɵɵelementStart(14, "input", 9, 0);
|
|
15446
|
+
i0.ɵɵlistener("keydown.Tab", function WriteDocumentFieldComponent_Template_input_keydown_Tab_14_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.fileValidationsOnTab()); })("change", function WriteDocumentFieldComponent_Template_input_change_14_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.fileChangeEvent($event, ctx.caseField.field_type.regular_expression)); });
|
|
15464
15447
|
i0.ɵɵelementEnd()()();
|
|
15465
|
-
i0.ɵɵelementStart(
|
|
15466
|
-
i0.ɵɵlistener("click", function
|
|
15467
|
-
i0.ɵɵtext(
|
|
15468
|
-
i0.ɵɵpipe(
|
|
15448
|
+
i0.ɵɵelementStart(16, "div", 10)(17, "button", 11);
|
|
15449
|
+
i0.ɵɵlistener("click", function WriteDocumentFieldComponent_Template_button_click_17_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.cancelUpload()); });
|
|
15450
|
+
i0.ɵɵtext(18);
|
|
15451
|
+
i0.ɵɵpipe(19, "rpxTranslate");
|
|
15469
15452
|
i0.ɵɵelementEnd()();
|
|
15470
15453
|
} if (rf & 2) {
|
|
15471
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(
|
|
15454
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(21, _c1$l, !ctx.valid));
|
|
15472
15455
|
i0.ɵɵadvance();
|
|
15473
15456
|
i0.ɵɵproperty("for", ctx.id());
|
|
15474
15457
|
i0.ɵɵadvance();
|
|
15475
|
-
i0.ɵɵattribute("aria-label", i0.ɵɵpipeBind1(3,
|
|
15458
|
+
i0.ɵɵattribute("aria-label", i0.ɵɵpipeBind1(3, 13, ctx.caseField));
|
|
15476
15459
|
i0.ɵɵadvance(2);
|
|
15477
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5,
|
|
15460
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 15, ctx.caseField));
|
|
15478
15461
|
i0.ɵɵadvance(2);
|
|
15479
15462
|
i0.ɵɵproperty("ngIf", ctx.caseField.hint_text);
|
|
15480
15463
|
i0.ɵɵadvance();
|
|
15481
15464
|
i0.ɵɵproperty("hidden", !(ctx.fileUploadMessages && !ctx.valid));
|
|
15482
15465
|
i0.ɵɵadvance();
|
|
15483
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(9,
|
|
15466
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(9, 17, ctx.fileUploadMessages), " ");
|
|
15484
15467
|
i0.ɵɵadvance(3);
|
|
15485
15468
|
i0.ɵɵproperty("ngIf", ctx.caseField);
|
|
15486
15469
|
i0.ɵɵadvance(2);
|
|
15487
15470
|
i0.ɵɵproperty("id", ctx.createElementId("fileInputWrapper"));
|
|
15488
|
-
i0.ɵɵadvance(2);
|
|
15489
|
-
i0.ɵɵproperty("for", ctx.id());
|
|
15490
|
-
i0.ɵɵadvance();
|
|
15491
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(17, 22, "Choose file"), " ");
|
|
15492
|
-
i0.ɵɵadvance(4);
|
|
15493
|
-
i0.ɵɵtextInterpolate(ctx.fileName);
|
|
15494
15471
|
i0.ɵɵadvance();
|
|
15495
15472
|
i0.ɵɵpropertyInterpolate("accept", ctx.caseField.field_type.regular_expression);
|
|
15496
15473
|
i0.ɵɵproperty("id", ctx.id());
|
|
15497
15474
|
i0.ɵɵadvance(3);
|
|
15498
15475
|
i0.ɵɵproperty("disabled", !ctx.isUploadInProgress());
|
|
15499
15476
|
i0.ɵɵadvance();
|
|
15500
|
-
i0.ɵɵ
|
|
15501
|
-
} },
|
|
15477
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(19, 19, "Cancel upload"));
|
|
15478
|
+
} }, encapsulation: 2 });
|
|
15502
15479
|
}
|
|
15503
15480
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(WriteDocumentFieldComponent, [{
|
|
15504
15481
|
type: Component,
|
|
15505
|
-
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 <markdown>{{ caseField.hint_text | rpxTranslate }}</markdown>\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
|
|
15506
|
-
}], () => [{ type: AbstractAppConfig }, { type: CaseNotifier }, { type: DocumentManagementService }, { type: i1$3.MatLegacyDialog }, { type: FileUploadStateService }, { type: JurisdictionService }
|
|
15482
|
+
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 <markdown>{{ caseField.hint_text | rpxTranslate }}</markdown>\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 [id]=\"createElementId('fileInputWrapper')\" (click)=\"fileSelectEvent()\" (keyup)=\"fileSelectEvent()\"></div>\n <input class=\"form-control bottom-30\" [id]=\"id()\" type=\"file\" (keydown.Tab)=\"fileValidationsOnTab()\" (change)=\"fileChangeEvent($event, caseField.field_type.regular_expression)\"\n accept=\"{{caseField.field_type.regular_expression}}\" #fileInput/>\n </div>\n</div>\n<div class=\"form-group bottom-30\">\n <button class=\"button button-secondary\" type=\"button\" aria-label=\"Cancel upload\" (click)=\"cancelUpload()\" [disabled]=\"!isUploadInProgress()\">{{'Cancel upload' | rpxTranslate}}</button>\n</div>\n" }]
|
|
15483
|
+
}], () => [{ type: AbstractAppConfig }, { type: CaseNotifier }, { type: DocumentManagementService }, { type: i1$3.MatLegacyDialog }, { type: FileUploadStateService }, { type: JurisdictionService }], { fileInput: [{
|
|
15507
15484
|
type: ViewChild,
|
|
15508
15485
|
args: ['fileInput', { static: false }]
|
|
15509
15486
|
}] }); })();
|
|
15510
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(WriteDocumentFieldComponent, { className: "WriteDocumentFieldComponent", filePath: "lib/shared/components/palette/document/write-document-field.component.ts", lineNumber:
|
|
15487
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(WriteDocumentFieldComponent, { className: "WriteDocumentFieldComponent", filePath: "lib/shared/components/palette/document/write-document-field.component.ts", lineNumber: 23 }); })();
|
|
15511
15488
|
|
|
15512
15489
|
class DynamicListPipe {
|
|
15513
15490
|
static EMPTY = '';
|
|
@@ -23768,11 +23745,11 @@ class FieldWriteComponent extends AbstractFieldWriteComponent {
|
|
|
23768
23745
|
} if (rf & 2) {
|
|
23769
23746
|
i0.ɵɵclassProp("grey-bar", ctx.canHaveGreyBar && !ctx.caseField.hiddenCannotChange);
|
|
23770
23747
|
i0.ɵɵproperty("hidden", ctx.caseField.hidden);
|
|
23771
|
-
} }, styles: [".
|
|
23748
|
+
} }, 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}"] });
|
|
23772
23749
|
}
|
|
23773
23750
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FieldWriteComponent, [{
|
|
23774
23751
|
type: Component,
|
|
23775
|
-
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: [".
|
|
23752
|
+
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"] }]
|
|
23776
23753
|
}], () => [{ type: i0.ComponentFactoryResolver }, { type: PaletteService }], { caseFields: [{
|
|
23777
23754
|
type: Input
|
|
23778
23755
|
}], fieldContainer: [{
|