@hmcts/ccd-case-ui-toolkit 7.3.67 → 7.3.68-exui-4675
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
|
@@ -5976,7 +5976,7 @@ declare class ConditionalShowFormDirective implements OnInit, AfterViewInit, OnD
|
|
|
5976
5976
|
private readonly handleFormControl;
|
|
5977
5977
|
private readonly handleFormArray;
|
|
5978
5978
|
private readonly handleFormGroup;
|
|
5979
|
-
|
|
5979
|
+
evalAllShowHideConditions(): void;
|
|
5980
5980
|
private buildPath;
|
|
5981
5981
|
private getCurrentPagesReadOnlyAndFormFieldValues;
|
|
5982
5982
|
private getFormFieldsValuesIncludingDisabled;
|
|
@@ -6354,6 +6354,7 @@ declare class CaseEditConfirmComponent {
|
|
|
6354
6354
|
|
|
6355
6355
|
declare class CaseEditFormComponent implements OnDestroy, AfterViewInit {
|
|
6356
6356
|
private readonly formValueService;
|
|
6357
|
+
private readonly conditionalShowFormDirectives;
|
|
6357
6358
|
fields: CaseField[];
|
|
6358
6359
|
formGroup: FormGroup;
|
|
6359
6360
|
caseFields: CaseField[];
|
|
@@ -6368,6 +6369,7 @@ declare class CaseEditFormComponent implements OnDestroy, AfterViewInit {
|
|
|
6368
6369
|
subscribeToFormChanges(): void;
|
|
6369
6370
|
retrieveInitialFormValues(): void;
|
|
6370
6371
|
detectChangesAndEmit(changes: any): void;
|
|
6372
|
+
syncConditionalShowStates(): void;
|
|
6371
6373
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseEditFormComponent, never>;
|
|
6372
6374
|
static ɵcmp: i0.ɵɵComponentDeclaration<CaseEditFormComponent, "ccd-case-edit-form", never, { "fields": { "alias": "fields"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; "caseFields": { "alias": "caseFields"; "required": false; }; "pageChangeSubject": { "alias": "pageChangeSubject"; "required": false; }; }, { "valuesChanged": "valuesChanged"; }, never, never, false, never>;
|
|
6373
6375
|
}
|
|
@@ -6420,6 +6422,7 @@ declare class CaseEditPageComponent implements OnInit, AfterViewChecked, OnDestr
|
|
|
6420
6422
|
saveDraftSub: Subscription;
|
|
6421
6423
|
caseFormValidationErrorsSub: Subscription;
|
|
6422
6424
|
private readonly logger;
|
|
6425
|
+
private readonly caseEditFormComponents;
|
|
6423
6426
|
private static scrollToTop;
|
|
6424
6427
|
private static setFocusToTop;
|
|
6425
6428
|
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);
|