@hmcts/ccd-case-ui-toolkit 7.0.74 → 7.0.76-language-client-context
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-editor/case-edit/case-edit.component.mjs +1 -5
- package/esm2022/lib/shared/components/case-editor/services/cases.service.mjs +1 -3
- package/esm2022/lib/shared/components/case-editor/services/page-validation.service.mjs +2 -2
- package/esm2022/lib/shared/components/event-start/event-guard/event-start.guard.mjs +25 -5
- package/esm2022/lib/shared/components/event-start/event-start.component.mjs +11 -6
- package/esm2022/lib/shared/components/event-start/models/event-start-state-machine-context.model.mjs +1 -1
- package/esm2022/lib/shared/components/event-start/services/event-start-state-machine.service.mjs +5 -1
- package/esm2022/lib/shared/components/palette/date/read-date-field.component.mjs +3 -3
- package/esm2022/lib/shared/services/cookie/index.mjs +2 -0
- package/esm2022/lib/shared/services/cookie/read-cookie-service.mjs +28 -0
- package/esm2022/lib/shared/services/index.mjs +2 -1
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs +64 -18
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/lib/shared/components/case-editor/case-edit/case-edit.component.d.ts.map +1 -1
- package/lib/shared/components/case-editor/services/cases.service.d.ts.map +1 -1
- package/lib/shared/components/event-start/event-guard/event-start.guard.d.ts +3 -2
- package/lib/shared/components/event-start/event-guard/event-start.guard.d.ts.map +1 -1
- package/lib/shared/components/event-start/event-start.component.d.ts +3 -1
- package/lib/shared/components/event-start/event-start.component.d.ts.map +1 -1
- package/lib/shared/components/event-start/models/event-start-state-machine-context.model.d.ts +2 -1
- package/lib/shared/components/event-start/models/event-start-state-machine-context.model.d.ts.map +1 -1
- package/lib/shared/components/event-start/services/event-start-state-machine.service.d.ts.map +1 -1
- package/lib/shared/services/cookie/index.d.ts +2 -0
- package/lib/shared/services/cookie/index.d.ts.map +1 -0
- package/lib/shared/services/cookie/read-cookie-service.d.ts +9 -0
- package/lib/shared/services/cookie/read-cookie-service.d.ts.map +1 -0
- package/lib/shared/services/index.d.ts +1 -0
- package/lib/shared/services/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -6872,6 +6872,31 @@ var RefdataCaseFlagType;
|
|
|
6872
6872
|
RefdataCaseFlagType["CASE"] = "CASE";
|
|
6873
6873
|
})(RefdataCaseFlagType || (RefdataCaseFlagType = {}));
|
|
6874
6874
|
|
|
6875
|
+
class ReadCookieService {
|
|
6876
|
+
document;
|
|
6877
|
+
constructor(doc) {
|
|
6878
|
+
this.document = doc;
|
|
6879
|
+
}
|
|
6880
|
+
getCookie(key) {
|
|
6881
|
+
const cookieValue = this.document.cookie
|
|
6882
|
+
.split('; ')
|
|
6883
|
+
.find(row => row.startsWith(`${key}=`))
|
|
6884
|
+
.split('=')[1];
|
|
6885
|
+
return cookieValue;
|
|
6886
|
+
}
|
|
6887
|
+
static ɵfac = function ReadCookieService_Factory(t) { return new (t || ReadCookieService)(i0.ɵɵinject(DOCUMENT)); };
|
|
6888
|
+
static ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ReadCookieService, factory: ReadCookieService.ɵfac, providedIn: 'root' });
|
|
6889
|
+
}
|
|
6890
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReadCookieService, [{
|
|
6891
|
+
type: Injectable,
|
|
6892
|
+
args: [{
|
|
6893
|
+
providedIn: 'root'
|
|
6894
|
+
}]
|
|
6895
|
+
}], () => [{ type: undefined, decorators: [{
|
|
6896
|
+
type: Inject,
|
|
6897
|
+
args: [DOCUMENT]
|
|
6898
|
+
}] }], null); })();
|
|
6899
|
+
|
|
6875
6900
|
class DocumentManagementService {
|
|
6876
6901
|
http;
|
|
6877
6902
|
appConfig;
|
|
@@ -8279,8 +8304,6 @@ class CasesService {
|
|
|
8279
8304
|
return headers;
|
|
8280
8305
|
}
|
|
8281
8306
|
updateClientContextStorage(headers) {
|
|
8282
|
-
// for mocking - TODO: Kasi Remove/Uncomment for testing
|
|
8283
|
-
// headers = this.setMockClientContextHeader(headers);
|
|
8284
8307
|
if (headers && headers.get('Client-Context')) {
|
|
8285
8308
|
const clientContextString = window.atob(headers.get('Client-Context'));
|
|
8286
8309
|
this.sessionStorageService.setItem('clientContext', clientContextString);
|
|
@@ -8909,7 +8932,7 @@ class PageValidationService {
|
|
|
8909
8932
|
page.case_fields
|
|
8910
8933
|
.filter(caseField => !this.caseFieldService.isReadOnly(caseField))
|
|
8911
8934
|
.filter(caseField => !this.isHidden(caseField, editForm))
|
|
8912
|
-
.
|
|
8935
|
+
.forEach(caseField => {
|
|
8913
8936
|
const theControl = FieldsUtils.isCaseFieldOfType(caseField, ['JudicialUser'])
|
|
8914
8937
|
? editForm.controls['data'].get(`${caseField.id}_judicialUserControl`)
|
|
8915
8938
|
: editForm.controls['data'].get(caseField.id);
|
|
@@ -9278,10 +9301,6 @@ class CaseEditComponent {
|
|
|
9278
9301
|
this.initialUrl = this.sessionStorageService.getItem('eventUrl');
|
|
9279
9302
|
this.isPageRefreshed = JSON.parse(this.sessionStorageService.getItem('isPageRefreshed'));
|
|
9280
9303
|
this.checkPageRefresh();
|
|
9281
|
-
/* istanbul ignore else */
|
|
9282
|
-
if (this.router.url && !this.isPageRefreshed) {
|
|
9283
|
-
this.sessionStorageService.setItem('eventUrl', this.router.url);
|
|
9284
|
-
}
|
|
9285
9304
|
this.form = this.fb.group({
|
|
9286
9305
|
data: new FormGroup({}),
|
|
9287
9306
|
event: this.fb.group({
|
|
@@ -13922,14 +13941,14 @@ class ReadDateFieldComponent extends AbstractFieldReadComponent {
|
|
|
13922
13941
|
i0.ɵɵelementEnd();
|
|
13923
13942
|
} if (rf & 2) {
|
|
13924
13943
|
i0.ɵɵadvance();
|
|
13925
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind3(2, 1, ctx.caseField.value, "
|
|
13944
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind3(2, 1, ctx.caseField.value, "local", ctx.caseField.dateTimeDisplayFormat));
|
|
13926
13945
|
} }, dependencies: [DatePipe], encapsulation: 2 });
|
|
13927
13946
|
}
|
|
13928
13947
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReadDateFieldComponent, [{
|
|
13929
13948
|
type: Component,
|
|
13930
13949
|
args: [{
|
|
13931
13950
|
selector: 'ccd-read-date-field',
|
|
13932
|
-
template: `<span class="text-16">{{caseField.value | ccdDate:'
|
|
13951
|
+
template: `<span class="text-16">{{caseField.value | ccdDate:'local':caseField.dateTimeDisplayFormat}}</span>`
|
|
13933
13952
|
}]
|
|
13934
13953
|
}], null, null); })();
|
|
13935
13954
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ReadDateFieldComponent, { className: "ReadDateFieldComponent", filePath: "lib/shared/components/palette/date/read-date-field.component.ts", lineNumber: 8 }); })();
|
|
@@ -33688,12 +33707,14 @@ class EventStartGuard {
|
|
|
33688
33707
|
router;
|
|
33689
33708
|
sessionStorageService;
|
|
33690
33709
|
abstractConfig;
|
|
33710
|
+
cookieService;
|
|
33691
33711
|
static CLIENT_CONTEXT = 'clientContext';
|
|
33692
|
-
constructor(workAllocationService, router, sessionStorageService, abstractConfig) {
|
|
33712
|
+
constructor(workAllocationService, router, sessionStorageService, abstractConfig, cookieService) {
|
|
33693
33713
|
this.workAllocationService = workAllocationService;
|
|
33694
33714
|
this.router = router;
|
|
33695
33715
|
this.sessionStorageService = sessionStorageService;
|
|
33696
33716
|
this.abstractConfig = abstractConfig;
|
|
33717
|
+
this.cookieService = cookieService;
|
|
33697
33718
|
}
|
|
33698
33719
|
canActivate(route) {
|
|
33699
33720
|
const caseId = route.params['cid'];
|
|
@@ -33706,6 +33727,16 @@ class EventStartGuard {
|
|
|
33706
33727
|
userId = userInfo.id ? userInfo.id : userInfo.uid;
|
|
33707
33728
|
}
|
|
33708
33729
|
const caseInfoStr = this.sessionStorageService.getItem('caseInfo');
|
|
33730
|
+
const currentLanguage = this.cookieService.getCookie('exui-preferred-language');
|
|
33731
|
+
// if one task assigned to user, allow user to complete event
|
|
33732
|
+
const storeClientContext = {
|
|
33733
|
+
client_context: {
|
|
33734
|
+
user_language: {
|
|
33735
|
+
language: currentLanguage
|
|
33736
|
+
}
|
|
33737
|
+
}
|
|
33738
|
+
};
|
|
33739
|
+
this.sessionStorageService.setItem(EventStartGuard.CLIENT_CONTEXT, JSON.stringify(storeClientContext));
|
|
33709
33740
|
if (caseInfoStr) {
|
|
33710
33741
|
const caseInfo = JSON.parse(caseInfoStr);
|
|
33711
33742
|
if (caseInfo && caseInfo.cid === caseId) {
|
|
@@ -33751,12 +33782,16 @@ class EventStartGuard {
|
|
|
33751
33782
|
else {
|
|
33752
33783
|
task = tasksAssignedToUser[0];
|
|
33753
33784
|
}
|
|
33785
|
+
const currentLanguage = this.cookieService.getCookie('exui-preferred-language');
|
|
33754
33786
|
// if one task assigned to user, allow user to complete event
|
|
33755
33787
|
const storeClientContext = {
|
|
33756
33788
|
client_context: {
|
|
33757
33789
|
user_task: {
|
|
33758
33790
|
task_data: task,
|
|
33759
33791
|
complete_task: true
|
|
33792
|
+
},
|
|
33793
|
+
user_language: {
|
|
33794
|
+
language: currentLanguage
|
|
33760
33795
|
}
|
|
33761
33796
|
}
|
|
33762
33797
|
};
|
|
@@ -33779,11 +33814,15 @@ class EventStartGuard {
|
|
|
33779
33814
|
taskId: task.id,
|
|
33780
33815
|
createdTimestamp: Date.now()
|
|
33781
33816
|
};
|
|
33817
|
+
const currentLanguage = this.cookieService.getCookie('exui-preferred-language');
|
|
33782
33818
|
const storeClientContext = {
|
|
33783
33819
|
client_context: {
|
|
33784
33820
|
user_task: {
|
|
33785
33821
|
task_data: task,
|
|
33786
33822
|
complete_task: true
|
|
33823
|
+
},
|
|
33824
|
+
user_language: {
|
|
33825
|
+
language: currentLanguage
|
|
33787
33826
|
}
|
|
33788
33827
|
}
|
|
33789
33828
|
};
|
|
@@ -33809,12 +33848,12 @@ class EventStartGuard {
|
|
|
33809
33848
|
return of(this.checkTaskInEventNotRequired(payload, caseId, taskId));
|
|
33810
33849
|
}
|
|
33811
33850
|
}
|
|
33812
|
-
static ɵfac = function EventStartGuard_Factory(t) { return new (t || EventStartGuard)(i0.ɵɵinject(WorkAllocationService), i0.ɵɵinject(i1$1.Router), i0.ɵɵinject(SessionStorageService), i0.ɵɵinject(AbstractAppConfig)); };
|
|
33851
|
+
static ɵfac = function EventStartGuard_Factory(t) { return new (t || EventStartGuard)(i0.ɵɵinject(WorkAllocationService), i0.ɵɵinject(i1$1.Router), i0.ɵɵinject(SessionStorageService), i0.ɵɵinject(AbstractAppConfig), i0.ɵɵinject(ReadCookieService)); };
|
|
33813
33852
|
static ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: EventStartGuard, factory: EventStartGuard.ɵfac });
|
|
33814
33853
|
}
|
|
33815
33854
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EventStartGuard, [{
|
|
33816
33855
|
type: Injectable
|
|
33817
|
-
}], () => [{ type: WorkAllocationService }, { type: i1$1.Router }, { type: SessionStorageService }, { type: AbstractAppConfig }], null); })();
|
|
33856
|
+
}], () => [{ type: WorkAllocationService }, { type: i1$1.Router }, { type: SessionStorageService }, { type: AbstractAppConfig }, { type: ReadCookieService }], null); })();
|
|
33818
33857
|
|
|
33819
33858
|
var EventStartStates;
|
|
33820
33859
|
(function (EventStartStates) {
|
|
@@ -33958,11 +33997,15 @@ class EventStartStateMachineService {
|
|
|
33958
33997
|
const taskStr = JSON.stringify(task);
|
|
33959
33998
|
console.log('entryActionForStateOneTaskAssignedToUser: setting client context task_data to ' + taskStr);
|
|
33960
33999
|
// Store task to session
|
|
34000
|
+
const currentLanguage = context.cookieService.getCookie('exui-preferred-language');
|
|
33961
34001
|
const clientContext = {
|
|
33962
34002
|
client_context: {
|
|
33963
34003
|
user_task: {
|
|
33964
34004
|
task_data: task,
|
|
33965
34005
|
complete_task: true
|
|
34006
|
+
},
|
|
34007
|
+
user_language: {
|
|
34008
|
+
language: currentLanguage
|
|
33966
34009
|
}
|
|
33967
34010
|
}
|
|
33968
34011
|
};
|
|
@@ -34034,13 +34077,15 @@ class EventStartComponent {
|
|
|
34034
34077
|
router;
|
|
34035
34078
|
route;
|
|
34036
34079
|
sessionStorageService;
|
|
34080
|
+
cookieService;
|
|
34037
34081
|
stateMachine;
|
|
34038
34082
|
context;
|
|
34039
|
-
constructor(service, router, route, sessionStorageService) {
|
|
34083
|
+
constructor(service, router, route, sessionStorageService, cookieService) {
|
|
34040
34084
|
this.service = service;
|
|
34041
34085
|
this.router = router;
|
|
34042
34086
|
this.route = route;
|
|
34043
34087
|
this.sessionStorageService = sessionStorageService;
|
|
34088
|
+
this.cookieService = cookieService;
|
|
34044
34089
|
}
|
|
34045
34090
|
ngOnInit() {
|
|
34046
34091
|
// Get task and case id payload from route data
|
|
@@ -34056,7 +34101,8 @@ class EventStartComponent {
|
|
|
34056
34101
|
taskId,
|
|
34057
34102
|
router: this.router,
|
|
34058
34103
|
route: this.route,
|
|
34059
|
-
sessionStorageService: this.sessionStorageService
|
|
34104
|
+
sessionStorageService: this.sessionStorageService,
|
|
34105
|
+
cookieService: this.cookieService
|
|
34060
34106
|
};
|
|
34061
34107
|
// Initialise state machine
|
|
34062
34108
|
this.service = new EventStartStateMachineService();
|
|
@@ -34068,14 +34114,14 @@ class EventStartComponent {
|
|
|
34068
34114
|
// Start state machine
|
|
34069
34115
|
this.service.startStateMachine(this.stateMachine);
|
|
34070
34116
|
}
|
|
34071
|
-
static ɵfac = function EventStartComponent_Factory(t) { return new (t || EventStartComponent)(i0.ɵɵdirectiveInject(EventStartStateMachineService), i0.ɵɵdirectiveInject(i1$1.Router), i0.ɵɵdirectiveInject(i1$1.ActivatedRoute), i0.ɵɵdirectiveInject(SessionStorageService)); };
|
|
34117
|
+
static ɵfac = function EventStartComponent_Factory(t) { return new (t || EventStartComponent)(i0.ɵɵdirectiveInject(EventStartStateMachineService), i0.ɵɵdirectiveInject(i1$1.Router), i0.ɵɵdirectiveInject(i1$1.ActivatedRoute), i0.ɵɵdirectiveInject(SessionStorageService), i0.ɵɵdirectiveInject(ReadCookieService)); };
|
|
34072
34118
|
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: EventStartComponent, selectors: [["ccd-event-start"]], decls: 0, vars: 0, template: function EventStartComponent_Template(rf, ctx) { }, encapsulation: 2 });
|
|
34073
34119
|
}
|
|
34074
34120
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EventStartComponent, [{
|
|
34075
34121
|
type: Component,
|
|
34076
34122
|
args: [{ selector: 'ccd-event-start', template: "" }]
|
|
34077
|
-
}], () => [{ type: EventStartStateMachineService }, { type: i1$1.Router }, { type: i1$1.ActivatedRoute }, { type: SessionStorageService }], null); })();
|
|
34078
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(EventStartComponent, { className: "EventStartComponent", filePath: "lib/shared/components/event-start/event-start.component.ts", lineNumber:
|
|
34123
|
+
}], () => [{ type: EventStartStateMachineService }, { type: i1$1.Router }, { type: i1$1.ActivatedRoute }, { type: SessionStorageService }, { type: ReadCookieService }], null); })();
|
|
34124
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(EventStartComponent, { className: "EventStartComponent", filePath: "lib/shared/components/event-start/event-start.component.ts", lineNumber: 14 }); })();
|
|
34079
34125
|
|
|
34080
34126
|
class EventTasksResolverService {
|
|
34081
34127
|
service;
|
|
@@ -37409,5 +37455,5 @@ class TestRouteSnapshotBuilder {
|
|
|
37409
37455
|
* Generated bundle index. Do not edit.
|
|
37410
37456
|
*/
|
|
37411
37457
|
|
|
37412
|
-
export { AbstractAppConfig, AbstractFieldReadComponent, AbstractFieldWriteComponent, Activity, ActivityBannerComponent, ActivityComponent, ActivityIconComponent, ActivityInfo, ActivityModule, ActivityPollingService, ActivityService, AddCommentsComponent, AddCommentsErrorMessage, AddCommentsStep, AddressModel, AddressOption, AddressesService, Alert, AlertComponent, AlertIconClassPipe, AlertMessageType, AlertModule, AlertService, AuthService, Banner, BannersService, BeforeYouStartComponent, BodyComponent, BrowserService, CCDCaseLinkType, COMPONENT_PORTAL_INJECTION_TOKEN, CallbackErrorsComponent, CallbackErrorsContext, CaseAccessUtils, CaseBasicAccessViewComponent, CaseChallengedAccessRequestComponent, CaseChallengedAccessSuccessComponent, CaseCreateComponent, CaseDetails, CaseEditComponent, CaseEditConfirmComponent, CaseEditDataModule, CaseEditDataService, CaseEditFormComponent, CaseEditPageComponent, CaseEditSubmitComponent, CaseEditWizardGuard, CaseEditorConfig, CaseEditorModule, CaseEvent, CaseEventCompletionComponent, CaseEventCompletionTaskCancelledComponent, CaseEventCompletionTaskReassignedComponent, CaseEventData, CaseEventTrigger, CaseEventTriggerComponent, CaseField, CaseFieldService, CaseFileViewFieldComponent, CaseFileViewFolderComponent, CaseFileViewFolderDocumentActionsComponent, CaseFileViewFolderSelectorComponent, CaseFileViewFolderSortComponent, CaseFileViewOverlayMenuComponent, CaseFileViewService, CaseFlagCheckYourAnswersPageStep, CaseFlagDisplayContextParameter, CaseFlagErrorMessage, CaseFlagFieldState, CaseFlagFormFields, CaseFlagRefdataService, CaseFlagStatus, CaseFlagSummaryListComponent, CaseFlagSummaryListDisplayMode, CaseFlagTableComponent, CaseFlagWizardStepTitle, CaseFullAccessViewComponent, CaseHeaderComponent, CaseHeaderModule, CaseHistoryViewerFieldComponent, CaseLink, CaseLinkResponse, CaseListComponent, CaseListFiltersComponent, CaseListFiltersModule, CaseListModule, CaseNotifier, CasePaymentHistoryViewerFieldComponent, CasePrintDocument, CasePrinterComponent, CaseProgressComponent, CaseReferencePipe, CaseResolver, CaseSpecificAccessRequestComponent, CaseSpecificAccessSuccessComponent, CaseState, CaseTab, CaseTimelineComponent, CaseTimelineDisplayMode, CaseTimelineModule, CaseType, CaseTypeLite, CaseView, CaseViewComponent, CaseViewEvent, CaseViewTrigger, CaseViewerComponent, CaseViewerModule, CasesService, CaseworkerService, CcdCYAPageLabelFilterPipe, CcdCaseTitlePipe, CcdCollectionTableCaseFieldsFilterPipe, CcdPageFieldsPipe, CcdTabFieldsPipe, CheckYourAnswersComponent, ConditionalShowFormDirective, ConditionalShowModule, ConditionalShowRegistrarService, ConfirmFlagStatusComponent, ConfirmStatusErrorMessage, ConfirmStatusStep, Confirmation, ConvertHrefToRouterService, CreateCaseFiltersComponent, CreateCaseFiltersModule, CreateCaseFiltersSelection, DRAFT_PREFIX, DRAFT_QUERY_PARAM, DashPipe, DateInputComponent, DatePipe, DateTimeFormatUtils, DatetimePickerComponent, DefinitionsModule, DefinitionsService, DeleteOrCancelDialogComponent, DialogsModule, DisplayMode, Document, DocumentData, DocumentDialogComponent, DocumentLinks, DocumentManagementService, DocumentUrlPipe, Draft, DraftService, DynamicListPipe, DynamicRadioListPipe, ESQueryType, Embedded, EnumDisplayDescriptionPipe, ErrorMessageComponent, ErrorNotifierService, EventCaseField, EventCompletionReturnStates, EventCompletionStateMachineService, EventCompletionStates, EventLogComponent, EventLogDetailsComponent, EventLogTableComponent, EventMessageModule, EventStartComponent, EventStartModule, EventStartStateMachineService, EventStatusService, EventTriggerResolver, EventTriggerService, Fee, FeeValue, Field, FieldLabelPipe, FieldReadComponent, FieldReadLabelComponent, FieldType, FieldTypeSanitiser, FieldWriteComponent, FieldsFilterPipe, FieldsPurger, FieldsUtils, FirstErrorPipe, FixedListItem, FixedListPipe, FixedRadioListPipe, FlagFieldDisplayPipe, FocusElementDirective, FocusElementModule, FooterComponent, FormDocument, FormErrorService, FormValidatorsService, FormValueService, FormatTranslatorService, GreyBarService, HRef, HeaderBarComponent, HeadersModule, HttpError, HttpErrorService, HttpService, IsCompoundPipe, IsMandatoryPipe, IsReadOnlyAndNotCollectionPipe, IsReadOnlyPipe, JudicialworkerService, Jurisdiction, JurisdictionService, LabelFieldComponent, LabelSubstitutorDirective, LabelSubstitutorModule, LanguageInterpreterDisplayPipe, LinkCaseReason, LinkCasesComponent, LinkCasesFromReasonValuePipe, LinkCasesReasonValuePipe, LinkDetails, LinkFromReason, LinkReason, LinkedCasesErrorMessages, LinkedCasesEventTriggers, LinkedCasesFromTableComponent, LinkedCasesPages, LinkedCasesResponse, LinkedCasesToTableComponent, LoadingModule, LoadingService, LoadingSpinnerComponent, LoadingSpinnerModule, MEDIA_VIEWER_LOCALSTORAGE_KEY, MULTIPLE_TASKS_FOUND, ManageCaseFlagsComponent, ManageCaseFlagsLabelDisplayPipe, MarkdownComponent, MarkdownComponentModule, MoneyGbpInputComponent, MultipleTasksExistComponent, NavigationComponent, NavigationItemComponent, NavigationNotifierService, NavigationOrigin, NoLinkedCasesComponent, NoTasksAvailableComponent, NotificationBannerComponent, NotificationBannerHeaderClass, NotificationBannerType, OrderService, OrderSummary, OrganisationConverter, OrganisationService, PageValidationService, PaginationComponent, PaginationMetadata, PaginationModule, PaletteContext, PaletteModule, PaletteService, PaletteUtilsModule, Patterns, PaymentField, PhaseComponent, PipesModule, PlaceholderService, PrintUrlPipe, Profile, ProfileNotifier, ProfileService, QualifyingQuestionDetailComponent, QualifyingQuestionOptionsComponent, QualifyingQuestionsErrorMessage, QueryAttachmentsReadComponent, QueryCaseDetailsHeaderComponent, QueryCheckYourAnswersComponent, QueryCreateContext, QueryDetailsComponent, QueryEventCompletionComponent, QueryItemResponseStatus, QueryListComponent, QueryListData, QueryListItem, QueryWriteAddDocumentsComponent, QueryWriteDateInputComponent, QueryWriteRaiseQueryComponent, QueryWriteRespondToQueryComponent, RaiseQueryErrorMessage, ReadCaseFlagFieldComponent, ReadCaseLinkFieldComponent, ReadCollectionFieldComponent, ReadComplexFieldCollectionTableComponent, ReadComplexFieldComponent, ReadComplexFieldRawComponent, ReadComplexFieldTableComponent, ReadDateFieldComponent, ReadDocumentFieldComponent, ReadDynamicListFieldComponent, ReadDynamicMultiSelectListFieldComponent, ReadDynamicRadioListFieldComponent, ReadEmailFieldComponent, ReadFieldsFilterPipe, ReadFixedListFieldComponent, ReadFixedRadioListFieldComponent, ReadJudicialUserFieldComponent, ReadLinkedCasesFieldComponent, ReadMoneyGbpFieldComponent, ReadMultiSelectListFieldComponent, ReadNumberFieldComponent, ReadOrderSummaryFieldComponent, ReadOrderSummaryRowComponent, ReadOrganisationFieldComponent, ReadOrganisationFieldRawComponent, ReadOrganisationFieldTableComponent, ReadPhoneUKFieldComponent, ReadQueryManagementFieldComponent, ReadTextAreaFieldComponent, ReadTextFieldComponent, ReadYesNoFieldComponent, RefdataCaseFlagType, RemoveDialogComponent, RequestOptionsBuilder, RespondToQueryErrorMessages, RetryUtil, RouterHelperService, RouterLinkComponent, SaveOrDiscardDialogComponent, SearchFiltersComponent, SearchFiltersModule, SearchFiltersWrapperComponent, SearchInput, SearchLanguageInterpreterComponent, SearchLanguageInterpreterErrorMessage, SearchLanguageInterpreterStep, SearchResultComponent, SearchResultModule, SearchResultView, SearchResultViewColumn, SearchResultViewItem, SearchResultViewItemComparatorFactory, SearchService, SelectFlagErrorMessage, SelectFlagLocationComponent, SelectFlagLocationErrorMessage, SelectFlagTypeComponent, SelectFlagTypeErrorMessage, SessionStorageService, ShowCondition, SortOrder$1 as SortOrder, SortParameters, SortSearchResultPipe, TabComponent, TableColumnConfig, TableConfig, TabsComponent, TabsModule, TaskAssignedComponent, TaskCancelledComponent, TaskConflictComponent, TaskUnassignedComponent, Terms, TestRouteSnapshotBuilder, UnLinkCasesComponent, UnsupportedFieldComponent, UpdateFlagAddTranslationErrorMessage, UpdateFlagAddTranslationFormComponent, UpdateFlagAddTranslationStep, UpdateFlagComponent, UpdateFlagErrorMessage, UpdateFlagStep, UpdateFlagTitleDisplayPipe, WaysToPayFieldComponent, WindowService, Wizard, WizardFactoryService, WizardPage, WizardPageField, WorkAllocationService, WorkbasketFiltersComponent, WorkbasketFiltersModule, WorkbasketInput, WorkbasketInputFilterService, WorkbasketInputModel, WriteAddressFieldComponent, WriteCaseFlagFieldComponent, WriteCaseLinkFieldComponent, WriteCollectionFieldComponent, WriteComplexFieldComponent, WriteDateContainerFieldComponent, WriteDateFieldComponent, WriteDocumentFieldComponent, WriteDynamicListFieldComponent, WriteDynamicMultiSelectListFieldComponent, WriteDynamicRadioListFieldComponent, WriteEmailFieldComponent, WriteFixedListFieldComponent, WriteFixedRadioListFieldComponent, WriteJudicialUserFieldComponent, WriteLinkedCasesFieldComponent, WriteMoneyGbpFieldComponent, WriteMultiSelectListFieldComponent, WriteNumberFieldComponent, WriteOrderSummaryFieldComponent, WriteOrganisationComplexFieldComponent, WriteOrganisationFieldComponent, WritePhoneUKFieldComponent, WriteTextAreaFieldComponent, WriteTextFieldComponent, WriteYesNoFieldComponent, YesNoService, aCaseField, caseMessagesMockData, createACL, createCaseEventTrigger, createCaseField, createComplexFieldOverride, createFieldType, createFixedListFieldType, createHiddenComplexFieldOverride, createMultiSelectListFieldType, createWizardPage, createWizardPageField, editorRouting, initDialog, newCaseField, textFieldType, viewerRouting };
|
|
37458
|
+
export { AbstractAppConfig, AbstractFieldReadComponent, AbstractFieldWriteComponent, Activity, ActivityBannerComponent, ActivityComponent, ActivityIconComponent, ActivityInfo, ActivityModule, ActivityPollingService, ActivityService, AddCommentsComponent, AddCommentsErrorMessage, AddCommentsStep, AddressModel, AddressOption, AddressesService, Alert, AlertComponent, AlertIconClassPipe, AlertMessageType, AlertModule, AlertService, AuthService, Banner, BannersService, BeforeYouStartComponent, BodyComponent, BrowserService, CCDCaseLinkType, COMPONENT_PORTAL_INJECTION_TOKEN, CallbackErrorsComponent, CallbackErrorsContext, CaseAccessUtils, CaseBasicAccessViewComponent, CaseChallengedAccessRequestComponent, CaseChallengedAccessSuccessComponent, CaseCreateComponent, CaseDetails, CaseEditComponent, CaseEditConfirmComponent, CaseEditDataModule, CaseEditDataService, CaseEditFormComponent, CaseEditPageComponent, CaseEditSubmitComponent, CaseEditWizardGuard, CaseEditorConfig, CaseEditorModule, CaseEvent, CaseEventCompletionComponent, CaseEventCompletionTaskCancelledComponent, CaseEventCompletionTaskReassignedComponent, CaseEventData, CaseEventTrigger, CaseEventTriggerComponent, CaseField, CaseFieldService, CaseFileViewFieldComponent, CaseFileViewFolderComponent, CaseFileViewFolderDocumentActionsComponent, CaseFileViewFolderSelectorComponent, CaseFileViewFolderSortComponent, CaseFileViewOverlayMenuComponent, CaseFileViewService, CaseFlagCheckYourAnswersPageStep, CaseFlagDisplayContextParameter, CaseFlagErrorMessage, CaseFlagFieldState, CaseFlagFormFields, CaseFlagRefdataService, CaseFlagStatus, CaseFlagSummaryListComponent, CaseFlagSummaryListDisplayMode, CaseFlagTableComponent, CaseFlagWizardStepTitle, CaseFullAccessViewComponent, CaseHeaderComponent, CaseHeaderModule, CaseHistoryViewerFieldComponent, CaseLink, CaseLinkResponse, CaseListComponent, CaseListFiltersComponent, CaseListFiltersModule, CaseListModule, CaseNotifier, CasePaymentHistoryViewerFieldComponent, CasePrintDocument, CasePrinterComponent, CaseProgressComponent, CaseReferencePipe, CaseResolver, CaseSpecificAccessRequestComponent, CaseSpecificAccessSuccessComponent, CaseState, CaseTab, CaseTimelineComponent, CaseTimelineDisplayMode, CaseTimelineModule, CaseType, CaseTypeLite, CaseView, CaseViewComponent, CaseViewEvent, CaseViewTrigger, CaseViewerComponent, CaseViewerModule, CasesService, CaseworkerService, CcdCYAPageLabelFilterPipe, CcdCaseTitlePipe, CcdCollectionTableCaseFieldsFilterPipe, CcdPageFieldsPipe, CcdTabFieldsPipe, CheckYourAnswersComponent, ConditionalShowFormDirective, ConditionalShowModule, ConditionalShowRegistrarService, ConfirmFlagStatusComponent, ConfirmStatusErrorMessage, ConfirmStatusStep, Confirmation, ConvertHrefToRouterService, CreateCaseFiltersComponent, CreateCaseFiltersModule, CreateCaseFiltersSelection, DRAFT_PREFIX, DRAFT_QUERY_PARAM, DashPipe, DateInputComponent, DatePipe, DateTimeFormatUtils, DatetimePickerComponent, DefinitionsModule, DefinitionsService, DeleteOrCancelDialogComponent, DialogsModule, DisplayMode, Document, DocumentData, DocumentDialogComponent, DocumentLinks, DocumentManagementService, DocumentUrlPipe, Draft, DraftService, DynamicListPipe, DynamicRadioListPipe, ESQueryType, Embedded, EnumDisplayDescriptionPipe, ErrorMessageComponent, ErrorNotifierService, EventCaseField, EventCompletionReturnStates, EventCompletionStateMachineService, EventCompletionStates, EventLogComponent, EventLogDetailsComponent, EventLogTableComponent, EventMessageModule, EventStartComponent, EventStartModule, EventStartStateMachineService, EventStatusService, EventTriggerResolver, EventTriggerService, Fee, FeeValue, Field, FieldLabelPipe, FieldReadComponent, FieldReadLabelComponent, FieldType, FieldTypeSanitiser, FieldWriteComponent, FieldsFilterPipe, FieldsPurger, FieldsUtils, FirstErrorPipe, FixedListItem, FixedListPipe, FixedRadioListPipe, FlagFieldDisplayPipe, FocusElementDirective, FocusElementModule, FooterComponent, FormDocument, FormErrorService, FormValidatorsService, FormValueService, FormatTranslatorService, GreyBarService, HRef, HeaderBarComponent, HeadersModule, HttpError, HttpErrorService, HttpService, IsCompoundPipe, IsMandatoryPipe, IsReadOnlyAndNotCollectionPipe, IsReadOnlyPipe, JudicialworkerService, Jurisdiction, JurisdictionService, LabelFieldComponent, LabelSubstitutorDirective, LabelSubstitutorModule, LanguageInterpreterDisplayPipe, LinkCaseReason, LinkCasesComponent, LinkCasesFromReasonValuePipe, LinkCasesReasonValuePipe, LinkDetails, LinkFromReason, LinkReason, LinkedCasesErrorMessages, LinkedCasesEventTriggers, LinkedCasesFromTableComponent, LinkedCasesPages, LinkedCasesResponse, LinkedCasesToTableComponent, LoadingModule, LoadingService, LoadingSpinnerComponent, LoadingSpinnerModule, MEDIA_VIEWER_LOCALSTORAGE_KEY, MULTIPLE_TASKS_FOUND, ManageCaseFlagsComponent, ManageCaseFlagsLabelDisplayPipe, MarkdownComponent, MarkdownComponentModule, MoneyGbpInputComponent, MultipleTasksExistComponent, NavigationComponent, NavigationItemComponent, NavigationNotifierService, NavigationOrigin, NoLinkedCasesComponent, NoTasksAvailableComponent, NotificationBannerComponent, NotificationBannerHeaderClass, NotificationBannerType, OrderService, OrderSummary, OrganisationConverter, OrganisationService, PageValidationService, PaginationComponent, PaginationMetadata, PaginationModule, PaletteContext, PaletteModule, PaletteService, PaletteUtilsModule, Patterns, PaymentField, PhaseComponent, PipesModule, PlaceholderService, PrintUrlPipe, Profile, ProfileNotifier, ProfileService, QualifyingQuestionDetailComponent, QualifyingQuestionOptionsComponent, QualifyingQuestionsErrorMessage, QueryAttachmentsReadComponent, QueryCaseDetailsHeaderComponent, QueryCheckYourAnswersComponent, QueryCreateContext, QueryDetailsComponent, QueryEventCompletionComponent, QueryItemResponseStatus, QueryListComponent, QueryListData, QueryListItem, QueryWriteAddDocumentsComponent, QueryWriteDateInputComponent, QueryWriteRaiseQueryComponent, QueryWriteRespondToQueryComponent, RaiseQueryErrorMessage, ReadCaseFlagFieldComponent, ReadCaseLinkFieldComponent, ReadCollectionFieldComponent, ReadComplexFieldCollectionTableComponent, ReadComplexFieldComponent, ReadComplexFieldRawComponent, ReadComplexFieldTableComponent, ReadCookieService, ReadDateFieldComponent, ReadDocumentFieldComponent, ReadDynamicListFieldComponent, ReadDynamicMultiSelectListFieldComponent, ReadDynamicRadioListFieldComponent, ReadEmailFieldComponent, ReadFieldsFilterPipe, ReadFixedListFieldComponent, ReadFixedRadioListFieldComponent, ReadJudicialUserFieldComponent, ReadLinkedCasesFieldComponent, ReadMoneyGbpFieldComponent, ReadMultiSelectListFieldComponent, ReadNumberFieldComponent, ReadOrderSummaryFieldComponent, ReadOrderSummaryRowComponent, ReadOrganisationFieldComponent, ReadOrganisationFieldRawComponent, ReadOrganisationFieldTableComponent, ReadPhoneUKFieldComponent, ReadQueryManagementFieldComponent, ReadTextAreaFieldComponent, ReadTextFieldComponent, ReadYesNoFieldComponent, RefdataCaseFlagType, RemoveDialogComponent, RequestOptionsBuilder, RespondToQueryErrorMessages, RetryUtil, RouterHelperService, RouterLinkComponent, SaveOrDiscardDialogComponent, SearchFiltersComponent, SearchFiltersModule, SearchFiltersWrapperComponent, SearchInput, SearchLanguageInterpreterComponent, SearchLanguageInterpreterErrorMessage, SearchLanguageInterpreterStep, SearchResultComponent, SearchResultModule, SearchResultView, SearchResultViewColumn, SearchResultViewItem, SearchResultViewItemComparatorFactory, SearchService, SelectFlagErrorMessage, SelectFlagLocationComponent, SelectFlagLocationErrorMessage, SelectFlagTypeComponent, SelectFlagTypeErrorMessage, SessionStorageService, ShowCondition, SortOrder$1 as SortOrder, SortParameters, SortSearchResultPipe, TabComponent, TableColumnConfig, TableConfig, TabsComponent, TabsModule, TaskAssignedComponent, TaskCancelledComponent, TaskConflictComponent, TaskUnassignedComponent, Terms, TestRouteSnapshotBuilder, UnLinkCasesComponent, UnsupportedFieldComponent, UpdateFlagAddTranslationErrorMessage, UpdateFlagAddTranslationFormComponent, UpdateFlagAddTranslationStep, UpdateFlagComponent, UpdateFlagErrorMessage, UpdateFlagStep, UpdateFlagTitleDisplayPipe, WaysToPayFieldComponent, WindowService, Wizard, WizardFactoryService, WizardPage, WizardPageField, WorkAllocationService, WorkbasketFiltersComponent, WorkbasketFiltersModule, WorkbasketInput, WorkbasketInputFilterService, WorkbasketInputModel, WriteAddressFieldComponent, WriteCaseFlagFieldComponent, WriteCaseLinkFieldComponent, WriteCollectionFieldComponent, WriteComplexFieldComponent, WriteDateContainerFieldComponent, WriteDateFieldComponent, WriteDocumentFieldComponent, WriteDynamicListFieldComponent, WriteDynamicMultiSelectListFieldComponent, WriteDynamicRadioListFieldComponent, WriteEmailFieldComponent, WriteFixedListFieldComponent, WriteFixedRadioListFieldComponent, WriteJudicialUserFieldComponent, WriteLinkedCasesFieldComponent, WriteMoneyGbpFieldComponent, WriteMultiSelectListFieldComponent, WriteNumberFieldComponent, WriteOrderSummaryFieldComponent, WriteOrganisationComplexFieldComponent, WriteOrganisationFieldComponent, WritePhoneUKFieldComponent, WriteTextAreaFieldComponent, WriteTextFieldComponent, WriteYesNoFieldComponent, YesNoService, aCaseField, caseMessagesMockData, createACL, createCaseEventTrigger, createCaseField, createComplexFieldOverride, createFieldType, createFixedListFieldType, createHiddenComplexFieldOverride, createMultiSelectListFieldType, createWizardPage, createWizardPageField, editorRouting, initDialog, newCaseField, textFieldType, viewerRouting };
|
|
37413
37459
|
//# sourceMappingURL=hmcts-ccd-case-ui-toolkit.mjs.map
|