@hmcts/ccd-case-ui-toolkit 7.0.0-rc2 → 7.0.0-rc3
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/esm2020/lib/shared/components/activity/activity.module.mjs +1 -4
- package/esm2020/lib/shared/components/case-editor/case-edit/case-edit.component.mjs +2 -3
- package/esm2020/lib/shared/components/case-viewer/case-viewer.module.mjs +3 -6
- package/esm2020/lib/shared/components/palette/case-flag/read-case-flag-field.component.mjs +2 -2
- package/esm2020/lib/shared/components/palette/case-flag/write-case-flag-field.component.mjs +1 -1
- package/esm2020/lib/shared/components/palette/complex/read-complex-field.component.mjs +2 -2
- package/esm2020/lib/shared/components/palette/datetime-picker/datetime-picker.component.mjs +2 -2
- package/esm2020/lib/shared/components/palette/judicial-user/write-judicial-user-field.component.mjs +2 -2
- package/esm2020/lib/shared/components/palette/linked-cases/components/link-cases/link-cases.component.mjs +2 -2
- package/esm2020/lib/shared/components/palette/utils/date.pipe.mjs +2 -2
- package/esm2020/lib/shared/directives/conditional-show/services/condition-parser.service.mjs +1 -1
- package/esm2020/lib/shared/domain/index.mjs +1 -2
- package/esm2020/lib/shared/services/activity/activity.polling.service.mjs +7 -10
- package/esm2020/lib/shared/services/activity/index.mjs +1 -2
- package/esm2020/lib/shared/services/fields/fields.purger.mjs +2 -2
- package/fesm2015/hmcts-ccd-case-ui-toolkit.mjs +18 -82
- package/fesm2015/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/fesm2020/hmcts-ccd-case-ui-toolkit.mjs +17 -80
- package/fesm2020/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/lib/shared/components/activity/activity.module.d.ts.map +1 -1
- package/lib/shared/components/case-editor/case-edit/case-edit.component.d.ts.map +1 -1
- package/lib/shared/components/case-viewer/case-viewer.module.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/write-case-flag-field.component.d.ts.map +1 -1
- package/lib/shared/domain/index.d.ts +0 -1
- package/lib/shared/domain/index.d.ts.map +1 -1
- package/lib/shared/services/activity/activity.polling.service.d.ts +1 -3
- package/lib/shared/services/activity/activity.polling.service.d.ts.map +1 -1
- package/lib/shared/services/activity/index.d.ts +0 -1
- package/lib/shared/services/activity/index.d.ts.map +1 -1
- package/lib/shared/services/fields/fields.purger.d.ts +1 -1
- package/package.json +1 -1
- package/esm2020/lib/shared/domain/polling/index.mjs +0 -2
- package/esm2020/lib/shared/domain/polling/polling.model.mjs +0 -2
- package/esm2020/lib/shared/services/activity/polling.service.mjs +0 -61
- package/lib/shared/domain/polling/index.d.ts +0 -2
- package/lib/shared/domain/polling/index.d.ts.map +0 -1
- package/lib/shared/domain/polling/polling.model.d.ts +0 -10
- package/lib/shared/domain/polling/polling.model.d.ts.map +0 -1
- package/lib/shared/services/activity/polling.service.d.ts +0 -12
- package/lib/shared/services/activity/polling.service.d.ts.map +0 -1
|
@@ -8,12 +8,13 @@ import * as i1$2 from '@angular/router';
|
|
|
8
8
|
import { RouterModule, NavigationStart, NavigationEnd } from '@angular/router';
|
|
9
9
|
import * as i3 from '@angular/forms';
|
|
10
10
|
import { NG_VALUE_ACCESSOR, NG_VALIDATORS, FormArray, FormGroup, FormControl, Validators, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
11
|
-
import { throwError,
|
|
11
|
+
import { throwError, Subject, EMPTY, Observable, of, BehaviorSubject, timer, fromEvent, forkJoin } from 'rxjs';
|
|
12
12
|
import * as i1$3 from '@angular/common/http';
|
|
13
13
|
import { HttpErrorResponse, HttpHeaders, HttpParams } from '@angular/common/http';
|
|
14
|
-
import { catchError, map,
|
|
14
|
+
import { catchError, map, publish, refCount, debounceTime, delay, distinctUntilChanged, finalize, timeout, mergeMap, retryWhen, tap, delayWhen, publishReplay, take, first, switchMap, takeUntil, filter } from 'rxjs/operators';
|
|
15
|
+
import { polling } from 'rx-polling-hmcts';
|
|
15
16
|
import { Type, Expose, plainToClassFromExist, plainToClass } from 'class-transformer';
|
|
16
|
-
import
|
|
17
|
+
import moment from 'moment';
|
|
17
18
|
import { __decorate, __metadata } from 'tslib';
|
|
18
19
|
import * as _ from 'underscore';
|
|
19
20
|
import 'reflect-metadata';
|
|
@@ -1530,70 +1531,12 @@ ActivityService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: Activity
|
|
|
1530
1531
|
type: Injectable
|
|
1531
1532
|
}], function () { return [{ type: HttpService }, { type: AbstractAppConfig }, { type: SessionStorageService }]; }, null); })();
|
|
1532
1533
|
|
|
1533
|
-
// Code adapted from rx-polling - https://github.com/jiayihu/rx-polling to work with angular 15 and node upgrade - angular 15 and node 18.17.0
|
|
1534
|
-
class PollingService {
|
|
1535
|
-
constructor() {
|
|
1536
|
-
this.defaultOptions = {
|
|
1537
|
-
attempts: 9,
|
|
1538
|
-
backoffStrategy: 'exponential',
|
|
1539
|
-
exponentialUnit: 1000,
|
|
1540
|
-
randomRange: [1000, 10000],
|
|
1541
|
-
backgroundPolling: false
|
|
1542
|
-
};
|
|
1543
|
-
}
|
|
1544
|
-
polling(request$, userOptions) {
|
|
1545
|
-
const options = { ...this.defaultOptions, ...userOptions };
|
|
1546
|
-
let allErrorsCount = 0;
|
|
1547
|
-
let lastRecoverCount = 0;
|
|
1548
|
-
return fromEvent(document, 'visibilitychange').pipe(startWith(null), switchMap(() => {
|
|
1549
|
-
if (this.isPageActive() || options.backgroundPolling) {
|
|
1550
|
-
return empty().pipe(retryWhen(errors$ => errors$.pipe(scan(({ errorCount, error }, err) => ({ errorCount: errorCount + 1, error: err }), { errorCount: 0, error: null }), switchMap(({ errorCount, error }) => {
|
|
1551
|
-
allErrorsCount = errorCount;
|
|
1552
|
-
const consecutiveErrorsCount = allErrorsCount - lastRecoverCount;
|
|
1553
|
-
if (consecutiveErrorsCount > options.attempts) {
|
|
1554
|
-
throw error;
|
|
1555
|
-
}
|
|
1556
|
-
const delay = this.getStrategyDelay(consecutiveErrorsCount, options);
|
|
1557
|
-
return timer(delay);
|
|
1558
|
-
}))));
|
|
1559
|
-
}
|
|
1560
|
-
return empty();
|
|
1561
|
-
}), tap(() => {
|
|
1562
|
-
lastRecoverCount = allErrorsCount;
|
|
1563
|
-
}));
|
|
1564
|
-
}
|
|
1565
|
-
isPageActive() {
|
|
1566
|
-
return !Boolean(document.hidden);
|
|
1567
|
-
}
|
|
1568
|
-
getStrategyDelay(consecutiveErrorsCount, options) {
|
|
1569
|
-
switch (options.backoffStrategy) {
|
|
1570
|
-
case 'exponential':
|
|
1571
|
-
return Math.pow(2, consecutiveErrorsCount - 1) * options.exponentialUnit;
|
|
1572
|
-
case 'random':
|
|
1573
|
-
const [min, max] = options.randomRange;
|
|
1574
|
-
const range = max - min;
|
|
1575
|
-
return Math.floor(Math.random() * range) + min;
|
|
1576
|
-
case 'consecutive':
|
|
1577
|
-
return options.constantTime || options.interval;
|
|
1578
|
-
default:
|
|
1579
|
-
console.error(`${options.backoffStrategy} is not a backoff strategy supported by rx-polling`);
|
|
1580
|
-
return options.constantTime || options.interval;
|
|
1581
|
-
}
|
|
1582
|
-
}
|
|
1583
|
-
}
|
|
1584
|
-
PollingService.ɵfac = function PollingService_Factory(t) { return new (t || PollingService)(); };
|
|
1585
|
-
PollingService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: PollingService, factory: PollingService.ɵfac });
|
|
1586
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PollingService, [{
|
|
1587
|
-
type: Injectable
|
|
1588
|
-
}], null, null); })();
|
|
1589
|
-
|
|
1590
1534
|
// @dynamic
|
|
1591
1535
|
class ActivityPollingService {
|
|
1592
|
-
constructor(activityService, ngZone, config
|
|
1536
|
+
constructor(activityService, ngZone, config) {
|
|
1593
1537
|
this.activityService = activityService;
|
|
1594
1538
|
this.ngZone = ngZone;
|
|
1595
1539
|
this.config = config;
|
|
1596
|
-
this.pollingService = pollingService;
|
|
1597
1540
|
this.pendingRequests = new Map();
|
|
1598
1541
|
this.pollConfig = {
|
|
1599
1542
|
interval: config.getActivityNexPollRequestMs(),
|
|
@@ -1651,13 +1594,12 @@ class ActivityPollingService {
|
|
|
1651
1594
|
if (!this.isEnabled) {
|
|
1652
1595
|
return EMPTY;
|
|
1653
1596
|
}
|
|
1654
|
-
return
|
|
1597
|
+
return polling(this.activityService.getActivities(...caseIds), this.pollConfig);
|
|
1655
1598
|
}
|
|
1656
1599
|
postViewActivity(caseId) {
|
|
1657
1600
|
return this.postActivity(caseId, ActivityService.ACTIVITY_VIEW);
|
|
1658
1601
|
}
|
|
1659
1602
|
postEditActivity(caseId) {
|
|
1660
|
-
console.log('this.postActivity(caseId, ActivityService.ACTIVITY_EDIT);', this.postActivity(caseId, ActivityService.ACTIVITY_EDIT));
|
|
1661
1603
|
return this.postActivity(caseId, ActivityService.ACTIVITY_EDIT);
|
|
1662
1604
|
}
|
|
1663
1605
|
performBatchRequest(requests) {
|
|
@@ -1686,14 +1628,14 @@ class ActivityPollingService {
|
|
|
1686
1628
|
...this.pollConfig,
|
|
1687
1629
|
interval: 5000 // inline with CCD Backend
|
|
1688
1630
|
};
|
|
1689
|
-
return
|
|
1631
|
+
return polling(this.activityService.postActivity(caseId, activityType), pollingConfig);
|
|
1690
1632
|
}
|
|
1691
1633
|
}
|
|
1692
|
-
ActivityPollingService.ɵfac = function ActivityPollingService_Factory(t) { return new (t || ActivityPollingService)(i0.ɵɵinject(ActivityService), i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(AbstractAppConfig)
|
|
1634
|
+
ActivityPollingService.ɵfac = function ActivityPollingService_Factory(t) { return new (t || ActivityPollingService)(i0.ɵɵinject(ActivityService), i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(AbstractAppConfig)); };
|
|
1693
1635
|
ActivityPollingService.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: ActivityPollingService, factory: ActivityPollingService.ɵfac });
|
|
1694
1636
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ActivityPollingService, [{
|
|
1695
1637
|
type: Injectable
|
|
1696
|
-
}], function () { return [{ type: ActivityService }, { type: i0.NgZone }, { type: AbstractAppConfig }
|
|
1638
|
+
}], function () { return [{ type: ActivityService }, { type: i0.NgZone }, { type: AbstractAppConfig }]; }, null); })();
|
|
1697
1639
|
|
|
1698
1640
|
function ActivityComponent_div_0_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
1699
1641
|
i0.ɵɵelementStart(0, "div");
|
|
@@ -1845,7 +1787,6 @@ ActivityModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [
|
|
|
1845
1787
|
ActivityService,
|
|
1846
1788
|
ActivityPollingService,
|
|
1847
1789
|
SessionStorageService,
|
|
1848
|
-
PollingService
|
|
1849
1790
|
], imports: [CommonModule,
|
|
1850
1791
|
RouterModule,
|
|
1851
1792
|
RpxTranslationModule.forChild()] });
|
|
@@ -1871,7 +1812,6 @@ ActivityModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [
|
|
|
1871
1812
|
ActivityService,
|
|
1872
1813
|
ActivityPollingService,
|
|
1873
1814
|
SessionStorageService,
|
|
1874
|
-
PollingService
|
|
1875
1815
|
]
|
|
1876
1816
|
}]
|
|
1877
1817
|
}], null, null); })();
|
|
@@ -4887,7 +4827,7 @@ class FieldsPurger {
|
|
|
4887
4827
|
* types, this recursive method is called until simple or "base" field types are reached. For `Document` field
|
|
4888
4828
|
* types, its _sub-field_ `FormControl` values are set to null.
|
|
4889
4829
|
*
|
|
4890
|
-
* @param
|
|
4830
|
+
* @param formGroup The `FormGroup` instance containing the `FormControl` for the specified field
|
|
4891
4831
|
* @param field The `CaseField` whose value is to be deleted in the backend
|
|
4892
4832
|
* @param parentField Reference to the parent `CaseField`. Used for checking specifically where a Complex field and
|
|
4893
4833
|
* its sub-fields have `retain_hidden_value` set to `true`, but the field's parent has it set to `false` or undefined
|
|
@@ -8637,8 +8577,7 @@ class CaseEditComponent {
|
|
|
8637
8577
|
eventTrigger,
|
|
8638
8578
|
form
|
|
8639
8579
|
});
|
|
8640
|
-
this.caseSubmit({
|
|
8641
|
-
form,
|
|
8580
|
+
this.caseSubmit({ form,
|
|
8642
8581
|
caseEventData,
|
|
8643
8582
|
submit
|
|
8644
8583
|
});
|
|
@@ -10993,7 +10932,7 @@ class ReadCaseFlagFieldComponent extends AbstractFieldReadComponent {
|
|
|
10993
10932
|
this.caseLevelCaseFlagData = this.flagsData.find(instance => instance.pathToFlagsFormGroup === this.caseLevelCaseFlagsFieldId);
|
|
10994
10933
|
}
|
|
10995
10934
|
else if (this.context === PaletteContext.CHECK_YOUR_ANSWER) {
|
|
10996
|
-
// If the context is PaletteContext.CHECK_YOUR_ANSWER, the Flags data is already present within the
|
|
10935
|
+
// If the context is PaletteContext.CHECK_YOUR_ANSWER, the Flags data is already present within the FormGroup.
|
|
10997
10936
|
// The FlagLauncher component, WriteCaseFlagFieldComponent, holds a reference to:
|
|
10998
10937
|
// i) the parent FormGroup for the Flags instance where changes have been made;
|
|
10999
10938
|
// ii) the currently selected flag (selectedFlag) if one exists
|
|
@@ -12281,7 +12220,7 @@ class ReadComplexFieldComponent extends AbstractFieldReadComponent {
|
|
|
12281
12220
|
}
|
|
12282
12221
|
}
|
|
12283
12222
|
if (this.caseField.field_type) {
|
|
12284
|
-
this.caseField
|
|
12223
|
+
this.caseField?.field_type?.complex_fields?.forEach((field) => {
|
|
12285
12224
|
if (field.isDynamic()) {
|
|
12286
12225
|
field.list_items = this.caseField.value[field.id].list_items;
|
|
12287
12226
|
field.value = {
|
|
@@ -13914,7 +13853,7 @@ class WriteJudicialUserFieldComponent extends WriteComplexFieldComponent {
|
|
|
13914
13853
|
super.ngOnInit();
|
|
13915
13854
|
this.judicialUserControl = new FormControl(this.caseField.value);
|
|
13916
13855
|
// FormControl needs to be added to the main FormGroup so it can be picked up by the PageValidationService when
|
|
13917
|
-
// checking if the page is valid.
|
|
13856
|
+
// checking if the page is valid. FormGroup.setControl() is used here to ensure any existing JudicialUser
|
|
13918
13857
|
// FormControl is replaced when the component is re-initialised, for example, if the user navigates away then
|
|
13919
13858
|
// back to the page containing the JudicialUser field
|
|
13920
13859
|
this.formGroup.setControl(`${this.caseField.id}_judicialUserControl`, this.judicialUserControl);
|
|
@@ -29310,8 +29249,7 @@ CaseViewerModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [
|
|
|
29310
29249
|
DraftService,
|
|
29311
29250
|
HttpService,
|
|
29312
29251
|
CaseResolver,
|
|
29313
|
-
ErrorNotifierService
|
|
29314
|
-
PollingService
|
|
29252
|
+
ErrorNotifierService
|
|
29315
29253
|
], imports: [CommonModule,
|
|
29316
29254
|
RouterModule,
|
|
29317
29255
|
ErrorsModule,
|
|
@@ -29386,8 +29324,7 @@ CaseViewerModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [
|
|
|
29386
29324
|
DraftService,
|
|
29387
29325
|
HttpService,
|
|
29388
29326
|
CaseResolver,
|
|
29389
|
-
ErrorNotifierService
|
|
29390
|
-
PollingService
|
|
29327
|
+
ErrorNotifierService
|
|
29391
29328
|
]
|
|
29392
29329
|
}]
|
|
29393
29330
|
}], null, null); })();
|
|
@@ -31354,5 +31291,5 @@ class TestRouteSnapshotBuilder {
|
|
|
31354
31291
|
* Generated bundle index. Do not edit.
|
|
31355
31292
|
*/
|
|
31356
31293
|
|
|
31357
|
-
export { AbstractAppConfig, AbstractFieldReadComponent, AbstractFieldWriteComponent, 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, CallbackErrorsComponent, CallbackErrorsContext, CaseAccessUtils, CaseBasicAccessViewComponent, CaseChallengedAccessRequestComponent, CaseChallengedAccessSuccessComponent, CaseCreateComponent, CaseDetails, CaseEditComponent, CaseEditConfirmComponent, CaseEditDataModule, CaseEditDataService, CaseEditFormComponent, CaseEditPageComponent, CaseEditSubmitComponent, CaseEditWizardGuard, CaseEditorConfig, CaseEditorModule, CaseEvent, CaseEventData, CaseEventTrigger, CaseEventTriggerComponent, CaseField, CaseFieldService, CaseFileViewFieldComponent, CaseFileViewFolderComponent, CaseFileViewFolderDocumentActionsComponent, CaseFileViewFolderSelectorComponent, CaseFileViewFolderSortComponent, CaseFileViewOverlayMenuComponent, CaseFileViewService, CaseFlagFieldState, CaseFlagRefdataService, CaseFlagStatus, CaseFlagSummaryListComponent, CaseFlagSummaryListDisplayMode, CaseFlagTableComponent, CaseFlagText, 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, ConditionalShowFormDirective, ConditionalShowModule, ConditionalShowRegistrarService, 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, 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, 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, LinkCaseReason, LinkCasesComponent, LinkCasesFromReasonValuePipe, LinkCasesReasonValuePipe, LinkDetails, LinkFromReason, LinkReason, LinkedCasesErrorMessages, LinkedCasesEventTriggers, LinkedCasesFromTableComponent, LinkedCasesPages, LinkedCasesResponse, LinkedCasesToTableComponent, LoadingModule, LoadingService, LoadingSpinnerComponent, LoadingSpinnerModule, MEDIA_VIEWER_LOCALSTORAGE_KEY, MULTIPLE_TASKS_FOUND, ManageCaseFlagsComponent, MarkdownComponent, MoneyGbpInputComponent, 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,
|
|
31294
|
+
export { AbstractAppConfig, AbstractFieldReadComponent, AbstractFieldWriteComponent, 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, CallbackErrorsComponent, CallbackErrorsContext, CaseAccessUtils, CaseBasicAccessViewComponent, CaseChallengedAccessRequestComponent, CaseChallengedAccessSuccessComponent, CaseCreateComponent, CaseDetails, CaseEditComponent, CaseEditConfirmComponent, CaseEditDataModule, CaseEditDataService, CaseEditFormComponent, CaseEditPageComponent, CaseEditSubmitComponent, CaseEditWizardGuard, CaseEditorConfig, CaseEditorModule, CaseEvent, CaseEventData, CaseEventTrigger, CaseEventTriggerComponent, CaseField, CaseFieldService, CaseFileViewFieldComponent, CaseFileViewFolderComponent, CaseFileViewFolderDocumentActionsComponent, CaseFileViewFolderSelectorComponent, CaseFileViewFolderSortComponent, CaseFileViewOverlayMenuComponent, CaseFileViewService, CaseFlagFieldState, CaseFlagRefdataService, CaseFlagStatus, CaseFlagSummaryListComponent, CaseFlagSummaryListDisplayMode, CaseFlagTableComponent, CaseFlagText, 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, ConditionalShowFormDirective, ConditionalShowModule, ConditionalShowRegistrarService, 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, 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, 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, LinkCaseReason, LinkCasesComponent, LinkCasesFromReasonValuePipe, LinkCasesReasonValuePipe, LinkDetails, LinkFromReason, LinkReason, LinkedCasesErrorMessages, LinkedCasesEventTriggers, LinkedCasesFromTableComponent, LinkedCasesPages, LinkedCasesResponse, LinkedCasesToTableComponent, LoadingModule, LoadingService, LoadingSpinnerComponent, LoadingSpinnerModule, MEDIA_VIEWER_LOCALSTORAGE_KEY, MULTIPLE_TASKS_FOUND, ManageCaseFlagsComponent, MarkdownComponent, MoneyGbpInputComponent, 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, ReadCaseFlagFieldComponent, ReadCaseLinkFieldComponent, ReadCollectionFieldComponent, ReadComplexFieldCollectionTableComponent, ReadComplexFieldComponent, ReadComplexFieldRawComponent, ReadComplexFieldTableComponent, ReadDateFieldComponent, ReadDocumentFieldComponent, ReadDynamicListFieldComponent, ReadDynamicMultiSelectListFieldComponent, ReadDynamicRadioListFieldComponent, ReadEmailFieldComponent, ReadFieldsFilterPipe, ReadFixedListFieldComponent, ReadFixedRadioListFieldComponent, ReadJudicialUserFieldComponent, ReadLinkedCasesFieldComponent, ReadMoneyGbpFieldComponent, ReadMultiSelectListFieldComponent, ReadNumberFieldComponent, ReadOrderSummaryFieldComponent, ReadOrderSummaryRowComponent, ReadOrganisationFieldComponent, ReadOrganisationFieldRawComponent, ReadOrganisationFieldTableComponent, ReadPhoneUKFieldComponent, ReadTextAreaFieldComponent, ReadTextFieldComponent, ReadYesNoFieldComponent, RefdataCaseFlagType, RemoveDialogComponent, RequestOptionsBuilder, RetryUtil, RouterHelperService, SaveOrDiscardDialogComponent, SearchFiltersComponent, SearchFiltersModule, SearchFiltersWrapperComponent, SearchInput, SearchLanguageInterpreterComponent, SearchLanguageInterpreterErrorMessage, SearchLanguageInterpreterStep, SearchResultComponent, SearchResultModule, SearchResultView, SearchResultViewColumn, SearchResultViewItem, SearchResultViewItemComparatorFactory, SearchService, SelectFlagErrorMessage, SelectFlagLocationComponent, SelectFlagLocationErrorMessage, SelectFlagTypeComponent, SelectFlagTypeErrorMessage, SessionStorageService, ShowCondition, SortOrder$1 as SortOrder, SortParameters, SortSearchResultPipe, TabComponent, TableColumnConfig, TableConfig, TabsComponent, TabsModule, TaskAssignedComponent, TaskCancelledComponent, TaskConflictComponent, TaskUnassignedComponent, Terms, TestRouteSnapshotBuilder, UnLinkCasesComponent, UnsupportedFieldComponent, UpdateFlagComponent, UpdateFlagErrorMessage, UpdateFlagStep, 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, createACL, createCaseEventTrigger, createCaseField, createComplexFieldOverride, createFieldType, createFixedListFieldType, createHiddenComplexFieldOverride, createMultiSelectListFieldType, createWizardPage, createWizardPageField, editorRouting, initDialog, newCaseField, textFieldType, viewerRouting };
|
|
31358
31295
|
//# sourceMappingURL=hmcts-ccd-case-ui-toolkit.mjs.map
|