@hmcts/ccd-case-ui-toolkit 7.3.60-fix-case-filter-issue → 7.3.61-message-interpolation-01

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
@@ -621,6 +621,10 @@ declare class ActivityPollingService {
621
621
  postEditActivity(caseId: string): Observable<Activity[]>;
622
622
  protected performBatchRequest(requests: Map<string, Subject<Activity>>): void;
623
623
  private postActivity;
624
+ private addPendingRequest;
625
+ private removePendingRequest;
626
+ private polling;
627
+ private getExponentialRetryDelay;
624
628
  static ɵfac: i0.ɵɵFactoryDeclaration<ActivityPollingService, never>;
625
629
  static ɵprov: i0.ɵɵInjectableDeclaration<ActivityPollingService>;
626
630
  }
@@ -5719,7 +5723,7 @@ declare class LabelSubstitutorDirective implements OnInit, OnDestroy {
5719
5723
  private readonly rpxTranslationService;
5720
5724
  caseField: CaseField;
5721
5725
  contextFields: CaseField[];
5722
- formGroup: FormGroup;
5726
+ formGroup: FormGroup | AbstractControl;
5723
5727
  elementsToSubstitute: string[];
5724
5728
  private initialLabel;
5725
5729
  private initialHintText;
@@ -6364,6 +6368,8 @@ declare class CaseEditPageComponent implements OnInit, AfterViewChecked, OnDestr
6364
6368
  dialogRefAfterClosedSub: Subscription;
6365
6369
  saveDraftSub: Subscription;
6366
6370
  caseFormValidationErrorsSub: Subscription;
6371
+ private readonly fieldsUtils;
6372
+ private readonly placeholderService;
6367
6373
  private static scrollToTop;
6368
6374
  private static setFocusToTop;
6369
6375
  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);
@@ -6413,6 +6419,7 @@ declare class CaseEditPageComponent implements OnInit, AfterViewChecked, OnDestr
6413
6419
  private discard;
6414
6420
  private handleError;
6415
6421
  private resetErrors;
6422
+ private clearValidationErrors;
6416
6423
  private saveDraft;
6417
6424
  private getCaseFields;
6418
6425
  private getCaseFieldsFromCurrentAndPreviousPages;
@@ -6430,6 +6437,8 @@ declare class CaseEditPageComponent implements OnInit, AfterViewChecked, OnDestr
6430
6437
  getRpxTranslatePipeArgs(fieldLabel: string): {
6431
6438
  FIELDLABEL: string;
6432
6439
  } | null;
6440
+ private getInterpolatedFieldLabel;
6441
+ private resolveLabelPlaceholders;
6433
6442
  onEventCanBeCompleted(eventCanBeCompleted: boolean): void;
6434
6443
  private removeAllJudicialUserFormControls;
6435
6444
  static ɵfac: i0.ɵɵFactoryDeclaration<CaseEditPageComponent, never>;
@@ -6753,7 +6762,7 @@ declare class WorkbasketFiltersComponent implements OnInit {
6753
6762
  reset(): void;
6754
6763
  getMetadataFields(): string[];
6755
6764
  onJurisdictionIdChange(): void;
6756
- onCaseTypeIdChange(clearStoredValues?: boolean): void;
6765
+ onCaseTypeIdChange(): void;
6757
6766
  isCaseTypesDropdownDisabled(): boolean;
6758
6767
  isCaseStatesDropdownDisabled(): boolean;
6759
6768
  isApplyButtonDisabled(): boolean;
@@ -6779,7 +6788,6 @@ declare class WorkbasketFiltersComponent implements OnInit {
6779
6788
  private selectCaseTypeIdFromQueryOrDefaults;
6780
6789
  private resetFieldsWhenNoDefaults;
6781
6790
  private clearWorkbasketInputs;
6782
- private clearStoredWorkbasketFilterValues;
6783
6791
  private resetCaseState;
6784
6792
  private resetCaseType;
6785
6793
  private setFocusToTop;