@hmcts/ccd-case-ui-toolkit 7.3.0-prerelease → 7.3.0-user-by-idam
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 +653 -590
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/index.d.ts +28 -106
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2438,106 +2438,6 @@ declare class FieldTypeSanitiser {
|
|
|
2438
2438
|
|
|
2439
2439
|
declare class FormValueService {
|
|
2440
2440
|
private readonly fieldTypeSanitiser;
|
|
2441
|
-
/**
|
|
2442
|
-
* Gets value of a field based on fieldKey which is a dot separated reference to value and collection index.
|
|
2443
|
-
* There are two exceptions:
|
|
2444
|
-
* 1) In case of a multiselect being identified as a leaf a '---LABEL' suffix is appended to the key and values of that key are returned
|
|
2445
|
-
* form= { 'list': ['code1', 'code2'],
|
|
2446
|
-
* 'list---LABEL': ['label1', 'label2'] },
|
|
2447
|
-
* fieldKey=list,
|
|
2448
|
-
* colIndex=0,
|
|
2449
|
-
* value=label1, label2
|
|
2450
|
-
* 2) In case of a collection of simple fields is identified as a leaf all values are joined seperated by a comma
|
|
2451
|
-
* form= { 'collection': [{ 'value': 'value1' }, { 'value': 'value2' }] }
|
|
2452
|
-
* fieldKey=collection
|
|
2453
|
-
* colIndex=1
|
|
2454
|
-
* value=value1, value2
|
|
2455
|
-
*
|
|
2456
|
-
* Other examples:
|
|
2457
|
-
* 1) simple field reference: form={ 'PersonFirstName': 'John' }, fieldKey=PersonFirstName, value=John
|
|
2458
|
-
* 2) complex field reference:
|
|
2459
|
-
* form= { complex1': { 'simple11': 'value11', 'simple12': 'value12', 'complex2': { 'simple21': 'value21' } }},
|
|
2460
|
-
* fieldKey=complex1.complex2.simple21
|
|
2461
|
-
* colIndex=0,
|
|
2462
|
-
* value=value21
|
|
2463
|
-
* 3) complex field with collection field with complex field reference:
|
|
2464
|
-
* form= { 'complex1': {
|
|
2465
|
-
* 'collection1': [
|
|
2466
|
-
* { 'value': {
|
|
2467
|
-
* 'complex2': {
|
|
2468
|
-
* 'simple1': 'value1',
|
|
2469
|
-
* 'complex3': {
|
|
2470
|
-
* 'complex4': {
|
|
2471
|
-
* 'simple2': 'value12'
|
|
2472
|
-
* }
|
|
2473
|
-
* }
|
|
2474
|
-
* }
|
|
2475
|
-
* }
|
|
2476
|
-
* },
|
|
2477
|
-
* { 'value': {
|
|
2478
|
-
* 'complex2': {
|
|
2479
|
-
* 'simple1': 'value2',
|
|
2480
|
-
* 'complex3': {
|
|
2481
|
-
* 'complex4': {
|
|
2482
|
-
* 'simple2': 'value21'
|
|
2483
|
-
* }
|
|
2484
|
-
* }
|
|
2485
|
-
* }
|
|
2486
|
-
* }
|
|
2487
|
-
* },
|
|
2488
|
-
* { 'value': {
|
|
2489
|
-
* 'complex2': {
|
|
2490
|
-
* 'simple1': 'value3',
|
|
2491
|
-
* 'complex3': {
|
|
2492
|
-
* 'complex4': {
|
|
2493
|
-
* 'simple2': 'value31'
|
|
2494
|
-
* }
|
|
2495
|
-
* }
|
|
2496
|
-
* }
|
|
2497
|
-
* }
|
|
2498
|
-
* }
|
|
2499
|
-
* ]}}
|
|
2500
|
-
* fieldKey=complex1.collection1.complex2.complex3.complex4.simple2
|
|
2501
|
-
* colIndex=2,
|
|
2502
|
-
* value=value21
|
|
2503
|
-
* 4) collection of complex types
|
|
2504
|
-
* form= { 'collection1': [
|
|
2505
|
-
* { 'value': {'complex1': {
|
|
2506
|
-
* 'simple1': 'value11',
|
|
2507
|
-
* 'complex2': {
|
|
2508
|
-
* 'complex3': {
|
|
2509
|
-
* 'simple2': 'value12'
|
|
2510
|
-
* }
|
|
2511
|
-
* }
|
|
2512
|
-
* }}
|
|
2513
|
-
* },
|
|
2514
|
-
* { 'value': {'complex1': {
|
|
2515
|
-
* 'simple1': 'value21',
|
|
2516
|
-
* 'complex2': {
|
|
2517
|
-
* 'complex3': {
|
|
2518
|
-
* 'simple2': 'value22'
|
|
2519
|
-
* }
|
|
2520
|
-
* }
|
|
2521
|
-
* }}
|
|
2522
|
-
* },
|
|
2523
|
-
* { 'value': {'complex1': {
|
|
2524
|
-
* 'simple1': 'value31',
|
|
2525
|
-
* 'complex2': {
|
|
2526
|
-
* 'complex3': {
|
|
2527
|
-
* 'simple2': 'value32'
|
|
2528
|
-
* }
|
|
2529
|
-
* }
|
|
2530
|
-
* }}
|
|
2531
|
-
* }
|
|
2532
|
-
* ]}
|
|
2533
|
-
* fieldKey=collection1.complex1.complex2.complex3.simple2
|
|
2534
|
-
* colIndex=2
|
|
2535
|
-
* value=value32
|
|
2536
|
-
*
|
|
2537
|
-
* If key is pointing at a complex or collection leaf (not simple, collection of simple or multiselect types) then undefined is returned.
|
|
2538
|
-
* Also no key referring a leaf that is contained within collection will contain index number. The index is passed as an argument to the
|
|
2539
|
-
* method.
|
|
2540
|
-
*/
|
|
2541
2441
|
static getFieldValue(form: any, fieldKey: any, colIndex: any): any;
|
|
2542
2442
|
/**
|
|
2543
2443
|
* A recursive method to remove anything with a `---LABEL` suffix.
|
|
@@ -3034,6 +2934,7 @@ declare class LabelFieldComponent {
|
|
|
3034
2934
|
}
|
|
3035
2935
|
|
|
3036
2936
|
declare class CasePaymentHistoryViewerFieldComponent extends PaymentField {
|
|
2937
|
+
readonly PAYMENT_HISTORY_WARNING = "Recent payments may take a few minutes to reflect here.";
|
|
3037
2938
|
constructor(appConfig: AbstractAppConfig, sessionStorage: SessionStorageService);
|
|
3038
2939
|
static ɵfac: i0.ɵɵFactoryDeclaration<CasePaymentHistoryViewerFieldComponent, never>;
|
|
3039
2940
|
static ɵcmp: i0.ɵɵComponentDeclaration<CasePaymentHistoryViewerFieldComponent, "ccd-case-payment-history-viewer-field", never, {}, {}, never, never, false, never>;
|
|
@@ -3676,6 +3577,7 @@ declare class WriteDocumentFieldComponent extends AbstractFieldWriteComponent im
|
|
|
3676
3577
|
jurisdictionId: string;
|
|
3677
3578
|
caseTypeId: string;
|
|
3678
3579
|
caseTypeExclusions: string;
|
|
3580
|
+
caseId: string;
|
|
3679
3581
|
fileSecureModeOn: boolean;
|
|
3680
3582
|
constructor(appConfig: AbstractAppConfig, caseNotifier: CaseNotifier, documentManagement: DocumentManagementService, dialog: MatLegacyDialog, fileUploadStateService: FileUploadStateService, jurisdictionService: JurisdictionService);
|
|
3681
3583
|
ngOnInit(): void;
|
|
@@ -4174,17 +4076,13 @@ interface Caseworker {
|
|
|
4174
4076
|
roleCategory: string;
|
|
4175
4077
|
service?: string;
|
|
4176
4078
|
}
|
|
4177
|
-
interface CaseworkersByService {
|
|
4178
|
-
service: string;
|
|
4179
|
-
caseworkers: Caseworker[];
|
|
4180
|
-
}
|
|
4181
4079
|
|
|
4182
4080
|
declare class CaseworkerService {
|
|
4183
4081
|
private readonly http;
|
|
4184
4082
|
private readonly appConfig;
|
|
4185
4083
|
private readonly errorService;
|
|
4186
4084
|
constructor(http: HttpService, appConfig: AbstractAppConfig, errorService: HttpErrorService);
|
|
4187
|
-
|
|
4085
|
+
getUserByIdamId(idamId: string): Observable<Caseworker>;
|
|
4188
4086
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseworkerService, never>;
|
|
4189
4087
|
static ɵprov: i0.ɵɵInjectableDeclaration<CaseworkerService>;
|
|
4190
4088
|
}
|
|
@@ -5056,6 +4954,7 @@ declare class ReadQueryManagementFieldComponent extends AbstractFieldReadCompone
|
|
|
5056
4954
|
setQuery(query: any): void;
|
|
5057
4955
|
backToQueryListPage(): void;
|
|
5058
4956
|
isInternalUser(): boolean;
|
|
4957
|
+
isJudiciaryUser(): boolean;
|
|
5059
4958
|
getMessageType(query: any): string | undefined;
|
|
5060
4959
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReadQueryManagementFieldComponent, never>;
|
|
5061
4960
|
static ɵcmp: i0.ɵɵComponentDeclaration<ReadQueryManagementFieldComponent, "ccd-read-query-management-field", never, {}, {}, never, never, false, never>;
|
|
@@ -5339,6 +5238,8 @@ declare class QualifyingQuestionOptionsComponent implements OnInit {
|
|
|
5339
5238
|
questionSelected: EventEmitter<QualifyingQuestion>;
|
|
5340
5239
|
qualifyingQuestionsErrorMessage: typeof QualifyingQuestionsErrorMessage;
|
|
5341
5240
|
caseId: string;
|
|
5241
|
+
jurisdiction: string;
|
|
5242
|
+
caseType: string;
|
|
5342
5243
|
constructor(route: ActivatedRoute, router: Router, qualifyingQuestionService: QualifyingQuestionService);
|
|
5343
5244
|
ngOnInit(): void;
|
|
5344
5245
|
click(): void;
|
|
@@ -5376,6 +5277,8 @@ declare class QueryConfirmationComponent implements OnInit {
|
|
|
5376
5277
|
[key: string]: string;
|
|
5377
5278
|
};
|
|
5378
5279
|
caseId: string;
|
|
5280
|
+
jurisdiction: string;
|
|
5281
|
+
caseType: string;
|
|
5379
5282
|
queryCreateContextEnum: typeof QueryCreateContext;
|
|
5380
5283
|
constructor(route: ActivatedRoute);
|
|
5381
5284
|
ngOnInit(): void;
|
|
@@ -5420,6 +5323,8 @@ declare class CaseEventCompletionTaskCancelledComponent implements OnInit {
|
|
|
5420
5323
|
context: EventCompletionStateMachineContext;
|
|
5421
5324
|
notifyEventCompletionCancelled: EventEmitter<boolean>;
|
|
5422
5325
|
caseId: string;
|
|
5326
|
+
jurisdiction: string;
|
|
5327
|
+
caseType: string;
|
|
5423
5328
|
ngOnInit(): void;
|
|
5424
5329
|
onContinue(): void;
|
|
5425
5330
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseEventCompletionTaskCancelledComponent, never>;
|
|
@@ -5438,6 +5343,8 @@ declare class CaseEventCompletionTaskReassignedComponent implements OnInit, OnDe
|
|
|
5438
5343
|
subscription: Subscription;
|
|
5439
5344
|
caseworkerSubscription: Subscription;
|
|
5440
5345
|
judicialworkerSubscription: Subscription;
|
|
5346
|
+
jurisdiction: string;
|
|
5347
|
+
caseType: string;
|
|
5441
5348
|
constructor(sessionStorageService: SessionStorageService, judicialworkerService: JudicialworkerService, caseworkerService: CaseworkerService);
|
|
5442
5349
|
ngOnInit(): void;
|
|
5443
5350
|
ngOnDestroy(): void;
|
|
@@ -6897,13 +6804,14 @@ declare class EventTriggerResolver implements Resolve<CaseEventTrigger> {
|
|
|
6897
6804
|
private appConfig;
|
|
6898
6805
|
private errorNotifier;
|
|
6899
6806
|
private readonly loadingService;
|
|
6807
|
+
private readonly sessionStorageService;
|
|
6900
6808
|
static readonly PARAM_CASE_ID = "cid";
|
|
6901
6809
|
static readonly PARAM_EVENT_ID = "eid";
|
|
6902
6810
|
static readonly IGNORE_WARNING = "ignoreWarning";
|
|
6903
6811
|
private static readonly IGNORE_WARNING_VALUES;
|
|
6904
6812
|
private cachedEventTrigger;
|
|
6905
6813
|
private cachedProfile;
|
|
6906
|
-
constructor(casesService: CasesService, alertService: AlertService, profileService: ProfileService, profileNotifier: ProfileNotifier, router: Router, appConfig: AbstractAppConfig, errorNotifier: ErrorNotifierService, loadingService: LoadingService);
|
|
6814
|
+
constructor(casesService: CasesService, alertService: AlertService, profileService: ProfileService, profileNotifier: ProfileNotifier, router: Router, appConfig: AbstractAppConfig, errorNotifier: ErrorNotifierService, loadingService: LoadingService, sessionStorageService: SessionStorageService);
|
|
6907
6815
|
resolve(route: ActivatedRouteSnapshot): Promise<CaseEventTrigger>;
|
|
6908
6816
|
private isRootTriggerEventRoute;
|
|
6909
6817
|
resetCachedEventTrigger(): void;
|
|
@@ -6960,6 +6868,7 @@ declare class CaseEventTriggerComponent implements OnInit, OnDestroy {
|
|
|
6960
6868
|
submit(): (sanitizedEditForm: CaseEventData) => Observable<object>;
|
|
6961
6869
|
validate(): (sanitizedEditForm: CaseEventData, pageId: string) => Observable<object>;
|
|
6962
6870
|
submitted(event: any): void;
|
|
6871
|
+
private getNavigationUrl;
|
|
6963
6872
|
cancel(): Promise<boolean>;
|
|
6964
6873
|
isDataLoaded(): boolean;
|
|
6965
6874
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseEventTriggerComponent, never>;
|
|
@@ -7065,6 +6974,7 @@ declare class CaseFullAccessViewComponent implements OnInit, OnDestroy, OnChange
|
|
|
7065
6974
|
constructor(ngZone: NgZone, route: ActivatedRoute, router: Router, navigationNotifierService: NavigationNotifierService, orderService: OrderService, activityPollingService: ActivityPollingService, dialog: MatLegacyDialog, alertService: AlertService, draftService: DraftService, errorNotifierService: ErrorNotifierService, convertHrefToRouterService: ConvertHrefToRouterService, location: Location$1, crf: ChangeDetectorRef, sessionStorageService: SessionStorageService, rpxTranslationPipe: RpxTranslatePipe, loadingService: LoadingService, linkedCasesService: LinkedCasesService, caseFlagStateService: CaseFlagStateService);
|
|
7066
6975
|
ngOnInit(): void;
|
|
7067
6976
|
ngOnChanges(changes: SimpleChanges): void;
|
|
6977
|
+
private setCaseInfo;
|
|
7068
6978
|
isPrintEnabled(): boolean;
|
|
7069
6979
|
ngOnDestroy(): void;
|
|
7070
6980
|
unsubscribe(subscription: any): void;
|
|
@@ -7290,6 +7200,8 @@ interface RequestAccessDetails {
|
|
|
7290
7200
|
declare class CaseChallengedAccessSuccessComponent implements OnInit {
|
|
7291
7201
|
private readonly route;
|
|
7292
7202
|
caseId: string;
|
|
7203
|
+
jurisdiction: string;
|
|
7204
|
+
caseType: string;
|
|
7293
7205
|
constructor(route: ActivatedRoute);
|
|
7294
7206
|
ngOnInit(): void;
|
|
7295
7207
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseChallengedAccessSuccessComponent, never>;
|
|
@@ -7308,6 +7220,8 @@ declare class CaseSpecificAccessSuccessComponent implements OnInit {
|
|
|
7308
7220
|
declare class CaseReviewSpecificAccessRejectComponent implements OnInit {
|
|
7309
7221
|
private readonly route;
|
|
7310
7222
|
caseId: string;
|
|
7223
|
+
jurisdiction: string;
|
|
7224
|
+
caseType: string;
|
|
7311
7225
|
readonly retunToTask = "Return to the Tasks tab for this case";
|
|
7312
7226
|
readonly returnToMyTask = "Return to My tasks";
|
|
7313
7227
|
constructor(route: ActivatedRoute);
|
|
@@ -7382,6 +7296,8 @@ declare class MultipleTasksExistComponent implements OnInit {
|
|
|
7382
7296
|
private readonly route;
|
|
7383
7297
|
private readonly loadingService;
|
|
7384
7298
|
caseId: string;
|
|
7299
|
+
jurisdiction: string;
|
|
7300
|
+
caseType: string;
|
|
7385
7301
|
constructor(route: ActivatedRoute, loadingService: LoadingService);
|
|
7386
7302
|
ngOnInit(): void;
|
|
7387
7303
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultipleTasksExistComponent, never>;
|
|
@@ -7391,6 +7307,8 @@ declare class MultipleTasksExistComponent implements OnInit {
|
|
|
7391
7307
|
declare class NoTasksAvailableComponent {
|
|
7392
7308
|
private readonly route;
|
|
7393
7309
|
caseId: string;
|
|
7310
|
+
jurisdiction: string;
|
|
7311
|
+
caseType: string;
|
|
7394
7312
|
constructor(route: ActivatedRoute);
|
|
7395
7313
|
static ɵfac: i0.ɵɵFactoryDeclaration<NoTasksAvailableComponent, never>;
|
|
7396
7314
|
static ɵcmp: i0.ɵɵComponentDeclaration<NoTasksAvailableComponent, "app-no-tasks-available", never, {}, {}, never, never, false, never>;
|
|
@@ -7402,6 +7320,8 @@ declare class TaskAssignedComponent implements OnInit, OnDestroy {
|
|
|
7402
7320
|
private readonly caseworkerService;
|
|
7403
7321
|
task: Task;
|
|
7404
7322
|
caseId: string;
|
|
7323
|
+
jurisdiction: string;
|
|
7324
|
+
caseType: string;
|
|
7405
7325
|
assignedUserName: string;
|
|
7406
7326
|
caseworkerSubscription: Subscription;
|
|
7407
7327
|
judicialworkerSubscription: Subscription;
|
|
@@ -7428,6 +7348,8 @@ declare class TaskConflictComponent {
|
|
|
7428
7348
|
declare class TaskUnassignedComponent {
|
|
7429
7349
|
private readonly route;
|
|
7430
7350
|
caseId: string;
|
|
7351
|
+
jurisdiction: string;
|
|
7352
|
+
caseType: string;
|
|
7431
7353
|
constructor(route: ActivatedRoute);
|
|
7432
7354
|
static ɵfac: i0.ɵɵFactoryDeclaration<TaskUnassignedComponent, never>;
|
|
7433
7355
|
static ɵcmp: i0.ɵɵComponentDeclaration<TaskUnassignedComponent, "app-task-unassigned", never, {}, {}, never, never, false, never>;
|