@hmcts/ccd-case-ui-toolkit 7.0.12 → 7.0.13
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/esm2020/lib/shared/commons/constants.mjs +2 -1
- package/esm2020/lib/shared/components/case-editor/case-edit/case-edit.component.mjs +12 -6
- package/esm2020/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.mjs +22 -9
- package/esm2020/lib/shared/components/palette/case-flag/write-case-flag-field.component.mjs +30 -26
- package/fesm2015/hmcts-ccd-case-ui-toolkit.mjs +60 -38
- package/fesm2015/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/fesm2020/hmcts-ccd-case-ui-toolkit.mjs +58 -36
- package/fesm2020/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/lib/shared/commons/constants.d.ts +1 -0
- package/lib/shared/commons/constants.d.ts.map +1 -1
- package/lib/shared/components/case-editor/case-edit/case-edit.component.d.ts +3 -2
- package/lib/shared/components/case-editor/case-edit/case-edit.component.d.ts.map +1 -1
- package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts +5 -2
- package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/write-case-flag-field.component.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -4529,6 +4529,7 @@ class Constants {
|
|
|
4529
4529
|
}
|
|
4530
4530
|
Constants.MANDATORY = 'MANDATORY';
|
|
4531
4531
|
Constants.REGEX_WHITESPACES = '^[^ ]+(?:\\s+[^ ]+)*$';
|
|
4532
|
+
Constants.TASK_COMPLETION_ERROR = 'The associated task for this event failed to complete automatically. Please complete the task manually in the Tasks tab on the case';
|
|
4532
4533
|
Constants.ɵfac = function Constants_Factory(t) { return new (t || Constants)(); };
|
|
4533
4534
|
Constants.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: Constants, factory: Constants.ɵfac });
|
|
4534
4535
|
(function () {
|
|
@@ -8954,7 +8955,7 @@ ValidPageListCaseFieldsService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({
|
|
|
8954
8955
|
})();
|
|
8955
8956
|
|
|
8956
8957
|
class CaseEditComponent {
|
|
8957
|
-
constructor(fb, caseNotifier, router, route, fieldsUtils, fieldsPurger, registrarService, wizardFactory, sessionStorageService, windowsService, formValueService, formErrorService, loadingService, validPageListCaseFieldsService, workAllocationService) {
|
|
8958
|
+
constructor(fb, caseNotifier, router, route, fieldsUtils, fieldsPurger, registrarService, wizardFactory, sessionStorageService, windowsService, formValueService, formErrorService, loadingService, validPageListCaseFieldsService, workAllocationService, alertService) {
|
|
8958
8959
|
this.fb = fb;
|
|
8959
8960
|
this.caseNotifier = caseNotifier;
|
|
8960
8961
|
this.router = router;
|
|
@@ -8970,6 +8971,7 @@ class CaseEditComponent {
|
|
|
8970
8971
|
this.loadingService = loadingService;
|
|
8971
8972
|
this.validPageListCaseFieldsService = validPageListCaseFieldsService;
|
|
8972
8973
|
this.workAllocationService = workAllocationService;
|
|
8974
|
+
this.alertService = alertService;
|
|
8973
8975
|
this.cancelled = new EventEmitter();
|
|
8974
8976
|
this.submitted = new EventEmitter();
|
|
8975
8977
|
this.isEventCompletionChecksRequired = false;
|
|
@@ -9258,6 +9260,7 @@ class CaseEditComponent {
|
|
|
9258
9260
|
const loadingSpinnerToken = this.loadingService.register();
|
|
9259
9261
|
// keep the initial event response to finalise process after task completion
|
|
9260
9262
|
let eventResponse;
|
|
9263
|
+
this.sessionStorageService.setItem('taskCompletionError', 'false');
|
|
9261
9264
|
submit(caseEventData).pipe(switchMap((response) => {
|
|
9262
9265
|
eventResponse = response;
|
|
9263
9266
|
return this.postCompleteTaskIfRequired();
|
|
@@ -9279,10 +9282,13 @@ class CaseEditComponent {
|
|
|
9279
9282
|
this.isSubmitting = false;
|
|
9280
9283
|
}
|
|
9281
9284
|
else {
|
|
9285
|
+
this.sessionStorageService.setItem('taskCompletionError', 'true');
|
|
9282
9286
|
// task assignment/completion error - handled within workallocation service
|
|
9283
9287
|
// could set task to be deleted (or completed later)?
|
|
9284
|
-
// note: think error messages only shown if user is caseworker - might reqauire changing
|
|
9285
9288
|
this.finishEventCompletionLogic(eventResponse);
|
|
9289
|
+
// below allows error to be shown on navigation to confirmation page
|
|
9290
|
+
this.alertService.setPreserveAlerts(true);
|
|
9291
|
+
this.alertService.error({ phrase: Constants.TASK_COMPLETION_ERROR });
|
|
9286
9292
|
}
|
|
9287
9293
|
});
|
|
9288
9294
|
}
|
|
@@ -9338,7 +9344,7 @@ class CaseEditComponent {
|
|
|
9338
9344
|
}
|
|
9339
9345
|
CaseEditComponent.ORIGIN_QUERY_PARAM = 'origin';
|
|
9340
9346
|
CaseEditComponent.ALERT_MESSAGE = 'Page is being refreshed so you will be redirected to the first page of this event.';
|
|
9341
|
-
CaseEditComponent.ɵfac = function CaseEditComponent_Factory(t) { return new (t || CaseEditComponent)(i0.ɵɵdirectiveInject(i3.FormBuilder), i0.ɵɵdirectiveInject(CaseNotifier), i0.ɵɵdirectiveInject(i1$1.Router), i0.ɵɵdirectiveInject(i1$1.ActivatedRoute), i0.ɵɵdirectiveInject(FieldsUtils), i0.ɵɵdirectiveInject(FieldsPurger), i0.ɵɵdirectiveInject(ConditionalShowRegistrarService), i0.ɵɵdirectiveInject(WizardFactoryService), i0.ɵɵdirectiveInject(SessionStorageService), i0.ɵɵdirectiveInject(WindowService), i0.ɵɵdirectiveInject(FormValueService), i0.ɵɵdirectiveInject(FormErrorService), i0.ɵɵdirectiveInject(LoadingService), i0.ɵɵdirectiveInject(ValidPageListCaseFieldsService), i0.ɵɵdirectiveInject(WorkAllocationService)); };
|
|
9347
|
+
CaseEditComponent.ɵfac = function CaseEditComponent_Factory(t) { return new (t || CaseEditComponent)(i0.ɵɵdirectiveInject(i3.FormBuilder), i0.ɵɵdirectiveInject(CaseNotifier), i0.ɵɵdirectiveInject(i1$1.Router), i0.ɵɵdirectiveInject(i1$1.ActivatedRoute), i0.ɵɵdirectiveInject(FieldsUtils), i0.ɵɵdirectiveInject(FieldsPurger), i0.ɵɵdirectiveInject(ConditionalShowRegistrarService), i0.ɵɵdirectiveInject(WizardFactoryService), i0.ɵɵdirectiveInject(SessionStorageService), i0.ɵɵdirectiveInject(WindowService), i0.ɵɵdirectiveInject(FormValueService), i0.ɵɵdirectiveInject(FormErrorService), i0.ɵɵdirectiveInject(LoadingService), i0.ɵɵdirectiveInject(ValidPageListCaseFieldsService), i0.ɵɵdirectiveInject(WorkAllocationService), i0.ɵɵdirectiveInject(AlertService)); };
|
|
9342
9348
|
CaseEditComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CaseEditComponent, selectors: [["ccd-case-edit"]], inputs: { eventTrigger: "eventTrigger", submit: "submit", validate: "validate", saveDraft: "saveDraft", caseDetails: "caseDetails" }, outputs: { cancelled: "cancelled", submitted: "submitted" }, features: [i0.ɵɵProvidersFeature([GreyBarService])], decls: 1, vars: 0, template: function CaseEditComponent_Template(rf, ctx) {
|
|
9343
9349
|
if (rf & 1) {
|
|
9344
9350
|
i0.ɵɵelement(0, "router-outlet");
|
|
@@ -9348,7 +9354,7 @@ CaseEditComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CaseEditC
|
|
|
9348
9354
|
(typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CaseEditComponent, [{
|
|
9349
9355
|
type: Component,
|
|
9350
9356
|
args: [{ selector: 'ccd-case-edit', providers: [GreyBarService], template: "<router-outlet></router-outlet>\n", styles: ["#fieldset-case-data{margin-bottom:30px}#fieldset-case-data th{width:1%;white-space:nowrap;vertical-align:top}.compound-field td{padding:0}#confirmation-header{width:630px;background-color:#17958b;border:solid 1px #979797;color:#fff;text-align:center}#confirmation-body{width:630px;background-color:#fff}.valign-top{vertical-align:top}.summary-fields{margin-bottom:30px}.summary-fields tbody tr th,.summary-fields tbody tr td{border-bottom:0px}a.disabled{pointer-events:none;cursor:default}.case-field-label{width:45%}.case-field-content{width:50%}.no-bottom-border{border-bottom:none}.case-field-change{width:5%}\n"] }]
|
|
9351
|
-
}], function () { return [{ type: i3.FormBuilder }, { type: CaseNotifier }, { type: i1$1.Router }, { type: i1$1.ActivatedRoute }, { type: FieldsUtils }, { type: FieldsPurger }, { type: ConditionalShowRegistrarService }, { type: WizardFactoryService }, { type: SessionStorageService }, { type: WindowService }, { type: FormValueService }, { type: FormErrorService }, { type: LoadingService }, { type: ValidPageListCaseFieldsService }, { type: WorkAllocationService }]; }, { eventTrigger: [{
|
|
9357
|
+
}], function () { return [{ type: i3.FormBuilder }, { type: CaseNotifier }, { type: i1$1.Router }, { type: i1$1.ActivatedRoute }, { type: FieldsUtils }, { type: FieldsPurger }, { type: ConditionalShowRegistrarService }, { type: WizardFactoryService }, { type: SessionStorageService }, { type: WindowService }, { type: FormValueService }, { type: FormErrorService }, { type: LoadingService }, { type: ValidPageListCaseFieldsService }, { type: WorkAllocationService }, { type: AlertService }]; }, { eventTrigger: [{
|
|
9352
9358
|
type: Input
|
|
9353
9359
|
}], submit: [{
|
|
9354
9360
|
type: Input
|
|
@@ -12087,7 +12093,7 @@ class WriteCaseFlagFieldComponent extends AbstractFieldWriteComponent {
|
|
|
12087
12093
|
// Extract all flags-related data from the CaseEventTrigger object in the snapshot data
|
|
12088
12094
|
if (this.route.snapshot.data.eventTrigger) {
|
|
12089
12095
|
// Get the HMCTSServiceId from supplementary data, if it exists (required for retrieving the available flag types in
|
|
12090
|
-
// the first instance, only falling back on case type ID or
|
|
12096
|
+
// the first instance, only falling back on case type ID or jurisdiction if it's not present)
|
|
12091
12097
|
if (this.route.snapshot.data.eventTrigger.supplementary_data
|
|
12092
12098
|
&& this.route.snapshot.data.eventTrigger.supplementary_data.HMCTSServiceId) {
|
|
12093
12099
|
this.hmctsServiceId = this.route.snapshot.data.eventTrigger.supplementary_data.HMCTSServiceId;
|
|
@@ -12442,33 +12448,37 @@ class WriteCaseFlagFieldComponent extends AbstractFieldWriteComponent {
|
|
|
12442
12448
|
this.flagCommentsOptional = true;
|
|
12443
12449
|
}
|
|
12444
12450
|
populateNewFlagDetailInstance() {
|
|
12445
|
-
var _a, _b, _c, _d, _e, _f
|
|
12446
|
-
const
|
|
12451
|
+
var _a, _b, _c, _d, _e, _f;
|
|
12452
|
+
const langSearchTerm = (_a = this.caseFlagParentFormGroup) === null || _a === void 0 ? void 0 : _a.value['languageSearchTerm'];
|
|
12453
|
+
const manualLangEntry = (_b = this.caseFlagParentFormGroup) === null || _b === void 0 ? void 0 : _b.value['manualLanguageEntry'];
|
|
12454
|
+
const flagType = (_c = this.caseFlagParentFormGroup) === null || _c === void 0 ? void 0 : _c.value['flagType'];
|
|
12455
|
+
const otherDesc = (_d = this.caseFlagParentFormGroup) === null || _d === void 0 ? void 0 : _d.value['otherDescription'];
|
|
12456
|
+
const formValues = (_e = this.caseFlagParentFormGroup) === null || _e === void 0 ? void 0 : _e.value;
|
|
12447
12457
|
return {
|
|
12448
|
-
name: (
|
|
12449
|
-
name_cy:
|
|
12458
|
+
name: (_f = this.flagType) === null || _f === void 0 ? void 0 : _f.name,
|
|
12459
|
+
name_cy: flagType === null || flagType === void 0 ? void 0 : flagType.name_cy,
|
|
12450
12460
|
// Currently, subTypeValue, subTypeValue_cy and subTypeKey are applicable only to language flag types
|
|
12451
|
-
subTypeValue:
|
|
12452
|
-
?
|
|
12453
|
-
:
|
|
12454
|
-
?
|
|
12461
|
+
subTypeValue: langSearchTerm && this.rpxTranslationService.language === 'en'
|
|
12462
|
+
? langSearchTerm.value
|
|
12463
|
+
: manualLangEntry && this.rpxTranslationService.language === 'en'
|
|
12464
|
+
? manualLangEntry
|
|
12455
12465
|
: null,
|
|
12456
|
-
subTypeValue_cy:
|
|
12457
|
-
?
|
|
12458
|
-
:
|
|
12459
|
-
?
|
|
12466
|
+
subTypeValue_cy: langSearchTerm && this.rpxTranslationService.language === 'cy'
|
|
12467
|
+
? langSearchTerm === null || langSearchTerm === void 0 ? void 0 : langSearchTerm.value_cy
|
|
12468
|
+
: manualLangEntry && this.rpxTranslationService.language === 'cy'
|
|
12469
|
+
? manualLangEntry
|
|
12460
12470
|
: null,
|
|
12461
12471
|
// For user-entered (i.e. non-Reference Data) languages, there is no key
|
|
12462
|
-
subTypeKey:
|
|
12463
|
-
?
|
|
12472
|
+
subTypeKey: langSearchTerm
|
|
12473
|
+
? langSearchTerm.key
|
|
12464
12474
|
: null,
|
|
12465
|
-
otherDescription: (
|
|
12466
|
-
|
|
12467
|
-
?
|
|
12475
|
+
otherDescription: (flagType === null || flagType === void 0 ? void 0 : flagType.flagCode) === this.otherFlagTypeCode &&
|
|
12476
|
+
otherDesc && this.rpxTranslationService.language === 'en'
|
|
12477
|
+
? otherDesc
|
|
12468
12478
|
: null,
|
|
12469
|
-
otherDescription_cy: (
|
|
12470
|
-
|
|
12471
|
-
?
|
|
12479
|
+
otherDescription_cy: (flagType === null || flagType === void 0 ? void 0 : flagType.flagCode) === this.otherFlagTypeCode &&
|
|
12480
|
+
otherDesc && this.rpxTranslationService.language === 'cy'
|
|
12481
|
+
? otherDesc
|
|
12472
12482
|
: null,
|
|
12473
12483
|
flagComment: this.rpxTranslationService.language === 'en'
|
|
12474
12484
|
? formValues === null || formValues === void 0 ? void 0 : formValues.flagComments
|
|
@@ -12478,18 +12488,18 @@ class WriteCaseFlagFieldComponent extends AbstractFieldWriteComponent {
|
|
|
12478
12488
|
: null,
|
|
12479
12489
|
flagUpdateComment: formValues === null || formValues === void 0 ? void 0 : formValues.statusReason,
|
|
12480
12490
|
dateTimeCreated: new Date().toISOString(),
|
|
12481
|
-
path: (
|
|
12482
|
-
(
|
|
12483
|
-
hearingRelevant: (
|
|
12484
|
-
flagCode:
|
|
12491
|
+
path: (flagType === null || flagType === void 0 ? void 0 : flagType.Path) &&
|
|
12492
|
+
(flagType === null || flagType === void 0 ? void 0 : flagType.Path.map(pathValue => Object.assign({ id: null, value: pathValue }))),
|
|
12493
|
+
hearingRelevant: (flagType === null || flagType === void 0 ? void 0 : flagType.hearingRelevant) ? 'Yes' : 'No',
|
|
12494
|
+
flagCode: flagType === null || flagType === void 0 ? void 0 : flagType.flagCode,
|
|
12485
12495
|
// Status should be set to whatever the default is for this flag type, if flag is being created by an external
|
|
12486
12496
|
// user, otherwise it should be set to "Active" if Case Flags v2.1 is NOT enabled, or the selected status if it is
|
|
12487
12497
|
status: this.isDisplayContextParameterExternal
|
|
12488
|
-
?
|
|
12498
|
+
? flagType === null || flagType === void 0 ? void 0 : flagType.defaultStatus
|
|
12489
12499
|
: !this.isDisplayContextParameter2Point1Enabled
|
|
12490
12500
|
? CaseFlagStatus.ACTIVE
|
|
12491
12501
|
: CaseFlagStatus[formValues === null || formValues === void 0 ? void 0 : formValues.selectedStatus],
|
|
12492
|
-
availableExternally: (
|
|
12502
|
+
availableExternally: (flagType === null || flagType === void 0 ? void 0 : flagType.externallyAvailable) ? 'Yes' : 'No'
|
|
12493
12503
|
};
|
|
12494
12504
|
}
|
|
12495
12505
|
moveToFinalReviewStage() {
|
|
@@ -32629,7 +32639,7 @@ function CaseEventTriggerComponent_div_0_Template(rf, ctx) {
|
|
|
32629
32639
|
}
|
|
32630
32640
|
}
|
|
32631
32641
|
class CaseEventTriggerComponent {
|
|
32632
|
-
constructor(ngZone, casesService, caseNotifier, router, alertService, route, caseReferencePipe, activityPollingService) {
|
|
32642
|
+
constructor(ngZone, casesService, caseNotifier, router, alertService, route, caseReferencePipe, activityPollingService, sessionStorageService) {
|
|
32633
32643
|
this.ngZone = ngZone;
|
|
32634
32644
|
this.casesService = casesService;
|
|
32635
32645
|
this.caseNotifier = caseNotifier;
|
|
@@ -32638,6 +32648,7 @@ class CaseEventTriggerComponent {
|
|
|
32638
32648
|
this.route = route;
|
|
32639
32649
|
this.caseReferencePipe = caseReferencePipe;
|
|
32640
32650
|
this.activityPollingService = activityPollingService;
|
|
32651
|
+
this.sessionStorageService = sessionStorageService;
|
|
32641
32652
|
this.BANNER = DisplayMode.BANNER;
|
|
32642
32653
|
}
|
|
32643
32654
|
ngOnInit() {
|
|
@@ -32687,21 +32698,30 @@ class CaseEventTriggerComponent {
|
|
|
32687
32698
|
}
|
|
32688
32699
|
submitted(event) {
|
|
32689
32700
|
const eventStatus = event['status'];
|
|
32701
|
+
const taskCompletionFailed = this.sessionStorageService.getItem('taskCompletionError') === 'true';
|
|
32690
32702
|
this.router
|
|
32691
32703
|
.navigate([this.parentUrl])
|
|
32692
32704
|
.then(() => {
|
|
32693
32705
|
const caseReference = this.caseReferencePipe.transform(this.caseDetails.case_id.toString());
|
|
32694
32706
|
const replacements = { CASEREFERENCE: caseReference, NAME: this.eventTrigger.name };
|
|
32695
|
-
|
|
32707
|
+
this.alertService.setPreserveAlerts(true);
|
|
32708
|
+
if (taskCompletionFailed) {
|
|
32709
|
+
// if task still present in session storage, we know that the task has not been correctly completed
|
|
32710
|
+
this.alertService.warning({
|
|
32711
|
+
phrase: CaseEventTriggerComponent.EVENT_COMPLETION_MESSAGE + '. ' + Constants.TASK_COMPLETION_ERROR,
|
|
32712
|
+
replacements
|
|
32713
|
+
});
|
|
32714
|
+
this.sessionStorageService.removeItem('taskCompletionError');
|
|
32715
|
+
}
|
|
32716
|
+
else if (EventStatusService.isIncomplete(eventStatus)) {
|
|
32696
32717
|
this.alertService.warning({
|
|
32697
|
-
phrase:
|
|
32698
|
-
but the callback service cannot be completed`,
|
|
32718
|
+
phrase: CaseEventTriggerComponent.EVENT_COMPLETION_MESSAGE + CaseEventTriggerComponent.CALLBACK_FAILED_MESSAGE,
|
|
32699
32719
|
replacements
|
|
32700
32720
|
});
|
|
32701
32721
|
}
|
|
32702
32722
|
else {
|
|
32703
32723
|
this.alertService.success({
|
|
32704
|
-
phrase:
|
|
32724
|
+
phrase: CaseEventTriggerComponent.EVENT_COMPLETION_MESSAGE,
|
|
32705
32725
|
replacements,
|
|
32706
32726
|
preserve: true
|
|
32707
32727
|
});
|
|
@@ -32720,7 +32740,9 @@ class CaseEventTriggerComponent {
|
|
|
32720
32740
|
return !!(this.eventTrigger && this.caseDetails);
|
|
32721
32741
|
}
|
|
32722
32742
|
}
|
|
32723
|
-
CaseEventTriggerComponent
|
|
32743
|
+
CaseEventTriggerComponent.EVENT_COMPLETION_MESSAGE = `Case #%CASEREFERENCE% has been updated with event: %NAME%`;
|
|
32744
|
+
CaseEventTriggerComponent.CALLBACK_FAILED_MESSAGE = ' but the callback service cannot be completed';
|
|
32745
|
+
CaseEventTriggerComponent.ɵfac = function CaseEventTriggerComponent_Factory(t) { return new (t || CaseEventTriggerComponent)(i0.ɵɵdirectiveInject(i0.NgZone), i0.ɵɵdirectiveInject(CasesService), i0.ɵɵdirectiveInject(CaseNotifier), i0.ɵɵdirectiveInject(i1$1.Router), i0.ɵɵdirectiveInject(AlertService), i0.ɵɵdirectiveInject(i1$1.ActivatedRoute), i0.ɵɵdirectiveInject(CaseReferencePipe), i0.ɵɵdirectiveInject(ActivityPollingService), i0.ɵɵdirectiveInject(SessionStorageService)); };
|
|
32724
32746
|
CaseEventTriggerComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CaseEventTriggerComponent, selectors: [["ccd-case-event-trigger"]], decls: 1, vars: 1, consts: [["class", "screen-990", 4, "ngIf"], [1, "screen-990"], [3, "caseId", "displayMode"], [3, "caseDetails", "submit", "validate", "eventTrigger", "cancelled", "submitted"]], template: function CaseEventTriggerComponent_Template(rf, ctx) {
|
|
32725
32747
|
if (rf & 1) {
|
|
32726
32748
|
i0.ɵɵtemplate(0, CaseEventTriggerComponent_div_0_Template, 3, 6, "div", 0);
|
|
@@ -32733,7 +32755,7 @@ CaseEventTriggerComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: C
|
|
|
32733
32755
|
(typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CaseEventTriggerComponent, [{
|
|
32734
32756
|
type: Component,
|
|
32735
32757
|
args: [{ selector: 'ccd-case-event-trigger', template: "<div *ngIf=\"isDataLoaded()\" class=\"screen-990\">\n <ccd-activity [caseId]=\"caseDetails.case_id\" [displayMode]=\"BANNER\"></ccd-activity>\n <ccd-case-edit [caseDetails]=\"caseDetails\"\n [submit]=\"submit()\"\n [validate]=\"validate()\"\n [eventTrigger]=\"eventTrigger\"\n (cancelled)=\"cancel()\"\n (submitted)=\"submitted($event)\"></ccd-case-edit>\n</div>\n" }]
|
|
32736
|
-
}], function () { return [{ type: i0.NgZone }, { type: CasesService }, { type: CaseNotifier }, { type: i1$1.Router }, { type: AlertService }, { type: i1$1.ActivatedRoute }, { type: CaseReferencePipe }, { type: ActivityPollingService }]; }, null);
|
|
32758
|
+
}], function () { return [{ type: i0.NgZone }, { type: CasesService }, { type: CaseNotifier }, { type: i1$1.Router }, { type: AlertService }, { type: i1$1.ActivatedRoute }, { type: CaseReferencePipe }, { type: ActivityPollingService }, { type: SessionStorageService }]; }, null);
|
|
32737
32759
|
})();
|
|
32738
32760
|
|
|
32739
32761
|
function CaseViewComponent_div_0_Template(rf, ctx) {
|