@hmcts/ccd-case-ui-toolkit 7.3.75-minimist-update → 7.3.76-date-time
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 +389 -247
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/index.d.ts +49 -19
- package/index.d.ts.map +1 -1
- package/package.json +2 -3
package/index.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ import * as rxjs from 'rxjs';
|
|
|
12
12
|
import { Observable, Subject, ConnectableObservable, BehaviorSubject, Subscribable, Subscription } from 'rxjs';
|
|
13
13
|
import { HttpErrorResponse, HttpClient, HttpHeaders, HttpParams } from '@angular/common/http';
|
|
14
14
|
import { Observable as Observable$1 } from 'rxjs-compat';
|
|
15
|
-
import * as
|
|
15
|
+
import * as i144 from '@angular/material/legacy-dialog';
|
|
16
16
|
import { MatLegacyDialog, MatLegacyDialogRef, MatLegacyDialogConfig } from '@angular/material/legacy-dialog';
|
|
17
17
|
import { State, StateMachine } from '@edium/fsm';
|
|
18
18
|
import * as i16 from '@angular/cdk/portal';
|
|
@@ -20,8 +20,6 @@ import * as i135 from '@angular-material-components/datetime-picker';
|
|
|
20
20
|
import { NgxMatDatetimepicker, NgxMatDateFormats } from '@angular-material-components/datetime-picker';
|
|
21
21
|
import { LegacyThemePalette } from '@angular/material/legacy-core';
|
|
22
22
|
import { Moment } from 'moment/moment';
|
|
23
|
-
import * as i143 from '@nicky-lenaers/ngx-scroll-to';
|
|
24
|
-
import { ScrollToService } from '@nicky-lenaers/ngx-scroll-to';
|
|
25
23
|
import * as i140 from '@angular/cdk/tree';
|
|
26
24
|
import { NestedTreeControl } from '@angular/cdk/tree';
|
|
27
25
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
@@ -32,7 +30,7 @@ import * as i138 from '@angular/material/datepicker';
|
|
|
32
30
|
import * as i139 from '@angular/material/legacy-autocomplete';
|
|
33
31
|
import * as i141 from '@angular/cdk/overlay';
|
|
34
32
|
import * as i142 from '@hmcts/ccpay-web-component';
|
|
35
|
-
import * as
|
|
33
|
+
import * as i145 from '@hmcts/media-viewer';
|
|
36
34
|
import * as i3$2 from 'ngx-pagination';
|
|
37
35
|
import * as i25 from '@angular/material/legacy-tabs';
|
|
38
36
|
import { MatLegacyTabGroup } from '@angular/material/legacy-tabs';
|
|
@@ -749,6 +747,7 @@ declare class CaseField implements Orderable {
|
|
|
749
747
|
acls?: AccessControlList[];
|
|
750
748
|
metadata?: boolean;
|
|
751
749
|
formatted_value?: any;
|
|
750
|
+
hmctsServiceId?: string;
|
|
752
751
|
retain_hidden_value: boolean;
|
|
753
752
|
wizardProps?: WizardPageField;
|
|
754
753
|
_value: any;
|
|
@@ -1597,6 +1596,11 @@ declare enum PaletteContext {
|
|
|
1597
1596
|
TABLE_VIEW = "TABLE_VIEW"
|
|
1598
1597
|
}
|
|
1599
1598
|
|
|
1599
|
+
declare enum PaletteValueOrigin {
|
|
1600
|
+
BACKEND = "BACKEND",
|
|
1601
|
+
FORM = "FORM"
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1600
1604
|
declare abstract class AbstractFieldReadComponent extends AbstractFormFieldComponent implements OnInit {
|
|
1601
1605
|
caseReference: string;
|
|
1602
1606
|
topLevelFormGroup: FormGroup | AbstractControl;
|
|
@@ -1604,9 +1608,10 @@ declare abstract class AbstractFieldReadComponent extends AbstractFormFieldCompo
|
|
|
1604
1608
|
* Optional. Enable context-aware rendering of fields.
|
|
1605
1609
|
*/
|
|
1606
1610
|
context: PaletteContext;
|
|
1611
|
+
valueOrigin: PaletteValueOrigin;
|
|
1607
1612
|
ngOnInit(): void;
|
|
1608
1613
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractFieldReadComponent, never>;
|
|
1609
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractFieldReadComponent, never, never, { "caseReference": { "alias": "caseReference"; "required": false; }; "topLevelFormGroup": { "alias": "topLevelFormGroup"; "required": false; }; "context": { "alias": "context"; "required": false; }; }, {}, never, never, true, never>;
|
|
1614
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractFieldReadComponent, never, never, { "caseReference": { "alias": "caseReference"; "required": false; }; "topLevelFormGroup": { "alias": "topLevelFormGroup"; "required": false; }; "context": { "alias": "context"; "required": false; }; "valueOrigin": { "alias": "valueOrigin"; "required": false; }; }, {}, never, never, true, never>;
|
|
1610
1615
|
}
|
|
1611
1616
|
|
|
1612
1617
|
declare abstract class AbstractFieldWriteComponent extends AbstractFormFieldComponent implements OnChanges {
|
|
@@ -2101,17 +2106,20 @@ declare class CasesService {
|
|
|
2101
2106
|
|
|
2102
2107
|
declare class CaseNotifier {
|
|
2103
2108
|
private readonly casesService;
|
|
2109
|
+
private readonly caseFlagRefdataService?;
|
|
2104
2110
|
static readonly CASE_NAME = "caseNameHmctsInternal";
|
|
2105
2111
|
static readonly CASE_LOCATION = "caseManagementLocation";
|
|
2106
2112
|
private readonly caseViewSource;
|
|
2107
|
-
|
|
2113
|
+
private readonly hmctsServiceIdByCaseType;
|
|
2114
|
+
caseView: Observable<CaseView>;
|
|
2108
2115
|
cachedCaseView: CaseView;
|
|
2109
|
-
constructor(casesService: CasesService);
|
|
2116
|
+
constructor(casesService: CasesService, caseFlagRefdataService?: CaseFlagRefdataService);
|
|
2110
2117
|
removeCachedCase(): void;
|
|
2111
2118
|
announceCase(c: CaseView): void;
|
|
2112
|
-
fetchAndRefresh(cid: string):
|
|
2119
|
+
fetchAndRefresh(cid: string): Observable<CaseView>;
|
|
2113
2120
|
setBasicFields(tabs: CaseTab[]): void;
|
|
2114
|
-
|
|
2121
|
+
private resolveHmctsServiceId;
|
|
2122
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaseNotifier, [null, { optional: true; }]>;
|
|
2115
2123
|
static ɵprov: i0.ɵɵInjectableDeclaration<CaseNotifier>;
|
|
2116
2124
|
}
|
|
2117
2125
|
|
|
@@ -3122,9 +3130,20 @@ declare class ReadPhoneUKFieldComponent extends AbstractFieldReadComponent {
|
|
|
3122
3130
|
static ɵcmp: i0.ɵɵComponentDeclaration<ReadPhoneUKFieldComponent, "ccd-read-phone-uk-field", never, {}, {}, never, never, false, never>;
|
|
3123
3131
|
}
|
|
3124
3132
|
|
|
3125
|
-
declare class ReadDateFieldComponent extends AbstractFieldReadComponent {
|
|
3126
|
-
|
|
3127
|
-
static
|
|
3133
|
+
declare class ReadDateFieldComponent extends AbstractFieldReadComponent implements OnInit, OnDestroy {
|
|
3134
|
+
private readonly caseNotifier?;
|
|
3135
|
+
private static readonly SERVICES_RENDERED_IN_LOCAL_TIME;
|
|
3136
|
+
private caseSubscription;
|
|
3137
|
+
private caseHmctsServiceId;
|
|
3138
|
+
constructor(caseNotifier?: CaseNotifier);
|
|
3139
|
+
ngOnInit(): void;
|
|
3140
|
+
ngOnDestroy(): void;
|
|
3141
|
+
get timeZone(): string;
|
|
3142
|
+
private shouldRenderInLocalTime;
|
|
3143
|
+
private hasExplicitTimeZone;
|
|
3144
|
+
private isFormOriginField;
|
|
3145
|
+
private getHmctsServiceId;
|
|
3146
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReadDateFieldComponent, [{ optional: true; }]>;
|
|
3128
3147
|
static ɵcmp: i0.ɵɵComponentDeclaration<ReadDateFieldComponent, "ccd-read-date-field", never, {}, {}, never, never, false, never>;
|
|
3129
3148
|
}
|
|
3130
3149
|
|
|
@@ -3311,7 +3330,10 @@ declare class ReadComplexFieldComponent extends AbstractFieldReadComponent imple
|
|
|
3311
3330
|
* This is intended for rendering of Check Your Answer page.
|
|
3312
3331
|
*/
|
|
3313
3332
|
declare class ReadComplexFieldRawComponent extends AbstractFieldReadComponent {
|
|
3333
|
+
static readonly DUMMY_STRING_PRE = "parent_";
|
|
3334
|
+
static readonly DUMMY_STRING_POST = "value";
|
|
3314
3335
|
caseFields: CaseField[];
|
|
3336
|
+
get path(): string;
|
|
3315
3337
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReadComplexFieldRawComponent, never>;
|
|
3316
3338
|
static ɵcmp: i0.ɵɵComponentDeclaration<ReadComplexFieldRawComponent, "ccd-read-complex-field-raw", never, { "caseFields": { "alias": "caseFields"; "required": false; }; }, {}, never, never, false, never>;
|
|
3317
3339
|
}
|
|
@@ -4092,10 +4114,9 @@ type CollectionItem = {
|
|
|
4092
4114
|
};
|
|
4093
4115
|
declare class WriteCollectionFieldComponent extends AbstractFieldWriteComponent implements OnInit, OnDestroy {
|
|
4094
4116
|
private readonly dialog;
|
|
4095
|
-
private readonly scrollToService;
|
|
4096
4117
|
private readonly profileNotifier;
|
|
4097
4118
|
private readonly cdRef;
|
|
4098
|
-
private readonly
|
|
4119
|
+
private static readonly SCROLL_OFFSET_PX;
|
|
4099
4120
|
caseFields: CaseField[];
|
|
4100
4121
|
formArray: FormArray;
|
|
4101
4122
|
profile: Profile;
|
|
@@ -4103,13 +4124,14 @@ declare class WriteCollectionFieldComponent extends AbstractFieldWriteComponent
|
|
|
4103
4124
|
private readonly items;
|
|
4104
4125
|
readonly collItems: CollectionItem[];
|
|
4105
4126
|
private collectionItemUidCounter;
|
|
4106
|
-
constructor(dialog: MatLegacyDialog,
|
|
4127
|
+
constructor(dialog: MatLegacyDialog, profileNotifier: ProfileNotifier, cdRef: ChangeDetectorRef);
|
|
4107
4128
|
ngOnInit(): void;
|
|
4108
4129
|
ngOnDestroy(): void;
|
|
4109
4130
|
buildCaseField(item: any, index: number, isNew?: boolean): CaseField;
|
|
4110
4131
|
buildIdPrefix(index: number): string;
|
|
4111
4132
|
isSearchFilter(): boolean;
|
|
4112
4133
|
addItem(doScroll: boolean): void;
|
|
4134
|
+
private scrollToCollectionItem;
|
|
4113
4135
|
private isCollectionDynamic;
|
|
4114
4136
|
private newCaseField;
|
|
4115
4137
|
private getContainer;
|
|
@@ -5958,7 +5980,7 @@ declare class ErrorsModule {
|
|
|
5958
5980
|
|
|
5959
5981
|
declare class PaletteModule {
|
|
5960
5982
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaletteModule, never>;
|
|
5961
|
-
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 i143.ScrollToModule, typeof i7.RpxTranslationModule, typeof i140.CdkTreeModule, typeof i141.OverlayModule, typeof i145.MatLegacyDialogModule, typeof i146.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]>;
|
|
5983
|
+
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]>;
|
|
5962
5984
|
static ɵinj: i0.ɵɵInjectorDeclaration<PaletteModule>;
|
|
5963
5985
|
}
|
|
5964
5986
|
|
|
@@ -6153,6 +6175,7 @@ declare class CaseView {
|
|
|
6153
6175
|
baseLocation?: number;
|
|
6154
6176
|
};
|
|
6155
6177
|
};
|
|
6178
|
+
hmctsServiceId?: string;
|
|
6156
6179
|
case_flag?: Flags;
|
|
6157
6180
|
}
|
|
6158
6181
|
|
|
@@ -6551,6 +6574,7 @@ declare class CaseEditSubmitComponent implements OnInit, OnDestroy {
|
|
|
6551
6574
|
profile: Profile;
|
|
6552
6575
|
showSummaryFields: CaseField[];
|
|
6553
6576
|
paletteContext: PaletteContext;
|
|
6577
|
+
paletteValueOrigin: typeof PaletteValueOrigin;
|
|
6554
6578
|
profileSubscription: Subscription;
|
|
6555
6579
|
contextFields: CaseField[];
|
|
6556
6580
|
task: Task;
|
|
@@ -7719,6 +7743,7 @@ declare class SearchResultComponent implements OnChanges, OnInit {
|
|
|
7719
7743
|
private readonly placeholderService;
|
|
7720
7744
|
private readonly browserService;
|
|
7721
7745
|
private readonly sessionStorageService;
|
|
7746
|
+
private readonly caseFlagRefdataService?;
|
|
7722
7747
|
static readonly PARAM_JURISDICTION = "jurisdiction";
|
|
7723
7748
|
static readonly PARAM_CASE_TYPE = "case-type";
|
|
7724
7749
|
static readonly PARAM_CASE_STATE = "case-state";
|
|
@@ -7762,7 +7787,9 @@ declare class SearchResultComponent implements OnChanges, OnInit {
|
|
|
7762
7787
|
type: string;
|
|
7763
7788
|
};
|
|
7764
7789
|
selectedCases: SearchResultViewItem[];
|
|
7765
|
-
|
|
7790
|
+
private readonly hmctsServiceIdByCaseType;
|
|
7791
|
+
private readonly pendingHmctsServiceIdCaseTypes;
|
|
7792
|
+
constructor(searchResultViewItemComparatorFactory: SearchResultViewItemComparatorFactory, appConfig: AbstractAppConfig, activityService: ActivityService, caseReferencePipe: CaseReferencePipe, placeholderService: PlaceholderService, browserService: BrowserService, sessionStorageService: SessionStorageService, caseFlagRefdataService?: CaseFlagRefdataService);
|
|
7766
7793
|
ngOnInit(): void;
|
|
7767
7794
|
ngOnChanges(changes: SimpleChanges): void;
|
|
7768
7795
|
isTranslatable(col: SearchResultViewColumn): boolean;
|
|
@@ -7780,6 +7807,9 @@ declare class SearchResultComponent implements OnChanges, OnInit {
|
|
|
7780
7807
|
hydrateResultView(): void;
|
|
7781
7808
|
goToPage(page: any): void;
|
|
7782
7809
|
buildCaseField(col: SearchResultViewColumn, result: SearchResultViewItem): CaseField;
|
|
7810
|
+
private resolveHmctsServiceIdsForResults;
|
|
7811
|
+
private applyHmctsServiceIdToResultFields;
|
|
7812
|
+
private getCaseTypeId;
|
|
7783
7813
|
getColumnsWithPrefix(col: CaseField, result: SearchResultViewItem): CaseField;
|
|
7784
7814
|
hasResults(): any;
|
|
7785
7815
|
hasDrafts(): boolean;
|
|
@@ -7799,7 +7829,7 @@ declare class SearchResultComponent implements OnChanges, OnInit {
|
|
|
7799
7829
|
goToCase(caseId: string): void;
|
|
7800
7830
|
onKeyUp($event: KeyboardEvent, c: SearchResultViewItem): void;
|
|
7801
7831
|
noop(): void;
|
|
7802
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SearchResultComponent,
|
|
7832
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SearchResultComponent, [null, null, null, null, null, null, null, { optional: true; }]>;
|
|
7803
7833
|
static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultComponent, "ccd-search-result", never, { "caseLinkUrlTemplate": { "alias": "caseLinkUrlTemplate"; "required": false; }; "jurisdiction": { "alias": "jurisdiction"; "required": false; }; "caseType": { "alias": "caseType"; "required": false; }; "caseState": { "alias": "caseState"; "required": false; }; "caseFilterFG": { "alias": "caseFilterFG"; "required": false; }; "resultView": { "alias": "resultView"; "required": false; }; "page": { "alias": "page"; "required": false; }; "paginationMetadata": { "alias": "paginationMetadata"; "required": false; }; "metadataFields": { "alias": "metadataFields"; "required": false; }; "selectionEnabled": { "alias": "selectionEnabled"; "required": false; }; "showOnlySelected": { "alias": "showOnlySelected"; "required": false; }; "preSelectedCases": { "alias": "preSelectedCases"; "required": false; }; "consumerSortingEnabled": { "alias": "consumerSortingEnabled"; "required": false; }; }, { "selection": "selection"; "changePage": "changePage"; "clickCase": "clickCase"; "sortHandler": "sortHandler"; }, never, never, false, never>;
|
|
7804
7834
|
}
|
|
7805
7835
|
|
|
@@ -7855,6 +7885,6 @@ declare class TestRouteSnapshotBuilder {
|
|
|
7855
7885
|
|
|
7856
7886
|
declare function safeJsonParse<T>(value: string | null, fallback?: T | null): T | null;
|
|
7857
7887
|
|
|
7858
|
-
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 };
|
|
7888
|
+
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, PaletteValueOrigin, 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 };
|
|
7859
7889
|
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 };
|
|
7860
7890
|
//# sourceMappingURL=index.d.ts.map
|