@hmcts/ccd-case-ui-toolkit 7.3.95 → 7.3.96-exui-5063

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
@@ -12,27 +12,27 @@ import * as rxjs from 'rxjs';
12
12
  import { Observable, Subject, ConnectableObservable, BehaviorSubject, Subscribable, Subscription } from 'rxjs';
13
13
  import { HttpErrorResponse, HttpClient, HttpHeaders, HttpParams } from '@angular/common/http';
14
14
  import { Observable as Observable$1 } from 'rxjs-compat';
15
- import * as i146 from '@angular/material/legacy-dialog';
15
+ import * as i148 from '@angular/material/legacy-dialog';
16
16
  import { MatLegacyDialog, MatLegacyDialogRef, MatLegacyDialogConfig } from '@angular/material/legacy-dialog';
17
17
  import { State, StateMachine } from '@edium/fsm';
18
18
  import * as i16 from '@angular/cdk/portal';
19
- import * as i137 from '@angular-material-components/datetime-picker';
19
+ import * as i139 from '@angular-material-components/datetime-picker';
20
20
  import { NgxMatDatetimepicker, NgxMatDateFormats } from '@angular-material-components/datetime-picker';
21
21
  import { LegacyThemePalette } from '@angular/material/legacy-core';
22
22
  import { Moment } from 'moment/moment';
23
23
  import { DomSanitizer } from '@angular/platform-browser';
24
- import * as i151 from 'ngx-editor';
24
+ import * as i153 from 'ngx-editor';
25
25
  import { Editor } from 'ngx-editor';
26
- import * as i142 from '@angular/cdk/tree';
26
+ import * as i144 from '@angular/cdk/tree';
27
27
  import { NestedTreeControl } from '@angular/cdk/tree';
28
28
  import * as i6 from 'ngx-markdown';
29
- import * as i138 from '@angular/material/legacy-form-field';
30
- import * as i139 from '@angular/material/legacy-input';
31
- import * as i140 from '@angular/material/datepicker';
32
- import * as i141 from '@angular/material/legacy-autocomplete';
33
- import * as i143 from '@angular/cdk/overlay';
34
- import * as i144 from '@hmcts/ccpay-web-component';
35
- import * as i147 from '@hmcts/media-viewer';
29
+ import * as i140 from '@angular/material/legacy-form-field';
30
+ import * as i141 from '@angular/material/legacy-input';
31
+ import * as i142 from '@angular/material/datepicker';
32
+ import * as i143 from '@angular/material/legacy-autocomplete';
33
+ import * as i145 from '@angular/cdk/overlay';
34
+ import * as i146 from '@hmcts/ccpay-web-component';
35
+ import * as i149 from '@hmcts/media-viewer';
36
36
  import * as i3$2 from 'ngx-pagination';
37
37
  import * as i25 from '@angular/material/legacy-tabs';
38
38
  import { MatLegacyTabGroup } from '@angular/material/legacy-tabs';
@@ -712,7 +712,7 @@ declare class AccessControlList {
712
712
  delete: boolean;
713
713
  }
714
714
 
715
- type FieldTypeEnum = 'Text' | 'TextArea' | 'RichTextArea' | 'Postcode' | 'Number' | 'YesOrNo' | 'Date' | 'DateTime' | 'Email' | 'PhoneUK' | 'MoneyGBP' | 'FixedList' | 'DynamicList' | 'FixedRadioList' | 'DynamicRadioList' | 'DynamicMultiSelectList' | 'Complex' | 'Collection' | 'MultiSelectList' | 'Document' | 'Label' | 'AddressGlobal' | 'AddressGlobalUK' | 'AddressUK' | 'CasePaymentHistoryViewer' | 'CaseHistoryViewer' | 'Organisation' | 'WaysToPay' | 'ComponentLauncher' | 'Flags' | 'FlagDetail' | 'FlagLauncher' | 'CaseFlag' | 'JudicialUser';
715
+ type FieldTypeEnum = 'Text' | 'TextArea' | 'RichTextArea' | 'Postcode' | 'Number' | 'YesOrNo' | 'Date' | 'DateTime' | 'Email' | 'PhoneUK' | 'MoneyGBP' | 'FixedList' | 'DynamicList' | 'FixedRadioList' | 'DynamicRadioList' | 'DynamicMultiSelectList' | 'Complex' | 'Collection' | 'MultiSelectList' | 'Document' | 'Label' | 'AddressGlobal' | 'AddressGlobalUK' | 'AddressUK' | 'CasePaymentHistoryViewer' | 'CaseHistoryViewer' | 'Organisation' | 'WaysToPay' | 'ComponentLauncher' | 'Flags' | 'FlagDetail' | 'FlagLauncher' | 'CaseFlag' | 'JudicialUser' | 'StaffUser';
716
716
 
