@hmcts/ccd-case-ui-toolkit 7.3.64 → 7.3.65
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/fesm2022/hmcts-ccd-case-ui-toolkit.mjs +225 -89
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/index.d.ts +56 -2
- package/index.d.ts.map +1 -1
- package/package.json +43 -3
package/index.d.ts
CHANGED
|
@@ -479,6 +479,7 @@ declare class LoadingModule {
|
|
|
479
479
|
declare class HttpErrorService {
|
|
480
480
|
private readonly authService;
|
|
481
481
|
private readonly loadingService;
|
|
482
|
+
private static readonly logger;
|
|
482
483
|
constructor(authService: AuthService, loadingService: LoadingService);
|
|
483
484
|
private static readonly CONTENT_TYPE;
|
|
484
485
|
private static readonly JSON;
|
|
@@ -575,6 +576,7 @@ declare class SessionStorageGuard implements CanActivate {
|
|
|
575
576
|
private readonly router;
|
|
576
577
|
private readonly errorRoute?;
|
|
577
578
|
private readonly errorLogger?;
|
|
579
|
+
private readonly logger;
|
|
578
580
|
constructor(sessionStorageService: SessionStorageService, router: Router, errorRoute?: string, errorLogger?: SessionJsonErrorLogger);
|
|
579
581
|
canActivate(): boolean;
|
|
580
582
|
static ɵfac: i0.ɵɵFactoryDeclaration<SessionStorageGuard, [null, null, { optional: true; }, { optional: true; }]>;
|
|
@@ -587,6 +589,7 @@ declare class ActivityService {
|
|
|
587
589
|
private readonly sessionStorageService;
|
|
588
590
|
static get ACTIVITY_VIEW(): string;
|
|
589
591
|
static get ACTIVITY_EDIT(): string;
|
|
592
|
+
private readonly logger;
|
|
590
593
|
constructor(http: HttpService, appConfig: AbstractAppConfig, sessionStorageService: SessionStorageService);
|
|
591
594
|
get isEnabled(): boolean;
|
|
592
595
|
static readonly DUMMY_CASE_REFERENCE = "0";
|
|
@@ -597,6 +600,7 @@ declare class ActivityService {
|
|
|
597
600
|
postActivity(caseId: string, activity: string): Observable<Activity[]>;
|
|
598
601
|
verifyUserIsAuthorized(): void;
|
|
599
602
|
private activityUrl;
|
|
603
|
+
private logUserMayNotBeAuthenticated;
|
|
600
604
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActivityService, never>;
|
|
601
605
|
static ɵprov: i0.ɵɵInjectableDeclaration<ActivityService>;
|
|
602
606
|
}
|
|
@@ -605,6 +609,7 @@ declare class ActivityPollingService {
|
|
|
605
609
|
private readonly activityService;
|
|
606
610
|
private readonly ngZone;
|
|
607
611
|
private readonly config;
|
|
612
|
+
private readonly logger;
|
|
608
613
|
private readonly pendingRequests;
|
|
609
614
|
private currentTimeoutHandle;
|
|
610
615
|
private pollActivitiesSubscription;
|
|
@@ -723,6 +728,7 @@ declare class FieldType {
|
|
|
723
728
|
}
|
|
724
729
|
|
|
725
730
|
declare class CaseField implements Orderable {
|
|
731
|
+
private static readonly logger;
|
|
726
732
|
id: string;
|
|
727
733
|
hidden: boolean;
|
|
728
734
|
hiddenCannotChange: boolean;
|
|
@@ -1190,6 +1196,7 @@ interface OrganisationVm {
|
|
|
1190
1196
|
declare class OrganisationService {
|
|
1191
1197
|
private readonly http;
|
|
1192
1198
|
private readonly appconfig;
|
|
1199
|
+
private readonly logger;
|
|
1193
1200
|
constructor(http: HttpClient, appconfig: AbstractAppConfig);
|
|
1194
1201
|
private organisations$;
|
|
1195
1202
|
static mapOrganisation(organisations: Organisation[]): OrganisationVm[];
|
|
@@ -2052,6 +2059,7 @@ declare class CasesService {
|
|
|
2052
2059
|
private loadingService;
|
|
2053
2060
|
private readonly sessionStorageService;
|
|
2054
2061
|
private readonly retryUtil;
|
|
2062
|
+
private readonly logger;
|
|
2055
2063
|
static readonly V2_MEDIATYPE_CASE_VIEW = "application/vnd.uk.gov.hmcts.ccd-data-store-api.ui-case-view.v2+json";
|
|
2056
2064
|
static readonly V2_MEDIATYPE_START_CASE_TRIGGER = "application/vnd.uk.gov.hmcts.ccd-data-store-api.ui-start-case-trigger.v2+json;charset=UTF-8";
|
|
2057
2065
|
static readonly V2_MEDIATYPE_START_EVENT_TRIGGER = "application/vnd.uk.gov.hmcts.ccd-data-store-api.ui-start-event-trigger.v2+json;charset=UTF-8";
|
|
@@ -2219,6 +2227,7 @@ declare class Wizard {
|
|
|
2219
2227
|
}
|
|
2220
2228
|
|
|
2221
2229
|
declare class FieldsUtils {
|
|
2230
|
+
private static readonly logger;
|
|
2222
2231
|
private static readonly caseLevelCaseFlagsFieldId;
|
|
2223
2232
|
private static readonly currencyPipe;
|
|
2224
2233
|
private static readonly datePipe;
|
|
@@ -2596,6 +2605,39 @@ declare class BannersService {
|
|
|
2596
2605
|
static ɵprov: i0.ɵɵInjectableDeclaration<BannersService>;
|
|
2597
2606
|
}
|
|
2598
2607
|
|
|
2608
|
+
type StructuredLogLevel = 'error' | 'warn' | 'info' | 'debug';
|
|
2609
|
+
interface StructuredLogEntry {
|
|
2610
|
+
level: StructuredLogLevel;
|
|
2611
|
+
message: string;
|
|
2612
|
+
timestamp: string;
|
|
2613
|
+
context?: unknown;
|
|
2614
|
+
}
|
|
2615
|
+
declare class StructuredLoggerService {
|
|
2616
|
+
private static readonly CIRCULAR_VALUE;
|
|
2617
|
+
private static readonly MAX_DEPTH_VALUE;
|
|
2618
|
+
private static readonly MAX_REDACTION_DEPTH;
|
|
2619
|
+
private static readonly REDACTED_VALUE;
|
|
2620
|
+
private static readonly KEY_VALUE_PATTERN;
|
|
2621
|
+
private static readonly SENSITIVE_KEY_PATTERN;
|
|
2622
|
+
private static readonly BEARER_TOKEN_PATTERN;
|
|
2623
|
+
debug(message: string, context?: unknown): void;
|
|
2624
|
+
error(message: string, context?: unknown): void;
|
|
2625
|
+
info(message: string, context?: unknown): void;
|
|
2626
|
+
warn(message: string, context?: unknown): void;
|
|
2627
|
+
redact(value: unknown): unknown;
|
|
2628
|
+
private write;
|
|
2629
|
+
private redactValue;
|
|
2630
|
+
private redactError;
|
|
2631
|
+
private redactObject;
|
|
2632
|
+
private redactSensitiveString;
|
|
2633
|
+
private hasSensitiveNamedValue;
|
|
2634
|
+
private isNameKey;
|
|
2635
|
+
private isSensitiveKey;
|
|
2636
|
+
private isValueKey;
|
|
2637
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StructuredLoggerService, never>;
|
|
2638
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StructuredLoggerService>;
|
|
2639
|
+
}
|
|
2640
|
+
|
|
2599
2641
|
declare enum NavigationOrigin {
|
|
2600
2642
|
DRAFT_DELETED = 0,
|
|
2601
2643
|
ERROR_DELETING_DRAFT = 1,
|
|
@@ -2692,6 +2734,7 @@ declare class SearchFiltersComponent implements OnInit {
|
|
|
2692
2734
|
private readonly orderService;
|
|
2693
2735
|
private readonly jurisdictionService;
|
|
2694
2736
|
private readonly windowService;
|
|
2737
|
+
private readonly logger;
|
|
2695
2738
|
readonly PARAM_JURISDICTION = "jurisdiction";
|
|
2696
2739
|
readonly PARAM_CASE_TYPE = "case-type";
|
|
2697
2740
|
readonly PARAM_CASE_STATE = "case-state";
|
|
@@ -3549,6 +3592,7 @@ declare class AddressOption {
|
|
|
3549
3592
|
|
|
3550
3593
|
declare class WriteAddressFieldComponent extends AbstractFieldWriteComponent implements OnInit, OnChanges {
|
|
3551
3594
|
private readonly isCompoundPipe;
|
|
3595
|
+
private readonly logger;
|
|
3552
3596
|
writeComplexFieldComponent: WriteComplexFieldComponent;
|
|
3553
3597
|
focusElementDirectives: QueryList<FocusElementDirective>;
|
|
3554
3598
|
static readonly REQUIRED_ERROR_MESSAGE = "Enter a Postcode";
|
|
@@ -4039,6 +4083,7 @@ declare class WriteCollectionFieldComponent extends AbstractFieldWriteComponent
|
|
|
4039
4083
|
private readonly scrollToService;
|
|
4040
4084
|
private readonly profileNotifier;
|
|
4041
4085
|
private readonly cdRef;
|
|
4086
|
+
private readonly logger;
|
|
4042
4087
|
caseFields: CaseField[];
|
|
4043
4088
|
formArray: FormArray;
|
|
4044
4089
|
profile: Profile;
|
|
@@ -5111,6 +5156,7 @@ declare class QualifyingQuestionService {
|
|
|
5111
5156
|
declare class QueryManagementService {
|
|
5112
5157
|
private readonly router;
|
|
5113
5158
|
private readonly sessionStorageService;
|
|
5159
|
+
private readonly logger;
|
|
5114
5160
|
caseQueriesCollections: CaseQueriesCollection[];
|
|
5115
5161
|
fieldId: string;
|
|
5116
5162
|
constructor(router: Router, sessionStorageService: SessionStorageService);
|
|
@@ -5129,6 +5175,7 @@ declare class QueryWriteRespondToQueryComponent implements OnInit, OnChanges {
|
|
|
5129
5175
|
private readonly caseNotifier;
|
|
5130
5176
|
private readonly route;
|
|
5131
5177
|
private queryManagementService;
|
|
5178
|
+
private readonly logger;
|
|
5132
5179
|
queryItem: QueryListItem;
|
|
5133
5180
|
formGroup: FormGroup;
|
|
5134
5181
|
queryCreateContext: QueryCreateContext;
|
|
@@ -5169,6 +5216,7 @@ interface EventCompletionParams {
|
|
|
5169
5216
|
declare class QueryWriteRaiseQueryComponent implements OnChanges {
|
|
5170
5217
|
private queryManagementService;
|
|
5171
5218
|
private readonly route;
|
|
5219
|
+
private readonly logger;
|
|
5172
5220
|
formGroup: FormGroup;
|
|
5173
5221
|
submitted: boolean;
|
|
5174
5222
|
caseDetails: CaseView;
|
|
@@ -5213,6 +5261,7 @@ declare class QueryCheckYourAnswersComponent implements OnInit, OnDestroy {
|
|
|
5213
5261
|
private queryManagementService;
|
|
5214
5262
|
private readonly errorNotifierService;
|
|
5215
5263
|
private readonly alertService;
|
|
5264
|
+
private readonly logger;
|
|
5216
5265
|
private readonly RAISE_A_QUERY_EVENT_TRIGGER_ID;
|
|
5217
5266
|
private readonly RESPOND_TO_QUERY_EVENT_TRIGGER_ID;
|
|
5218
5267
|
private readonly CASE_QUERIES_COLLECTION_ID;
|
|
@@ -5348,6 +5397,7 @@ declare class QueryEventCompletionComponent {
|
|
|
5348
5397
|
declare class QueryConfirmationComponent implements OnInit {
|
|
5349
5398
|
private readonly route;
|
|
5350
5399
|
private readonly sessionStorageService;
|
|
5400
|
+
private readonly logger;
|
|
5351
5401
|
queryCreateContext: QueryCreateContext;
|
|
5352
5402
|
callbackConfirmationMessageText: {
|
|
5353
5403
|
[key: string]: string;
|
|
@@ -5974,6 +6024,7 @@ declare class SearchService {
|
|
|
5974
6024
|
}
|
|
5975
6025
|
|
|
5976
6026
|
declare class RetryUtil {
|
|
6027
|
+
private readonly logger;
|
|
5977
6028
|
pipeTimeoutMechanismOn<T>(in$: Observable<T>, preferredArtificialDelay: number, timeoutPeriods: number[]): Observable<T>;
|
|
5978
6029
|
private pipeTimeOutControlOn;
|
|
5979
6030
|
private pipeRetryMechanismOn;
|
|
@@ -6368,6 +6419,7 @@ declare class CaseEditPageComponent implements OnInit, AfterViewChecked, OnDestr
|
|
|
6368
6419
|
dialogRefAfterClosedSub: Subscription;
|
|
6369
6420
|
saveDraftSub: Subscription;
|
|
6370
6421
|
caseFormValidationErrorsSub: Subscription;
|
|
6422
|
+
private readonly logger;
|
|
6371
6423
|
private static scrollToTop;
|
|
6372
6424
|
private static setFocusToTop;
|
|
6373
6425
|
constructor(caseEdit: CaseEditComponent, route: ActivatedRoute, formValueService: FormValueService, formErrorService: FormErrorService, cdRef: ChangeDetectorRef, pageValidationService: PageValidationService, dialog: MatLegacyDialog, caseFieldService: CaseFieldService, caseEditDataService: CaseEditDataService, loadingService: LoadingService, validPageListCaseFieldsService: ValidPageListCaseFieldsService, multipageComponentStateService: MultipageComponentStateService, addressService: AddressesService, linkedCasesService: LinkedCasesService, caseFlagStateService: CaseFlagStateService);
|
|
@@ -6728,6 +6780,7 @@ declare class WorkbasketFiltersComponent implements OnInit {
|
|
|
6728
6780
|
static readonly PARAM_JURISDICTION = "jurisdiction";
|
|
6729
6781
|
static readonly PARAM_CASE_TYPE = "case-type";
|
|
6730
6782
|
static readonly PARAM_CASE_STATE = "case-state";
|
|
6783
|
+
private readonly logger;
|
|
6731
6784
|
caseFields: CaseField[];
|
|
6732
6785
|
jurisdictions: Jurisdiction[];
|
|
6733
6786
|
defaults: any;
|
|
@@ -6856,6 +6909,7 @@ declare class CaseHistoryComponent implements OnInit, OnDestroy {
|
|
|
6856
6909
|
private readonly orderService;
|
|
6857
6910
|
private readonly caseNotifier;
|
|
6858
6911
|
private readonly caseHistoryService;
|
|
6912
|
+
private readonly logger;
|
|
6859
6913
|
static readonly PARAM_EVENT_ID = "eid";
|
|
6860
6914
|
private static readonly ERROR_MESSAGE;
|
|
6861
6915
|
event: string;
|
|
@@ -7786,6 +7840,6 @@ declare class TestRouteSnapshotBuilder {
|
|
|
7786
7840
|
|
|
7787
7841
|
declare function safeJsonParse<T>(value: string | null, fallback?: T | null): T | null;
|
|
7788
7842
|
|
|
7789
|
-
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, 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, 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 };
|
|
7790
|
-
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, TaskSearchParameter, TaskSearchParameters, WAFeatureConfig };
|
|
7843
|
+
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, 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 };
|
|
7844
|
+
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 };
|
|
7791
7845
|
//# sourceMappingURL=index.d.ts.map
|