@hmcts/ccd-case-ui-toolkit 7.3.79-govuk1 → 7.3.80-5014
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/fesm2022/hmcts-ccd-case-ui-toolkit.mjs +138 -175
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/index.d.ts +7 -11
- package/index.d.ts.map +1 -1
- package/package.json +4 -3
package/index.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ import { LegacyThemePalette } from '@angular/material/legacy-core';
|
|
|
22
22
|
import { Moment } from 'moment/moment';
|
|
23
23
|
import * as i140 from '@angular/cdk/tree';
|
|
24
24
|
import { NestedTreeControl } from '@angular/cdk/tree';
|
|
25
|
-
import { DomSanitizer
|
|
25
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
26
26
|
import * as i6 from 'ngx-markdown';
|
|
27
27
|
import * as i136 from '@angular/material/legacy-form-field';
|
|
28
28
|
import * as i137 from '@angular/material/legacy-input';
|
|
@@ -337,6 +337,8 @@ declare abstract class AbstractAppConfig {
|
|
|
337
337
|
getAccessManagementRequestReviewMockModel(): AccessManagementRequestReviewMockModel;
|
|
338
338
|
getLocationRefApiUrl(): string;
|
|
339
339
|
getEnvironment(): "aat" | "preview" | "demo" | "ithc" | "prod";
|
|
340
|
+
getWASupportedRoleCategories(): string[];
|
|
341
|
+
getWASupportedRoleTypes(): string[];
|
|
340
342
|
abstract getRefundsUrl(): string;
|
|
341
343
|
abstract getNotificationUrl(): string;
|
|
342
344
|
abstract getPaymentReturnUrl(): string;
|
|
@@ -419,6 +421,8 @@ declare class CaseEditorConfig {
|
|
|
419
421
|
icp_jurisdictions: string[];
|
|
420
422
|
events_to_hide: string[];
|
|
421
423
|
enable_service_specific_multi_followups: string[];
|
|
424
|
+
wa_supported_role_categories: string[];
|
|
425
|
+
wa_supported_role_types: string[];
|
|
422
426
|
}
|
|
423
427
|
|
|
424
428
|
declare class HttpError {
|
|
@@ -7284,7 +7288,6 @@ declare class CaseChallengedAccessRequestComponent implements OnDestroy, OnInit
|
|
|
7284
7288
|
private readonly casesService;
|
|
7285
7289
|
private readonly route;
|
|
7286
7290
|
private readonly caseNotifier;
|
|
7287
|
-
private readonly titleService;
|
|
7288
7291
|
static CANCEL_LINK_DESTINATION: string;
|
|
7289
7292
|
title: string;
|
|
7290
7293
|
hint: string;
|
|
@@ -7298,14 +7301,11 @@ declare class CaseChallengedAccessRequestComponent implements OnDestroy, OnInit
|
|
|
7298
7301
|
private readonly radioSelectedControlName;
|
|
7299
7302
|
private readonly caseReferenceControlName;
|
|
7300
7303
|
private readonly otherReasonControlName;
|
|
7301
|
-
|
|
7302
|
-
constructor(fb: FormBuilder, router: Router, casesService: CasesService, route: ActivatedRoute, caseNotifier: CaseNotifier, titleService: Title);
|
|
7304
|
+
constructor(fb: FormBuilder, router: Router, casesService: CasesService, route: ActivatedRoute, caseNotifier: CaseNotifier);
|
|
7303
7305
|
ngOnInit(): void;
|
|
7304
7306
|
onChange(): void;
|
|
7305
7307
|
onSubmit(): void;
|
|
7306
7308
|
onCancel(): void;
|
|
7307
|
-
private prefixDocumentTitleWithError;
|
|
7308
|
-
private restoreDocumentTitle;
|
|
7309
7309
|
ngOnDestroy(): void;
|
|
7310
7310
|
private inputEmpty;
|
|
7311
7311
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseChallengedAccessRequestComponent, never>;
|
|
@@ -7322,7 +7322,6 @@ declare class CaseSpecificAccessRequestComponent implements OnDestroy, OnInit {
|
|
|
7322
7322
|
private readonly casesService;
|
|
7323
7323
|
private readonly route;
|
|
7324
7324
|
private readonly caseNotifier;
|
|
7325
|
-
private readonly titleService;
|
|
7326
7325
|
static CANCEL_LINK_DESTINATION: string;
|
|
7327
7326
|
collapsed: boolean;
|
|
7328
7327
|
title: string;
|
|
@@ -7335,13 +7334,10 @@ declare class CaseSpecificAccessRequestComponent implements OnDestroy, OnInit {
|
|
|
7335
7334
|
private readonly genericError;
|
|
7336
7335
|
private readonly specificReasonControlName;
|
|
7337
7336
|
getSpecificAccessError: boolean;
|
|
7338
|
-
|
|
7339
|
-
constructor(fb: FormBuilder, router: Router, casesService: CasesService, route: ActivatedRoute, caseNotifier: CaseNotifier, titleService: Title);
|
|
7337
|
+
constructor(fb: FormBuilder, router: Router, casesService: CasesService, route: ActivatedRoute, caseNotifier: CaseNotifier);
|
|
7340
7338
|
ngOnInit(): void;
|
|
7341
7339
|
onChange(): void;
|
|
7342
7340
|
onSubmit(): void;
|
|
7343
|
-
private prefixDocumentTitleWithError;
|
|
7344
|
-
private restoreDocumentTitle;
|
|
7345
7341
|
onCancel(): void;
|
|
7346
7342
|
ngOnDestroy(): void;
|
|
7347
7343
|
private inputEmpty;
|