717
717
  declare class FixedListItem implements Orderable {
718
718
  code: string;
@@ -1327,6 +1327,34 @@ interface WAFeatureConfig {
1327
1327
  configurations?: ServiceConfig[];
1328
1328
  }
1329
1329
 
1330
+ type StaffUserRoleCategory = Extract<RoleCategory, 'ADMIN' | 'CTSC' | 'LEGAL_OPERATIONS' | 'JUDICIAL'>;
1331
+ type StaffCacheRoleCategory = Exclude<StaffUserRoleCategory, 'JUDICIAL'>;
1332
+ interface StaffUserSearchConfiguration {
1333
+ roleCategories: StaffUserRoleCategory[];
1334
+ staffRoleCategories: StaffCacheRoleCategory[];
1335
+ includesJudicial: boolean;
1336
+ }
1337
+ interface StaffUser {
1338
+ idamId: string;
1339
+ displayName: string;
1340
+ emailId?: string;
1341
+ }
1342
+
1343
+ type StaffUserSearchConfigurationResult = {
1344
+ valid: true;
1345
+ configuration: StaffUserSearchConfiguration;
1346
+ } | {
1347
+ valid: false;
1348
+ error: 'INVALID_ROLE_CATEGORIES';
1349
+ };
1350
+ /**
1351
+ * Parses the `display_context_parameter` of a StaffUser field to determine the filters to apply
1352
+ * when searching reference data.
1353
+ *
1354
+ * Expected format: `#ARGUMENT(CATEGORY-LEGAL-OPS,CATEGORY-ADMIN,REGION-1235)`
1355
+ */
1356
+ declare function parseStaffUserSearchConfiguration(displayContextParameter?: string): StaffUserSearchConfigurationResult;
1357
+
1330
1358
  declare class WorkbasketInputModel implements Orderable {
1331
1359
  label: string;
1332
1360
  order: number;
@@ -2416,11 +2444,13 @@ declare class FormErrorService {
2416
2444
  }
2417
2445
 
2418
2446
  declare class FormValidatorsService {
2419
- private static readonly CUSTOM_VALIDATED_TYPES;
2447
+ private static readonly CUSTOM_VALIDATED_FIELD_TYPES;
2448
+ private static readonly CUSTOM_VALIDATED_COMPLEX_TYPE_IDS;
2420
2449
  private static readonly DEFAULT_INPUT_TEXT;
2421
2450
  private static readonly DEFAULT_INPUT_TEXTAREA;
2422
2451
  static addValidators(caseField: CaseField, control: AbstractControl): AbstractControl;
2423
2452
  static emptyValidator(): ValidatorFn;
2453
+ private static isCustomValidatedType;
2424
2454
  static markDownPatternValidator(): ValidatorFn;
2425
2455
  private static isTextAreaType;
2426
2456
  addValidators(caseField: CaseField, control: AbstractControl): AbstractControl;
@@ -2596,6 +2626,7 @@ declare class JurisdictionService {
2596
2626
  getSelectedJurisdiction(): BehaviorSubject<Jurisdiction>;
2597
2627
  searchJudicialUsers(searchTerm: string, serviceId: string): Observable<JudicialUserModel[]>;
2598
2628
  searchJudicialUsersByPersonalCodes(personalCodes: string[]): Observable<JudicialUserModel[]>;
2629
+ getJudicialUserByIdamId(idamId: string): Observable<JudicialUserModel | null>;
2599
2630
  static ɵfac: i0.ɵɵFactoryDeclaration<JurisdictionService, never>;
2600
2631
  static ɵprov: i0.ɵɵInjectableDeclaration<JurisdictionService>;
2601
2632
  }
@@ -3193,6 +3224,40 @@ declare class ReadJudicialUserFieldComponent extends AbstractFieldReadComponent
3193
3224
  static ɵcmp: i0.ɵɵComponentDeclaration<ReadJudicialUserFieldComponent, "ccd-read-judicial-user-field", never, {}, {}, never, never, false, never>;
3194
3225
  }
3195
3226
 
3227
+ interface Caseworker {
3228
+ firstName: string;
3229
+ lastName: string;
3230
+ idamId: string;
3231
+ email: string;
3232
+ location: Location;
3233
+ roleCategories: string[];
3234
+ service?: string;
3235
+ }
3236
+
3237
+ declare class CaseworkerService {
3238
+ private readonly http;
3239
+ private readonly appConfig;
3240
+ private readonly errorService;
3241
+ constructor(http: HttpService, appConfig: AbstractAppConfig, errorService: HttpErrorService);
3242
+ getUserByIdamId(idamId: string): Observable<Caseworker>;
3243
+ searchStaffUsers(services: string[], searchTerm: string, roleCategories: StaffCacheRoleCategory[]): Observable<StaffUser[]>;
3244
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaseworkerService, never>;
3245
+ static ɵprov: i0.ɵɵInjectableDeclaration<CaseworkerService>;
3246
+ }
3247
+
3248
+ declare class ReadStaffUserFieldComponent extends AbstractFieldReadComponent implements OnInit, OnDestroy {
3249
+ private readonly caseworkerService;
3250
+ private readonly jurisdictionService;
3251
+ displayName: string;
3252
+ showSpinner: boolean;
3253
+ private sub;
3254
+ constructor(caseworkerService: CaseworkerService, jurisdictionService: JurisdictionService);
3255
+ ngOnInit(): void;
3256
+ ngOnDestroy(): void;
3257
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReadStaffUserFieldComponent, never>;
3258
+ static ɵcmp: i0.ɵɵComponentDeclaration<ReadStaffUserFieldComponent, "ccd-read-staff-user-field", never, {}, {}, never, never, false, never>;
3259
+ }
3260
+
3196
3261
  declare class YesNoService {
3197
3262
  private static readonly YES_INPUTS;
3198
3263
  private static readonly NO_INPUTS;
@@ -3594,6 +3659,52 @@ declare class WriteJudicialUserFieldComponent extends WriteComplexFieldComponent
3594
3659
  static ɵcmp: i0.ɵɵComponentDeclaration<WriteJudicialUserFieldComponent, "ccd-write-judicial-user-field", never, {}, {}, never, never, false, never>;
3595
3660
  }
3596
3661
 
3662
+ declare class WriteStaffUserFieldComponent extends WriteComplexFieldComponent implements OnInit, OnDestroy {
3663
+ private readonly jurisdictionService;
3664
+ private readonly caseFlagRefdataService;
3665
+ private readonly caseworkerService;
3666
+ private readonly compoundPipe;
3667
+ private readonly validatorsService;
3668
+ private readonly caseNotifier;
3669
+ readonly minSearchCharacters = 2;
3670
+ staffUserControl: AbstractControl;
3671
+ jurisdiction: string;
3672
+ caseType: string;
3673
+ filteredStaffUsers$: Observable<StaffUser[]>;
3674
+ showAutocomplete: boolean;
3675
+ noResults: boolean;
3676
+ invalidSearchTerm: boolean;
3677
+ searchTerm: string;
3678
+ errors: ValidationErrors;
3679
+ staffUserSelected: boolean;
3680
+ jurisdictionSubscription: Subscription;
3681
+ private readonly notifierSubscription;
3682
+ constructor(jurisdictionService: JurisdictionService, caseFlagRefdataService: CaseFlagRefdataService, caseworkerService: CaseworkerService, compoundPipe: IsCompoundPipe, validatorsService: FormValidatorsService, caseNotifier: CaseNotifier);
3683
+ ngOnInit(): void;
3684
+ loadStaffUser(idamId: string): void;
3685
+ filterStaffUsers(searchTerm: string): Observable<StaffUser[]>;
3686
+ resolveServiceCode(): Observable<string>;
3687
+ resolveServiceDetails(): Observable<HmctsServiceDetail>;
3688
+ setupValidation(): void;
3689
+ displayStaffUser(staffUser?: StaffUser): string | undefined;
3690
+ onSelectionChange(event: any): void;
3691
+ onBlur(event: any): void;
3692
+ ngOnDestroy(): void;
3693
+ private getBaseCaseType;
3694
+ /**
3695
+ * The search filters are configured through the field's display_context_parameter, for example
3696
+ * `#ARGUMENT(CATEGORY-LEGAL-OPS,CATEGORY-ADMIN,REGION-1235)`.
3697
+ *
3698
+ * When this component is rendered for a field nested within a complex type or collection, the
3699
+ * CaseField instance handed to the component can be the child definition, which does not always
3700
+ * carry the parameter. Fall back to the matching field in the page's context fields.
3701
+ */
3702
+ private getDisplayContextParameter;
3703
+ private removeDuplicateUsers;
3704
+ static ɵfac: i0.ɵɵFactoryDeclaration<WriteStaffUserFieldComponent, never>;
3705
+ static ɵcmp: i0.ɵɵComponentDeclaration<WriteStaffUserFieldComponent, "ccd-write-staff-user-field", never, {}, {}, never, never, false, never>;
3706
+ }
3707
+
3597
3708
  declare class FocusElementDirective implements AfterContentInit {
3598
3709
  private readonly el;
3599
3710
  private readonly renderer;
@@ -4367,26 +4478,6 @@ declare class CaseEditWizardGuard implements Resolve<boolean> {
4367
4478
  static ɵprov: i0.ɵɵInjectableDeclaration<CaseEditWizardGuard>;
4368
4479
  }
4369
4480
 
4370
- interface Caseworker {
4371
- firstName: string;
4372
- lastName: string;
4373
- idamId: string;
4374
- email: string;
4375
- location: Location;
4376
- roleCategories: string[];
4377
- service?: string;
4378
- }
4379
-
4380
- declare class CaseworkerService {
4381
- private readonly http;
4382
- private readonly appConfig;
4383
- private readonly errorService;
4384
- constructor(http: HttpService, appConfig: AbstractAppConfig, errorService: HttpErrorService);
4385
- getUserByIdamId(idamId: string): Observable<Caseworker>;
4386
- static ɵfac: i0.ɵɵFactoryDeclaration<CaseworkerService, never>;
4387
- static ɵprov: i0.ɵɵInjectableDeclaration<CaseworkerService>;
4388
- }
4389
-
4390
4481
  declare class EventCompletionStateMachineService {
4391
4482
  private readonly abstractConfig;
4392
4483
  stateCheckTasksCanBeCompleted: State;
@@ -4446,6 +4537,7 @@ declare class PageValidationService {
4446
4537
  private checkDocumentField;
4447
4538
  private checkOptionalField;
4448
4539
  private checkMandatoryField;
4540
+ private getValidationControlName;
4449
4541
  static ɵfac: i0.ɵɵFactoryDeclaration<PageValidationService, never>;
4450
4542
  static ɵprov: i0.ɵɵInjectableDeclaration<PageValidationService>;
4451
4543
  }
@@ -6143,7 +6235,7 @@ declare class ErrorsModule {
6143
6235
 
6144
6236
  declare class PaletteModule {
6145
6237
  static ɵfac: i0.ɵɵFactoryDeclaration<PaletteModule, never>;
6146
- static ɵmod: i0.ɵɵNgModuleDeclaration<PaletteModule, [typeof FixedListPipe, typeof FixedRadioListPipe, typeof DynamicListPipe, typeof DynamicRadioListPipe, typeof DocumentUrlPipe, typeof FlagFieldDisplayPipe, typeof LanguageInterpreterDisplayPipe, typeof ManageCaseFlagsLabelDisplayPipe, typeof UpdateFlagTitleDisplayPipe, typeof UnsupportedFieldComponent, typeof DatetimePickerComponent, typeof WaysToPayFieldComponent, typeof FieldReadComponent, typeof FieldWriteComponent, typeof FieldReadLabelComponent, typeof LabelFieldComponent, typeof CasePaymentHistoryViewerFieldComponent, typeof MoneyGbpInputComponent, typeof CaseHistoryViewerFieldComponent, typeof EventLogComponent, typeof EventLogDetailsComponent, typeof EventLogTableComponent, typeof ReadTextFieldComponent, typeof ReadTextAreaFieldComponent, typeof ReadRichTextAreaFieldComponent, typeof ReadNumberFieldComponent, typeof ReadEmailFieldComponent, typeof ReadPhoneUKFieldComponent, typeof ReadDateFieldComponent, typeof ReadCollectionFieldComponent, typeof ReadDocumentFieldComponent, typeof ReadJudicialUserFieldComponent, typeof ReadYesNoFieldComponent, typeof ReadOrganisationFieldComponent, typeof ReadOrganisationFieldTableComponent, typeof ReadOrganisationFieldRawComponent, typeof ReadOrderSummaryFieldComponent, typeof ReadOrderSummaryRowComponent, typeof ReadMoneyGbpFieldComponent, typeof ReadMultiSelectListFieldComponent, typeof ReadDynamicListFieldComponent, typeof ReadFixedListFieldComponent, typeof ReadFixedRadioListFieldComponent, typeof ReadDynamicRadioListFieldComponent, typeof ReadCaseLinkFieldComponent, typeof ReadComplexFieldComponent, typeof ReadComplexFieldRawComponent, typeof ReadComplexFieldTableComponent, typeof ReadComplexFieldCollectionTableComponent, typeof ReadCaseFlagFieldComponent, typeof ReadLinkedCasesFieldComponent, typeof WriteJudicialUserFieldComponent, typeof WriteAddressFieldComponent, typeof WriteComplexFieldComponent, typeof WriteOrganisationComplexFieldComponent, typeof WriteDocumentFieldComponent, typeof WriteDynamicListFieldComponent, typeof WriteDynamicRadioListFieldComponent, typeof WriteTextFieldComponent, typeof WriteTextAreaFieldComponent, typeof WriteDateContainerFieldComponent, typeof WriteRichTextAreaFieldComponent, typeof WritePhoneUKFieldComponent, typeof WriteNumberFieldComponent, typeof WriteEmailFieldComponent, typeof WriteDateFieldComponent, typeof WriteCaseFlagFieldComponent, typeof WriteLinkedCasesFieldComponent, typeof WriteYesNoFieldComponent, typeof WriteOrganisationFieldComponent, typeof WriteOrganisationComplexFieldComponent, typeof WriteOrderSummaryFieldComponent, typeof WriteMoneyGbpFieldComponent, typeof WriteDateContainerFieldComponent, typeof WriteMultiSelectListFieldComponent, typeof WriteFixedListFieldComponent, typeof WriteFixedRadioListFieldComponent, typeof WriteCaseLinkFieldComponent, typeof WriteCollectionFieldComponent, typeof CaseFileViewFieldComponent, typeof CaseFileViewFolderComponent, typeof CaseFileViewFolderSortComponent, typeof CaseFileViewFolderToggleComponent, typeof CaseFileViewOverlayMenuComponent, typeof CaseFileViewFolderDocumentActionsComponent, typeof CaseFileViewFolderSelectorComponent, typeof WriteDynamicMultiSelectListFieldComponent, typeof WriteDynamicRadioListFieldComponent, typeof WriteDynamicListFieldComponent, typeof ReadDynamicMultiSelectListFieldComponent, typeof ReadDynamicListFieldComponent, typeof ReadDynamicRadioListFieldComponent, typeof CaseFlagTableComponent, typeof SelectFlagTypeComponent, typeof SearchLanguageInterpreterComponent, typeof SelectFlagLocationComponent, typeof ManageCaseFlagsComponent, typeof AddCommentsComponent, typeof UpdateFlagComponent, typeof CaseFlagSummaryListComponent, typeof ConfirmFlagStatusComponent, typeof UpdateFlagAddTranslationFormComponent, typeof LinkedCasesToTableComponent, typeof LinkedCasesFromTableComponent, typeof BeforeYouStartComponent, typeof LinkCasesComponent, typeof CheckYourAnswersComponent, typeof UnLinkCasesComponent, typeof NoLinkedCasesComponent, typeof ReadQueryManagementFieldComponent, typeof QueryDetailsComponent, typeof QueryListComponent, typeof QueryWriteRespondToQueryComponent, typeof QueryWriteRaiseQueryComponent, typeof QueryCaseDetailsHeaderComponent, typeof QueryCheckYourAnswersComponent, typeof QueryWriteAddDocumentsComponent, typeof QueryWriteDateInputComponent, typeof QualifyingQuestionOptionsComponent, typeof QualifyingQuestionDetailComponent, typeof QueryAttachmentsReadComponent, typeof QueryEventCompletionComponent, typeof QueryConfirmationComponent, typeof CloseQueryComponent, typeof CaseEventCompletionComponent, typeof CaseEventCompletionTaskCancelledComponent, typeof CaseEventCompletionTaskReassignedComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i3$1.FormsModule, typeof i3$1.ReactiveFormsModule, typeof CaseEditDataModule, typeof PaletteUtilsModule, typeof PipesModule, typeof BannersModule, typeof HeadersModule, typeof FootersModule, typeof BodyModule, typeof FormModule, typeof TabsModule, typeof LabelSubstitutorModule, typeof TranslatedMarkdownModule, typeof i6.MarkdownModule, typeof i137.NgxMatDatetimePickerModule, typeof i137.NgxMatTimepickerModule, typeof i137.NgxMatNativeDateModule, typeof i138.MatLegacyFormFieldModule, typeof i139.MatLegacyInputModule, typeof i140.MatDatepickerModule, typeof i141.MatLegacyAutocompleteModule, typeof i142.CdkTreeModule, typeof i143.OverlayModule, typeof i144.PaymentLibModule, typeof i7.RpxTranslationModule, typeof i142.CdkTreeModule, typeof i143.OverlayModule, typeof i146.MatLegacyDialogModule, typeof i147.MediaViewerModule, typeof LoadingModule, typeof MarkdownComponentModule, typeof ErrorsModule, typeof i151.NgxEditorModule], [typeof i137.NgxMatDatetimePickerModule, typeof i137.NgxMatNativeDateModule, typeof i137.NgxMatTimepickerModule, typeof TabsModule, typeof PaletteUtilsModule, typeof PipesModule, typeof MarkdownComponentModule, typeof UnsupportedFieldComponent, typeof DatetimePickerComponent, typeof WaysToPayFieldComponent, typeof FieldReadComponent, typeof FieldWriteComponent, typeof FieldReadLabelComponent, typeof LabelFieldComponent, typeof CasePaymentHistoryViewerFieldComponent, typeof MoneyGbpInputComponent, typeof CaseHistoryViewerFieldComponent, typeof EventLogComponent, typeof EventLogDetailsComponent, typeof EventLogTableComponent, typeof ReadTextFieldComponent, typeof ReadTextAreaFieldComponent, typeof ReadRichTextAreaFieldComponent, typeof ReadNumberFieldComponent, typeof ReadEmailFieldComponent, typeof ReadPhoneUKFieldComponent, typeof ReadDateFieldComponent, typeof ReadCollectionFieldComponent, typeof ReadDocumentFieldComponent, typeof ReadJudicialUserFieldComponent, typeof ReadYesNoFieldComponent, typeof ReadOrganisationFieldComponent, typeof ReadOrganisationFieldTableComponent, typeof ReadOrganisationFieldRawComponent, typeof ReadOrderSummaryFieldComponent, typeof ReadOrderSummaryRowComponent, typeof ReadMoneyGbpFieldComponent, typeof ReadMultiSelectListFieldComponent, typeof ReadDynamicListFieldComponent, typeof ReadFixedListFieldComponent, typeof ReadFixedRadioListFieldComponent, typeof ReadDynamicRadioListFieldComponent, typeof ReadCaseLinkFieldComponent, typeof ReadComplexFieldComponent, typeof ReadComplexFieldRawComponent, typeof ReadComplexFieldTableComponent, typeof ReadComplexFieldCollectionTableComponent, typeof ReadCaseFlagFieldComponent, typeof ReadLinkedCasesFieldComponent, typeof WriteJudicialUserFieldComponent, typeof WriteAddressFieldComponent, typeof WriteComplexFieldComponent, typeof WriteOrganisationComplexFieldComponent, typeof WriteDocumentFieldComponent, typeof WriteDynamicListFieldComponent, typeof WriteDynamicRadioListFieldComponent, typeof WriteTextFieldComponent, typeof WriteTextAreaFieldComponent, typeof WriteDateContainerFieldComponent, typeof WriteRichTextAreaFieldComponent, typeof WritePhoneUKFieldComponent, typeof WriteNumberFieldComponent, typeof WriteEmailFieldComponent, typeof WriteDateFieldComponent, typeof WriteCaseFlagFieldComponent, typeof WriteLinkedCasesFieldComponent, typeof WriteYesNoFieldComponent, typeof WriteOrganisationFieldComponent, typeof WriteOrganisationComplexFieldComponent, typeof WriteOrderSummaryFieldComponent, typeof WriteMoneyGbpFieldComponent, typeof WriteDateContainerFieldComponent, typeof WriteMultiSelectListFieldComponent, typeof WriteFixedListFieldComponent, typeof WriteFixedRadioListFieldComponent, typeof WriteCaseLinkFieldComponent, typeof WriteCollectionFieldComponent, typeof CaseFileViewFieldComponent, typeof CaseFileViewFolderComponent, typeof CaseFileViewFolderSortComponent, typeof CaseFileViewFolderToggleComponent, typeof CaseFileViewOverlayMenuComponent, typeof CaseFileViewFolderDocumentActionsComponent, typeof CaseFileViewFolderSelectorComponent, typeof WriteDynamicMultiSelectListFieldComponent, typeof WriteDynamicRadioListFieldComponent, typeof WriteDynamicListFieldComponent, typeof ReadDynamicMultiSelectListFieldComponent, typeof ReadDynamicListFieldComponent, typeof ReadDynamicRadioListFieldComponent, typeof CaseFlagTableComponent, typeof SelectFlagTypeComponent, typeof SearchLanguageInterpreterComponent, typeof SelectFlagLocationComponent, typeof ManageCaseFlagsComponent, typeof AddCommentsComponent, typeof UpdateFlagComponent, typeof CaseFlagSummaryListComponent, typeof ConfirmFlagStatusComponent, typeof UpdateFlagAddTranslationFormComponent, typeof LinkedCasesToTableComponent, typeof LinkedCasesFromTableComponent, typeof BeforeYouStartComponent, typeof LinkCasesComponent, typeof CheckYourAnswersComponent, typeof UnLinkCasesComponent, typeof NoLinkedCasesComponent, typeof ReadQueryManagementFieldComponent, typeof QueryDetailsComponent, typeof QueryListComponent, typeof QueryWriteRespondToQueryComponent, typeof QueryWriteRaiseQueryComponent, typeof QueryCaseDetailsHeaderComponent, typeof QueryCheckYourAnswersComponent, typeof QueryWriteAddDocumentsComponent, typeof QueryWriteDateInputComponent, typeof QualifyingQuestionOptionsComponent, typeof QualifyingQuestionDetailComponent, typeof QueryAttachmentsReadComponent, typeof QueryEventCompletionComponent, typeof QueryConfirmationComponent, typeof CloseQueryComponent, typeof CaseEventCompletionComponent, typeof CaseEventCompletionTaskCancelledComponent, typeof CaseEventCompletionTaskReassignedComponent]>;
6238
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PaletteModule, [typeof FixedListPipe, typeof FixedRadioListPipe, typeof DynamicListPipe, typeof DynamicRadioListPipe, typeof DocumentUrlPipe, typeof FlagFieldDisplayPipe, typeof LanguageInterpreterDisplayPipe, typeof ManageCaseFlagsLabelDisplayPipe, typeof UpdateFlagTitleDisplayPipe, typeof UnsupportedFieldComponent, typeof DatetimePickerComponent, typeof WaysToPayFieldComponent, typeof FieldReadComponent, typeof FieldWriteComponent, typeof FieldReadLabelComponent, typeof LabelFieldComponent, typeof CasePaymentHistoryViewerFieldComponent, typeof MoneyGbpInputComponent, typeof CaseHistoryViewerFieldComponent, typeof EventLogComponent, typeof EventLogDetailsComponent, typeof EventLogTableComponent, typeof ReadTextFieldComponent, typeof ReadTextAreaFieldComponent, typeof ReadRichTextAreaFieldComponent, typeof ReadNumberFieldComponent, typeof ReadEmailFieldComponent, typeof ReadPhoneUKFieldComponent, typeof ReadDateFieldComponent, typeof ReadCollectionFieldComponent, typeof ReadDocumentFieldComponent, typeof ReadJudicialUserFieldComponent, typeof ReadStaffUserFieldComponent, typeof ReadYesNoFieldComponent, typeof ReadOrganisationFieldComponent, typeof ReadOrganisationFieldTableComponent, typeof ReadOrganisationFieldRawComponent, typeof ReadOrderSummaryFieldComponent, typeof ReadOrderSummaryRowComponent, typeof ReadMoneyGbpFieldComponent, typeof ReadMultiSelectListFieldComponent, typeof ReadDynamicListFieldComponent, typeof ReadFixedListFieldComponent, typeof ReadFixedRadioListFieldComponent, typeof ReadDynamicRadioListFieldComponent, typeof ReadCaseLinkFieldComponent, typeof ReadComplexFieldComponent, typeof ReadComplexFieldRawComponent, typeof ReadComplexFieldTableComponent, typeof ReadComplexFieldCollectionTableComponent, typeof ReadCaseFlagFieldComponent, typeof ReadLinkedCasesFieldComponent, typeof WriteJudicialUserFieldComponent, typeof WriteStaffUserFieldComponent, typeof WriteAddressFieldComponent, typeof WriteComplexFieldComponent, typeof WriteOrganisationComplexFieldComponent, typeof WriteDocumentFieldComponent, typeof WriteDynamicListFieldComponent, typeof WriteDynamicRadioListFieldComponent, typeof WriteTextFieldComponent, typeof WriteTextAreaFieldComponent, typeof WriteDateContainerFieldComponent, typeof WriteRichTextAreaFieldComponent, typeof WritePhoneUKFieldComponent, typeof WriteNumberFieldComponent, typeof WriteEmailFieldComponent, typeof WriteDateFieldComponent, typeof WriteCaseFlagFieldComponent, typeof WriteLinkedCasesFieldComponent, typeof WriteYesNoFieldComponent, typeof WriteOrganisationFieldComponent, typeof WriteOrganisationComplexFieldComponent, typeof WriteOrderSummaryFieldComponent, typeof WriteMoneyGbpFieldComponent, typeof WriteDateContainerFieldComponent, typeof WriteMultiSelectListFieldComponent, typeof WriteFixedListFieldComponent, typeof WriteFixedRadioListFieldComponent, typeof WriteCaseLinkFieldComponent, typeof WriteCollectionFieldComponent, typeof CaseFileViewFieldComponent, typeof CaseFileViewFolderComponent, typeof CaseFileViewFolderSortComponent, typeof CaseFileViewFolderToggleComponent, typeof CaseFileViewOverlayMenuComponent, typeof CaseFileViewFolderDocumentActionsComponent, typeof CaseFileViewFolderSelectorComponent, typeof WriteDynamicMultiSelectListFieldComponent, typeof WriteDynamicRadioListFieldComponent, typeof WriteDynamicListFieldComponent, typeof ReadDynamicMultiSelectListFieldComponent, typeof ReadDynamicListFieldComponent, typeof ReadDynamicRadioListFieldComponent, typeof CaseFlagTableComponent, typeof SelectFlagTypeComponent, typeof SearchLanguageInterpreterComponent, typeof SelectFlagLocationComponent, typeof ManageCaseFlagsComponent, typeof AddCommentsComponent, typeof UpdateFlagComponent, typeof CaseFlagSummaryListComponent, typeof ConfirmFlagStatusComponent, typeof UpdateFlagAddTranslationFormComponent, typeof LinkedCasesToTableComponent, typeof LinkedCasesFromTableComponent, typeof BeforeYouStartComponent, typeof LinkCasesComponent, typeof CheckYourAnswersComponent, typeof UnLinkCasesComponent, typeof NoLinkedCasesComponent, typeof ReadQueryManagementFieldComponent, typeof QueryDetailsComponent, typeof QueryListComponent, typeof QueryWriteRespondToQueryComponent, typeof QueryWriteRaiseQueryComponent, typeof QueryCaseDetailsHeaderComponent, typeof QueryCheckYourAnswersComponent, typeof QueryWriteAddDocumentsComponent, typeof QueryWriteDateInputComponent, typeof QualifyingQuestionOptionsComponent, typeof QualifyingQuestionDetailComponent, typeof QueryAttachmentsReadComponent, typeof QueryEventCompletionComponent, typeof QueryConfirmationComponent, typeof CloseQueryComponent, typeof CaseEventCompletionComponent, typeof CaseEventCompletionTaskCancelledComponent, typeof CaseEventCompletionTaskReassignedComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i3$1.FormsModule, typeof i3$1.ReactiveFormsModule, typeof CaseEditDataModule, typeof PaletteUtilsModule, typeof PipesModule, typeof BannersModule, typeof HeadersModule, typeof FootersModule, typeof BodyModule, typeof FormModule, typeof TabsModule, typeof LabelSubstitutorModule, typeof TranslatedMarkdownModule, typeof i6.MarkdownModule, typeof i139.NgxMatDatetimePickerModule, typeof i139.NgxMatTimepickerModule, typeof i139.NgxMatNativeDateModule, typeof i140.MatLegacyFormFieldModule, typeof i141.MatLegacyInputModule, typeof i142.MatDatepickerModule, typeof i143.MatLegacyAutocompleteModule, typeof i144.CdkTreeModule, typeof i145.OverlayModule, typeof i146.PaymentLibModule, typeof i7.RpxTranslationModule, typeof i144.CdkTreeModule, typeof i145.OverlayModule, typeof i148.MatLegacyDialogModule, typeof i149.MediaViewerModule, typeof LoadingModule, typeof MarkdownComponentModule, typeof ErrorsModule, typeof i153.NgxEditorModule], [typeof i139.NgxMatDatetimePickerModule, typeof i139.NgxMatNativeDateModule, typeof i139.NgxMatTimepickerModule, typeof TabsModule, typeof PaletteUtilsModule, typeof PipesModule, typeof MarkdownComponentModule, typeof UnsupportedFieldComponent, typeof DatetimePickerComponent, typeof WaysToPayFieldComponent, typeof FieldReadComponent, typeof FieldWriteComponent, typeof FieldReadLabelComponent, typeof LabelFieldComponent, typeof CasePaymentHistoryViewerFieldComponent, typeof MoneyGbpInputComponent, typeof CaseHistoryViewerFieldComponent, typeof EventLogComponent, typeof EventLogDetailsComponent, typeof EventLogTableComponent, typeof ReadTextFieldComponent, typeof ReadTextAreaFieldComponent, typeof ReadRichTextAreaFieldComponent, typeof ReadNumberFieldComponent, typeof ReadEmailFieldComponent, typeof ReadPhoneUKFieldComponent, typeof ReadDateFieldComponent, typeof ReadCollectionFieldComponent, typeof ReadDocumentFieldComponent, typeof ReadJudicialUserFieldComponent, typeof ReadStaffUserFieldComponent, typeof ReadYesNoFieldComponent, typeof ReadOrganisationFieldComponent, typeof ReadOrganisationFieldTableComponent, typeof ReadOrganisationFieldRawComponent, typeof ReadOrderSummaryFieldComponent, typeof ReadOrderSummaryRowComponent, typeof ReadMoneyGbpFieldComponent, typeof ReadMultiSelectListFieldComponent, typeof ReadDynamicListFieldComponent, typeof ReadFixedListFieldComponent, typeof ReadFixedRadioListFieldComponent, typeof ReadDynamicRadioListFieldComponent, typeof ReadCaseLinkFieldComponent, typeof ReadComplexFieldComponent, typeof ReadComplexFieldRawComponent, typeof ReadComplexFieldTableComponent, typeof ReadComplexFieldCollectionTableComponent, typeof ReadCaseFlagFieldComponent, typeof ReadLinkedCasesFieldComponent, typeof WriteJudicialUserFieldComponent, typeof WriteStaffUserFieldComponent, typeof WriteAddressFieldComponent, typeof WriteComplexFieldComponent, typeof WriteOrganisationComplexFieldComponent, typeof WriteDocumentFieldComponent, typeof WriteDynamicListFieldComponent, typeof WriteDynamicRadioListFieldComponent, typeof WriteTextFieldComponent, typeof WriteTextAreaFieldComponent, typeof WriteDateContainerFieldComponent, typeof WriteRichTextAreaFieldComponent, typeof WritePhoneUKFieldComponent, typeof WriteNumberFieldComponent, typeof WriteEmailFieldComponent, typeof WriteDateFieldComponent, typeof WriteCaseFlagFieldComponent, typeof WriteLinkedCasesFieldComponent, typeof WriteYesNoFieldComponent, typeof WriteOrganisationFieldComponent, typeof WriteOrganisationComplexFieldComponent, typeof WriteOrderSummaryFieldComponent, typeof WriteMoneyGbpFieldComponent, typeof WriteDateContainerFieldComponent, typeof WriteMultiSelectListFieldComponent, typeof WriteFixedListFieldComponent, typeof WriteFixedRadioListFieldComponent, typeof WriteCaseLinkFieldComponent, typeof WriteCollectionFieldComponent, typeof CaseFileViewFieldComponent, typeof CaseFileViewFolderComponent, typeof CaseFileViewFolderSortComponent, typeof CaseFileViewFolderToggleComponent, typeof CaseFileViewOverlayMenuComponent, typeof CaseFileViewFolderDocumentActionsComponent, typeof CaseFileViewFolderSelectorComponent, typeof WriteDynamicMultiSelectListFieldComponent, typeof WriteDynamicRadioListFieldComponent, typeof WriteDynamicListFieldComponent, typeof ReadDynamicMultiSelectListFieldComponent, typeof ReadDynamicListFieldComponent, typeof ReadDynamicRadioListFieldComponent, typeof CaseFlagTableComponent, typeof SelectFlagTypeComponent, typeof SearchLanguageInterpreterComponent, typeof SelectFlagLocationComponent, typeof ManageCaseFlagsComponent, typeof AddCommentsComponent, typeof UpdateFlagComponent, typeof CaseFlagSummaryListComponent, typeof ConfirmFlagStatusComponent, typeof UpdateFlagAddTranslationFormComponent, typeof LinkedCasesToTableComponent, typeof LinkedCasesFromTableComponent, typeof BeforeYouStartComponent, typeof LinkCasesComponent, typeof CheckYourAnswersComponent, typeof UnLinkCasesComponent, typeof NoLinkedCasesComponent, typeof ReadQueryManagementFieldComponent, typeof QueryDetailsComponent, typeof QueryListComponent, typeof QueryWriteRespondToQueryComponent, typeof QueryWriteRaiseQueryComponent, typeof QueryCaseDetailsHeaderComponent, typeof QueryCheckYourAnswersComponent, typeof QueryWriteAddDocumentsComponent, typeof QueryWriteDateInputComponent, typeof QualifyingQuestionOptionsComponent, typeof QualifyingQuestionDetailComponent, typeof QueryAttachmentsReadComponent, typeof QueryEventCompletionComponent, typeof QueryConfirmationComponent, typeof CloseQueryComponent, typeof CaseEventCompletionComponent, typeof CaseEventCompletionTaskCancelledComponent, typeof CaseEventCompletionTaskReassignedComponent]>;
6147
6239
  static ɵinj: i0.ɵɵInjectorDeclaration<PaletteModule>;
6148
6240
  }
6149
6241
 
@@ -6692,7 +6784,9 @@ declare class CaseEditPageComponent implements OnInit, AfterViewChecked, OnDestr
6692
6784
  private getInterpolatedFieldLabel;
6693
6785
  private resolveLabelPlaceholders;
6694
6786
  onEventCanBeCompleted(eventCanBeCompleted: boolean): void;
6695
- private removeAllJudicialUserFormControls;
6787
+ private removeAllAutocompleteUserFormControls;
6788
+ private isAutocompleteUserField;
6789
+ private getAutocompleteUserControlName;
6696
6790
  static ɵfac: i0.ɵɵFactoryDeclaration<CaseEditPageComponent, never>;
6697
6791
  static ɵcmp: i0.ɵɵComponentDeclaration<CaseEditPageComponent, "ccd-case-edit-page", never, {}, {}, never, never, false, never>;
6698
6792
  }
@@ -8045,6 +8139,6 @@ declare class TestRouteSnapshotBuilder {
8045
8139
 
8046
8140
  declare function safeJsonParse<T>(value: string | null, fallback?: T | null): T | null;
8047
8141
 
8048
- export { AbstractAppConfig, AbstractFieldReadComponent, AbstractFieldWriteComponent, AbstractFieldWriteJourneyComponent, AbstractJourneyComponent, Activity, ActivityBannerComponent, ActivityComponent, ActivityIconComponent, ActivityInfo, ActivityModule, ActivityPollingService, ActivityService, AddCommentsComponent, AddCommentsErrorMessage, AddCommentsStep, AddressModel, AddressOption, AddressesService, Alert, AlertComponent, AlertIconClassPipe, AlertMessageType, AlertModule, AlertService, AuthService, Banner, BannersService, BeforeYouStartComponent, BodyComponent, BrowserService, CCDCaseLinkType, COMPONENT_PORTAL_INJECTION_TOKEN, CallbackErrorsComponent, CallbackErrorsContext, CaseAccessUtils, CaseBasicAccessViewComponent, CaseChallengedAccessRequestComponent, CaseChallengedAccessSuccessComponent, CaseCreateComponent, CaseDetails, CaseEditComponent, CaseEditConfirmComponent, CaseEditDataModule, CaseEditDataService, CaseEditFormComponent, CaseEditPageComponent, CaseEditSubmitComponent, CaseEditWizardGuard, CaseEditorConfig, CaseEditorModule, CaseEvent, CaseEventCompletionComponent, CaseEventCompletionTaskCancelledComponent, CaseEventCompletionTaskReassignedComponent, CaseEventData, CaseEventTrigger, CaseEventTriggerComponent, CaseField, CaseFieldService, CaseFileViewFieldComponent, CaseFileViewFolderComponent, CaseFileViewFolderDocumentActionsComponent, CaseFileViewFolderSelectorComponent, CaseFileViewFolderSortComponent, CaseFileViewFolderToggleComponent, CaseFileViewOverlayMenuComponent, CaseFileViewService, CaseFlagCheckYourAnswersPageStep, CaseFlagDisplayContextParameter, CaseFlagErrorMessage, CaseFlagFieldState, CaseFlagFormFields, CaseFlagRefdataService, CaseFlagStatus, CaseFlagSummaryListComponent, CaseFlagSummaryListDisplayMode, CaseFlagTableComponent, CaseFlagWizardStepTitle, CaseFullAccessViewComponent, CaseHeaderComponent, CaseHeaderModule, CaseHistoryViewerFieldComponent, CaseLink, CaseLinkResponse, CaseListComponent, CaseListFiltersComponent, CaseListFiltersModule, CaseListModule, CaseNotifier, CasePaymentHistoryViewerFieldComponent, CasePrintDocument, CasePrinterComponent, CaseProgressComponent, CaseReferencePipe, CaseResolver, CaseSpecificAccessRequestComponent, CaseSpecificAccessSuccessComponent, CaseState, CaseTab, CaseTimelineComponent, CaseTimelineDisplayMode, CaseTimelineModule, CaseType, CaseTypeLite, CaseView, CaseViewComponent, CaseViewEvent, CaseViewTrigger, CaseViewerComponent, CaseViewerModule, CasesService, CaseworkerService, CcdCYAPageLabelFilterPipe, CcdCaseTitlePipe, CcdCollectionTableCaseFieldsFilterPipe, CcdPageFieldsPipe, CcdTabFieldsPipe, CheckYourAnswersComponent, CloseQueryComponent, ConditionalShowFormDirective, ConditionalShowModule, ConditionalShowRegistrarService, ConfirmFlagStatusComponent, ConfirmStatusErrorMessage, ConfirmStatusStep, Confirmation, ConvertHrefToRouterService, CreateCaseFiltersComponent, CreateCaseFiltersModule, CreateCaseFiltersSelection, DRAFT_PREFIX, DRAFT_QUERY_PARAM, DashPipe, DateInputComponent, DatePipe, DateTimeFormatUtils, DatetimePickerComponent, DefinitionsModule, DefinitionsService, DeleteOrCancelDialogComponent, DialogsModule, DisplayMode, Document, DocumentData, DocumentDialogComponent, DocumentLinks, DocumentManagementService, DocumentUrlPipe, Draft, DraftService, DynamicListPipe, DynamicRadioListPipe, ESQueryType, Embedded, EnumDisplayDescriptionPipe, ErrorMessageComponent, ErrorNotifierService, EventCaseField, EventCompletionReturnStates, EventCompletionStateMachineService, EventCompletionStates, EventLogComponent, EventLogDetailsComponent, EventLogTableComponent, EventMessageModule, EventStartComponent, EventStartModule, EventStartStateMachineService, EventStatusService, EventTriggerResolver, EventTriggerService, Fee, FeeValue, Field, FieldLabelPipe, FieldReadComponent, FieldReadLabelComponent, FieldType, FieldTypeSanitiser, FieldWriteComponent, FieldsFilterPipe, FieldsPurger, FieldsUtils, FirstErrorPipe, FixedListItem, FixedListPipe, FixedRadioListPipe, FlagFieldDisplayPipe, FocusElementDirective, FocusElementModule, FocusService, FooterComponent, FormDocument, FormErrorService, FormValidatorsService, FormValueService, FormatTranslatorService, GreyBarService, HRef, HeaderBarComponent, HeadersModule, HttpError, HttpErrorService, HttpService, IsCompoundPipe, IsMandatoryPipe, IsReadOnlyAndNotCollectionPipe, IsReadOnlyPipe, JudicialworkerService, Jurisdiction, JurisdictionService, LabelFieldComponent, LabelSubstitutorDirective, LabelSubstitutorModule, LanguageInterpreterDisplayPipe, LinkCaseReason, LinkCasesComponent, LinkCasesFromReasonValuePipe, LinkCasesReasonValuePipe, LinkDetails, LinkFromReason, LinkReason, LinkedCasesErrorMessages, LinkedCasesEventTriggers, LinkedCasesFromTableComponent, LinkedCasesPages, LinkedCasesResponse$1 as LinkedCasesResponse, LinkedCasesToTableComponent, LoadingModule, LoadingService, LoadingSpinnerComponent, LoadingSpinnerModule, MEDIA_VIEWER_LOCALSTORAGE_KEY, MULTIPLE_TASKS_FOUND, ManageCaseFlagsComponent, ManageCaseFlagsLabelDisplayPipe, MarkdownComponent, MarkdownComponentModule, MoneyGbpInputComponent, MultipageComponentStateService, MultipleTasksExistComponent, NavigationComponent, NavigationItemComponent, NavigationNotifierService, NavigationOrigin, NoLinkedCasesComponent, NoTasksAvailableComponent, NotificationBannerComponent, NotificationBannerHeaderClass, NotificationBannerType, OrderService, OrderSummary, OrganisationConverter, OrganisationService, PageValidationService, PaginationComponent, PaginationMetadata, PaginationModule, PaletteContext, PaletteModule, PaletteService, PaletteUtilsModule, Patterns, PaymentField, PhaseComponent, PipesModule, PlaceholderService, PrintUrlPipe, Profile, ProfileNotifier, ProfileService, QualifyingQuestionDetailComponent, QualifyingQuestionOptionsComponent, QualifyingQuestionService, QualifyingQuestionsErrorMessage, QueryAttachmentsReadComponent, QueryCaseDetailsHeaderComponent, QueryCheckYourAnswersComponent, QueryConfirmationComponent, QueryCreateContext, QueryDetailsComponent, QueryEventCompletionComponent, QueryItemResponseStatus, QueryListComponent, QueryListData, QueryListItem, QueryManagementService, QueryWriteAddDocumentsComponent, QueryWriteDateInputComponent, QueryWriteRaiseQueryComponent, QueryWriteRespondToQueryComponent, RaiseQueryErrorMessage, ReadCaseFlagFieldComponent, ReadCaseLinkFieldComponent, ReadCollectionFieldComponent, ReadComplexFieldCollectionTableComponent, ReadComplexFieldComponent, ReadComplexFieldRawComponent, ReadComplexFieldTableComponent, ReadCookieService, ReadDateFieldComponent, ReadDocumentFieldComponent, ReadDynamicListFieldComponent, ReadDynamicMultiSelectListFieldComponent, ReadDynamicRadioListFieldComponent, ReadEmailFieldComponent, ReadFieldsFilterPipe, ReadFixedListFieldComponent, ReadFixedRadioListFieldComponent, ReadJudicialUserFieldComponent, ReadLinkedCasesFieldComponent, ReadMoneyGbpFieldComponent, ReadMultiSelectListFieldComponent, ReadNumberFieldComponent, ReadOrderSummaryFieldComponent, ReadOrderSummaryRowComponent, ReadOrganisationFieldComponent, ReadOrganisationFieldRawComponent, ReadOrganisationFieldTableComponent, ReadPhoneUKFieldComponent, ReadQueryManagementFieldComponent, ReadRichTextAreaFieldComponent, ReadTextAreaFieldComponent, ReadTextFieldComponent, ReadYesNoFieldComponent, RefdataCaseFlagType, RemoveDialogComponent, RequestOptionsBuilder, RespondToQueryErrorMessages, RetryUtil, RouterHelperService, RouterLinkComponent, SaveOrDiscardDialogComponent, SearchFiltersComponent, SearchFiltersModule, SearchFiltersWrapperComponent, SearchInput, SearchLanguageInterpreterComponent, SearchLanguageInterpreterErrorMessage, SearchLanguageInterpreterStep, SearchResultComponent, SearchResultModule, SearchResultView, SearchResultViewColumn, SearchResultViewItem, SearchResultViewItemComparatorFactory, SearchService, SelectFlagErrorMessage, SelectFlagLocationComponent, SelectFlagLocationErrorMessage, SelectFlagTypeComponent, SelectFlagTypeErrorMessage, SessionErrorPageComponent, SessionErrorRoute, SessionJsonErrorLogger, SessionStorageGuard, SessionStorageService, ShowCondition, SortOrder$1 as SortOrder, SortParameters, SortSearchResultPipe, StructuredLoggerService, TabComponent, TableColumnConfig, TableConfig, TabsComponent, TabsModule, TaskAssignedComponent, TaskCancelledComponent, TaskConflictComponent, TaskUnassignedComponent, Terms, TestRouteSnapshotBuilder, TranslatedMarkdownDirective, TranslatedMarkdownModule, UnLinkCasesComponent, UnsupportedFieldComponent, UpdateFlagAddTranslationErrorMessage, UpdateFlagAddTranslationFormComponent, UpdateFlagAddTranslationStep, UpdateFlagComponent, UpdateFlagErrorMessage, UpdateFlagStep, UpdateFlagTitleDisplayPipe, WaysToPayFieldComponent, WindowService, Wizard, WizardFactoryService, WizardPage, WizardPageField, WorkAllocationService, WorkbasketFiltersComponent, WorkbasketFiltersModule, WorkbasketInput, WorkbasketInputFilterService, WorkbasketInputModel, WriteAddressFieldComponent, WriteCaseFlagFieldComponent, WriteCaseLinkFieldComponent, WriteCollectionFieldComponent, WriteComplexFieldComponent, WriteDateContainerFieldComponent, WriteDateFieldComponent, WriteDocumentFieldComponent, WriteDynamicListFieldComponent, WriteDynamicMultiSelectListFieldComponent, WriteDynamicRadioListFieldComponent, WriteEmailFieldComponent, WriteFixedListFieldComponent, WriteFixedRadioListFieldComponent, WriteJudicialUserFieldComponent, WriteLinkedCasesFieldComponent, WriteMoneyGbpFieldComponent, WriteMultiSelectListFieldComponent, WriteNumberFieldComponent, WriteOrderSummaryFieldComponent, WriteOrganisationComplexFieldComponent, WriteOrganisationFieldComponent, WritePhoneUKFieldComponent, WriteRichTextAreaFieldComponent, WriteTextAreaFieldComponent, WriteTextFieldComponent, WriteYesNoFieldComponent, YesNoService, aCaseField, caseMessagesMockData, createACL, createCaseEventTrigger, createCaseField, createComplexFieldOverride, createFieldType, createFixedListFieldType, createHiddenComplexFieldOverride, createMultiSelectListFieldType, createWizardPage, createWizardPageField, editorRouting, initDialog, newCaseField, safeJsonParse, textFieldType, viewerRouting };
8049
- export type { AccessManagementBasicViewMockModel, AccessManagementRequestReviewMockModel, AlertLevel, CaseEditCaseSubmit, CaseEditGenerateCaseEventData, CaseEditGetNextPage, CaseEditSubmitForm, CaseEditValidationError, CaseEditonEventCanBeCompleted, CaseFlagState, CaseMessage, CaseQueriesCollection, CaseTypeQualifyingQuestions, ChallengedAccessRequest, DisplayedAccessReason$1 as DisplayedAccessReason, ErrorMessage, EventCompletionComponentEmitter, EventCompletionStateMachineContext, FieldTypeEnum, FlagDetail, FlagDetailDisplay, FlagDetailDisplayWithFormGroupPath, FlagPath, Flags, FlagsWithFormGroupPath, Journey, JourneyInstigator, Language, LinkedCasesState, NotificationBannerConfig, OptionsType, Orderable, Organisation, OrganisationAddress, OrganisationSuperUser, OrganisationVm, Predicate, QmCaseQueriesCollection, QualifyingQuestion, QueryListColumn, QueryMessage, QueryMessageDocument, RequestedRole, RequestedRoleNote, ReviewSpecificAccessRequest, RoleAssignmentResponse, RoleCategory, RoleClassification, RoleGrantTypeCategory, RoleRequest, RoleRequestPayload, RoleType, SearchResultViewItemComparator, SearchView, ServiceConfig, SimpleOrganisationModel, SpecificAccessRequest, StructuredLogEntry, StructuredLogLevel, TaskSearchParameter, TaskSearchParameters, WAFeatureConfig };
8142
+ export { AbstractAppConfig, AbstractFieldReadComponent, AbstractFieldWriteComponent, AbstractFieldWriteJourneyComponent, AbstractJourneyComponent, Activity, ActivityBannerComponent, ActivityComponent, ActivityIconComponent, ActivityInfo, ActivityModule, ActivityPollingService, ActivityService, AddCommentsComponent, AddCommentsErrorMessage, AddCommentsStep, AddressModel, AddressOption, AddressesService, Alert, AlertComponent, AlertIconClassPipe, AlertMessageType, AlertModule, AlertService, AuthService, Banner, BannersService, BeforeYouStartComponent, BodyComponent, BrowserService, CCDCaseLinkType, COMPONENT_PORTAL_INJECTION_TOKEN, CallbackErrorsComponent, CallbackErrorsContext, CaseAccessUtils, CaseBasicAccessViewComponent, CaseChallengedAccessRequestComponent, CaseChallengedAccessSuccessComponent, CaseCreateComponent, CaseDetails, CaseEditComponent, CaseEditConfirmComponent, CaseEditDataModule, CaseEditDataService, CaseEditFormComponent, CaseEditPageComponent, CaseEditSubmitComponent, CaseEditWizardGuard, CaseEditorConfig, CaseEditorModule, CaseEvent, CaseEventCompletionComponent, CaseEventCompletionTaskCancelledComponent, CaseEventCompletionTaskReassignedComponent, CaseEventData, CaseEventTrigger, CaseEventTriggerComponent, CaseField, CaseFieldService, CaseFileViewFieldComponent, CaseFileViewFolderComponent, CaseFileViewFolderDocumentActionsComponent, CaseFileViewFolderSelectorComponent, CaseFileViewFolderSortComponent, CaseFileViewFolderToggleComponent, CaseFileViewOverlayMenuComponent, CaseFileViewService, CaseFlagCheckYourAnswersPageStep, CaseFlagDisplayContextParameter, CaseFlagErrorMessage, CaseFlagFieldState, CaseFlagFormFields, CaseFlagRefdataService, CaseFlagStatus, CaseFlagSummaryListComponent, CaseFlagSummaryListDisplayMode, CaseFlagTableComponent, CaseFlagWizardStepTitle, CaseFullAccessViewComponent, CaseHeaderComponent, CaseHeaderModule, CaseHistoryViewerFieldComponent, CaseLink, CaseLinkResponse, CaseListComponent, CaseListFiltersComponent, CaseListFiltersModule, CaseListModule, CaseNotifier, CasePaymentHistoryViewerFieldComponent, CasePrintDocument, CasePrinterComponent, CaseProgressComponent, CaseReferencePipe, CaseResolver, CaseSpecificAccessRequestComponent, CaseSpecificAccessSuccessComponent, CaseState, CaseTab, CaseTimelineComponent, CaseTimelineDisplayMode, CaseTimelineModule, CaseType, CaseTypeLite, CaseView, CaseViewComponent, CaseViewEvent, CaseViewTrigger, CaseViewerComponent, CaseViewerModule, CasesService, CaseworkerService, CcdCYAPageLabelFilterPipe, CcdCaseTitlePipe, CcdCollectionTableCaseFieldsFilterPipe, CcdPageFieldsPipe, CcdTabFieldsPipe, CheckYourAnswersComponent, CloseQueryComponent, ConditionalShowFormDirective, ConditionalShowModule, ConditionalShowRegistrarService, ConfirmFlagStatusComponent, ConfirmStatusErrorMessage, ConfirmStatusStep, Confirmation, ConvertHrefToRouterService, CreateCaseFiltersComponent, CreateCaseFiltersModule, CreateCaseFiltersSelection, DRAFT_PREFIX, DRAFT_QUERY_PARAM, DashPipe, DateInputComponent, DatePipe, DateTimeFormatUtils, DatetimePickerComponent, DefinitionsModule, DefinitionsService, DeleteOrCancelDialogComponent, DialogsModule, DisplayMode, Document, DocumentData, DocumentDialogComponent, DocumentLinks, DocumentManagementService, DocumentUrlPipe, Draft, DraftService, DynamicListPipe, DynamicRadioListPipe, ESQueryType, Embedded, EnumDisplayDescriptionPipe, ErrorMessageComponent, ErrorNotifierService, EventCaseField, EventCompletionReturnStates, EventCompletionStateMachineService, EventCompletionStates, EventLogComponent, EventLogDetailsComponent, EventLogTableComponent, EventMessageModule, EventStartComponent, EventStartModule, EventStartStateMachineService, EventStatusService, EventTriggerResolver, EventTriggerService, Fee, FeeValue, Field, FieldLabelPipe, FieldReadComponent, FieldReadLabelComponent, FieldType, FieldTypeSanitiser, FieldWriteComponent, FieldsFilterPipe, FieldsPurger, FieldsUtils, FirstErrorPipe, FixedListItem, FixedListPipe, FixedRadioListPipe, FlagFieldDisplayPipe, FocusElementDirective, FocusElementModule, FocusService, FooterComponent, FormDocument, FormErrorService, FormValidatorsService, FormValueService, FormatTranslatorService, GreyBarService, HRef, HeaderBarComponent, HeadersModule, HttpError, HttpErrorService, HttpService, IsCompoundPipe, IsMandatoryPipe, IsReadOnlyAndNotCollectionPipe, IsReadOnlyPipe, JudicialworkerService, Jurisdiction, JurisdictionService, LabelFieldComponent, LabelSubstitutorDirective, LabelSubstitutorModule, LanguageInterpreterDisplayPipe, LinkCaseReason, LinkCasesComponent, LinkCasesFromReasonValuePipe, LinkCasesReasonValuePipe, LinkDetails, LinkFromReason, LinkReason, LinkedCasesErrorMessages, LinkedCasesEventTriggers, LinkedCasesFromTableComponent, LinkedCasesPages, LinkedCasesResponse$1 as LinkedCasesResponse, LinkedCasesToTableComponent, LoadingModule, LoadingService, LoadingSpinnerComponent, LoadingSpinnerModule, MEDIA_VIEWER_LOCALSTORAGE_KEY, MULTIPLE_TASKS_FOUND, ManageCaseFlagsComponent, ManageCaseFlagsLabelDisplayPipe, MarkdownComponent, MarkdownComponentModule, MoneyGbpInputComponent, MultipageComponentStateService, MultipleTasksExistComponent, NavigationComponent, NavigationItemComponent, NavigationNotifierService, NavigationOrigin, NoLinkedCasesComponent, NoTasksAvailableComponent, NotificationBannerComponent, NotificationBannerHeaderClass, NotificationBannerType, OrderService, OrderSummary, OrganisationConverter, OrganisationService, PageValidationService, PaginationComponent, PaginationMetadata, PaginationModule, PaletteContext, PaletteModule, PaletteService, PaletteUtilsModule, Patterns, PaymentField, PhaseComponent, PipesModule, PlaceholderService, PrintUrlPipe, Profile, ProfileNotifier, ProfileService, QualifyingQuestionDetailComponent, QualifyingQuestionOptionsComponent, QualifyingQuestionService, QualifyingQuestionsErrorMessage, QueryAttachmentsReadComponent, QueryCaseDetailsHeaderComponent, QueryCheckYourAnswersComponent, QueryConfirmationComponent, QueryCreateContext, QueryDetailsComponent, QueryEventCompletionComponent, QueryItemResponseStatus, QueryListComponent, QueryListData, QueryListItem, QueryManagementService, QueryWriteAddDocumentsComponent, QueryWriteDateInputComponent, QueryWriteRaiseQueryComponent, QueryWriteRespondToQueryComponent, RaiseQueryErrorMessage, ReadCaseFlagFieldComponent, ReadCaseLinkFieldComponent, ReadCollectionFieldComponent, ReadComplexFieldCollectionTableComponent, ReadComplexFieldComponent, ReadComplexFieldRawComponent, ReadComplexFieldTableComponent, ReadCookieService, ReadDateFieldComponent, ReadDocumentFieldComponent, ReadDynamicListFieldComponent, ReadDynamicMultiSelectListFieldComponent, ReadDynamicRadioListFieldComponent, ReadEmailFieldComponent, ReadFieldsFilterPipe, ReadFixedListFieldComponent, ReadFixedRadioListFieldComponent, ReadJudicialUserFieldComponent, ReadLinkedCasesFieldComponent, ReadMoneyGbpFieldComponent, ReadMultiSelectListFieldComponent, ReadNumberFieldComponent, ReadOrderSummaryFieldComponent, ReadOrderSummaryRowComponent, ReadOrganisationFieldComponent, ReadOrganisationFieldRawComponent, ReadOrganisationFieldTableComponent, ReadPhoneUKFieldComponent, ReadQueryManagementFieldComponent, ReadRichTextAreaFieldComponent, ReadStaffUserFieldComponent, ReadTextAreaFieldComponent, ReadTextFieldComponent, ReadYesNoFieldComponent, RefdataCaseFlagType, RemoveDialogComponent, RequestOptionsBuilder, RespondToQueryErrorMessages, RetryUtil, RouterHelperService, RouterLinkComponent, SaveOrDiscardDialogComponent, SearchFiltersComponent, SearchFiltersModule, SearchFiltersWrapperComponent, SearchInput, SearchLanguageInterpreterComponent, SearchLanguageInterpreterErrorMessage, SearchLanguageInterpreterStep, SearchResultComponent, SearchResultModule, SearchResultView, SearchResultViewColumn, SearchResultViewItem, SearchResultViewItemComparatorFactory, SearchService, SelectFlagErrorMessage, SelectFlagLocationComponent, SelectFlagLocationErrorMessage, SelectFlagTypeComponent, SelectFlagTypeErrorMessage, SessionErrorPageComponent, SessionErrorRoute, SessionJsonErrorLogger, SessionStorageGuard, SessionStorageService, ShowCondition, SortOrder$1 as SortOrder, SortParameters, SortSearchResultPipe, StructuredLoggerService, TabComponent, TableColumnConfig, TableConfig, TabsComponent, TabsModule, TaskAssignedComponent, TaskCancelledComponent, TaskConflictComponent, TaskUnassignedComponent, Terms, TestRouteSnapshotBuilder, TranslatedMarkdownDirective, TranslatedMarkdownModule, UnLinkCasesComponent, UnsupportedFieldComponent, UpdateFlagAddTranslationErrorMessage, UpdateFlagAddTranslationFormComponent, UpdateFlagAddTranslationStep, UpdateFlagComponent, UpdateFlagErrorMessage, UpdateFlagStep, UpdateFlagTitleDisplayPipe, WaysToPayFieldComponent, WindowService, Wizard, WizardFactoryService, WizardPage, WizardPageField, WorkAllocationService, WorkbasketFiltersComponent, WorkbasketFiltersModule, WorkbasketInput, WorkbasketInputFilterService, WorkbasketInputModel, WriteAddressFieldComponent, WriteCaseFlagFieldComponent, WriteCaseLinkFieldComponent, WriteCollectionFieldComponent, WriteComplexFieldComponent, WriteDateContainerFieldComponent, WriteDateFieldComponent, WriteDocumentFieldComponent, WriteDynamicListFieldComponent, WriteDynamicMultiSelectListFieldComponent, WriteDynamicRadioListFieldComponent, WriteEmailFieldComponent, WriteFixedListFieldComponent, WriteFixedRadioListFieldComponent, WriteJudicialUserFieldComponent, WriteLinkedCasesFieldComponent, WriteMoneyGbpFieldComponent, WriteMultiSelectListFieldComponent, WriteNumberFieldComponent, WriteOrderSummaryFieldComponent, WriteOrganisationComplexFieldComponent, WriteOrganisationFieldComponent, WritePhoneUKFieldComponent, WriteRichTextAreaFieldComponent, WriteStaffUserFieldComponent, WriteTextAreaFieldComponent, WriteTextFieldComponent, WriteYesNoFieldComponent, YesNoService, aCaseField, caseMessagesMockData, createACL, createCaseEventTrigger, createCaseField, createComplexFieldOverride, createFieldType, createFixedListFieldType, createHiddenComplexFieldOverride, createMultiSelectListFieldType, createWizardPage, createWizardPageField, editorRouting, initDialog, newCaseField, parseStaffUserSearchConfiguration, safeJsonParse, textFieldType, viewerRouting };
8143
+ export type { AccessManagementBasicViewMockModel, AccessManagementRequestReviewMockModel, AlertLevel, CaseEditCaseSubmit, CaseEditGenerateCaseEventData, CaseEditGetNextPage, CaseEditSubmitForm, CaseEditValidationError, CaseEditonEventCanBeCompleted, CaseFlagState, CaseMessage, CaseQueriesCollection, CaseTypeQualifyingQuestions, ChallengedAccessRequest, DisplayedAccessReason$1 as DisplayedAccessReason, ErrorMessage, EventCompletionComponentEmitter, EventCompletionStateMachineContext, FieldTypeEnum, FlagDetail, FlagDetailDisplay, FlagDetailDisplayWithFormGroupPath, FlagPath, Flags, FlagsWithFormGroupPath, Journey, JourneyInstigator, Language, LinkedCasesState, NotificationBannerConfig, OptionsType, Orderable, Organisation, OrganisationAddress, OrganisationSuperUser, OrganisationVm, Predicate, QmCaseQueriesCollection, QualifyingQuestion, QueryListColumn, QueryMessage, QueryMessageDocument, RequestedRole, RequestedRoleNote, ReviewSpecificAccessRequest, RoleAssignmentResponse, RoleCategory, RoleClassification, RoleGrantTypeCategory, RoleRequest, RoleRequestPayload, RoleType, SearchResultViewItemComparator, SearchView, ServiceConfig, SimpleOrganisationModel, SpecificAccessRequest, StaffCacheRoleCategory, StaffUser, StaffUserRoleCategory, StaffUserSearchConfiguration, StaffUserSearchConfigurationResult, StructuredLogEntry, StructuredLogLevel, TaskSearchParameter, TaskSearchParameters, WAFeatureConfig };
8050
8144
  //# sourceMappingURL=index.d.ts.map