@hmcts/ccd-case-ui-toolkit 7.3.89 → 7.3.90-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 i146 from '@angular/material/legacy-dialog';
16
16
  import { MatLegacyDialog, MatLegacyDialogRef, MatLegacyDialogConfig } from '@angular/material/legacy-dialog';
@@ -38,22 +38,403 @@ import * as i25 from '@angular/material/legacy-tabs';
38
38
  import { MatLegacyTabGroup } from '@angular/material/legacy-tabs';
39
39
  import { MatDialogConfig } from '@angular/material/dialog';
40
40
 
41
- declare class FooterComponent {
42
- email: string;
43
- isSolicitor: boolean;
44
- phone: string;
45
- workhours: string;
46
- static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
47
- 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>;
41
+ declare class FooterComponent {
42
+ email: string;
43
+ isSolicitor: boolean;
44
+ phone: string;
45
+ workhours: string;
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
47
+ 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>;
48
+ }
49
+
50
+ interface Orderable {
51
+ order?: number;
52
+ }
53
+
54
+ declare class AccessControlList {
55
+ role: string;
56
+ create: boolean;
57
+ read: boolean;
58
+ update: boolean;
59
+ delete: boolean;
60
+ }
61
+
62
+ declare class EventCaseField {
63
+ case_field_id: string;
64
+ showCondition: string;
65
+ }
66
+
67
+ declare class CaseEvent implements Orderable {
68
+ id: string;
69
+ name: string;
70
+ post_state: string;
71
+ pre_states: string[];
72
+ case_fields: EventCaseField[];
73
+ description: string;
74
+ order?: number;
75
+ acls?: AccessControlList[];
76
+ }
77
+
78
+ declare class CaseState implements Orderable {
79
+ id: string;
80
+ name: string;
81
+ description: string;
82
+ order?: number;
83
+ }
84
+
85
+ declare class CaseTypeLite {
86
+ id: string;
87
+ name: string;
88
+ events: CaseEvent[];
89
+ states: CaseState[];
90
+ description: string;
91
+ }
92
+
93
+ declare class Jurisdiction {
94
+ id: string;
95
+ name: string;
96
+ description: string;
97
+ caseTypes: CaseTypeLite[];
98
+ currentCaseType?: CaseTypeLite;
99
+ }
100
+
101
+ declare class Profile {
102
+ user: {
103
+ idam: {
104
+ id: string;
105
+ email: string;
106
+ forename: string;
107
+ surname: string;
108
+ roles: string[];
109
+ };
110
+ };
111
+ channels: string[];
112
+ jurisdictions: Jurisdiction[];
113
+ default: {
114
+ workbasket: {
115
+ jurisdiction_id: string;
116
+ case_type_id: string;
117
+ state_id: string;
118
+ };
119
+ };
120
+ isSolicitor(): boolean;
121
+ isCourtAdmin(): boolean;
122
+ }
123
+
124
+ declare class ProfileNotifier {
125
+ readonly profileSource: BehaviorSubject<Profile>;
126
+ profile: rxjs.Observable<Profile>;
127
+ announceProfile(profile: Profile): void;
128
+ clearProfile(): void;
129
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProfileNotifier, never>;
130
+ static ɵprov: i0.ɵɵInjectableDeclaration<ProfileNotifier>;
131
+ }
132
+
133
+ interface AccessManagementBasicViewMockModel {
134
+ active?: boolean;
135
+ basicFields?: {
136
+ caseNameHmctsInternal?: string;
137
+ caseManagementLocation?: {
138
+ baseLocation?: number;
139
+ };
140
+ };
141
+ accessProcess?: string;
142
+ }
143
+ interface AccessManagementRequestReviewMockModel {
144
+ active?: boolean;
145
+ details?: {
146
+ caseName: string;
147
+ caseReference: string;
148
+ dateSubmitted: string;
149
+ requestFrom: string;
150
+ reasonForCaseAccess: string;
151
+ };
152
+ accessProcess?: string;
153
+ }
154
+ declare abstract class AbstractAppConfig {
155
+ abstract load(): Promise<void>;
156
+ abstract getLoginUrl(): string;
157
+ abstract getApiUrl(): string;
158
+ abstract getCaseDataUrl(): string;
159
+ abstract getDocumentManagementUrl(): string;
160
+ abstract getDocumentManagementUrlV2(): string;
161
+ abstract getCdamExclusionList(): string;
162
+ abstract getDocumentSecureModeCaseTypeExclusions(): string;
163
+ abstract getRemoteDocumentManagementUrl(): string;
164
+ abstract getHrsUrl(): string;
165
+ abstract getRemoteHrsUrl(): string;
166
+ abstract getAnnotationApiUrl(): string;
167
+ abstract getPostcodeLookupUrl(): string;
168
+ abstract getOAuth2ClientId(): string;
169
+ abstract getPaymentsUrl(): string;
170
+ abstract getPayBulkScanBaseUrl(): string;
171
+ abstract getCreateOrUpdateDraftsUrl(ctid: string): string;
172
+ abstract getViewOrDeleteDraftsUrl(did: string): string;
173
+ abstract getActivityUrl(): string;
174
+ abstract getActivityNexPollRequestMs(): number;
175
+ abstract getActivityRetry(): number;
176
+ abstract getTimeoutsForCaseRetrieval(): number[];
177
+ abstract getTimeoutsCaseRetrievalArtificialDelay(): number;
178
+ abstract getActivityBatchCollectionDelayMs(): number;
179
+ abstract getActivityMaxRequestPerBatch(): number;
180
+ abstract getCaseHistoryUrl(caseId: string, eventId: string): string;
181
+ abstract getPrintServiceUrl(): string;
182
+ abstract getIcpEnable(): boolean;
183
+ abstract getIcpJurisdictions(): string[];
184
+ abstract logMessage(logMessage: string): void;
185
+ abstract getEnableServiceSpecificMultiFollowups(): string[];
186
+ /**
187
+ * Dummy version replacing deprecated `getRemotePrintServiceUrl()`, to be removed in next major release
188
+ * @deprecated
189
+ * @returns `undefined`
190
+ */
191
+ getRemotePrintServiceUrl(): string;
192
+ abstract getPaginationPageSize(): number;
193
+ abstract getBannersUrl(): string;
194
+ abstract getPrdUrl(): string;
195
+ abstract getCacheTimeOut(): number;
196
+ abstract getWorkAllocationApiUrl(): string;
197
+ getUserInfoApiUrl(): string;
198
+ getWAServiceConfig(): any;
199
+ getAccessManagementBasicViewMock(): AccessManagementBasicViewMockModel;
200
+ getAccessManagementRequestReviewMockModel(): AccessManagementRequestReviewMockModel;
201
+ getLocationRefApiUrl(): string;
202
+ getEnvironment(): "aat" | "preview" | "demo" | "ithc" | "prod";
203
+ getWASupportedRoleCategories(): string[];
204
+ getWASupportedRoleTypes(): string[];
205
+ abstract getRefundsUrl(): string;
206
+ abstract getNotificationUrl(): string;
207
+ abstract getPaymentReturnUrl(): string;
208
+ abstract getCategoriesAndDocumentsUrl(): string;
209
+ abstract getDocumentDataUrl(): string;
210
+ getCamRoleAssignmentsApiUrl(): string;
211
+ abstract getCaseFlagsRefdataApiUrl(): string;
212
+ abstract getRDCommonDataApiUrl(): string;
213
+ abstract getCaseDataStoreApiUrl(): string;
214
+ abstract getEventsToHide(): string[];
215
+ }
216
+ declare class CaseEditorConfig {
217
+ api_url: string;
218
+ case_data_url: string;
219
+ document_management_url: string;
220
+ document_management_url_v2: string;
221
+ hrs_url: string;
222
+ document_management_secure_enabled: boolean;
223
+ documentSecureModeCaseTypeExclusions: string;
224
+ mc_cdam_exclusion_list: string;
225
+ login_url: string;
226
+ oauth2_client_id: string;
227
+ postcode_lookup_url: string;
228
+ remote_document_management_url: string;
229
+ remote_hrs_url: string;
230
+ annotation_api_url: string;
231
+ payments_url: string;
232
+ pay_bulk_scan_url: string;
233
+ activity_batch_collection_delay_ms: number;
234
+ activity_next_poll_request_ms: number;
235
+ activity_retry: number;
236
+ timeouts_case_retrieval: number[];
237
+ timeouts_case_retrieval_artificial_delay: number;
238
+ activity_url: string;
239
+ activity_max_request_per_batch: number;
240
+ print_service_url: string;
241
+ /**
242
+ * remote_print_service_url marked as optional since deprecation, ahead of removal in next major release
243
+ * @deprecated
244
+ */
245
+ remote_print_service_url?: string;
246
+ pagination_page_size: number;
247
+ prd_url: string;
248
+ cache_time_out: number;
249
+ work_allocation_api_url: string;
250
+ user_info_api_url: string;
251
+ wa_service_config?: any;
252
+ access_management_basic_view_mock?: {
253
+ active?: boolean;
254
+ basicFields?: {
255
+ caseNameHmctsInternal?: string;
256
+ caseManagementLocation?: {
257
+ baseLocation?: number;
258
+ };
259
+ };
260
+ accessProcess?: string;
261
+ };
262
+ access_management_request_review_mock?: {
263
+ active?: boolean;
264
+ details?: {
265
+ caseName: string;
266
+ caseReference: string;
267
+ dateSubmitted: string;
268
+ requestFrom: string;
269
+ reasonForCaseAccess: string;
270
+ };
271
+ accessProcess?: string;
272
+ };
273
+ location_ref_api_url?: string;
274
+ cam_role_assignments_api_url?: string;
275
+ refunds_url: string;
276
+ notification_url: string;
277
+ payment_return_url: string;
278
+ categories_and_documents_url: string;
279
+ document_data_url: string;
280
+ case_flags_refdata_api_url: string;
281
+ rd_common_data_api_url: string;
282
+ case_data_store_api_url: string;
283
+ icp_enabled: boolean;
284
+ icp_jurisdictions: string[];
285
+ events_to_hide: string[];
286
+ enable_service_specific_multi_followups: string[];
287
+ wa_supported_role_categories: string[];
288
+ wa_supported_role_types: string[];
289
+ }
290
+
291
+ declare class HttpError {
292
+ constructor();
293
+ private static readonly DEFAULT_ERROR;
294
+ private static readonly DEFAULT_MESSAGE;
295
+ private static readonly DEFAULT_STATUS;
296
+ private static readonly MESSAGE_ERROR_429;
297
+ timestamp: string;
298
+ status: number;
299
+ error: string;
300
+ exception: string;
301
+ message: string;
302
+ path: string;
303
+ details?: any;
304
+ callbackErrors?: any;
305
+ callbackWarnings?: any;
306
+ static from(response: HttpErrorResponse): HttpError;
307
+ }
308
+
309
+ /**
310
+ * `Oauth2Service` and `AuthService` cannot be merged as it creates a cyclic dependency on `AuthService` through `HttpErrorService`.
311
+ */
312
+ declare class AuthService {
313
+ private readonly appConfig;
314
+ private readonly document;
315
+ private static readonly PATH_OAUTH2_REDIRECT;
316
+ constructor(appConfig: AbstractAppConfig, document: any);
317
+ signIn(): void;
318
+ redirectUri(): string;
319
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
320
+ static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
321
+ }
322
+
323
+ declare class LoadingService {
324
+ private readonly registered;
325
+ private readonly loading;
326
+ private readonly sharedSpinners;
327
+ get isLoading(): Observable<boolean>;
328
+ register(): string;
329
+ unregister(token: string): void;
330
+ addSharedSpinner(spinnerId: string): void;
331
+ hasSharedSpinner(): boolean;
332
+ unregisterSharedSpinner(): void;
333
+ private generateToken;
334
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoadingService, never>;
335
+ static ɵprov: i0.ɵɵInjectableDeclaration<LoadingService>;
336
+ }
337
+
338
+ declare class LoadingModule {
339
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoadingModule, never>;
340
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LoadingModule, never, never, never>;
341
+ static ɵinj: i0.ɵɵInjectorDeclaration<LoadingModule>;
342
+ }
343
+
344
+ declare class HttpErrorService {
345
+ private readonly authService;
346
+ private readonly loadingService;
347
+ private static readonly logger;
348
+ constructor(authService: AuthService, loadingService: LoadingService);
349
+ private static readonly CONTENT_TYPE;
350
+ private static readonly JSON;
351
+ private error;
352
+ static convertToHttpError(error: HttpErrorResponse | any): HttpError;
353
+ setError(error: HttpError): void;
354
+ removeError(): HttpError;
355
+ handle(error: HttpErrorResponse | any, redirectIfNotAuthorised?: boolean): Observable<never>;
356
+ static ɵfac: i0.ɵɵFactoryDeclaration<HttpErrorService, never>;
357
+ static ɵprov: i0.ɵɵInjectableDeclaration<HttpErrorService>;
358
+ }
359
+
360
+ declare class HttpService {
361
+ private readonly httpclient;
362
+ private readonly httpErrorService;
363
+ private static readonly HEADER_ACCEPT;
364
+ private static readonly HEADER_CONTENT_TYPE;
365
+ constructor(httpclient: HttpClient, httpErrorService: HttpErrorService);
366
+ /**
367
+ *
368
+ * @param url Url resolved using UrlResolverService
369
+ * @param options OptionsType
370
+ * @returns Observable<any> return value
371
+ * @see UrlResolverService
372
+ */
373
+ get(url: string, options?: OptionsType, redirectIfNotAuthorised?: boolean, errorHandler?: (error: HttpErrorResponse) => HttpError): Observable<any>;
374
+ /**
375
+ *
376
+ * @param url Url resolved using UrlResolverService
377
+ * @param body Body for post
378
+ * @param options OptionsType
379
+ * @returns Observable<any> return value
380
+ * @see UrlResolverService
381
+ */
382
+ post(url: string, body: any, options?: OptionsType, redirectIfNotAuthorised?: boolean): Observable<any>;
383
+ /**
384
+ *
385
+ * @param url Url resolved using UrlResolverService
386
+ * @param body Body for post
387
+ * @param options OptionsType
388
+ * @returns Observable<any> return value
389
+ * @see UrlResolverService
390
+ */
391
+ put(url: string, body: any, options?: OptionsType): Observable<any>;
392
+ /**
393
+ *
394
+ * @param url Url resolved using UrlResolverService
395
+ * @param options OptionsType
396
+ * @returns Observable<any> return value
397
+ * @see UrlResolverService
398
+ */
399
+ delete(url: string, options?: OptionsType): Observable<any>;
400
+ setDefaultValue(options?: OptionsType): OptionsType;
401
+ static ɵfac: i0.ɵɵFactoryDeclaration<HttpService, never>;
402
+ static ɵprov: i0.ɵɵInjectableDeclaration<HttpService>;
403
+ }
404
+ interface OptionsType {
405
+ headers?: HttpHeaders;
406
+ observe: 'body';
407
+ params?: HttpParams | {
408
+ [param: string]: string | string[];
409
+ };
410
+ reportProgress?: boolean;
411
+ responseType?: 'json';
412
+ withCredentials?: boolean;
413
+ }
414
+
415
+ declare class ProfileService {
416
+ private readonly httpService;
417
+ private readonly appConfig;
418
+ static readonly V2_MEDIATYPE_USER_PROFILE = "application/vnd.uk.gov.hmcts.ccd-data-store-api.ui-user-profile.v2+json;charset=UTF-8";
419
+ private static readonly URL;
420
+ private profile$;
421
+ constructor(httpService: HttpService, appConfig: AbstractAppConfig);
422
+ get(): Observable<Profile>;
423
+ clearProfileCache(): void;
424
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProfileService, never>;
425
+ static ɵprov: i0.ɵɵInjectableDeclaration<ProfileService>;
48
426
  }
49
427
 
50
428
  declare class HeaderBarComponent {
429
+ private readonly profileService;
430
+ private readonly profileNotifier;
431
+ constructor(profileService: ProfileService, profileNotifier: ProfileNotifier);
51
432
  title: string;
52
433
  isSolicitor: boolean;
53
434
  username: string;
54
435
  private readonly signOutRequest;
55
436
  signOut(): void;
56
- static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBarComponent, never>;
437
+ static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBarComponent, [{ optional: true; }, { optional: true; }]>;
57
438
  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>;
58
439
  }
59
440
 
@@ -202,353 +583,71 @@ declare enum NotificationBannerHeaderClass {
202
583
  declare class NotificationBannerComponent {
203
584
  notificationBannerConfig: NotificationBannerConfig;
204
585
  linkClicked: EventEmitter<string>;
205
- get notificationBannerType(): typeof NotificationBannerType;
206
- onLinkClick(triggerOutputEventText: string): void;
207
- static ɵfac: i0.ɵɵFactoryDeclaration<NotificationBannerComponent, never>;
208
- static ɵcmp: i0.ɵɵComponentDeclaration<NotificationBannerComponent, "ccd-notification-banner", never, { "notificationBannerConfig": { "alias": "notificationBannerConfig"; "required": false; }; }, { "linkClicked": "linkClicked"; }, never, never, false, never>;
209
- }
210
-
211
- declare class TabComponent {
212
- id: string;
213
- title: string;
214
- selected: boolean;
215
- static ɵfac: i0.ɵɵFactoryDeclaration<TabComponent, never>;
216
- 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>;
217
- }
218
-
219
- declare class TabsComponent implements AfterContentInit {
220
- private readonly route;
221
- tabs: QueryList<ElementRef>;
222
- panels: QueryList<TabComponent>;
223
- private readonly panelIds;
224
- constructor(route: ActivatedRoute);
225
- ngAfterContentInit(): void;
226
- show(id: string): void;
227
- static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
228
- static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "cut-tabs", never, {}, {}, ["panels"], ["*"], false, never>;
229
- }
230
-
231
- declare class TabsModule {
232
- static ɵfac: i0.ɵɵFactoryDeclaration<TabsModule, never>;
233
- static ɵmod: i0.ɵɵNgModuleDeclaration<TabsModule, [typeof TabsComponent, typeof TabComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i7.RpxTranslationModule], [typeof TabsComponent, typeof TabComponent]>;
234
- static ɵinj: i0.ɵɵInjectorDeclaration<TabsModule>;
235
- }
236
-
237
- declare class ActivityBannerComponent implements OnInit {
238
- bannerType: string;
239
- description: string;
240
- imageLink: string;
241
- constructor();
242
- ngOnInit(): void;
243
- static ɵfac: i0.ɵɵFactoryDeclaration<ActivityBannerComponent, never>;
244
- 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>;
245
- }
246
-
247
- declare class ActivityIconComponent implements OnInit {
248
- description: string;
249
- imageLink: string;
250
- constructor();
251
- ngOnInit(): void;
252
- static ɵfac: i0.ɵɵFactoryDeclaration<ActivityIconComponent, never>;
253
- static ɵcmp: i0.ɵɵComponentDeclaration<ActivityIconComponent, "ccd-activity-icon", never, { "description": { "alias": "description"; "required": false; }; "imageLink": { "alias": "imageLink"; "required": false; }; }, {}, never, never, false, never>;
254
- }
255
-
256
- declare class ActivityInfo {
257
- forename: string;
258
- surname: string;
259
- }
260
- declare class Activity {
261
- caseId: string;
262
- viewers: ActivityInfo[];
263
- editors: ActivityInfo[];
264
- unknownViewers: number;
265
- unknownEditors: number;
266
- }
267
- declare enum DisplayMode {
268
- BANNER = 0,
269
- ICON = 1
270
- }
271
-
272
- interface AccessManagementBasicViewMockModel {
273
- active?: boolean;
274
- basicFields?: {
275
- caseNameHmctsInternal?: string;
276
- caseManagementLocation?: {
277
- baseLocation?: number;
278
- };
279
- };
280
- accessProcess?: string;
281
- }
282
- interface AccessManagementRequestReviewMockModel {
283
- active?: boolean;
284
- details?: {
285
- caseName: string;
286
- caseReference: string;
287
- dateSubmitted: string;
288
- requestFrom: string;
289
- reasonForCaseAccess: string;
290
- };
291
- accessProcess?: string;
292
- }
293
- declare abstract class AbstractAppConfig {
294
- abstract load(): Promise<void>;
295
- abstract getLoginUrl(): string;
296
- abstract getApiUrl(): string;
297
- abstract getCaseDataUrl(): string;
298
- abstract getDocumentManagementUrl(): string;
299
- abstract getDocumentManagementUrlV2(): string;
300
- abstract getCdamExclusionList(): string;
301
- abstract getDocumentSecureModeCaseTypeExclusions(): string;
302
- abstract getRemoteDocumentManagementUrl(): string;
303
- abstract getHrsUrl(): string;
304
- abstract getRemoteHrsUrl(): string;
305
- abstract getAnnotationApiUrl(): string;
306
- abstract getPostcodeLookupUrl(): string;
307
- abstract getOAuth2ClientId(): string;
308
- abstract getPaymentsUrl(): string;
309
- abstract getPayBulkScanBaseUrl(): string;
310
- abstract getCreateOrUpdateDraftsUrl(ctid: string): string;
311
- abstract getViewOrDeleteDraftsUrl(did: string): string;
312
- abstract getActivityUrl(): string;
313
- abstract getActivityNexPollRequestMs(): number;
314
- abstract getActivityRetry(): number;
315
- abstract getTimeoutsForCaseRetrieval(): number[];
316
- abstract getTimeoutsCaseRetrievalArtificialDelay(): number;
317
- abstract getActivityBatchCollectionDelayMs(): number;
318
- abstract getActivityMaxRequestPerBatch(): number;
319
- abstract getCaseHistoryUrl(caseId: string, eventId: string): string;
320
- abstract getPrintServiceUrl(): string;
321
- abstract getIcpEnable(): boolean;
322
- abstract getIcpJurisdictions(): string[];
323
- abstract logMessage(logMessage: string): void;
324
- abstract getEnableServiceSpecificMultiFollowups(): string[];
325
- /**
326
- * Dummy version replacing deprecated `getRemotePrintServiceUrl()`, to be removed in next major release
327
- * @deprecated
328
- * @returns `undefined`
329
- */
330
- getRemotePrintServiceUrl(): string;
331
- abstract getPaginationPageSize(): number;
332
- abstract getBannersUrl(): string;
333
- abstract getPrdUrl(): string;
334
- abstract getCacheTimeOut(): number;
335
- abstract getWorkAllocationApiUrl(): string;
336
- getUserInfoApiUrl(): string;
337
- getWAServiceConfig(): any;
338
- getAccessManagementBasicViewMock(): AccessManagementBasicViewMockModel;
339
- getAccessManagementRequestReviewMockModel(): AccessManagementRequestReviewMockModel;
340
- getLocationRefApiUrl(): string;
341
- getEnvironment(): "aat" | "preview" | "demo" | "ithc" | "prod";
342
- getWASupportedRoleCategories(): string[];
343
- getWASupportedRoleTypes(): string[];
344
- abstract getRefundsUrl(): string;
345
- abstract getNotificationUrl(): string;
346
- abstract getPaymentReturnUrl(): string;
347
- abstract getCategoriesAndDocumentsUrl(): string;
348
- abstract getDocumentDataUrl(): string;
349
- getCamRoleAssignmentsApiUrl(): string;
350
- abstract getCaseFlagsRefdataApiUrl(): string;
351
- abstract getRDCommonDataApiUrl(): string;
352
- abstract getCaseDataStoreApiUrl(): string;
353
- abstract getEventsToHide(): string[];
354
- }
355
- declare class CaseEditorConfig {
356
- api_url: string;
357
- case_data_url: string;
358
- document_management_url: string;
359
- document_management_url_v2: string;
360
- hrs_url: string;
361
- document_management_secure_enabled: boolean;
362
- documentSecureModeCaseTypeExclusions: string;
363
- mc_cdam_exclusion_list: string;
364
- login_url: string;
365
- oauth2_client_id: string;
366
- postcode_lookup_url: string;
367
- remote_document_management_url: string;
368
- remote_hrs_url: string;
369
- annotation_api_url: string;
370
- payments_url: string;
371
- pay_bulk_scan_url: string;
372
- activity_batch_collection_delay_ms: number;
373
- activity_next_poll_request_ms: number;
374
- activity_retry: number;
375
- timeouts_case_retrieval: number[];
376
- timeouts_case_retrieval_artificial_delay: number;
377
- activity_url: string;
378
- activity_max_request_per_batch: number;
379
- print_service_url: string;
380
- /**
381
- * remote_print_service_url marked as optional since deprecation, ahead of removal in next major release
382
- * @deprecated
383
- */
384
- remote_print_service_url?: string;
385
- pagination_page_size: number;
386
- prd_url: string;
387
- cache_time_out: number;
388
- work_allocation_api_url: string;
389
- user_info_api_url: string;
390
- wa_service_config?: any;
391
- access_management_basic_view_mock?: {
392
- active?: boolean;
393
- basicFields?: {
394
- caseNameHmctsInternal?: string;
395
- caseManagementLocation?: {
396
- baseLocation?: number;
397
- };
398
- };
399
- accessProcess?: string;
400
- };
401
- access_management_request_review_mock?: {
402
- active?: boolean;
403
- details?: {
404
- caseName: string;
405
- caseReference: string;
406
- dateSubmitted: string;
407
- requestFrom: string;
408
- reasonForCaseAccess: string;
409
- };
410
- accessProcess?: string;
411
- };
412
- location_ref_api_url?: string;
413
- cam_role_assignments_api_url?: string;
414
- refunds_url: string;
415
- notification_url: string;
416
- payment_return_url: string;
417
- categories_and_documents_url: string;
418
- document_data_url: string;
419
- case_flags_refdata_api_url: string;
420
- rd_common_data_api_url: string;
421
- case_data_store_api_url: string;
422
- icp_enabled: boolean;
423
- icp_jurisdictions: string[];
424
- events_to_hide: string[];
425
- enable_service_specific_multi_followups: string[];
426
- wa_supported_role_categories: string[];
427
- wa_supported_role_types: string[];
586
+ get notificationBannerType(): typeof NotificationBannerType;
587
+ onLinkClick(triggerOutputEventText: string): void;
588
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationBannerComponent, never>;
589
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotificationBannerComponent, "ccd-notification-banner", never, { "notificationBannerConfig": { "alias": "notificationBannerConfig"; "required": false; }; }, { "linkClicked": "linkClicked"; }, never, never, false, never>;
428
590
  }
429
591
 
430
- declare class HttpError {
431
- constructor();
432
- private static readonly DEFAULT_ERROR;
433
- private static readonly DEFAULT_MESSAGE;
434
- private static readonly DEFAULT_STATUS;
435
- private static readonly MESSAGE_ERROR_429;
436
- timestamp: string;
437
- status: number;
438
- error: string;
439
- exception: string;
440
- message: string;
441
- path: string;
442
- details?: any;
443
- callbackErrors?: any;
444
- callbackWarnings?: any;
445
- static from(response: HttpErrorResponse): HttpError;
592
+ declare class TabComponent {
593
+ id: string;
594
+ title: string;
595
+ selected: boolean;
596
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabComponent, never>;
597
+ 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>;
446
598
  }
447
599
 
448
- /**
449
- * `Oauth2Service` and `AuthService` cannot be merged as it creates a cyclic dependency on `AuthService` through `HttpErrorService`.
450
- */
451
- declare class AuthService {
452
- private readonly appConfig;
453
- private readonly document;
454
- private static readonly PATH_OAUTH2_REDIRECT;
455
- constructor(appConfig: AbstractAppConfig, document: any);
456
- signIn(): void;
457
- redirectUri(): string;
458
- static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
459
- static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
600
+ declare class TabsComponent implements AfterContentInit {
601
+ private readonly route;
602
+ tabs: QueryList<ElementRef>;
603
+ panels: QueryList<TabComponent>;
604
+ private readonly panelIds;
605
+ constructor(route: ActivatedRoute);
606
+ ngAfterContentInit(): void;
607
+ show(id: string): void;
608
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
609
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "cut-tabs", never, {}, {}, ["panels"], ["*"], false, never>;
460
610
  }
461
611
 
462
- declare class LoadingService {
463
- private readonly registered;
464
- private readonly loading;
465
- private readonly sharedSpinners;
466
- get isLoading(): Observable<boolean>;
467
- register(): string;
468
- unregister(token: string): void;
469
- addSharedSpinner(spinnerId: string): void;
470
- hasSharedSpinner(): boolean;
471
- unregisterSharedSpinner(): void;
472
- private generateToken;
473
- static ɵfac: i0.ɵɵFactoryDeclaration<LoadingService, never>;
474
- static ɵprov: i0.ɵɵInjectableDeclaration<LoadingService>;
612
+ declare class TabsModule {
613
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabsModule, never>;
614
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TabsModule, [typeof TabsComponent, typeof TabComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i7.RpxTranslationModule], [typeof TabsComponent, typeof TabComponent]>;
615
+ static ɵinj: i0.ɵɵInjectorDeclaration<TabsModule>;
475
616
  }
476
617
 
477
- declare class LoadingModule {
478
- static ɵfac: i0.ɵɵFactoryDeclaration<LoadingModule, never>;
479
- static ɵmod: i0.ɵɵNgModuleDeclaration<LoadingModule, never, never, never>;
480
- static ɵinj: i0.ɵɵInjectorDeclaration<LoadingModule>;
618
+ declare class ActivityBannerComponent implements OnInit {
619
+ bannerType: string;
620
+ description: string;
621
+ imageLink: string;
622
+ constructor();
623
+ ngOnInit(): void;
624
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActivityBannerComponent, never>;
625
+ 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>;
481
626
  }
482
627
 
483
- declare class HttpErrorService {
484
- private readonly authService;
485
- private readonly loadingService;
486
- private static readonly logger;
487
- constructor(authService: AuthService, loadingService: LoadingService);
488
- private static readonly CONTENT_TYPE;
489
- private static readonly JSON;
490
- private error;
491
- static convertToHttpError(error: HttpErrorResponse | any): HttpError;
492
- setError(error: HttpError): void;
493
- removeError(): HttpError;
494
- handle(error: HttpErrorResponse | any, redirectIfNotAuthorised?: boolean): Observable<never>;
495
- static ɵfac: i0.ɵɵFactoryDeclaration<HttpErrorService, never>;
496
- static ɵprov: i0.ɵɵInjectableDeclaration<HttpErrorService>;
628
+ declare class ActivityIconComponent implements OnInit {
629
+ description: string;
630
+ imageLink: string;
631
+ constructor();
632
+ ngOnInit(): void;
633
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActivityIconComponent, never>;
634
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActivityIconComponent, "ccd-activity-icon", never, { "description": { "alias": "description"; "required": false; }; "imageLink": { "alias": "imageLink"; "required": false; }; }, {}, never, never, false, never>;
497
635
  }
498
636
 
499
- declare class HttpService {
500
- private readonly httpclient;
501
- private readonly httpErrorService;
502
- private static readonly HEADER_ACCEPT;
503
- private static readonly HEADER_CONTENT_TYPE;
504
- constructor(httpclient: HttpClient, httpErrorService: HttpErrorService);
505
- /**
506
- *
507
- * @param url Url resolved using UrlResolverService
508
- * @param options OptionsType
509
- * @returns Observable<any> return value
510
- * @see UrlResolverService
511
- */
512
- get(url: string, options?: OptionsType, redirectIfNotAuthorised?: boolean, errorHandler?: (error: HttpErrorResponse) => HttpError): Observable<any>;
513
- /**
514
- *
515
- * @param url Url resolved using UrlResolverService
516
- * @param body Body for post
517
- * @param options OptionsType
518
- * @returns Observable<any> return value
519
- * @see UrlResolverService
520
- */
521
- post(url: string, body: any, options?: OptionsType, redirectIfNotAuthorised?: boolean): Observable<any>;
522
- /**
523
- *
524
- * @param url Url resolved using UrlResolverService
525
- * @param body Body for post
526
- * @param options OptionsType
527
- * @returns Observable<any> return value
528
- * @see UrlResolverService
529
- */
530
- put(url: string, body: any, options?: OptionsType): Observable<any>;
531
- /**
532
- *
533
- * @param url Url resolved using UrlResolverService
534
- * @param options OptionsType
535
- * @returns Observable<any> return value
536
- * @see UrlResolverService
537
- */
538
- delete(url: string, options?: OptionsType): Observable<any>;
539
- setDefaultValue(options?: OptionsType): OptionsType;
540
- static ɵfac: i0.ɵɵFactoryDeclaration<HttpService, never>;
541
- static ɵprov: i0.ɵɵInjectableDeclaration<HttpService>;
637
+ declare class ActivityInfo {
638
+ forename: string;
639
+ surname: string;
542
640
  }
543
- interface OptionsType {
544
- headers?: HttpHeaders;
545
- observe: 'body';
546
- params?: HttpParams | {
547
- [param: string]: string | string[];
548
- };
549
- reportProgress?: boolean;
550
- responseType?: 'json';
551
- withCredentials?: boolean;
641
+ declare class Activity {
642
+ caseId: string;
643
+ viewers: ActivityInfo[];
644
+ editors: ActivityInfo[];
645
+ unknownViewers: number;
646
+ unknownEditors: number;
647
+ }
648
+ declare enum DisplayMode {
649
+ BANNER = 0,
650
+ ICON = 1
552
651
  }
553
652
 
554
653
  declare class SessionStorageService {
@@ -685,10 +784,6 @@ declare class CaseEventData {
685
784
  case_reference?: string;
686
785
  }
687
786
 
688
- interface Orderable {
689
- order?: number;
690
- }
691
-
692
787
  declare class ComplexFieldOverride {
693
788
  complex_field_element_id: string;
694
789
  display_context: string;
@@ -704,14 +799,6 @@ declare class WizardPageField implements Orderable {
704
799
  complex_field_overrides?: ComplexFieldOverride[];
705
800
  }
706
801
 
707
- declare class AccessControlList {
708
- role: string;
709
- create: boolean;
710
- read: boolean;
711
- update: boolean;
712
- delete: boolean;
713
- }
714
-
715
802
  type FieldTypeEnum = 'Text' | 'TextArea' | 'RichTextArea' | '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';
716
803
 
717
804
  declare class FixedListItem implements Orderable {
@@ -972,45 +1059,6 @@ declare class CaseViewTrigger implements Orderable {
972
1059
  order?: number;
973
1060
  }
974
1061
 
975
- declare class EventCaseField {
976
- case_field_id: string;
977
- showCondition: string;
978
- }
979
-
980
- declare class CaseEvent implements Orderable {
981
- id: string;
982
- name: string;
983
- post_state: string;
984
- pre_states: string[];
985
- case_fields: EventCaseField[];
986
- description: string;
987
- order?: number;
988
- acls?: AccessControlList[];
989
- }
990
-
991
- declare class CaseState implements Orderable {
992
- id: string;
993
- name: string;
994
- description: string;
995
- order?: number;
996
- }
997
-
998
- declare class CaseTypeLite {
999
- id: string;
1000
- name: string;
1001
- events: CaseEvent[];
1002
- states: CaseState[];
1003
- description: string;
1004
- }
1005
-
1006
- declare class Jurisdiction {
1007
- id: string;
1008
- name: string;
1009
- description: string;
1010
- caseTypes: CaseTypeLite[];
1011
- currentCaseType?: CaseTypeLite;
1012
- }
1013
-
1014
1062
  declare class CaseType {
1015
1063
  id: string;
1016
1064
  name: string;
@@ -1229,29 +1277,6 @@ declare class PaginationMetadata {
1229
1277
 
1230
1278
  type Predicate<T> = (value: T) => boolean;
1231
1279
 
1232
- declare class Profile {
1233
- user: {
1234
- idam: {
1235
- id: string;
1236
- email: string;
1237
- forename: string;
1238
- surname: string;
1239
- roles: string[];
1240
- };
1241
- };
1242
- channels: string[];
1243
- jurisdictions: Jurisdiction[];
1244
- default: {
1245
- workbasket: {
1246
- jurisdiction_id: string;
1247
- case_type_id: string;
1248
- state_id: string;
1249
- };
1250
- };
1251
- isSolicitor(): boolean;
1252
- isCourtAdmin(): boolean;
1253
- }
1254
-
1255
1280
  declare class Field {
1256
1281
  id: string;
1257
1282
  field_type: FieldType;
@@ -2676,23 +2701,13 @@ declare class OrderService {
2676
2701
  static ɵprov: i0.ɵɵInjectableDeclaration<OrderService>;
2677
2702
  }
2678
2703
 
2679
- declare class ProfileService {
2680
- private readonly httpService;
2681
- private readonly appConfig;
2682
- static readonly V2_MEDIATYPE_USER_PROFILE = "application/vnd.uk.gov.hmcts.ccd-data-store-api.ui-user-profile.v2+json;charset=UTF-8";
2683
- private static readonly URL;
2684
- constructor(httpService: HttpService, appConfig: AbstractAppConfig);
2685
- get(): Observable<Profile>;
2686
- static ɵfac: i0.ɵɵFactoryDeclaration<ProfileService, never>;
2687
- static ɵprov: i0.ɵɵInjectableDeclaration<ProfileService>;
2688
- }
2689
-
2690
- declare class ProfileNotifier {
2691
- readonly profileSource: BehaviorSubject<Profile>;
2692
- profile: rxjs.Observable<Profile>;
2693
- announceProfile(profile: Profile): void;
2694
- static ɵfac: i0.ɵɵFactoryDeclaration<ProfileNotifier, never>;
2695
- static ɵprov: i0.ɵɵInjectableDeclaration<ProfileNotifier>;
2704
+ declare class ProfileResolver implements Resolve<Profile> {
2705
+ private readonly profileService;
2706
+ private readonly profileNotifier;
2707
+ constructor(profileService: ProfileService, profileNotifier: ProfileNotifier);
2708
+ resolve(): Observable<Profile>;
2709
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProfileResolver, never>;
2710
+ static ɵprov: i0.ɵɵInjectableDeclaration<ProfileResolver>;
2696
2711
  }
2697
2712
 
2698
2713
  declare class RequestOptionsBuilder {
@@ -7125,7 +7140,6 @@ declare class EventTriggerResolver implements Resolve<CaseEventTrigger> {
7125
7140
  static readonly IGNORE_WARNING = "ignoreWarning";
7126
7141
  private static readonly IGNORE_WARNING_VALUES;
7127
7142
  private cachedEventTrigger;
7128
- private cachedProfile;
7129
7143
  constructor(casesService: CasesService, alertService: AlertService, profileService: ProfileService, profileNotifier: ProfileNotifier, router: Router, appConfig: AbstractAppConfig, errorNotifier: ErrorNotifierService, loadingService: LoadingService, sessionStorageService: SessionStorageService);
7130
7144
  resolve(route: ActivatedRouteSnapshot): Promise<CaseEventTrigger>;
7131
7145
  private isRootTriggerEventRoute;
@@ -7986,6 +8000,6 @@ declare class TestRouteSnapshotBuilder {
7986
8000
 
7987
8001
  declare function safeJsonParse<T>(value: string | null, fallback?: T | null): T | null;
7988
8002
 
7989
- 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, ReadRichTextAreaFieldComponent, 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, WriteRichTextAreaFieldComponent, WriteTextAreaFieldComponent, WriteTextFieldComponent, WriteYesNoFieldComponent, YesNoService, aCaseField, caseMessagesMockData, createACL, createCaseEventTrigger, createCaseField, createComplexFieldOverride, createFieldType, createFixedListFieldType, createHiddenComplexFieldOverride, createMultiSelectListFieldType, createWizardPage, createWizardPageField, editorRouting, initDialog, newCaseField, safeJsonParse, textFieldType, viewerRouting };
8003
+ 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, ReadRichTextAreaFieldComponent, 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, WriteRichTextAreaFieldComponent, WriteTextAreaFieldComponent, WriteTextFieldComponent, WriteYesNoFieldComponent, YesNoService, aCaseField, caseMessagesMockData, createACL, createCaseEventTrigger, createCaseField, createComplexFieldOverride, createFieldType, createFixedListFieldType, createHiddenComplexFieldOverride, createMultiSelectListFieldType, createWizardPage, createWizardPageField, editorRouting, initDialog, newCaseField, safeJsonParse, textFieldType, viewerRouting };
7990
8004
  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 };
7991
8005
  //# sourceMappingURL=index.d.ts.map