@hmcts/ccd-case-ui-toolkit 7.3.77-field-interpolation → 7.3.77-pofcc-131
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.
|
@@ -1261,6 +1261,12 @@ class AbstractAppConfig {
|
|
|
1261
1261
|
return 'ithc';
|
|
1262
1262
|
return 'prod';
|
|
1263
1263
|
}
|
|
1264
|
+
getWASupportedRoleCategories() {
|
|
1265
|
+
return [];
|
|
1266
|
+
}
|
|
1267
|
+
getWASupportedRoleTypes() {
|
|
1268
|
+
return [];
|
|
1269
|
+
}
|
|
1264
1270
|
getCamRoleAssignmentsApiUrl() {
|
|
1265
1271
|
return undefined;
|
|
1266
1272
|
}
|
|
@@ -1317,6 +1323,8 @@ class CaseEditorConfig {
|
|
|
1317
1323
|
icp_jurisdictions;
|
|
1318
1324
|
events_to_hide;
|
|
1319
1325
|
enable_service_specific_multi_followups;
|
|
1326
|
+
wa_supported_role_categories;
|
|
1327
|
+
wa_supported_role_types;
|
|
1320
1328
|
}
|
|
1321
1329
|
|
|
1322
1330
|
class StructuredLoggerService {
|
|
@@ -7059,7 +7067,6 @@ class LabelSubstitutorModule {
|
|
|
7059
7067
|
static ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [
|
|
7060
7068
|
FieldsUtils,
|
|
7061
7069
|
CurrencyPipe,
|
|
7062
|
-
PlaceholderService
|
|
7063
7070
|
] });
|
|
7064
7071
|
}
|
|
7065
7072
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LabelSubstitutorModule, [{
|
|
@@ -7074,7 +7081,6 @@ class LabelSubstitutorModule {
|
|
|
7074
7081
|
providers: [
|
|
7075
7082
|
FieldsUtils,
|
|
7076
7083
|
CurrencyPipe,
|
|
7077
|
-
PlaceholderService
|
|
7078
7084
|
]
|
|
7079
7085
|
}]
|
|
7080
7086
|
}], null, null); })();
|
|
@@ -11560,8 +11566,6 @@ class CaseEditPageComponent {
|
|
|
11560
11566
|
saveDraftSub;
|
|
11561
11567
|
caseFormValidationErrorsSub;
|
|
11562
11568
|
logger = new StructuredLoggerService();
|
|
11563
|
-
fieldsUtils = new FieldsUtils();
|
|
11564
|
-
placeholderService = new PlaceholderService();
|
|
11565
11569
|
caseEditFormComponents;
|
|
11566
11570
|
static scrollToTop() {
|
|
11567
11571
|
window.scrollTo(0, 0);
|
|
@@ -11726,7 +11730,7 @@ class CaseEditPageComponent {
|
|
|
11726
11730
|
? group.get(`${casefield.id}_judicialUserControl`)
|
|
11727
11731
|
: group.get(casefield.id);
|
|
11728
11732
|
if (fieldElement) {
|
|
11729
|
-
const label =
|
|
11733
|
+
const label = casefield.label || 'Field';
|
|
11730
11734
|
let id = casefield.id;
|
|
11731
11735
|
if (fieldElement['component'] && (fieldElement['component'].parent || sourceFromComplexField)) {
|
|
11732
11736
|
if (fieldElement['component'].idPrefix.indexOf(`_${id}_`) === -1) {
|
|
@@ -11791,7 +11795,7 @@ class CaseEditPageComponent {
|
|
|
11791
11795
|
});
|
|
11792
11796
|
}
|
|
11793
11797
|
else {
|
|
11794
|
-
this.validationErrors.push({ id, message: `Select or fill the required ${label} field` });
|
|
11798
|
+
this.validationErrors.push({ id, message: `Select or fill the required ${casefield.label} field` });
|
|
11795
11799
|
fieldElement.markAsDirty();
|
|
11796
11800
|
}
|
|
11797
11801
|
}
|
|
@@ -12199,20 +12203,7 @@ class CaseEditPageComponent {
|
|
|
12199
12203
|
});
|
|
12200
12204
|
}
|
|
12201
12205
|
getRpxTranslatePipeArgs(fieldLabel) {
|
|
12202
|
-
return fieldLabel ? ({ FIELDLABEL:
|
|
12203
|
-
}
|
|
12204
|
-
getInterpolatedFieldLabel(caseField) {
|
|
12205
|
-
const label = caseField.label || 'Field';
|
|
12206
|
-
return this.resolveLabelPlaceholders(label);
|
|
12207
|
-
}
|
|
12208
|
-
resolveLabelPlaceholders(label) {
|
|
12209
|
-
const dataControl = this.editForm?.controls?.['data'];
|
|
12210
|
-
const formFields = dataControl && typeof dataControl.getRawValue === 'function'
|
|
12211
|
-
? dataControl.getRawValue()
|
|
12212
|
-
: {};
|
|
12213
|
-
const contextFields = this.caseFields?.length ? this.caseFields : this.eventTrigger?.case_fields || [];
|
|
12214
|
-
const fields = this.fieldsUtils.mergeLabelCaseFieldsAndFormFields(contextFields, formFields);
|
|
12215
|
-
return this.placeholderService.resolvePlaceholders(fields, label);
|
|
12206
|
+
return fieldLabel ? ({ FIELDLABEL: fieldLabel }) : null;
|
|
12216
12207
|
}
|
|
12217
12208
|
onEventCanBeCompleted(eventCanBeCompleted) {
|
|
12218
12209
|
this.caseEdit.onEventCanBeCompleted({
|
|
@@ -12272,7 +12263,7 @@ class CaseEditPageComponent {
|
|
|
12272
12263
|
type: ViewChildren,
|
|
12273
12264
|
args: [CaseEditFormComponent]
|
|
12274
12265
|
}] }); })();
|
|
12275
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(CaseEditPageComponent, { className: "CaseEditPageComponent", filePath: "lib/shared/components/case-editor/case-edit-page/case-edit-page.component.ts", lineNumber:
|
|
12266
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(CaseEditPageComponent, { className: "CaseEditPageComponent", filePath: "lib/shared/components/case-editor/case-edit-page/case-edit-page.component.ts", lineNumber: 37 }); })();
|
|
12276
12267
|
|
|
12277
12268
|
class CallbackErrorsContext {
|
|
12278
12269
|
triggerText;
|
|
@@ -25367,7 +25358,7 @@ class FieldReadComponent extends AbstractFieldReadComponent {
|
|
|
25367
25358
|
type: ViewChild,
|
|
25368
25359
|
args: ['fieldContainer', { static: false, read: ViewContainerRef }]
|
|
25369
25360
|
}] }); })();
|
|
25370
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FieldReadComponent, { className: "FieldReadComponent", filePath: "lib/shared/components/palette/base-field/field-read.component.ts", lineNumber:
|
|
25361
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FieldReadComponent, { className: "FieldReadComponent", filePath: "lib/shared/components/palette/base-field/field-read.component.ts", lineNumber: 16 }); })();
|
|
25371
25362
|
|
|
25372
25363
|
const _c0$y = ["fieldContainer"];
|
|
25373
25364
|
const FIX_CASEFIELD_FOR = ['FixedList', 'DynamicList', 'DynamicMultiSelectList'];
|
|
@@ -29729,24 +29720,22 @@ class UpdateFlagTitleDisplayPipe extends AsyncPipe {
|
|
|
29729
29720
|
|
|
29730
29721
|
const _c0$l = (a0, a1, a2) => [a0, false, undefined, true, a1, a2];
|
|
29731
29722
|
function ReadComplexFieldRawComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
29732
|
-
i0.ɵɵelementContainerStart(0)
|
|
29733
|
-
i0.ɵɵelementStart(
|
|
29734
|
-
i0.ɵɵtext(
|
|
29735
|
-
i0.ɵɵpipe(
|
|
29723
|
+
i0.ɵɵelementContainerStart(0);
|
|
29724
|
+
i0.ɵɵelementStart(1, "dt", 2)(2, "span", 3);
|
|
29725
|
+
i0.ɵɵtext(3);
|
|
29726
|
+
i0.ɵɵpipe(4, "rpxTranslate");
|
|
29736
29727
|
i0.ɵɵelementEnd()();
|
|
29737
|
-
i0.ɵɵelementStart(
|
|
29738
|
-
i0.ɵɵelement(
|
|
29728
|
+
i0.ɵɵelementStart(5, "dd", 2);
|
|
29729
|
+
i0.ɵɵelement(6, "ccd-field-read", 4);
|
|
29739
29730
|
i0.ɵɵelementEnd();
|
|
29740
|
-
i0.ɵɵelementContainerEnd()
|
|
29731
|
+
i0.ɵɵelementContainerEnd();
|
|
29741
29732
|
} if (rf & 2) {
|
|
29742
29733
|
const field_r1 = ctx.$implicit;
|
|
29743
29734
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
29744
29735
|
i0.ɵɵadvance();
|
|
29745
|
-
i0.ɵɵproperty("caseField", field_r1)("formGroup", ctx_r1.topLevelFormGroup)("contextFields", ctx_r1.caseFields);
|
|
29746
|
-
i0.ɵɵadvance();
|
|
29747
29736
|
i0.ɵɵproperty("hidden", field_r1.hidden || field_r1.field_type.type === "Label");
|
|
29748
29737
|
i0.ɵɵadvance(2);
|
|
29749
|
-
i0.ɵɵtextInterpolate(ctx_r1.isTranslatable(field_r1) ? i0.ɵɵpipeBind1(
|
|
29738
|
+
i0.ɵɵtextInterpolate(ctx_r1.isTranslatable(field_r1) ? i0.ɵɵpipeBind1(4, 8, field_r1.label) : field_r1.label);
|
|
29750
29739
|
i0.ɵɵadvance(2);
|
|
29751
29740
|
i0.ɵɵproperty("hidden", field_r1.hidden);
|
|
29752
29741
|
i0.ɵɵadvance();
|
|
@@ -29759,9 +29748,9 @@ function ReadComplexFieldRawComponent_ng_container_1_Template(rf, ctx) { if (rf
|
|
|
29759
29748
|
class ReadComplexFieldRawComponent extends AbstractFieldReadComponent {
|
|
29760
29749
|
caseFields = [];
|
|
29761
29750
|
static ɵfac = /*@__PURE__*/ (() => { let ɵReadComplexFieldRawComponent_BaseFactory; return function ReadComplexFieldRawComponent_Factory(__ngFactoryType__) { return (ɵReadComplexFieldRawComponent_BaseFactory || (ɵReadComplexFieldRawComponent_BaseFactory = i0.ɵɵgetInheritedFactory(ReadComplexFieldRawComponent)))(__ngFactoryType__ || ReadComplexFieldRawComponent); }; })();
|
|
29762
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ReadComplexFieldRawComponent, selectors: [["ccd-read-complex-field-raw"]], inputs: { caseFields: "caseFields" }, standalone: false, features: [i0.ɵɵInheritDefinitionFeature], decls: 3, vars: 12, consts: [[1, "complex-raw"], [4, "ngFor", "ngForOf"], [
|
|
29751
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ReadComplexFieldRawComponent, selectors: [["ccd-read-complex-field-raw"]], inputs: { caseFields: "caseFields" }, standalone: false, features: [i0.ɵɵInheritDefinitionFeature], decls: 3, vars: 12, consts: [[1, "complex-raw"], [4, "ngFor", "ngForOf"], [3, "hidden"], [1, "text-16"], [3, "caseField", "context", "caseFields", "topLevelFormGroup", "idPrefix"]], template: function ReadComplexFieldRawComponent_Template(rf, ctx) { if (rf & 1) {
|
|
29763
29752
|
i0.ɵɵelementStart(0, "dl", 0);
|
|
29764
|
-
i0.ɵɵtemplate(1, ReadComplexFieldRawComponent_ng_container_1_Template,
|
|
29753
|
+
i0.ɵɵtemplate(1, ReadComplexFieldRawComponent_ng_container_1_Template, 7, 10, "ng-container", 1);
|
|
29765
29754
|
i0.ɵɵpipe(2, "ccdReadFieldsFilter");
|
|
29766
29755
|
i0.ɵɵelementEnd();
|
|
29767
29756
|
} if (rf & 2) {
|
|
@@ -29771,17 +29760,17 @@ class ReadComplexFieldRawComponent extends AbstractFieldReadComponent {
|
|
|
29771
29760
|
}
|
|
29772
29761
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReadComplexFieldRawComponent, [{
|
|
29773
29762
|
type: Component,
|
|
29774
|
-
args: [{ selector: 'ccd-read-complex-field-raw', standalone: false, template: "<dl class=\"complex-raw\">\n <ng-container *ngFor=\"let field of caseField | ccdReadFieldsFilter:false :undefined :true :topLevelFormGroup :id()\">\n
|
|
29763
|
+
args: [{ selector: 'ccd-read-complex-field-raw', standalone: false, template: "<dl class=\"complex-raw\">\n <ng-container *ngFor=\"let field of caseField | ccdReadFieldsFilter:false :undefined :true :topLevelFormGroup :id()\">\n <dt [hidden]=\"field.hidden || field.field_type.type === 'Label'\"><span class=\"text-16\">{{isTranslatable(field) ? (field.label | rpxTranslate) : field.label}}</span></dt>\n <dd [hidden]=\"field.hidden\">\n <ccd-field-read [caseField]=\"field\" [context]=\"context\" [caseFields]=\"caseFields\" [topLevelFormGroup]=\"topLevelFormGroup\" [idPrefix]=\"idPrefix\"></ccd-field-read>\n </dd>\n </ng-container>\n</dl>\n", styles: ["dl.complex-raw{list-style-type:none;margin:5px 0 10px}dl.complex-raw dl.complex-raw{padding-left:2ch}dl.complex-raw dt{font-weight:700}\n"] }]
|
|
29775
29764
|
}], null, { caseFields: [{
|
|
29776
29765
|
type: Input
|
|
29777
29766
|
}] }); })();
|
|
29778
29767
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ReadComplexFieldRawComponent, { className: "ReadComplexFieldRawComponent", filePath: "lib/shared/components/palette/complex/read-complex-field-raw.component.ts", lineNumber: 17 }); })();
|
|
29779
29768
|
|
|
29780
29769
|
const _c0$k = (a0, a1, a2, a3) => [a0, false, undefined, true, a1, a2, a3];
|
|
29781
|
-
function
|
|
29770
|
+
function ReadComplexFieldTableComponent_ng_container_9_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
29782
29771
|
i0.ɵɵelementContainerStart(0);
|
|
29783
|
-
i0.ɵɵelementStart(1, "tr",
|
|
29784
|
-
i0.ɵɵelement(4, "ccd-field-read",
|
|
29772
|
+
i0.ɵɵelementStart(1, "tr", 7)(2, "td", 8)(3, "span", 3);
|
|
29773
|
+
i0.ɵɵelement(4, "ccd-field-read", 9);
|
|
29785
29774
|
i0.ɵɵelementEnd()()();
|
|
29786
29775
|
i0.ɵɵelementContainerEnd();
|
|
29787
29776
|
} if (rf & 2) {
|
|
@@ -29792,13 +29781,13 @@ function ReadComplexFieldTableComponent_ng_container_9_ng_container_2_Template(r
|
|
|
29792
29781
|
i0.ɵɵadvance(3);
|
|
29793
29782
|
i0.ɵɵproperty("topLevelFormGroup", ctx_r1.topLevelFormGroup)("caseFields", ctx_r1.caseFields)("caseField", field_r1)("context", ctx_r1.context);
|
|
29794
29783
|
} }
|
|
29795
|
-
function
|
|
29796
|
-
i0.ɵɵelementStart(0, "tr",
|
|
29784
|
+
function ReadComplexFieldTableComponent_ng_container_9_ng_template_3_Template(rf, ctx) { if (rf & 1) {
|
|
29785
|
+
i0.ɵɵelementStart(0, "tr", 10)(1, "th", 11)(2, "span", 3);
|
|
29797
29786
|
i0.ɵɵtext(3);
|
|
29798
29787
|
i0.ɵɵpipe(4, "rpxTranslate");
|
|
29799
29788
|
i0.ɵɵelementEnd()();
|
|
29800
29789
|
i0.ɵɵelementStart(5, "td")(6, "span", 3);
|
|
29801
|
-
i0.ɵɵelement(7, "ccd-field-read",
|
|
29790
|
+
i0.ɵɵelement(7, "ccd-field-read", 9);
|
|
29802
29791
|
i0.ɵɵelementEnd()()();
|
|
29803
29792
|
} if (rf & 2) {
|
|
29804
29793
|
const field_r1 = i0.ɵɵnextContext().$implicit;
|
|
@@ -29810,19 +29799,16 @@ function ReadComplexFieldTableComponent_ng_container_9_ng_template_4_Template(rf
|
|
|
29810
29799
|
i0.ɵɵproperty("topLevelFormGroup", ctx_r1.topLevelFormGroup)("caseFields", ctx_r1.caseFields)("caseField", field_r1)("context", ctx_r1.context);
|
|
29811
29800
|
} }
|
|
29812
29801
|
function ReadComplexFieldTableComponent_ng_container_9_Template(rf, ctx) { if (rf & 1) {
|
|
29813
|
-
i0.ɵɵelementContainerStart(0)
|
|
29814
|
-
i0.ɵɵtemplate(
|
|
29815
|
-
i0.ɵɵpipe(
|
|
29816
|
-
i0.ɵɵtemplate(
|
|
29817
|
-
i0.ɵɵelementContainerEnd()
|
|
29802
|
+
i0.ɵɵelementContainerStart(0);
|
|
29803
|
+
i0.ɵɵtemplate(1, ReadComplexFieldTableComponent_ng_container_9_ng_container_1_Template, 5, 5, "ng-container", 6);
|
|
29804
|
+
i0.ɵɵpipe(2, "ccdIsCompound");
|
|
29805
|
+
i0.ɵɵtemplate(3, ReadComplexFieldTableComponent_ng_container_9_ng_template_3_Template, 8, 8, "ng-template", null, 0, i0.ɵɵtemplateRefExtractor);
|
|
29806
|
+
i0.ɵɵelementContainerEnd();
|
|
29818
29807
|
} if (rf & 2) {
|
|
29819
29808
|
const field_r1 = ctx.$implicit;
|
|
29820
|
-
const SimpleRow_r3 = i0.ɵɵreference(
|
|
29821
|
-
const ctx_r1 = i0.ɵɵnextContext();
|
|
29822
|
-
i0.ɵɵadvance();
|
|
29823
|
-
i0.ɵɵproperty("caseField", field_r1)("formGroup", ctx_r1.topLevelFormGroup)("contextFields", ctx_r1.caseFields);
|
|
29809
|
+
const SimpleRow_r3 = i0.ɵɵreference(4);
|
|
29824
29810
|
i0.ɵɵadvance();
|
|
29825
|
-
i0.ɵɵproperty("ngIf", i0.ɵɵpipeBind1(
|
|
29811
|
+
i0.ɵɵproperty("ngIf", i0.ɵɵpipeBind1(2, 2, field_r1))("ngIfElse", SimpleRow_r3);
|
|
29826
29812
|
} }
|
|
29827
29813
|
class ReadComplexFieldTableComponent extends AbstractFieldReadComponent {
|
|
29828
29814
|
// parent_ can be replaced with any ***_ - underscore is only important character
|
|
@@ -29843,7 +29829,7 @@ class ReadComplexFieldTableComponent extends AbstractFieldReadComponent {
|
|
|
29843
29829
|
this.path = ReadComplexFieldTableComponent.DUMMY_STRING_PRE + this.idPrefix + ReadComplexFieldTableComponent.DUMMY_STRING_POST;
|
|
29844
29830
|
}
|
|
29845
29831
|
static ɵfac = /*@__PURE__*/ (() => { let ɵReadComplexFieldTableComponent_BaseFactory; return function ReadComplexFieldTableComponent_Factory(__ngFactoryType__) { return (ɵReadComplexFieldTableComponent_BaseFactory || (ɵReadComplexFieldTableComponent_BaseFactory = i0.ɵɵgetInheritedFactory(ReadComplexFieldTableComponent)))(__ngFactoryType__ || ReadComplexFieldTableComponent); }; })();
|
|
29846
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ReadComplexFieldTableComponent, selectors: [["ccd-read-complex-field-table"]], inputs: { caseFields: "caseFields" }, standalone: false, features: [i0.ɵɵInheritDefinitionFeature], decls: 11, vars: 17, consts: [["SimpleRow", ""], [1, "complex-panel"], [1, "complex-panel-title"], [1, "text-16"], ["aria-describedby", "complex field table", 1, "complex-panel-table"], [4, "ngFor", "ngForOf"], [
|
|
29832
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ReadComplexFieldTableComponent, selectors: [["ccd-read-complex-field-table"]], inputs: { caseFields: "caseFields" }, standalone: false, features: [i0.ɵɵInheritDefinitionFeature], decls: 11, vars: 17, consts: [["SimpleRow", ""], [1, "complex-panel"], [1, "complex-panel-title"], [1, "text-16"], ["aria-describedby", "complex field table", 1, "complex-panel-table"], [4, "ngFor", "ngForOf"], [4, "ngIf", "ngIfElse"], [1, "complex-panel-compound-field", 3, "hidden"], ["colspan", "2"], [3, "topLevelFormGroup", "caseFields", "caseField", "context"], [1, "complex-panel-simple-field", 3, "hidden"], ["id", "complex-panel-simple-field-label"]], template: function ReadComplexFieldTableComponent_Template(rf, ctx) { if (rf & 1) {
|
|
29847
29833
|
i0.ɵɵelementStart(0, "div", 1)(1, "dl", 2)(2, "dt")(3, "span", 3);
|
|
29848
29834
|
i0.ɵɵtext(4);
|
|
29849
29835
|
i0.ɵɵpipe(5, "rpxTranslate");
|
|
@@ -29851,7 +29837,7 @@ class ReadComplexFieldTableComponent extends AbstractFieldReadComponent {
|
|
|
29851
29837
|
i0.ɵɵelement(6, "dd");
|
|
29852
29838
|
i0.ɵɵelementEnd();
|
|
29853
29839
|
i0.ɵɵelementStart(7, "table", 4)(8, "tbody");
|
|
29854
|
-
i0.ɵɵtemplate(9, ReadComplexFieldTableComponent_ng_container_9_Template,
|
|
29840
|
+
i0.ɵɵtemplate(9, ReadComplexFieldTableComponent_ng_container_9_Template, 5, 4, "ng-container", 5);
|
|
29855
29841
|
i0.ɵɵpipe(10, "ccdReadFieldsFilter");
|
|
29856
29842
|
i0.ɵɵelementEnd()()();
|
|
29857
29843
|
} if (rf & 2) {
|
|
@@ -29863,7 +29849,7 @@ class ReadComplexFieldTableComponent extends AbstractFieldReadComponent {
|
|
|
29863
29849
|
}
|
|
29864
29850
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReadComplexFieldTableComponent, [{
|
|
29865
29851
|
type: Component,
|
|
29866
|
-
args: [{ selector: 'ccd-read-complex-field-table', standalone: false, template: "<div class=\"complex-panel\">\n <dl class=\"complex-panel-title\"><dt><span class=\"text-16\">{{caseField.label | rpxTranslate}}</span></dt><dd></dd></dl>\n <table class=\"complex-panel-table\" aria-describedby=\"complex field table\">\n <tbody>\n <ng-container *ngFor=\"let field of caseField | ccdReadFieldsFilter:false :undefined :true :topLevelFormGroup :path :idPrefix\">\n <ng-container
|
|
29852
|
+
args: [{ selector: 'ccd-read-complex-field-table', standalone: false, template: "<div class=\"complex-panel\">\n <dl class=\"complex-panel-title\"><dt><span class=\"text-16\">{{caseField.label | rpxTranslate}}</span></dt><dd></dd></dl>\n <table class=\"complex-panel-table\" aria-describedby=\"complex field table\">\n <tbody>\n <ng-container *ngFor=\"let field of caseField | ccdReadFieldsFilter:false :undefined :true :topLevelFormGroup :path :idPrefix\">\n <ng-container *ngIf=\"(field | ccdIsCompound); else SimpleRow\">\n <tr class=\"complex-panel-compound-field\" [hidden]=\"field.hidden\">\n <td colspan=\"2\">\n <span class=\"text-16\">\n <ccd-field-read [topLevelFormGroup]=\"topLevelFormGroup\" [caseFields]=\"caseFields\"\n [caseField]=\"field\" [context]=\"context\"></ccd-field-read>\n </span>\n </td>\n </tr>\n </ng-container>\n <ng-template #SimpleRow>\n <tr class=\"complex-panel-simple-field\" [hidden]=\"field.hidden\">\n <th id=\"complex-panel-simple-field-label\"><span class=\"text-16\">{{field.label | rpxTranslate}}</span></th>\n <td>\n <span class=\"text-16\">\n <ccd-field-read [topLevelFormGroup]=\"topLevelFormGroup\" [caseFields]=\"caseFields\"\n [caseField]=\"field\" [context]=\"context\"></ccd-field-read>\n </span>\n </td>\n </tr>\n </ng-template>\n </ng-container>\n </tbody>\n </table>\n</div>\n", styles: [".complex-panel{margin:13px 0;border:1px solid #bfc1c3}.complex-panel .complex-panel-title{background-color:#dee0e2;padding:5px 5px 2px;border-bottom:1px solid #bfc1c3;display:block;color:#0b0c0c;font-family:nta,Arial,sans-serif;font-weight:700;text-transform:none;font-size:16px;line-height:1.25}@media(min-width:641px){.complex-panel .complex-panel-title{font-size:19px;line-height:1.3157894737}}.complex-panel .complex-panel-table>tbody>tr>th{vertical-align:top}.complex-panel .complex-panel-table>tbody>tr:last-child>th,.complex-panel .complex-panel-table>tbody>tr:last-child>td{border-bottom:none}.complex-panel .complex-panel-simple-field th{padding-left:5px;width:295px}.complex-panel .complex-panel-compound-field td{padding:5px}\n"] }]
|
|
29867
29853
|
}], null, { caseFields: [{
|
|
29868
29854
|
type: Input
|
|
29869
29855
|
}] }); })();
|
|
@@ -32643,8 +32629,8 @@ i0.ɵɵsetComponentScope(ReadOrderSummaryRowComponent, function () { return [Rea
|
|
|
32643
32629
|
i0.ɵɵsetComponentScope(ReadComplexFieldComponent, function () { return [i4.NgSwitch, i4.NgSwitchCase, i4.NgSwitchDefault, ReadComplexFieldRawComponent,
|
|
32644
32630
|
ReadComplexFieldTableComponent,
|
|
32645
32631
|
ReadComplexFieldCollectionTableComponent]; }, []);
|
|
32646
|
-
i0.ɵɵsetComponentScope(ReadComplexFieldRawComponent, function () { return [i4.NgForOf,
|
|
32647
|
-
i0.ɵɵsetComponentScope(ReadComplexFieldTableComponent, function () { return [i4.NgForOf, i4.NgIf,
|
|
32632
|
+
i0.ɵɵsetComponentScope(ReadComplexFieldRawComponent, function () { return [i4.NgForOf, FieldReadComponent]; }, function () { return [ReadFieldsFilterPipe, i1.RpxTranslatePipe]; });
|
|
32633
|
+
i0.ɵɵsetComponentScope(ReadComplexFieldTableComponent, function () { return [i4.NgForOf, i4.NgIf, FieldReadComponent]; }, function () { return [IsCompoundPipe, ReadFieldsFilterPipe, i1.RpxTranslatePipe]; });
|
|
32648
32634
|
i0.ɵɵsetComponentScope(ReadComplexFieldCollectionTableComponent, function () { return [i4.NgForOf, i4.NgIf, FieldReadComponent,
|
|
32649
32635
|
ReadCaseLinkFieldComponent]; }, function () { return [i4.KeyValuePipe, IsCompoundPipe, CcdCollectionTableCaseFieldsFilterPipe, ReadFieldsFilterPipe, i1.RpxTranslatePipe]; });
|
|
32650
32636
|
i0.ɵɵsetComponentScope(ReadCaseFlagFieldComponent, function () { return [i4.NgForOf, i4.NgIf, i4.NgSwitch, i4.NgSwitchCase, i4.NgSwitchDefault,
|