@hmcts/ccd-case-ui-toolkit 7.3.54-unused-package → 7.3.55-message-interpolation
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
|
@@ -4127,13 +4127,17 @@ interface Caseworker {
|
|
|
4127
4127
|
roleCategory: string;
|
|
4128
4128
|
service?: string;
|
|
4129
4129
|
}
|
|
4130
|
+
interface CaseworkersByService {
|
|
4131
|
+
service: string;
|
|
4132
|
+
caseworkers: Caseworker[];
|
|
4133
|
+
}
|
|
4130
4134
|
|
|
4131
4135
|
declare class CaseworkerService {
|
|
4132
4136
|
private readonly http;
|
|
4133
4137
|
private readonly appConfig;
|
|
4134
4138
|
private readonly errorService;
|
|
4135
4139
|
constructor(http: HttpService, appConfig: AbstractAppConfig, errorService: HttpErrorService);
|
|
4136
|
-
|
|
4140
|
+
getCaseworkers(serviceId: any): Observable<CaseworkersByService[]>;
|
|
4137
4141
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseworkerService, never>;
|
|
4138
4142
|
static ɵprov: i0.ɵɵInjectableDeclaration<CaseworkerService>;
|
|
4139
4143
|
}
|
|
@@ -5715,7 +5719,7 @@ declare class LabelSubstitutorDirective implements OnInit, OnDestroy {
|
|
|
5715
5719
|
private readonly rpxTranslationService;
|
|
5716
5720
|
caseField: CaseField;
|
|
5717
5721
|
contextFields: CaseField[];
|
|
5718
|
-
formGroup: FormGroup;
|
|
5722
|
+
formGroup: FormGroup | AbstractControl;
|
|
5719
5723
|
elementsToSubstitute: string[];
|
|
5720
5724
|
private initialLabel;
|
|
5721
5725
|
private initialHintText;
|
|
@@ -6360,6 +6364,8 @@ declare class CaseEditPageComponent implements OnInit, AfterViewChecked, OnDestr
|
|
|
6360
6364
|
dialogRefAfterClosedSub: Subscription;
|
|
6361
6365
|
saveDraftSub: Subscription;
|
|
6362
6366
|
caseFormValidationErrorsSub: Subscription;
|
|
6367
|
+
private readonly fieldsUtils;
|
|
6368
|
+
private readonly placeholderService;
|
|
6363
6369
|
private static scrollToTop;
|
|
6364
6370
|
private static setFocusToTop;
|
|
6365
6371
|
constructor(caseEdit: CaseEditComponent, route: ActivatedRoute, formValueService: FormValueService, formErrorService: FormErrorService, cdRef: ChangeDetectorRef, pageValidationService: PageValidationService, dialog: MatLegacyDialog, caseFieldService: CaseFieldService, caseEditDataService: CaseEditDataService, loadingService: LoadingService, validPageListCaseFieldsService: ValidPageListCaseFieldsService, multipageComponentStateService: MultipageComponentStateService, addressService: AddressesService, linkedCasesService: LinkedCasesService, caseFlagStateService: CaseFlagStateService);
|
|
@@ -6426,6 +6432,7 @@ declare class CaseEditPageComponent implements OnInit, AfterViewChecked, OnDestr
|
|
|
6426
6432
|
getRpxTranslatePipeArgs(fieldLabel: string): {
|
|
6427
6433
|
FIELDLABEL: string;
|
|
6428
6434
|
} | null;
|
|
6435
|
+
private getInterpolatedFieldLabel;
|
|
6429
6436
|
onEventCanBeCompleted(eventCanBeCompleted: boolean): void;
|
|
6430
6437
|
private removeAllJudicialUserFormControls;
|
|
6431
6438
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseEditPageComponent, never>;
|