@hmcts/ccd-case-ui-toolkit 7.3.87 → 7.3.88-exui-5098

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/index.d.ts CHANGED
@@ -1,16 +1,16 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { OnInit, OnDestroy, PipeTransform, EventEmitter, AfterContentInit, QueryList, ElementRef, InjectionToken, NgZone, OnChanges, SimpleChanges, ChangeDetectorRef, Type, ViewContainerRef, ComponentFactoryResolver, AfterViewInit, Renderer2, ModuleWithProviders, Injector, TemplateRef, RendererFactory2, AfterViewChecked } from '@angular/core';
3
+ import * as rxjs from 'rxjs';
4
+ import { BehaviorSubject, Observable, Subject, ConnectableObservable, Subscribable, Subscription } from 'rxjs';
5
+ import { HttpErrorResponse, HttpClient, HttpHeaders, HttpParams } from '@angular/common/http';
3
6
  import * as i2 from '@angular/common';
4
7
  import { AsyncPipe, Location as Location$1 } from '@angular/common';
5
8
  import * as i3 from '@angular/router';
6
- import { ActivatedRoute, CanActivate, Router, ActivatedRouteSnapshot, Resolve, Routes, Navigation } from '@angular/router';
9
+ import { ActivatedRoute, CanActivate, Router, Resolve, ActivatedRouteSnapshot, Routes, Navigation } from '@angular/router';
7
10
  import * as i7 from 'rpx-xui-translation';
8
11
  import { RpxTranslationService, RpxTranslatePipe } from 'rpx-xui-translation';
9
12
  import * as i3$1 from '@angular/forms';
10
13
  import { ControlValueAccessor, Validator, FormControl, AbstractControl, ValidationErrors, FormGroup, FormArray, ValidatorFn, FormBuilder } from '@angular/forms';
11
- import * as rxjs from 'rxjs';
12
- import { Observable, Subject, ConnectableObservable, BehaviorSubject, Subscribable, Subscription } from 'rxjs';
13
- import { HttpErrorResponse, HttpClient, HttpHeaders, HttpParams } from '@angular/common/http';
14
14
  import { Observable as Observable$1 } from 'rxjs-compat';
15
15
  import * as i144 from '@angular/material/legacy-dialog';
16
16
  import { MatLegacyDialog, MatLegacyDialogRef, MatLegacyDialogConfig } from '@angular/material/legacy-dialog';
@@ -36,22 +36,403 @@ import * as i25 from '@angular/material/legacy-tabs';
36
36
  import { MatLegacyTabGroup } from '@angular/material/legacy-tabs';
37
37
  import { MatDialogConfig } from '@angular/material/dialog';
38
38
 
