@hmcts/ccd-case-ui-toolkit 7.3.76 → 7.3.77-4923
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/README.md +12 -0
- package/core/index.d.ts +110 -0
- package/core/index.d.ts.map +1 -0
- package/fesm2022/hmcts-ccd-case-ui-toolkit-core.mjs +177 -0
- package/fesm2022/hmcts-ccd-case-ui-toolkit-core.mjs.map +1 -0
- package/fesm2022/hmcts-ccd-case-ui-toolkit-json-utils.mjs +20 -0
- package/fesm2022/hmcts-ccd-case-ui-toolkit-json-utils.mjs.map +1 -0
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs +312 -165
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/index.d.ts +35 -15
- package/index.d.ts.map +1 -1
- package/json-utils/index.d.ts +4 -0
- package/json-utils/index.d.ts.map +1 -0
- package/package.json +11 -3
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnInit, OnDestroy, PipeTransform, EventEmitter, AfterContentInit, QueryList, ElementRef, InjectionToken, NgZone, OnChanges, SimpleChanges, ChangeDetectorRef, Type, ViewContainerRef, ComponentFactoryResolver,
|
|
2
|
+
import { OnInit, OnDestroy, PipeTransform, EventEmitter, AfterContentInit, QueryList, ElementRef, InjectionToken, NgZone, OnChanges, SimpleChanges, ChangeDetectorRef, AfterViewInit, EnvironmentInjector, Type, ViewContainerRef, ComponentFactoryResolver, Renderer2, ModuleWithProviders, Injector, TemplateRef, RendererFactory2, AfterViewChecked } from '@angular/core';
|
|
3
3
|
import * as i2 from '@angular/common';
|
|
4
4
|
import { AsyncPipe, Location as Location$1 } from '@angular/common';
|
|
5
5
|
import * as i3 from '@angular/router';
|
|
@@ -11,8 +11,7 @@ import { ControlValueAccessor, Validator, FormControl, AbstractControl, Validati
|
|
|
11
11
|
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
|
-
import
|
|
15
|
-
import * as i144 from '@angular/material/legacy-dialog';
|
|
14
|
+
import * as i143 from '@angular/material/legacy-dialog';
|
|
16
15
|
import { MatLegacyDialog, MatLegacyDialogRef, MatLegacyDialogConfig } from '@angular/material/legacy-dialog';
|
|
17
16
|
import { State, StateMachine } from '@edium/fsm';
|
|
18
17
|
import * as i16 from '@angular/cdk/portal';
|
|
@@ -29,12 +28,11 @@ import * as i137 from '@angular/material/legacy-input';
|
|
|
29
28
|
import * as i138 from '@angular/material/datepicker';
|
|
30
29
|
import * as i139 from '@angular/material/legacy-autocomplete';
|
|
31
30
|
import * as i141 from '@angular/cdk/overlay';
|
|
32
|
-
import * as i142 from '@hmcts/ccpay-web-component';
|
|
33
|
-
import * as i145 from '@hmcts/media-viewer';
|
|
34
31
|
import * as i3$2 from 'ngx-pagination';
|
|
35
32
|
import * as i25 from '@angular/material/legacy-tabs';
|
|
36
33
|
import { MatLegacyTabGroup } from '@angular/material/legacy-tabs';
|
|
37
34
|
import { MatDialogConfig } from '@angular/material/dialog';
|
|
35
|
+
export { safeJsonParse } from '@hmcts/ccd-case-ui-toolkit/json-utils';
|
|
38
36
|
|
|
39
37
|
declare class FooterComponent {
|
|
40
38
|
email: string;
|
|
@@ -927,7 +925,7 @@ interface CaseEditModel {
|
|
|
927
925
|
eventCanBeCompleted: boolean;
|
|
928
926
|
caseDetails: CaseView;
|
|
929
927
|
caseEventData: CaseEventData;
|
|
930
|
-
submit(caseEventData: CaseEventData, profile?: Profile): Observable
|
|
928
|
+
submit(caseEventData: CaseEventData, profile?: Profile): Observable<object>;
|
|
931
929
|
}
|
|
932
930
|
interface CaseEditGetNextPage extends Pick<CaseEditModel, 'wizard' | 'currentPageId' | 'eventTrigger' | 'form'> {
|
|
933
931
|
}
|
|
@@ -2956,9 +2954,17 @@ declare abstract class PaymentField extends AbstractFieldReadComponent {
|
|
|
2956
2954
|
getUserEmail(): any;
|
|
2957
2955
|
}
|
|
2958
2956
|
|
|
2959
|
-
declare class WaysToPayFieldComponent extends PaymentField {
|
|
2960
|
-
|
|
2957
|
+
declare class WaysToPayFieldComponent extends PaymentField implements AfterViewInit, OnDestroy {
|
|
2958
|
+
private readonly environmentInjector;
|
|
2959
|
+
paymentLoadError: boolean;
|
|
2960
|
+
private paymentHost;
|
|
2961
|
+
private paymentComponentRef;
|
|
2962
|
+
private paymentModuleRef;
|
|
2963
|
+
constructor(appConfig: AbstractAppConfig, sessionStorage: SessionStorageService, environmentInjector: EnvironmentInjector);
|
|
2964
|
+
ngAfterViewInit(): void;
|
|
2965
|
+
ngOnDestroy(): void;
|
|
2961
2966
|
getCardPaymentReturnUrl(): string;
|
|
2967
|
+
private renderPayment;
|
|
2962
2968
|
static ɵfac: i0.ɵɵFactoryDeclaration<WaysToPayFieldComponent, never>;
|
|
2963
2969
|
static ɵcmp: i0.ɵɵComponentDeclaration<WaysToPayFieldComponent, "ccd-ways-to-pay-field", never, {}, {}, never, never, false, never>;
|
|
2964
2970
|
}
|
|
@@ -3021,9 +3027,17 @@ declare class LabelFieldComponent {
|
|
|
3021
3027
|
static ɵcmp: i0.ɵɵComponentDeclaration<LabelFieldComponent, "ccd-label-field", never, { "caseField": { "alias": "caseField"; "required": false; }; "caseFields": { "alias": "caseFields"; "required": false; }; "labelCanBeTranslated": { "alias": "labelCanBeTranslated"; "required": false; }; }, {}, never, never, false, never>;
|
|
3022
3028
|
}
|
|
3023
3029
|
|
|
3024
|
-
declare class CasePaymentHistoryViewerFieldComponent extends PaymentField {
|
|
3030
|
+
declare class CasePaymentHistoryViewerFieldComponent extends PaymentField implements AfterViewInit, OnDestroy {
|
|
3031
|
+
private readonly environmentInjector;
|
|
3025
3032
|
readonly PAYMENT_HISTORY_WARNING = "Recent payments may take a few minutes to reflect here.";
|
|
3026
|
-
|
|
3033
|
+
paymentLoadError: boolean;
|
|
3034
|
+
private paymentHost;
|
|
3035
|
+
private paymentComponentRef;
|
|
3036
|
+
private paymentModuleRef;
|
|
3037
|
+
constructor(appConfig: AbstractAppConfig, sessionStorage: SessionStorageService, environmentInjector: EnvironmentInjector);
|
|
3038
|
+
ngAfterViewInit(): void;
|
|
3039
|
+
ngOnDestroy(): void;
|
|
3040
|
+
private renderPayment;
|
|
3027
3041
|
static ɵfac: i0.ɵɵFactoryDeclaration<CasePaymentHistoryViewerFieldComponent, never>;
|
|
3028
3042
|
static ɵcmp: i0.ɵɵComponentDeclaration<CasePaymentHistoryViewerFieldComponent, "ccd-case-payment-history-viewer-field", never, {}, {}, never, never, false, never>;
|
|
3029
3043
|
}
|
|
@@ -4266,6 +4280,8 @@ declare class PageValidationService {
|
|
|
4266
4280
|
|
|
4267
4281
|
declare class CaseFileViewFieldComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
4268
4282
|
private readonly elementRef;
|
|
4283
|
+
private readonly changeDetectorRef;
|
|
4284
|
+
private readonly environmentInjector;
|
|
4269
4285
|
private readonly route;
|
|
4270
4286
|
private caseFileViewService;
|
|
4271
4287
|
private documentManagementService;
|
|
@@ -4286,7 +4302,11 @@ declare class CaseFileViewFieldComponent implements OnInit, AfterViewInit, OnDes
|
|
|
4286
4302
|
icp_jurisdictions: string[];
|
|
4287
4303
|
icpEnabled: boolean;
|
|
4288
4304
|
caseId: string;
|
|
4289
|
-
|
|
4305
|
+
private mediaViewerHost;
|
|
4306
|
+
private mediaViewerComponentRef;
|
|
4307
|
+
private mediaViewerModuleRef;
|
|
4308
|
+
private mediaViewerRenderId;
|
|
4309
|
+
constructor(elementRef: ElementRef, changeDetectorRef: ChangeDetectorRef, environmentInjector: EnvironmentInjector, route: ActivatedRoute, caseFileViewService: CaseFileViewService, documentManagementService: DocumentManagementService, loadingService: LoadingService, sessionStorageService: SessionStorageService, windowService: WindowService, caseNotifier: CaseNotifier, abstractConfig: AbstractAppConfig);
|
|
4290
4310
|
ngOnInit(): void;
|
|
4291
4311
|
ngAfterViewInit(): void;
|
|
4292
4312
|
setMediaViewerFile(document: DocumentTreeNode): void;
|
|
@@ -4298,6 +4318,8 @@ declare class CaseFileViewFieldComponent implements OnInit, AfterViewInit, OnDes
|
|
|
4298
4318
|
resetErrorMessages(): void;
|
|
4299
4319
|
ngOnDestroy(): void;
|
|
4300
4320
|
isIcpEnabled(): boolean;
|
|
4321
|
+
private renderMediaViewer;
|
|
4322
|
+
private destroyMediaViewer;
|
|
4301
4323
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaseFileViewFieldComponent, never>;
|
|
4302
4324
|
static ɵcmp: i0.ɵɵComponentDeclaration<CaseFileViewFieldComponent, "ccd-case-file-view-field", never, {}, {}, never, never, false, never>;
|
|
4303
4325
|
}
|
|
@@ -5956,7 +5978,7 @@ declare class ErrorsModule {
|
|
|
5956
5978
|
|
|
5957
5979
|
declare class PaletteModule {
|
|
5958
5980
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaletteModule, never>;
|
|
5959
|
-
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 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 WriteDateContainerFieldComponent, typeof WriteTextAreaFieldComponent, 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 i135.NgxMatDatetimePickerModule, typeof i135.NgxMatTimepickerModule, typeof i135.NgxMatNativeDateModule, typeof i136.MatLegacyFormFieldModule, typeof i137.MatLegacyInputModule, typeof i138.MatDatepickerModule, typeof i139.MatLegacyAutocompleteModule, typeof i140.CdkTreeModule, typeof i141.OverlayModule, typeof i142.PaymentLibModule, typeof i7.RpxTranslationModule, typeof i140.CdkTreeModule, typeof i141.OverlayModule, typeof i144.MatLegacyDialogModule, typeof i145.MediaViewerModule, typeof LoadingModule, typeof MarkdownComponentModule, typeof ErrorsModule], [typeof i135.NgxMatDatetimePickerModule, typeof i135.NgxMatNativeDateModule, typeof i135.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 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 WriteDateContainerFieldComponent, typeof WriteTextAreaFieldComponent, 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]>;
|
|
5981
|
+
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 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 WriteDateContainerFieldComponent, typeof WriteTextAreaFieldComponent, 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 i135.NgxMatDatetimePickerModule, typeof i135.NgxMatTimepickerModule, typeof i135.NgxMatNativeDateModule, typeof i136.MatLegacyFormFieldModule, typeof i137.MatLegacyInputModule, typeof i138.MatDatepickerModule, typeof i139.MatLegacyAutocompleteModule, typeof i140.CdkTreeModule, typeof i141.OverlayModule, typeof i7.RpxTranslationModule, typeof i140.CdkTreeModule, typeof i141.OverlayModule, typeof i143.MatLegacyDialogModule, typeof LoadingModule, typeof MarkdownComponentModule, typeof ErrorsModule], [typeof i135.NgxMatDatetimePickerModule, typeof i135.NgxMatNativeDateModule, typeof i135.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 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 WriteDateContainerFieldComponent, typeof WriteTextAreaFieldComponent, 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]>;
|
|
5960
5982
|
static ɵinj: i0.ɵɵInjectorDeclaration<PaletteModule>;
|
|
5961
5983
|
}
|
|
5962
5984
|
|
|
@@ -7851,8 +7873,6 @@ declare class TestRouteSnapshotBuilder {
|
|
|
7851
7873
|
build(): ActivatedRouteSnapshot;
|
|
7852
7874
|
}
|
|
7853
7875
|
|
|
7854
|
-
declare function safeJsonParse<T>(value: string | null, fallback?: T | null): T | null;
|
|
7855
|
-
|
|
7856
|
-
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, 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, WriteTextAreaFieldComponent, WriteTextFieldComponent, WriteYesNoFieldComponent, YesNoService, aCaseField, caseMessagesMockData, createACL, createCaseEventTrigger, createCaseField, createComplexFieldOverride, createFieldType, createFixedListFieldType, createHiddenComplexFieldOverride, createMultiSelectListFieldType, createWizardPage, createWizardPageField, editorRouting, initDialog, newCaseField, safeJsonParse, textFieldType, viewerRouting };
|
|
7876
|
+
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, 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, WriteTextAreaFieldComponent, WriteTextFieldComponent, WriteYesNoFieldComponent, YesNoService, aCaseField, caseMessagesMockData, createACL, createCaseEventTrigger, createCaseField, createComplexFieldOverride, createFieldType, createFixedListFieldType, createHiddenComplexFieldOverride, createMultiSelectListFieldType, createWizardPage, createWizardPageField, editorRouting, initDialog, newCaseField, textFieldType, viewerRouting };
|
|
7857
7877
|
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 };
|
|
7858
7878
|
//# sourceMappingURL=index.d.ts.map
|