@hmcts/ccd-case-ui-toolkit 7.3.64 → 7.3.65-exui-3740
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 +281 -93
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/index.d.ts +58 -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;
|
|
@@ -2281,6 +2290,7 @@ declare class FieldsUtils {
|
|
|
2281
2290
|
private static getFixedListLabelByCodeOrEmpty;
|
|
2282
2291
|
private static textForInvalidField;
|
|
2283
2292
|
private static setDynamicListDefinition;
|
|
2293
|
+
private static setDynamicMultiSelectListDefinition;
|
|
2284
2294
|
private static getDynamicListValue;
|
|
2285
2295
|
private static getNestedFieldValues;
|
|
2286
2296
|
static isFlagsCaseField(caseField: CaseField): boolean;
|
|
@@ -2444,6 +2454,7 @@ declare class FieldTypeSanitiser {
|
|
|
2444
2454
|
sanitiseLists(caseFields: CaseField[], data: any): void;
|
|
2445
2455
|
ensureDynamicMultiSelectListPopulated(caseFields: CaseField[]): CaseField[];
|
|
2446
2456
|
private checkNestedDynamicList;
|
|
2457
|
+
private copyCaseFieldsWithCollectionData;
|
|
2447
2458
|
private isDynamicList;
|
|
2448
2459
|
private convertArrayToDynamicListOutput;
|
|
2449
2460
|
private convertStringToDynamicListOutput;
|
|
@@ -2596,6 +2607,39 @@ declare class BannersService {
|
|
|
2596
2607
|
static ɵprov: i0.ɵɵInjectableDeclaration<BannersService>;
|
|
2597
2608
|
}
|
|
2598
2609
|
|
|
2610
|
+
type StructuredLogLevel = 'error' | 'warn' | 'info' | 'debug';
|
|
2611
|
+
interface StructuredLogEntry {
|
|
2612
|
+
level: StructuredLogLevel;
|
|
2613
|
+
message: string;
|
|
2614
|
+
timestamp: string;
|
|
2615
|
+
context?: unknown;
|
|
2616
|
+
}
|
|
2617
|
+
declare class StructuredLoggerService {
|
|
2618
|
+
private static readonly CIRCULAR_VALUE;
|
|
2619
|
+
private static readonly MAX_DEPTH_VALUE;
|
|
2620
|
+
private static readonly MAX_REDACTION_DEPTH;
|
|
2621
|
+
private static readonly REDACTED_VALUE;
|
|
2622
|
+
private static readonly KEY_VALUE_PATTERN;
|
|
2623
|
+
private static readonly SENSITIVE_KEY_PATTERN;
|
|
2624
|
+
private static readonly BEARER_TOKEN_PATTERN;
|
|
2625
|
+
debug(message: string, context?: unknown): void;
|
|
2626
|
+
error(message: string, context?: unknown): void;
|
|
2627
|
+
info(message: string, context?: unknown): void;
|
|
2628
|
+
warn(message: string, context?: unknown): void;
|
|
2629
|
+
redact(value: unknown): unknown;
|
|
2630
|
+
private write;
|
|
2631
|
+
private redactValue;
|
|
2632
|
+
private redactError;
|
|
2633
|
+
private redactObject;
|
|
2634
|
+
private redactSensitiveString;
|
|
2635
|
+
private hasSensitiveNamedValue;
|
|
2636
|
+
private isNameKey;
|
|
2637
|
+
private isSensitiveKey;
|
|
2638
|
+
private isValueKey;
|
|
2639
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StructuredLoggerService, never>;
|
|
2640
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StructuredLoggerService>;
|
|
2641
|
+
}
|
|
2642
|
+
|
|
2599
2643
|
declare enum NavigationOrigin {
|
|
2600
2644
|
DRAFT_DELETED = 0,
|
|
2601
2645
|
ERROR_DELETING_DRAFT = 1,
|
|
@@ -2692,6 +2736,7 @@ declare class SearchFiltersComponent implements OnInit {
|
|
|
2692
2736
|
private readonly orderService;
|
|
2693
2737
|
private readonly jurisdictionService;
|
|
2694
2738
|
private readonly windowService;
|
|
2739
|
+
private readonly logger;
|
|
2695
2740
|
readonly PARAM_JURISDICTION = "jurisdiction";
|
|
2696
2741
|
readonly PARAM_CASE_TYPE = "case-type";
|
|
2697
2742
|
readonly PARAM_CASE_STATE = "case-state";
|
|
@@ -3549,6 +3594,7 @@ declare class AddressOption {
|
|
|
3549
3594
|
|
|
3550
3595
|
declare class WriteAddressFieldComponent extends AbstractFieldWriteComponent implements OnInit, OnChanges {
|
|
3551
3596
|
private readonly isCompoundPipe;
|
|
3597
|
+
private readonly logger;
|
|
3552
3598
|
writeComplexFieldComponent: WriteComplexFieldComponent;
|
|
3553
3599
|
focusElementDirectives: QueryList<FocusElementDirective>;
|
|
3554
3600
|
static readonly REQUIRED_ERROR_MESSAGE = "Enter a Postcode";
|
|
@@ -4039,6 +4085,7 @@ declare class WriteCollectionFieldComponent extends AbstractFieldWriteComponent
|
|
|
4039
4085
|
private readonly scrollToService;
|
|
4040
4086
|
private readonly profileNotifier;
|
|
4041
4087
|
private readonly cdRef;
|
|
4088
|
+
private readonly logger;
|
|
4042
4089
|
caseFields: CaseField[];
|
|
4043
4090
|
formArray: FormArray;
|
|
4044
4091
|
profile: Profile;
|
|
@@ -5111,6 +5158,7 @@ declare class QualifyingQuestionService {
|
|
|
5111
5158
|
declare class QueryManagementService {
|
|
5112
5159
|
private readonly router;
|
|
5113
5160
|
private readonly sessionStorageService;
|
|
5161
|
+
private readonly logger;
|
|
5114
5162
|
caseQueriesCollections: CaseQueriesCollection[];
|
|
5115
5163
|
fieldId: string;
|
|
5116
5164
|
constructor(router: Router, sessionStorageService: SessionStorageService);
|
|
@@ -5129,6 +5177,7 @@ declare class QueryWriteRespondToQueryComponent implements OnInit, OnChanges {
|
|
|
5129
5177
|
private readonly caseNotifier;
|
|
5130
5178
|
private readonly route;
|
|
5131
5179
|
private queryManagementService;
|
|
5180
|
+
private readonly logger;
|
|
5132
5181
|
queryItem: QueryListItem;
|
|
5133
5182
|
formGroup: FormGroup;
|
|
5134
5183
|
queryCreateContext: QueryCreateContext;
|
|
@@ -5169,6 +5218,7 @@ interface EventCompletionParams {
|
|
|
5169
5218
|
declare class QueryWriteRaiseQueryComponent implements OnChanges {
|
|
5170
5219
|
private queryManagementService;
|
|
5171
5220
|
private readonly route;
|
|
5221
|
+
private readonly logger;
|
|
5172
5222
|
formGroup: FormGroup;
|
|
5173
5223
|
submitted: boolean;
|
|
5174
5224
|
caseDetails: CaseView;
|
|
@@ -5213,6 +5263,7 @@ declare class QueryCheckYourAnswersComponent implements OnInit, OnDestroy {
|
|
|
5213
5263
|
private queryManagementService;
|
|
5214
5264
|
private readonly errorNotifierService;
|
|
5215
5265
|
private readonly alertService;
|
|
5266
|
+
private readonly logger;
|
|
5216
5267
|
private readonly RAISE_A_QUERY_EVENT_TRIGGER_ID;
|
|
5217
5268
|
private readonly RESPOND_TO_QUERY_EVENT_TRIGGER_ID;
|
|
5218
5269
|
private readonly CASE_QUERIES_COLLECTION_ID;
|
|
@@ -5348,6 +5399,7 @@ declare class QueryEventCompletionComponent {
|
|
|
5348
5399
|
declare class QueryConfirmationComponent implements OnInit {
|
|
5349
5400
|
private readonly route;
|
|
5350
5401
|
private readonly sessionStorageService;
|
|
5402
|
+
private readonly logger;
|
|
5351
5403
|
queryCreateContext: QueryCreateContext;
|
|
5352
5404
|
callbackConfirmationMessageText: {
|
|
5353
5405
|
[key: string]: string;
|
|
@@ -5974,6 +6026,7 @@ declare class SearchService {
|
|
|
5974
6026
|
}
|
|
5975
6027
|
|
|
5976
6028
|
declare class RetryUtil {
|
|
6029
|
+
private readonly logger;
|
|
5977
6030
|
pipeTimeoutMechanismOn<T>(in$: Observable<T>, preferredArtificialDelay: number, timeoutPeriods: number[]): Observable<T>;
|
|
5978
6031
|
private pipeTimeOutControlOn;
|
|
5979
6032
|
private pipeRetryMechanismOn;
|
|
@@ -6368,6 +6421,7 @@ declare class CaseEditPageComponent implements OnInit, AfterViewChecked, OnDestr
|
|
|
6368
6421
|
dialogRefAfterClosedSub: Subscription;
|
|
6369
6422
|
saveDraftSub: Subscription;
|
|
6370
6423
|
caseFormValidationErrorsSub: Subscription;
|
|
6424
|
+
private readonly logger;
|
|
6371
6425
|
private static scrollToTop;
|
|
6372
6426
|
private static setFocusToTop;
|
|
6373
6427
|
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 +6782,7 @@ declare class WorkbasketFiltersComponent implements OnInit {
|
|
|
6728
6782
|
static readonly PARAM_JURISDICTION = "jurisdiction";
|
|
6729
6783
|
static readonly PARAM_CASE_TYPE = "case-type";
|
|
6730
6784
|
static readonly PARAM_CASE_STATE = "case-state";
|
|
6785
|
+
private readonly logger;
|
|
6731
6786
|
caseFields: CaseField[];
|
|
6732
6787
|
jurisdictions: Jurisdiction[];
|
|
6733
6788
|
defaults: any;
|
|
@@ -6856,6 +6911,7 @@ declare class CaseHistoryComponent implements OnInit, OnDestroy {
|
|
|
6856
6911
|
private readonly orderService;
|
|
6857
6912
|
private readonly caseNotifier;
|
|
6858
6913
|
private readonly caseHistoryService;
|
|
6914
|
+
private readonly logger;
|
|
6859
6915
|
static readonly PARAM_EVENT_ID = "eid";
|
|
6860
6916
|
private static readonly ERROR_MESSAGE;
|
|
6861
6917
|
event: string;
|
|
@@ -7786,6 +7842,6 @@ declare class TestRouteSnapshotBuilder {
|
|
|
7786
7842
|
|
|
7787
7843
|
declare function safeJsonParse<T>(value: string | null, fallback?: T | null): T | null;
|
|
7788
7844
|
|
|
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 };
|
|
7845
|
+
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 };
|
|
7846
|
+
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
7847
|
//# sourceMappingURL=index.d.ts.map
|