39
- declare class FooterComponent {
40
- email: string;
41
- isSolicitor: boolean;
42
- phone: string;
43
- workhours: string;
44
- static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
45
- static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "cut-footer-bar", never, { "email": { "alias": "email"; "required": false; }; "isSolicitor": { "alias": "isSolicitor"; "required": false; }; "phone": { "alias": "phone"; "required": false; }; "workhours": { "alias": "workhours"; "required": false; }; }, {}, never, ["[footerSolsNavLinks]", "[footerCaseWorkerNavLinks]"], false, never>;
39
+ declare class FooterComponent {
40
+ email: string;
41
+ isSolicitor: boolean;
42
+ phone: string;
43
+ workhours: string;
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
45
+ static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "cut-footer-bar", never, { "email": { "alias": "email"; "required": false; }; "isSolicitor": { "alias": "isSolicitor"; "required": false; }; "phone": { "alias": "phone"; "required": false; }; "workhours": { "alias": "workhours"; "required": false; }; }, {}, never, ["[footerSolsNavLinks]", "[footerCaseWorkerNavLinks]"], false, never>;
46
+ }
47
+
48
+ interface Orderable {
49
+ order?: number;
50
+ }
51
+
52
+ declare class AccessControlList {
53
+ role: string;
54
+ create: boolean;
55
+ read: boolean;
56
+ update: boolean;
57
+ delete: boolean;
58
+ }
59
+
60
+ declare class EventCaseField {
61
+ case_field_id: string;
62
+ showCondition: string;
63
+ }
64
+
65
+ declare class CaseEvent implements Orderable {
66
+ id: string;
67
+ name: string;
68
+ post_state: string;
69
+ pre_states: string[];
70
+ case_fields: EventCaseField[];
71
+ description: string;
72
+ order?: number;
73
+ acls?: AccessControlList[];
74
+ }
75
+
76
+ declare class CaseState implements Orderable {
77
+ id: string;
78
+ name: string;
79
+ description: string;
80
+ order?: number;
81
+ }
82
+
83
+ declare class CaseTypeLite {
84
+ id: string;
85
+ name: string;
86
+ events: CaseEvent[];
87
+ states: CaseState[];
88
+ description: string;
89
+ }
90
+
91
+ declare class Jurisdiction {
92
+ id: string;
93
+ name: string;
94
+ description: string;
95
+ caseTypes: CaseTypeLite[];
96
+ currentCaseType?: CaseTypeLite;
97
+ }
98
+
99
+ declare class Profile {
100
+ user: {
101
+ idam: {
102
+ id: string;
103
+ email: string;
104
+ forename: string;
105
+ surname: string;
106
+ roles: string[];
107
+ };
108
+ };
109
+ channels: string[];
110
+ jurisdictions: Jurisdiction[];
111
+ default: {
112
+ workbasket: {
113
+ jurisdiction_id: string;
114
+ case_type_id: string;
115
+ state_id: string;
116
+ };
117
+ };
118
+ isSolicitor(): boolean;
119
+ isCourtAdmin(): boolean;
120
+ }
121
+
122
+ declare class ProfileNotifier {
123
+ readonly profileSource: BehaviorSubject<Profile>;
124
+ profile: rxjs.Observable<Profile>;
125
+ announceProfile(profile: Profile): void;
126
+ clearProfile(): void;
127
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProfileNotifier, never>;
128
+ static ɵprov: i0.ɵɵInjectableDeclaration<ProfileNotifier>;
129
+ }
130
+
131
+ interface AccessManagementBasicViewMockModel {
132
+ active?: boolean;
133
+ basicFields?: {
134
+ caseNameHmctsInternal?: string;
135
+ caseManagementLocation?: {
136
+ baseLocation?: number;
137
+ };
138
+ };
139
+ accessProcess?: string;
140
+ }
141
+ interface AccessManagementRequestReviewMockModel {
142
+ active?: boolean;
143
+ details?: {
144
+ caseName: string;
145
+ caseReference: string;
146
+ dateSubmitted: string;
147
+ requestFrom: string;
148
+ reasonForCaseAccess: string;
149
+ };
150
+ accessProcess?: string;
151
+ }
152
+ declare abstract class AbstractAppConfig {
153
+ abstract load(): Promise<void>;
154
+ abstract getLoginUrl(): string;
155
+ abstract getApiUrl(): string;
156
+ abstract getCaseDataUrl(): string;
157
+ abstract getDocumentManagementUrl(): string;
158
+ abstract getDocumentManagementUrlV2(): string;
159
+ abstract getCdamExclusionList(): string;
160
+ abstract getDocumentSecureModeCaseTypeExclusions(): string;
161
+ abstract getRemoteDocumentManagementUrl(): string;
162
+ abstract getHrsUrl(): string;
163
+ abstract getRemoteHrsUrl(): string;
164
+ abstract getAnnotationApiUrl(): string;
165
+ abstract getPostcodeLookupUrl(): string;
166
+ abstract getOAuth2ClientId(): string;
167
+ abstract getPaymentsUrl(): string;
168
+ abstract getPayBulkScanBaseUrl(): string;
169
+ abstract getCreateOrUpdateDraftsUrl(ctid: string): string;
170
+ abstract getViewOrDeleteDraftsUrl(did: string): string;
171
+ abstract getActivityUrl(): string;
172
+ abstract getActivityNexPollRequestMs(): number;
173
+ abstract getActivityRetry(): number;
174
+ abstract getTimeoutsForCaseRetrieval(): number[];
175
+ abstract getTimeoutsCaseRetrievalArtificialDelay(): number;
176
+ abstract getActivityBatchCollectionDelayMs(): number;
177
+ abstract getActivityMaxRequestPerBatch(): number;
178
+ abstract getCaseHistoryUrl(caseId: string, eventId: string): string;
179
+ abstract getPrintServiceUrl(): string;
180
+ abstract getIcpEnable(): boolean;
181
+ abstract getIcpJurisdictions(): string[];
182
+ abstract logMessage(logMessage: string): void;
183
+ abstract getEnableServiceSpecificMultiFollowups(): string[];
184
+ /**
185
+ * Dummy version replacing deprecated `getRemotePrintServiceUrl()`, to be removed in next major release
186
+ * @deprecated
187
+ * @returns `undefined`
188
+ */
189
+ getRemotePrintServiceUrl(): string;
190
+ abstract getPaginationPageSize(): number;
191
+ abstract getBannersUrl(): string;
192
+ abstract getPrdUrl(): string;
193
+ abstract getCacheTimeOut(): number;
194
+ abstract getWorkAllocationApiUrl(): string;
195
+ getUserInfoApiUrl(): string;
196
+ getWAServiceConfig(): any;
197
+ getAccessManagementBasicViewMock(): AccessManagementBasicViewMockModel;
198
+ getAccessManagementRequestReviewMockModel(): AccessManagementRequestReviewMockModel;
199
+ getLocationRefApiUrl(): string;
200
+ getEnvironment(): "aat" | "preview" | "demo" | "ithc" | "prod";
201
+ getWASupportedRoleCategories(): string[];
202
+ getWASupportedRoleTypes(): string[];
203
+ abstract getRefundsUrl(): string;
204
+ abstract getNotificationUrl(): string;
205
+ abstract getPaymentReturnUrl(): string;
206
+ abstract getCategoriesAndDocumentsUrl(): string;
207
+ abstract getDocumentDataUrl(): string;
208
+ getCamRoleAssignmentsApiUrl(): string;
209
+ abstract getCaseFlagsRefdataApiUrl(): string;
210
+ abstract getRDCommonDataApiUrl(): string;
211
+ abstract getCaseDataStoreApiUrl(): string;
212
+ abstract getEventsToHide(): string[];
213
+ }
214
+ declare class CaseEditorConfig {
215
+ api_url: string;
216
+ case_data_url: string;
217
+ document_management_url: string;
218
+ document_management_url_v2: string;
219
+ hrs_url: string;
220
+ document_management_secure_enabled: boolean;
221
+ documentSecureModeCaseTypeExclusions: string;
222
+ mc_cdam_exclusion_list: string;
223
+ login_url: string;
224
+ oauth2_client_id: string;
225
+ postcode_lookup_url: string;
226
+ remote_document_management_url: string;
227
+ remote_hrs_url: string;
228
+ annotation_api_url: string;
229
+ payments_url: string;
230
+ pay_bulk_scan_url: string;
231
+ activity_batch_collection_delay_ms: number;
232
+ activity_next_poll_request_ms: number;
233
+ activity_retry: number;
234
+ timeouts_case_retrieval: number[];
235
+ timeouts_case_retrieval_artificial_delay: number;
236
+ activity_url: string;
237
+ activity_max_request_per_batch: number;
238
+ print_service_url: string;
239
+ /**
240
+ * remote_print_service_url marked as optional since deprecation, ahead of removal in next major release
241
+ * @deprecated
242
+ */
243
+ remote_print_service_url?: string;
244
+ pagination_page_size: number;
245
+ prd_url: string;
246
+ cache_time_out: number;
247
+ work_allocation_api_url: string;
248
+ user_info_api_url: string;
249
+ wa_service_config?: any;
250
+ access_management_basic_view_mock?: {
251
+ active?: boolean;
252
+ basicFields?: {
253
+ caseNameHmctsInternal?: string;
254
+ caseManagementLocation?: {
255
+ baseLocation?: number;
256
+ };
257
+ };
258
+ accessProcess?: string;
259
+ };
260
+ access_management_request_review_mock?: {
261
+ active?: boolean;
262
+ details?: {
263
+ caseName: string;
264
+ caseReference: string;
265
+ dateSubmitted: string;
266
+ requestFrom: string;
267
+ reasonForCaseAccess: string;
268
+ };
269
+ accessProcess?: string;
270
+ };
271
+ location_ref_api_url?: string;
272
+ cam_role_assignments_api_url?: string;
273
+ refunds_url: string;
274
+ notification_url: string;
275
+ payment_return_url: string;
276
+ categories_and_documents_url: string;
277
+ document_data_url: string;
278
+ case_flags_refdata_api_url: string;
279
+ rd_common_data_api_url: string;
280
+ case_data_store_api_url: string;
281
+ icp_enabled: boolean;
282
+ icp_jurisdictions: string[];
283
+ events_to_hide: string[];
284
+ enable_service_specific_multi_followups: string[];
285
+ wa_supported_role_categories: string[];
286
+ wa_supported_role_types: string[];
287
+ }
288
+
289
+ declare class HttpError {
290
+ constructor();
291
+ private static readonly DEFAULT_ERROR;
292
+ private static readonly DEFAULT_MESSAGE;
293
+ private static readonly DEFAULT_STATUS;
294
+ private static readonly MESSAGE_ERROR_429;
295
+ timestamp: string;
296
+ status: number;
297
+ error: string;
298
+ exception: string;
299
+ message: string;
300
+ path: string;
301
+ details?: any;
302
+ callbackErrors?: any;
303
+ callbackWarnings?: any;
304
+ static from(response: HttpErrorResponse): HttpError;
305
+ }
306
+
307
+ /**
308
+ * `Oauth2Service` and `AuthService` cannot be merged as it creates a cyclic dependency on `AuthService` through `HttpErrorService`.
309
+ */
310
+ declare class AuthService {
311
+ private readonly appConfig;
312
+ private readonly document;
313
+ private static readonly PATH_OAUTH2_REDIRECT;
314
+ constructor(appConfig: AbstractAppConfig, document: any);
315
+ signIn(): void;
316
+ redirectUri(): string;
317
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
318
+ static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
319
+ }
320
+
321
+ declare class LoadingService {
322
+ private readonly registered;
323
+ private readonly loading;
324
+ private readonly sharedSpinners;
325
+ get isLoading(): Observable<boolean>;
326
+ register(): string;
327
+ unregister(token: string): void;
328
+ addSharedSpinner(spinnerId: string): void;
329
+ hasSharedSpinner(): boolean;
330
+ unregisterSharedSpinner(): void;
331
+ private generateToken;
332
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoadingService, never>;
333
+ static ɵprov: i0.ɵɵInjectableDeclaration<LoadingService>;
334
+ }
335
+
336
+ declare class LoadingModule {
337
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoadingModule, never>;
338
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LoadingModule, never, never, never>;
339
+ static ɵinj: i0.ɵɵInjectorDeclaration<LoadingModule>;
340
+ }
341
+
342
+ declare class HttpErrorService {
343
+ private readonly authService;
344
+ private readonly loadingService;
345
+ private static readonly logger;
346
+ constructor(authService: AuthService, loadingService: LoadingService);
347
+ private static readonly CONTENT_TYPE;
348
+ private static readonly JSON;
349
+ private error;
350
+ static convertToHttpError(error: HttpErrorResponse | any): HttpError;
351
+ setError(error: HttpError): void;
352
+ removeError(): HttpError;
353
+ handle(error: HttpErrorResponse | any, redirectIfNotAuthorised?: boolean): Observable<never>;
354
+ static ɵfac: i0.ɵɵFactoryDeclaration<HttpErrorService, never>;
355
+ static ɵprov: i0.ɵɵInjectableDeclaration<HttpErrorService>;
356
+ }
357
+
358
+ declare class HttpService {
359
+ private readonly httpclient;
360
+ private readonly httpErrorService;
361
+ private static readonly HEADER_ACCEPT;
362
+ private static readonly HEADER_CONTENT_TYPE;
363
+ constructor(httpclient: HttpClient, httpErrorService: HttpErrorService);
364
+ /**
365
+ *
366
+ * @param url Url resolved using UrlResolverService
367
+ * @param options OptionsType
368
+ * @returns Observable<any> return value
369
+ * @see UrlResolverService
370
+ */
371
+ get(url: string, options?: OptionsType, redirectIfNotAuthorised?: boolean, errorHandler?: (error: HttpErrorResponse) => HttpError): Observable<any>;
372
+ /**
373
+ *
374
+ * @param url Url resolved using UrlResolverService
375
+ * @param body Body for post
376
+ * @param options OptionsType
377
+ * @returns Observable<any> return value
378
+ * @see UrlResolverService
379
+ */
380
+ post(url: string, body: any, options?: OptionsType, redirectIfNotAuthorised?: boolean): Observable<any>;
381
+ /**
382
+ *
383
+ * @param url Url resolved using UrlResolverService
384
+ * @param body Body for post
385
+ * @param options OptionsType
386
+ * @returns Observable<any> return value
387
+ * @see UrlResolverService
388
+ */
389
+ put(url: string, body: any, options?: OptionsType): Observable<any>;
390
+ /**
391
+ *
392
+ * @param url Url resolved using UrlResolverService
393
+ * @param options OptionsType
394
+ * @returns Observable<any> return value
395
+ * @see UrlResolverService
396
+ */
397
+ delete(url: string, options?: OptionsType): Observable<any>;
398
+ setDefaultValue(options?: OptionsType): OptionsType;
399
+ static ɵfac: i0.ɵɵFactoryDeclaration<HttpService, never>;
400
+ static ɵprov: i0.ɵɵInjectableDeclaration<HttpService>;
401
+ }
402
+ interface OptionsType {
403
+ headers?: HttpHeaders;
404
+ observe: 'body';
405
+ params?: HttpParams | {
406
+ [param: string]: string | string[];
407
+ };
408
+ reportProgress?: boolean;
409
+ responseType?: 'json';
410
+ withCredentials?: boolean;
411
+ }
412
+
413
+ declare class ProfileService {
414
+ private readonly httpService;
415
+ private readonly appConfig;
416
+ static readonly V2_MEDIATYPE_USER_PROFILE = "application/vnd.uk.gov.hmcts.ccd-data-store-api.ui-user-profile.v2+json;charset=UTF-8";
417
+ private static readonly URL;
418
+ private profile$;
419
+ constructor(httpService: HttpService, appConfig: AbstractAppConfig);
420
+ get(): Observable<Profile>;
421
+ clearProfileCache(): void;
422
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProfileService, never>;
423
+ static ɵprov: i0.ɵɵInjectableDeclaration<ProfileService>;
46
424
  }
47
425
 
48
426
  declare class HeaderBarComponent {
427
+ private readonly profileService;
428
+ private readonly profileNotifier;
429
+ constructor(profileService: ProfileService, profileNotifier: ProfileNotifier);
49
430
  title: string;
50
431
  isSolicitor: boolean;
51
432
  username: string;
52
433
  private readonly signOutRequest;
53
434
  signOut(): void;
54
- static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBarComponent, never>;
435
+ static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBarComponent, [{ optional: true; }, { optional: true; }]>;
55
436
  static ɵcmp: i0.ɵɵComponentDeclaration<HeaderBarComponent, "cut-header-bar", never, { "title": { "alias": "title"; "required": false; }; "isSolicitor": { "alias": "isSolicitor"; "required": false; }; "username": { "alias": "username"; "required": false; }; }, { "signOutRequest": "signOutRequest"; }, never, ["[headerNavigation]"], false, never>;
56
437
  }
57
438
 
@@ -200,353 +581,71 @@ declare enum NotificationBannerHeaderClass {
200
581
  declare class NotificationBannerComponent {
201
582
  notificationBannerConfig: NotificationBannerConfig;
202
583
  linkClicked: EventEmitter<string>;
203
- get notificationBannerType(): typeof NotificationBannerType;
204
- onLinkClick(triggerOutputEventText: string): void;
205
- static ɵfac: i0.ɵɵFactoryDeclaration<NotificationBannerComponent, never>;
206
- static ɵcmp: i0.ɵɵComponentDeclaration<NotificationBannerComponent, "ccd-notification-banner", never, { "notificationBannerConfig": { "alias": "notificationBannerConfig"; "required": false; }; }, { "linkClicked": "linkClicked"; }, never, never, false, never>;
207
- }
208
-
209
- declare class TabComponent {
210
- id: string;
211
- title: string;
212
- selected: boolean;
213
- static ɵfac: i0.ɵɵFactoryDeclaration<TabComponent, never>;
214
- static ɵcmp: i0.ɵɵComponentDeclaration<TabComponent, "cut-tab", never, { "id": { "alias": "id"; "required": false; }; "title": { "alias": "title"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, {}, never, ["*"], false, never>;
215
- }
216
-
217
- declare class TabsComponent implements AfterContentInit {
218
- private readonly route;
219
- tabs: QueryList<ElementRef>;
220
- panels: QueryList<TabComponent>;
221
- private readonly panelIds;
222
- constructor(route: ActivatedRoute);
223
- ngAfterContentInit(): void;
224
- show(id: string): void;
225
- static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
226
- static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "cut-tabs", never, {}, {}, ["panels"], ["*"], false, never>;
227
- }
228
-
229
- declare class TabsModule {
230
- static ɵfac: i0.ɵɵFactoryDeclaration<TabsModule, never>;
231
- static ɵmod: i0.ɵɵNgModuleDeclaration<TabsModule, [typeof TabsComponent, typeof TabComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i7.RpxTranslationModule], [typeof TabsComponent, typeof TabComponent]>;
232
- static ɵinj: i0.ɵɵInjectorDeclaration<TabsModule>;
233
- }
234
-
235
- declare class ActivityBannerComponent implements OnInit {
236
- bannerType: string;
237
- description: string;
238
- imageLink: string;
239
- constructor();
240
- ngOnInit(): void;
241
- static ɵfac: i0.ɵɵFactoryDeclaration<ActivityBannerComponent, never>;
242
- static ɵcmp: i0.ɵɵComponentDeclaration<ActivityBannerComponent, "ccd-activity-banner", never, { "bannerType": { "alias": "bannerType"; "required": false; }; "description": { "alias": "description"; "required": false; }; "imageLink": { "alias": "imageLink"; "required": false; }; }, {}, never, never, false, never>;
243
- }
244
-
245
- declare class ActivityIconComponent implements OnInit {
246
- description: string;
247
- imageLink: string;
248
- constructor();
249
- ngOnInit(): void;
250
- static ɵfac: i0.ɵɵFactoryDeclaration<ActivityIconComponent, never>;
251
- static ɵcmp: i0.ɵɵComponentDeclaration<ActivityIconComponent, "ccd-activity-icon", never, { "description": { "alias": "description"; "required": false; }; "imageLink": { "alias": "imageLink"; "required": false; }; }, {}, never, never, false, never>;
252
- }
253
-
254
- declare class ActivityInfo {
255
- forename: string;
256
- surname: string;
257
- }
258
- declare class Activity {
259
- caseId: string;
260
- viewers: ActivityInfo[];
261
- editors: ActivityInfo[];
262
- unknownViewers: number;
263
- unknownEditors: number;
264
- }
265
- declare enum DisplayMode {
266
- BANNER = 0,
267
- ICON = 1
268
- }
269
-
270
- interface AccessManagementBasicViewMockModel {
271
- active?: boolean;
272
- basicFields?: {
273
- caseNameHmctsInternal?: string;
274
- caseManagementLocation?: {
275
- baseLocation?: number;
276
- };
277
- };
278
- accessProcess?: string;
279
- }
280
- interface AccessManagementRequestReviewMockModel {
281
- active?: boolean;
282
- details?: {
283
- caseName: string;
284
- caseReference: string;
285
- dateSubmitted: string;
286
- requestFrom: string;
287
- reasonForCaseAccess: string;
288
- };
289
- accessProcess?: string;
290
- }
291
- declare abstract class AbstractAppConfig {
292
- abstract load(): Promise<void>;
293
- abstract getLoginUrl(): string;
294
- abstract getApiUrl(): string;
295
- abstract getCaseDataUrl(): string;
296
- abstract getDocumentManagementUrl(): string;
297
- abstract getDocumentManagementUrlV2(): string;
298
- abstract getCdamExclusionList(): string;
299
- abstract getDocumentSecureModeCaseTypeExclusions(): string;
300
- abstract getRemoteDocumentManagementUrl(): string;
301
- abstract getHrsUrl(): string;
302
- abstract getRemoteHrsUrl(): string;
303
- abstract getAnnotationApiUrl(): string;
304
- abstract getPostcodeLookupUrl(): string;
305
- abstract getOAuth2ClientId(): string;
306
- abstract getPaymentsUrl(): string;
307
- abstract getPayBulkScanBaseUrl(): string;
308
- abstract getCreateOrUpdateDraftsUrl(ctid: string): string;
309
- abstract getViewOrDeleteDraftsUrl(did: string): string;
310
- abstract getActivityUrl(): string;
311
- abstract getActivityNexPollRequestMs(): number;
312
- abstract getActivityRetry(): number;
313
- abstract getTimeoutsForCaseRetrieval(): number[];
314
- abstract getTimeoutsCaseRetrievalArtificialDelay(): number;
315
- abstract getActivityBatchCollectionDelayMs(): number;
316
- abstract getActivityMaxRequestPerBatch(): number;
317
- abstract getCaseHistoryUrl(caseId: string, eventId: string): string;
318
- abstract getPrintServiceUrl(): string;
319
- abstract getIcpEnable(): boolean;
320
- abstract getIcpJurisdictions(): string[];
321
- abstract logMessage(logMessage: string): void;
322
- abstract getEnableServiceSpecificMultiFollowups(): string[];
323
- /**
324
- * Dummy version replacing deprecated `getRemotePrintServiceUrl()`, to be removed in next major release
325
- * @deprecated
326
- * @returns `undefined`
327
- */
328
- getRemotePrintServiceUrl(): string;
329
- abstract getPaginationPageSize(): number;
330
- abstract getBannersUrl(): string;
331
- abstract getPrdUrl(): string;
332
- abstract getCacheTimeOut(): number;
333
- abstract getWorkAllocationApiUrl(): string;
334
- getUserInfoApiUrl(): string;
335
- getWAServiceConfig(): any;
336
- getAccessManagementBasicViewMock(): AccessManagementBasicViewMockModel;
337
- getAccessManagementRequestReviewMockModel(): AccessManagementRequestReviewMockModel;
338
- getLocationRefApiUrl(): string;
339
- getEnvironment(): "aat" | "preview" | "demo" | "ithc" | "prod";
340
- getWASupportedRoleCategories(): string[];
341
- getWASupportedRoleTypes(): string[];
342
- abstract getRefundsUrl(): string;
343
- abstract getNotificationUrl(): string;
344
- abstract getPaymentReturnUrl(): string;
345
- abstract getCategoriesAndDocumentsUrl(): string;
346
- abstract getDocumentDataUrl(): string;
347
- getCamRoleAssignmentsApiUrl(): string;
348
- abstract getCaseFlagsRefdataApiUrl(): string;
349
- abstract getRDCommonDataApiUrl(): string;
350
- abstract getCaseDataStoreApiUrl(): string;
351
- abstract getEventsToHide(): string[];
352
- }
353
- declare class CaseEditorConfig {
354
- api_url: string;
355
- case_data_url: string;
356
- document_management_url: string;
357
- document_management_url_v2: string;
358
- hrs_url: string;
359
- document_management_secure_enabled: boolean;
360
- documentSecureModeCaseTypeExclusions: string;
361
- mc_cdam_exclusion_list: string;
362
- login_url: string;
363
- oauth2_client_id: string;
364
- postcode_lookup_url: string;
365
- remote_document_management_url: string;
366
- remote_hrs_url: string;
367
- annotation_api_url: string;
368
- payments_url: string;
369
- pay_bulk_scan_url: string;
370
- activity_batch_collection_delay_ms: number;
371
- activity_next_poll_request_ms: number;
372
- activity_retry: number;
373
- timeouts_case_retrieval: number[];
374
- timeouts_case_retrieval_artificial_delay: number;
375
- activity_url: string;
376
- activity_max_request_per_batch: number;
377
- print_service_url: string;
378
- /**
379
- * remote_print_service_url marked as optional since deprecation, ahead of removal in next major release
380
- * @deprecated
381
- */
382
- remote_print_service_url?: string;
383
- pagination_page_size: number;
384
- prd_url: string;
385
- cache_time_out: number;
386
- work_allocation_api_url: string;
387
- user_info_api_url: string;
388
- wa_service_config?: any;
389
- access_management_basic_view_mock?: {
390
- active?: boolean;
391
- basicFields?: {
392
- caseNameHmctsInternal?: string;
393
- caseManagementLocation?: {
394
- baseLocation?: number;
395
- };
396
- };
397
- accessProcess?: string;
398
- };
399
- access_management_request_review_mock?: {
400
- active?: boolean;
401
- details?: {
402
- caseName: string;
403
- caseReference: string;
404
- dateSubmitted: string;
405
- requestFrom: string;
406
- reasonForCaseAccess: string;
407
- };
408
- accessProcess?: string;
409
- };
410
- location_ref_api_url?: string;
411
- cam_role_assignments_api_url?: string;
412
- refunds_url: string;
413
- notification_url: string;
414
- payment_return_url: string;
415
- categories_and_documents_url: string;
416
- document_data_url: string;
417
- case_flags_refdata_api_url: string;
418
- rd_common_data_api_url: string;
419
- case_data_store_api_url: string;
420
- icp_enabled: boolean;
421
- icp_jurisdictions: string[];
422
- events_to_hide: string[];
423
- enable_service_specific_multi_followups: string[];
424
- wa_supported_role_categories: string[];
425
- wa_supported_role_types: string[];
584
+ get notificationBannerType(): typeof NotificationBannerType;
585
+ onLinkClick(triggerOutputEventText: string): void;
586
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationBannerComponent, never>;
587
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotificationBannerComponent, "ccd-notification-banner", never, { "notificationBannerConfig": { "alias": "notificationBannerConfig"; "required": false; }; }, { "linkClicked": "linkClicked"; }, never, never, false, never>;
426
588
  }
427
589
 
428
- declare class HttpError {
429
- constructor();
430
- private static readonly DEFAULT_ERROR;
431
- private static readonly DEFAULT_MESSAGE;
432
- private static readonly DEFAULT_STATUS;
433
- private static readonly MESSAGE_ERROR_429;
434
- timestamp: string;
435
- status: number;
436
- error: string;
437
- exception: string;
438
- message: string;
439
- path: string;
440
- details?: any;
441
- callbackErrors?: any;
442
- callbackWarnings?: any;
443
- static from(response: HttpErrorResponse): HttpError;
590
+ declare class TabComponent {
591
+ id: string;
592
+ title: string;
593
+ selected: boolean;
594
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabComponent, never>;
595
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabComponent, "cut-tab", never, { "id": { "alias": "id"; "required": false; }; "title": { "alias": "title"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, {}, never, ["*"], false, never>;
444
596
  }
445
597
 
446
- /**
447
- * `Oauth2Service` and `AuthService` cannot be merged as it creates a cyclic dependency on `AuthService` through `HttpErrorService`.
448
- */
449
- declare class AuthService {
450
- private readonly appConfig;
451
- private readonly document;
452
- private static readonly PATH_OAUTH2_REDIRECT;
453
- constructor(appConfig: AbstractAppConfig, document: any);
454
- signIn(): void;
455
- redirectUri(): string;
456
- static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
457
- static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
598
+ declare class TabsComponent implements AfterContentInit {
599
+ private readonly route;
600
+ tabs: QueryList<ElementRef>;
601
+ panels: QueryList<TabComponent>;
602
+ private readonly panelIds;
603
+ constructor(route: ActivatedRoute);
604
+ ngAfterContentInit(): void;
605
+ show(id: string): void;
606
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
607
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "cut-tabs", never, {}, {}, ["panels"], ["*"], false, never>;
458
608
  }
459
609
 
460
- declare class LoadingService {
461
- private readonly registered;
462
- private readonly loading;
463
- private readonly sharedSpinners;
464
- get isLoading(): Observable<boolean>;
465
- register(): string;
466
- unregister(token: string): void;
467
- addSharedSpinner(spinnerId: string): void;
468
- hasSharedSpinner(): boolean;
469
- unregisterSharedSpinner(): void;
470
- private generateToken;
471
- static ɵfac: i0.ɵɵFactoryDeclaration<LoadingService, never>;
472
- static ɵprov: i0.ɵɵInjectableDeclaration<LoadingService>;
610
+ declare class TabsModule {
611
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabsModule, never>;
612
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TabsModule, [typeof TabsComponent, typeof TabComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i7.RpxTranslationModule], [typeof TabsComponent, typeof TabComponent]>;
613
+ static ɵinj: i0.ɵɵInjectorDeclaration<TabsModule>;
473
614
  }
474
615
 
475
- declare class LoadingModule {
476
- static ɵfac: i0.ɵɵFactoryDeclaration<LoadingModule, never>;
477
- static ɵmod: i0.ɵɵNgModuleDeclaration<LoadingModule, never, never, never>;
478
- static ɵinj: i0.ɵɵInjectorDeclaration<LoadingModule>;
616
+ declare class ActivityBannerComponent implements OnInit {
617
+ bannerType: string;
618
+ description: string;
619
+ imageLink: string;
620
+ constructor();
621
+ ngOnInit(): void;
622
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActivityBannerComponent, never>;
623
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActivityBannerComponent, "ccd-activity-banner", never, { "bannerType": { "alias": "bannerType"; "required": false; }; "description": { "alias": "description"; "required": false; }; "imageLink": { "alias": "imageLink"; "required": false; }; }, {}, never, never, false, never>;
479
624
  }
480
625
 
481
- declare class HttpErrorService {
482
- private readonly authService;
483
- private readonly loadingService;
484
- private static readonly logger;
485
- constructor(authService: AuthService, loadingService: LoadingService);
486
- private static readonly CONTENT_TYPE;
487
- private static readonly JSON;
488
- private error;
489
- static convertToHttpError(error: HttpErrorResponse | any): HttpError;
490
- setError(error: HttpError): void;
491
- removeError(): HttpError;
492
- handle(error: HttpErrorResponse | any, redirectIfNotAuthorised?: boolean): Observable<never>;
493
- static ɵfac: i0.ɵɵFactoryDeclaration<HttpErrorService, never>;
494
- static ɵprov: i0.ɵɵInjectableDeclaration<HttpErrorService>;
626
+ declare class ActivityIconComponent implements OnInit {
627
+ description: string;
628
+ imageLink: string;
629
+ constructor();
630
+ ngOnInit(): void;
631
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActivityIconComponent, never>;
632
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActivityIconComponent, "ccd-activity-icon", never, { "description": { "alias": "description"; "required": false; }; "imageLink": { "alias": "imageLink"; "required": false; }; }, {}, never, never, false, never>;
495
633
  }
496
634
 
497
- declare class HttpService {
498
- private readonly httpclient;
499
- private readonly httpErrorService;
500
- private static readonly HEADER_ACCEPT;
501
- private static readonly HEADER_CONTENT_TYPE;
502
- constructor(httpclient: HttpClient, httpErrorService: HttpErrorService);
503
- /**
504
- *
505
- * @param url Url resolved using UrlResolverService
506
- * @param options OptionsType
507
- * @returns Observable<any> return value
508
- * @see UrlResolverService
509
- */
510
- get(url: string, options?: OptionsType, redirectIfNotAuthorised?: boolean, errorHandler?: (error: HttpErrorResponse) => HttpError): Observable<any>;
511
- /**
512
- *
513
- * @param url Url resolved using UrlResolverService
514
- * @param body Body for post
515
- * @param options OptionsType
516
- * @returns Observable<any> return value
517
- * @see UrlResolverService
518
- */
519
- post(url: string, body: any, options?: OptionsType, redirectIfNotAuthorised?: boolean): Observable<any>;
520
- /**
521
- *
522
- * @param url Url resolved using UrlResolverService
523
- * @param body Body for post
524
- * @param options OptionsType
525
- * @returns Observable<any> return value
526
- * @see UrlResolverService
527
- */
528
- put(url: string, body: any, options?: OptionsType): Observable<any>;
529
- /**
530
- *
531
- * @param url Url resolved using UrlResolverService
532
- * @param options OptionsType
533
- * @returns Observable<any> return value
534
- * @see UrlResolverService
535
- */
536
- delete(url: string, options?: OptionsType): Observable<any>;
537
- setDefaultValue(options?: OptionsType): OptionsType;
538
- static ɵfac: i0.ɵɵFactoryDeclaration<HttpService, never>;
539
- static ɵprov: i0.ɵɵInjectableDeclaration<HttpService>;
635
+ declare class ActivityInfo {
636
+ forename: string;
637
+ surname: string;
540
638
  }
541
- interface OptionsType {
542
- headers?: HttpHeaders;
543
- observe: 'body';
544
- params?: HttpParams | {
545
- [param: string]: string | string[];
546
- };
547
- reportProgress?: boolean;
548
- responseType?: 'json';
549
- withCredentials?: boolean;
639
+ declare class Activity {
640
+ caseId: string;
641
+ viewers: ActivityInfo[];
642
+ editors: ActivityInfo[];
643
+ unknownViewers: number;
644
+ unknownEditors: number;
645
+ }
646
+ declare enum DisplayMode {
647
+ BANNER = 0,
648
+ ICON = 1
550
649
  }
551
650
 
552
651
  declare class SessionStorageService {
@@ -683,10 +782,6 @@ declare class CaseEventData {
683
782
  case_reference?: string;
684
783
  }
685
784
 
686
- interface Orderable {
687
- order?: number;
688
- }
689
-
690
785
  declare class ComplexFieldOverride {
691
786
  complex_field_element_id: string;
692
787
  display_context: string;
@@ -702,14 +797,6 @@ declare class WizardPageField implements Orderable {
702
797
  complex_field_overrides?: ComplexFieldOverride[];
703
798
  }
704
799
 
705
- declare class AccessControlList {
706
- role: string;
707
- create: boolean;
708
- read: boolean;
709
- update: boolean;
710
- delete: boolean;
711
- }
712
-
713
800
  type FieldTypeEnum = 'Text' | 'TextArea' | 'Postcode' | 'Number' | 'YesOrNo' | 'Date' | 'DateTime' | 'Email' | 'PhoneUK' | 'MoneyGBP' | 'FixedList' | 'DynamicList' | 'FixedRadioList' | 'DynamicRadioList' | 'DynamicMultiSelectList' | 'Complex' | 'Collection' | 'MultiSelectList' | 'Document' | 'Label' | 'AddressGlobal' | 'AddressGlobalUK' | 'AddressUK' | 'CasePaymentHistoryViewer' | 'CaseHistoryViewer' | 'Organisation' | 'WaysToPay' | 'ComponentLauncher' | 'Flags' | 'FlagDetail' | 'FlagLauncher' | 'CaseFlag' | 'JudicialUser';
714
801
 
715
802
  declare class FixedListItem implements Orderable {
@@ -970,45 +1057,6 @@ declare class CaseViewTrigger implements Orderable {
970
1057
  order?: number;
971
1058
  }
972
1059
 
973
- declare class EventCaseField {
974
- case_field_id: string;
975
- showCondition: string;
976
- }
977
-
978
- declare class CaseEvent implements Orderable {
979
- id: string;
980
- name: string;
981
- post_state: string;
982
- pre_states: string[];
983
- case_fields: EventCaseField[];
984
- description: string;
985
- order?: number;
986
- acls?: AccessControlList[];
987
- }
988
-
989
- declare class CaseState implements Orderable {
990
- id: string;
991
- name: string;
992
- description: string;
993
- order?: number;
994
- }
995
-
996
- declare class CaseTypeLite {
997
- id: string;
998
- name: string;
999
- events: CaseEvent[];
1000
- states: CaseState[];
1001
- description: string;
1002
- }
1003
-
1004
- declare class Jurisdiction {
1005
- id: string;
1006
- name: string;
1007
- description: string;
1008
- caseTypes: CaseTypeLite[];
1009
- currentCaseType?: CaseTypeLite;
1010
- }
1011
-
1012
1060
  declare class CaseType {
1013
1061
  id: string;
1014
1062
  name: string;
@@ -1227,29 +1275,6 @@ declare class PaginationMetadata {
1227
1275
 
1228
1276
  type Predicate<T> = (value: T) => boolean;
1229
1277
 
1230
- declare class Profile {
1231
- user: {
1232
- idam: {
1233
- id: string;
1234
- email: string;
1235
- forename: string;
1236
- surname: string;
1237
- roles: string[];
1238
- };
1239
- };
1240
- channels: string[];
1241
- jurisdictions: Jurisdiction[];
1242
- default: {
1243
- workbasket: {
1244
- jurisdiction_id: string;
1245
- case_type_id: string;
1246
- state_id: string;
1247
- };
1248
- };
1249
- isSolicitor(): boolean;
1250
- isCourtAdmin(): boolean;
1251
- }
1252
-
1253
1278
  declare class Field {
1254
1279
  id: string;
1255
1280
  field_type: FieldType;
@@ -2673,23 +2698,13 @@ declare class OrderService {
2673
2698
  static ɵprov: i0.ɵɵInjectableDeclaration<OrderService>;
2674
2699
  }
2675
2700
 
2676
- declare class ProfileService {
2677
- private readonly httpService;
2678
- private readonly appConfig;
2679
- static readonly V2_MEDIATYPE_USER_PROFILE = "application/vnd.uk.gov.hmcts.ccd-data-store-api.ui-user-profile.v2+json;charset=UTF-8";
2680
- private static readonly URL;
2681
- constructor(httpService: HttpService, appConfig: AbstractAppConfig);
2682
- get(): Observable<Profile>;
2683
- static ɵfac: i0.ɵɵFactoryDeclaration<ProfileService, never>;
2684
- static ɵprov: i0.ɵɵInjectableDeclaration<ProfileService>;
2685
- }
2686
-
2687
- declare class ProfileNotifier {
2688
- readonly profileSource: BehaviorSubject<Profile>;
2689
- profile: rxjs.Observable<Profile>;
2690
- announceProfile(profile: Profile): void;
2691
- static ɵfac: i0.ɵɵFactoryDeclaration<ProfileNotifier, never>;
2692
- static ɵprov: i0.ɵɵInjectableDeclaration<ProfileNotifier>;
2701
+ declare class ProfileResolver implements Resolve<Profile> {
2702
+ private readonly profileService;
2703
+ private readonly profileNotifier;
2704
+ constructor(profileService: ProfileService, profileNotifier: ProfileNotifier);
2705
+ resolve(): Observable<Profile>;
2706
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProfileResolver, never>;
2707
+ static ɵprov: i0.ɵɵInjectableDeclaration<ProfileResolver>;
2693
2708
  }
2694
2709
 
2695
2710
  declare class RequestOptionsBuilder {
@@ -7002,7 +7017,6 @@ declare class EventTriggerResolver implements Resolve<CaseEventTrigger> {
7002
7017
  static readonly IGNORE_WARNING = "ignoreWarning";
7003
7018
  private static readonly IGNORE_WARNING_VALUES;
7004
7019
  private cachedEventTrigger;
7005
- private cachedProfile;
7006
7020
  constructor(casesService: CasesService, alertService: AlertService, profileService: ProfileService, profileNotifier: ProfileNotifier, router: Router, appConfig: AbstractAppConfig, errorNotifier: ErrorNotifierService, loadingService: LoadingService, sessionStorageService: SessionStorageService);
7007
7021
  resolve(route: ActivatedRouteSnapshot): Promise<CaseEventTrigger>;
7008
7022
  private isRootTriggerEventRoute;
@@ -7863,6 +7877,6 @@ declare class TestRouteSnapshotBuilder {
7863
7877
 
7864
7878
  declare function safeJsonParse<T>(value: string | null, fallback?: T | null): T | null;
7865
7879
 
7866
- export { AbstractAppConfig, AbstractFieldReadComponent, AbstractFieldWriteComponent, AbstractFieldWriteJourneyComponent, AbstractJourneyComponent, 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, CaseFileViewFolderToggleComponent, 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, CloseQueryComponent, 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, FocusService, 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$1 as LinkedCasesResponse, LinkedCasesToTableComponent, LoadingModule, LoadingService, LoadingSpinnerComponent, LoadingSpinnerModule, MEDIA_VIEWER_LOCALSTORAGE_KEY, MULTIPLE_TASKS_FOUND, ManageCaseFlagsComponent, ManageCaseFlagsLabelDisplayPipe, MarkdownComponent, MarkdownComponentModule, MoneyGbpInputComponent, MultipageComponentStateService, 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, QualifyingQuestionService, QualifyingQuestionsErrorMessage, QueryAttachmentsReadComponent, QueryCaseDetailsHeaderComponent, QueryCheckYourAnswersComponent, QueryConfirmationComponent, QueryCreateContext, QueryDetailsComponent, QueryEventCompletionComponent, QueryItemResponseStatus, QueryListComponent, QueryListData, QueryListItem, QueryManagementService, 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, SessionErrorPageComponent, SessionErrorRoute, SessionJsonErrorLogger, SessionStorageGuard, SessionStorageService, ShowCondition, SortOrder$1 as SortOrder, SortParameters, SortSearchResultPipe, StructuredLoggerService, TabComponent, TableColumnConfig, TableConfig, TabsComponent, TabsModule, TaskAssignedComponent, TaskCancelledComponent, TaskConflictComponent, TaskUnassignedComponent, Terms, TestRouteSnapshotBuilder, TranslatedMarkdownDirective, TranslatedMarkdownModule, 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, safeJsonParse, textFieldType, viewerRouting };
7880
+ export { AbstractAppConfig, AbstractFieldReadComponent, AbstractFieldWriteComponent, AbstractFieldWriteJourneyComponent, AbstractJourneyComponent, 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, CaseFileViewFolderToggleComponent, 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, CloseQueryComponent, 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, FocusService, 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$1 as LinkedCasesResponse, LinkedCasesToTableComponent, LoadingModule, LoadingService, LoadingSpinnerComponent, LoadingSpinnerModule, MEDIA_VIEWER_LOCALSTORAGE_KEY, MULTIPLE_TASKS_FOUND, ManageCaseFlagsComponent, ManageCaseFlagsLabelDisplayPipe, MarkdownComponent, MarkdownComponentModule, MoneyGbpInputComponent, MultipageComponentStateService, 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, ProfileResolver, ProfileService, QualifyingQuestionDetailComponent, QualifyingQuestionOptionsComponent, QualifyingQuestionService, QualifyingQuestionsErrorMessage, QueryAttachmentsReadComponent, QueryCaseDetailsHeaderComponent, QueryCheckYourAnswersComponent, QueryConfirmationComponent, QueryCreateContext, QueryDetailsComponent, QueryEventCompletionComponent, QueryItemResponseStatus, QueryListComponent, QueryListData, QueryListItem, QueryManagementService, 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, SessionErrorPageComponent, SessionErrorRoute, SessionJsonErrorLogger, SessionStorageGuard, SessionStorageService, ShowCondition, SortOrder$1 as SortOrder, SortParameters, SortSearchResultPipe, StructuredLoggerService, TabComponent, TableColumnConfig, TableConfig, TabsComponent, TabsModule, TaskAssignedComponent, TaskCancelledComponent, TaskConflictComponent, TaskUnassignedComponent, Terms, TestRouteSnapshotBuilder, TranslatedMarkdownDirective, TranslatedMarkdownModule, 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, safeJsonParse, textFieldType, viewerRouting };
7867
7881
  export type { AccessManagementBasicViewMockModel, AccessManagementRequestReviewMockModel, AlertLevel, CaseEditCaseSubmit, CaseEditGenerateCaseEventData, CaseEditGetNextPage, CaseEditSubmitForm, CaseEditValidationError, CaseEditonEventCanBeCompleted, CaseFlagState, CaseMessage, CaseQueriesCollection, CaseTypeQualifyingQuestions, ChallengedAccessRequest, DisplayedAccessReason$1 as DisplayedAccessReason, ErrorMessage, EventCompletionComponentEmitter, EventCompletionStateMachineContext, FieldTypeEnum, FlagDetail, FlagDetailDisplay, FlagDetailDisplayWithFormGroupPath, FlagPath, Flags, FlagsWithFormGroupPath, Journey, JourneyInstigator, Language, LinkedCasesState, NotificationBannerConfig, OptionsType, Orderable, Organisation, OrganisationAddress, OrganisationSuperUser, OrganisationVm, Predicate, QmCaseQueriesCollection, QualifyingQuestion, QueryListColumn, QueryMessage, QueryMessageDocument, RequestedRole, RequestedRoleNote, ReviewSpecificAccessRequest, RoleAssignmentResponse, RoleCategory, RoleClassification, RoleGrantTypeCategory, RoleRequest, RoleRequestPayload, RoleType, SearchResultViewItemComparator, SearchView, ServiceConfig, SimpleOrganisationModel, SpecificAccessRequest, StructuredLogEntry, StructuredLogLevel, TaskSearchParameter, TaskSearchParameters, WAFeatureConfig };
7868
7882
  //# sourceMappingURL=index.d.ts.map