@hmcts/ccd-case-ui-toolkit 6.13.10-show-condition-code-fix → 6.14.0-restricted-case-access
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/bundles/hmcts-ccd-case-ui-toolkit.umd.js +9346 -6553
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.js.map +1 -1
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js +1 -1
- package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js.map +1 -1
- package/esm2015/lib/shared/commons/case-edit-data/case-edit-data.service.js +19 -1
- package/esm2015/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.js +6 -1
- package/esm2015/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.js +7 -1
- package/esm2015/lib/shared/components/case-editor/services/cases.service.js +7 -1
- package/esm2015/lib/shared/components/case-viewer/services/case.resolver.js +10 -6
- package/esm2015/lib/shared/components/palette/case-file-view/case-file-view-field-read.component.js +2 -2
- package/esm2015/lib/shared/components/palette/index.js +3 -6
- package/esm2015/lib/shared/components/palette/linked-cases/components/before-you-start/before-you-start.component.js +126 -0
- package/esm2015/lib/shared/components/palette/linked-cases/components/check-your-answers/check-your-answers.component.js +220 -0
- package/esm2015/lib/shared/components/palette/linked-cases/components/index.js +8 -0
- package/esm2015/lib/shared/components/palette/linked-cases/components/link-cases/link-cases.component.js +572 -0
- package/esm2015/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-from-table.component.js +219 -0
- package/esm2015/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-to-table.component.js +285 -0
- package/esm2015/lib/shared/components/palette/linked-cases/components/no-linked-cases/no-linked-cases.component.js +79 -0
- package/esm2015/lib/shared/components/palette/linked-cases/components/unlink-cases/unlink-cases.component.js +214 -0
- package/esm2015/lib/shared/components/palette/linked-cases/domain/index.js +3 -0
- package/esm2015/lib/shared/components/palette/linked-cases/domain/linked-cases-state.model.js +2 -0
- package/esm2015/lib/shared/components/palette/linked-cases/domain/linked-cases.model.js +21 -0
- package/esm2015/lib/shared/components/palette/linked-cases/enums/index.js +2 -0
- package/esm2015/lib/shared/components/palette/linked-cases/enums/write-linked-cases-field.enum.js +35 -0
- package/esm2015/lib/shared/components/palette/linked-cases/index.js +6 -0
- package/esm2015/lib/shared/components/palette/linked-cases/read-linked-cases-field.component.js +183 -0
- package/esm2015/lib/shared/components/palette/linked-cases/services/index.js +2 -0
- package/esm2015/lib/shared/components/palette/linked-cases/services/linked-cases.service.js +134 -0
- package/esm2015/lib/shared/components/palette/linked-cases/utils/validators.utils.js +27 -0
- package/esm2015/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.js +272 -0
- package/esm2015/lib/shared/components/palette/palette.module.js +51 -7
- package/esm2015/lib/shared/components/palette/palette.service.js +19 -7
- package/esm2015/lib/shared/domain/definition/display-context-enum.model.js +12 -0
- package/esm2015/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.js +2 -2
- package/esm2015/lib/shared/pipes/index.js +3 -1
- package/esm2015/lib/shared/pipes/link-cases-from-reason-code/ccd-link-cases-from-reason-code.pipe.js +28 -0
- package/esm2015/lib/shared/pipes/link-cases-from-reason-code/index.js +2 -0
- package/esm2015/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.js +28 -0
- package/esm2015/lib/shared/pipes/link-cases-reason-code/index.js +2 -0
- package/esm2015/lib/shared/pipes/pipes.module.js +12 -4
- package/esm2015/lib/shared/services/common-data-service/common-data-service.js +1 -1
- package/esm2015/lib/shared/services/fields/fields.utils.js +7 -1
- package/esm2015/lib/shared/services/form/form-value.service.js +33 -2
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js +4995 -2513
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -1
- package/lib/shared/commons/case-edit-data/case-edit-data.service.d.ts +13 -0
- package/lib/shared/commons/case-edit-data/case-edit-data.service.d.ts.map +1 -1
- package/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts.map +1 -1
- package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts +1 -0
- package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts.map +1 -1
- package/lib/shared/components/case-editor/services/cases.service.d.ts +2 -0
- package/lib/shared/components/case-editor/services/cases.service.d.ts.map +1 -1
- package/lib/shared/components/case-viewer/services/case.resolver.d.ts.map +1 -1
- package/lib/shared/components/palette/case-file-view/case-file-view-field-read.component.d.ts.map +1 -1
- package/lib/shared/components/palette/index.d.ts +2 -5
- package/lib/shared/components/palette/index.d.ts.map +1 -1
- package/lib/shared/components/palette/linked-cases/components/before-you-start/before-you-start.component.d.ts +23 -0
- package/lib/shared/components/palette/linked-cases/components/before-you-start/before-you-start.component.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/components/check-your-answers/check-your-answers.component.d.ts +18 -0
- package/lib/shared/components/palette/linked-cases/components/check-your-answers/check-your-answers.component.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/components/index.d.ts +8 -0
- package/lib/shared/components/palette/linked-cases/components/index.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/components/link-cases/link-cases.component.d.ts +49 -0
- package/lib/shared/components/palette/linked-cases/components/link-cases/link-cases.component.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-from-table.component.d.ts +38 -0
- package/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-from-table.component.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-to-table.component.d.ts +47 -0
- package/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-to-table.component.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/components/no-linked-cases/no-linked-cases.component.d.ts +18 -0
- package/lib/shared/components/palette/linked-cases/components/no-linked-cases/no-linked-cases.component.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/components/unlink-cases/unlink-cases.component.d.ts +38 -0
- package/lib/shared/components/palette/linked-cases/components/unlink-cases/unlink-cases.component.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/domain/index.d.ts +3 -0
- package/lib/shared/components/palette/linked-cases/domain/index.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/domain/linked-cases-state.model.d.ts +12 -0
- package/lib/shared/components/palette/linked-cases/domain/linked-cases-state.model.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/domain/linked-cases.model.d.ts +68 -0
- package/lib/shared/components/palette/linked-cases/domain/linked-cases.model.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/enums/index.d.ts +2 -0
- package/lib/shared/components/palette/linked-cases/enums/index.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/enums/write-linked-cases-field.enum.d.ts +31 -0
- package/lib/shared/components/palette/linked-cases/enums/write-linked-cases-field.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/index.d.ts +6 -0
- package/lib/shared/components/palette/linked-cases/index.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/read-linked-cases-field.component.d.ts +38 -0
- package/lib/shared/components/palette/linked-cases/read-linked-cases-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/services/index.d.ts +2 -0
- package/lib/shared/components/palette/linked-cases/services/index.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/services/linked-cases.service.d.ts +44 -0
- package/lib/shared/components/palette/linked-cases/services/linked-cases.service.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/utils/validators.utils.d.ts +10 -0
- package/lib/shared/components/palette/linked-cases/utils/validators.utils.d.ts.map +1 -0
- package/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.d.ts +43 -0
- package/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/palette.module.d.ts +67 -58
- package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
- package/lib/shared/components/palette/palette.service.d.ts.map +1 -1
- package/lib/shared/domain/definition/display-context-enum.model.d.ts +10 -0
- package/lib/shared/domain/definition/display-context-enum.model.d.ts.map +1 -0
- package/lib/shared/pipes/index.d.ts +2 -0
- package/lib/shared/pipes/index.d.ts.map +1 -1
- package/lib/shared/pipes/link-cases-from-reason-code/ccd-link-cases-from-reason-code.pipe.d.ts +12 -0
- package/lib/shared/pipes/link-cases-from-reason-code/ccd-link-cases-from-reason-code.pipe.d.ts.map +1 -0
- package/lib/shared/pipes/link-cases-from-reason-code/index.d.ts +2 -0
- package/lib/shared/pipes/link-cases-from-reason-code/index.d.ts.map +1 -0
- package/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.d.ts +12 -0
- package/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.d.ts.map +1 -0
- package/lib/shared/pipes/link-cases-reason-code/index.d.ts +2 -0
- package/lib/shared/pipes/link-cases-reason-code/index.d.ts.map +1 -0
- package/lib/shared/pipes/pipes.module.d.ts +4 -2
- package/lib/shared/pipes/pipes.module.d.ts.map +1 -1
- package/lib/shared/services/common-data-service/common-data-service.d.ts.map +1 -1
- package/lib/shared/services/fields/fields.utils.d.ts +1 -0
- package/lib/shared/services/fields/fields.utils.d.ts.map +1 -1
- package/lib/shared/services/form/form-value.service.d.ts +14 -0
- package/lib/shared/services/form/form-value.service.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/linked-cases/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { AfterViewInit, OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { AbstractAppConfig } from '../../../../app.config';
|
|
4
|
+
import { CaseField } from '../../../domain';
|
|
5
|
+
import { CommonDataService } from '../../../services/common-data-service/common-data-service';
|
|
6
|
+
import { LinkedCasesService } from './services';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class ReadLinkedCasesFieldComponent implements OnInit, AfterViewInit {
|
|
9
|
+
private readonly route;
|
|
10
|
+
private readonly router;
|
|
11
|
+
private readonly linkedCasesService;
|
|
12
|
+
private readonly appConfig;
|
|
13
|
+
private readonly commonDataService;
|
|
14
|
+
caseField: CaseField;
|
|
15
|
+
reasonListLoaded: boolean;
|
|
16
|
+
reload: boolean;
|
|
17
|
+
serverError: {
|
|
18
|
+
id: string;
|
|
19
|
+
message: string;
|
|
20
|
+
};
|
|
21
|
+
serverLinkedApiError: {
|
|
22
|
+
id: string;
|
|
23
|
+
message: string;
|
|
24
|
+
};
|
|
25
|
+
isServerReasonCodeError: boolean;
|
|
26
|
+
isServerJurisdictionError: boolean;
|
|
27
|
+
isServerLinkedFromError: boolean;
|
|
28
|
+
isServerLinkedToError: boolean;
|
|
29
|
+
constructor(route: ActivatedRoute, router: Router, linkedCasesService: LinkedCasesService, appConfig: AbstractAppConfig, commonDataService: CommonDataService);
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
ngAfterViewInit(): void;
|
|
32
|
+
reloadCurrentRoute(): void;
|
|
33
|
+
getFailureLinkedToNotification(evt: any): void;
|
|
34
|
+
getFailureLinkedFromNotification(evt: any): void;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDef<ReadLinkedCasesFieldComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<ReadLinkedCasesFieldComponent, "ccd-read-linked-cases-field", never, {}, {}, never, never>;
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=read-linked-cases-field.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"read-linked-cases-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/linked-cases/read-linked-cases-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AACjE,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,SAAS,EAAW,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2DAA2D,CAAC;AAC9F,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;;AAEhD,qBAKa,6BAA8B,YAAW,MAAM,EAAE,aAAa;IAavE,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,SAAS;IAC1B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAf7B,SAAS,EAAE,SAAS,CAAC;IACrB,gBAAgB,UAAS;IACzB,MAAM,UAAS;IACf,WAAW,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAQ;IACpD,oBAAoB,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAQ;IAC7D,uBAAuB,UAAS;IAChC,yBAAyB,UAAS;IAClC,uBAAuB,UAAS;IAChC,qBAAqB,UAAS;gBAGlB,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM,EACd,kBAAkB,EAAE,kBAAkB,EACtC,SAAS,EAAE,iBAAiB,EAC5B,iBAAiB,EAAE,iBAAiB;IAGhD,QAAQ,IAAI,IAAI;IA0BhB,eAAe,IAAI,IAAI;IAgBvB,kBAAkB,IAAI,IAAI;IAM1B,8BAA8B,CAAC,GAAG,KAAA,GAAG,IAAI;IAIzC,gCAAgC,CAAC,GAAG,KAAA,GAAG,IAAI;iCAxEvC,6BAA6B;2CAA7B,6BAA6B;CA2EzC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/linked-cases/services/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { CaseView } from '../../../../domain/case-view';
|
|
3
|
+
import { Jurisdiction } from '../../../../domain/definition/jurisdiction.model';
|
|
4
|
+
import { JurisdictionService, SearchService } from '../../../../services';
|
|
5
|
+
import { LovRefDataModel } from '../../../../services/common-data-service/common-data-service';
|
|
6
|
+
import { CaseLink, ESQueryType } from '../domain';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class LinkedCasesService {
|
|
9
|
+
private readonly jurisdictionService;
|
|
10
|
+
private readonly searchService;
|
|
11
|
+
private static readonly CASE_NAME_MISSING_TEXT;
|
|
12
|
+
caseFieldValue: any[];
|
|
13
|
+
isLinkedCasesEventTrigger: boolean;
|
|
14
|
+
caseDetails: CaseView;
|
|
15
|
+
caseId: string;
|
|
16
|
+
caseName: string;
|
|
17
|
+
linkCaseReasons: LovRefDataModel[];
|
|
18
|
+
linkedCases: CaseLink[];
|
|
19
|
+
initialCaseLinks: CaseLink[];
|
|
20
|
+
editMode: boolean;
|
|
21
|
+
jurisdictionsResponse: Jurisdiction[];
|
|
22
|
+
serverJurisdictionError: boolean;
|
|
23
|
+
serverError: {
|
|
24
|
+
id: string;
|
|
25
|
+
message: string;
|
|
26
|
+
};
|
|
27
|
+
serverLinkedApiError: {
|
|
28
|
+
id: string;
|
|
29
|
+
message: string;
|
|
30
|
+
};
|
|
31
|
+
isServerReasonCodeError: boolean;
|
|
32
|
+
caseJurisdictionID: any;
|
|
33
|
+
constructor(jurisdictionService: JurisdictionService, searchService: SearchService);
|
|
34
|
+
groupLinkedCasesByCaseType: (arrObj: any, key: any) => any;
|
|
35
|
+
constructElasticSearchQuery(caseIds: any[], size: number): ESQueryType;
|
|
36
|
+
mapResponse(esSearchCasesResponse: any): any;
|
|
37
|
+
searchCasesByCaseIds(searchCasesResponse: any[]): Observable<unknown[]>;
|
|
38
|
+
getAllLinkedCaseInformation(): void;
|
|
39
|
+
mapLookupIDToValueFromJurisdictions(fieldName: any, fieldValue: any): string;
|
|
40
|
+
getCaseName(searchCasesResponse: CaseView): string;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDef<LinkedCasesService, never>;
|
|
42
|
+
static ɵprov: i0.ɵɵInjectableDef<LinkedCasesService>;
|
|
43
|
+
}
|
|
44
|
+
//# sourceMappingURL=linked-cases.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"linked-cases.service.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/linked-cases/services/linked-cases.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAY,UAAU,EAAE,MAAM,MAAM,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,kDAAkD,CAAC;AAChF,OAAO,EAAE,mBAAmB,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAC1E,OAAO,EAAE,eAAe,EAAE,MAAM,8DAA8D,CAAC;AAC/F,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAc,MAAM,WAAW,CAAC;;AAE9D,qBACa,kBAAkB;IAoBjB,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IACpC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAnB1C,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,sBAAsB,CAAuB;IAE9D,cAAc,QAAM;IACpB,yBAAyB,UAAS;IAClC,WAAW,EAAE,QAAQ,CAAC;IACtB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,eAAe,EAAE,eAAe,EAAE,CAAM;IACxC,WAAW,EAAE,QAAQ,EAAE,CAAM;IAC7B,gBAAgB,EAAE,QAAQ,EAAE,CAAM;IAClC,QAAQ,UAAS;IACjB,qBAAqB,EAAE,YAAY,EAAE,CAAM;IAC3C,uBAAuB,EAAE,OAAO,CAAC;IACjC,WAAW,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAQ;IACpD,oBAAoB,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAQ;IAC7D,uBAAuB,UAAS;IAChC,kBAAkB,MAAQ;gBAEJ,mBAAmB,EAAE,mBAAmB,EACxC,aAAa,EAAE,aAAa;IAQlD,0BAA0B,iCAK/B;IAEK,2BAA2B,CAAC,OAAO,EAAE,GAAG,EAAE,EAAE,IAAI,EAAE,MAAM,GAAG,WAAW;IAWtE,WAAW,CAAC,qBAAqB,KAAA,GAAG,GAAG;IAYvC,oBAAoB,CAAC,mBAAmB,EAAE,GAAG,EAAE,GAAG,UAAU,CAAC,OAAO,EAAE,CAAC;IAIvE,2BAA2B,IAAI,IAAI;IA0CnC,mCAAmC,CAAC,SAAS,KAAA,EAAE,UAAU,KAAA,GAAG,MAAM;IAqBlE,WAAW,CAAC,mBAAmB,EAAE,QAAQ,GAAG,MAAM;iCA9H9C,kBAAkB;qCAAlB,kBAAkB;CAwI9B"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ValidatorFn } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ValidatorsUtils {
|
|
4
|
+
numberLengthValidator(inputLength: number): ValidatorFn;
|
|
5
|
+
formArraySelectedValidator(): ValidatorFn;
|
|
6
|
+
regexPattern(regexPattern: string): ValidatorFn;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDef<ValidatorsUtils, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDef<ValidatorsUtils>;
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=validators.utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"validators.utils.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/linked-cases/utils/validators.utils.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,WAAW,EAAE,MAAM,gBAAgB,CAAC;;AAE9D,qBACa,eAAe;IACnB,qBAAqB,CAAC,WAAW,EAAE,MAAM,GAAG,WAAW;IAKvD,0BAA0B,IAAI,WAAW;IAKzC,YAAY,CAAC,YAAY,EAAE,MAAM,GAAG,WAAW;iCAX3C,eAAe;qCAAf,eAAe;CAiB3B"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { AfterViewInit, OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { AbstractAppConfig } from '../../../../app.config';
|
|
4
|
+
import { CaseEditDataService } from '../../../commons/case-edit-data';
|
|
5
|
+
import { ErrorMessage } from '../../../domain';
|
|
6
|
+
import { CaseView } from '../../../domain/case-view';
|
|
7
|
+
import { CommonDataService } from '../../../services/common-data-service/common-data-service';
|
|
8
|
+
import { CasesService } from '../../case-editor/services/cases.service';
|
|
9
|
+
import { AbstractFieldWriteComponent } from '../base-field';
|
|
10
|
+
import { CaseLink, LinkedCasesState } from './domain';
|
|
11
|
+
import { LinkedCasesEventTriggers, LinkedCasesPages } from './enums';
|
|
12
|
+
import { LinkedCasesService } from './services';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
14
|
+
export declare class WriteLinkedCasesFieldComponent extends AbstractFieldWriteComponent implements OnInit, AfterViewInit {
|
|
15
|
+
private readonly appConfig;
|
|
16
|
+
private readonly commonDataService;
|
|
17
|
+
private readonly casesService;
|
|
18
|
+
private readonly linkedCasesService;
|
|
19
|
+
private readonly caseEditDataService;
|
|
20
|
+
caseEditForm: FormGroup;
|
|
21
|
+
caseDetails: CaseView;
|
|
22
|
+
linkedCasesPage: number;
|
|
23
|
+
linkedCasesPages: typeof LinkedCasesPages;
|
|
24
|
+
linkedCasesEventTriggers: typeof LinkedCasesEventTriggers;
|
|
25
|
+
linkedCases: CaseLink[];
|
|
26
|
+
errorMessages: ErrorMessage[];
|
|
27
|
+
constructor(appConfig: AbstractAppConfig, commonDataService: CommonDataService, casesService: CasesService, linkedCasesService: LinkedCasesService, caseEditDataService: CaseEditDataService);
|
|
28
|
+
ngOnInit(): void;
|
|
29
|
+
initialiseCaseDetails(caseDetails: CaseView): void;
|
|
30
|
+
ngAfterViewInit(): void;
|
|
31
|
+
onLinkedCasesStateEmitted(linkedCasesState: LinkedCasesState): void;
|
|
32
|
+
getLinkedCaseReasons(): void;
|
|
33
|
+
setContinueButtonValidationErrorMessage(): void;
|
|
34
|
+
proceedToNextPage(): void;
|
|
35
|
+
submitLinkedCases(): void;
|
|
36
|
+
isAtFinalPage(): boolean;
|
|
37
|
+
getNextPage(linkedCasesState: LinkedCasesState): number;
|
|
38
|
+
getLinkedCases(): void;
|
|
39
|
+
navigateToErrorElement(elementId: string): void;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDef<WriteLinkedCasesFieldComponent, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<WriteLinkedCasesFieldComponent, "ccd-write-linked-cases-field", never, {}, {}, never, never>;
|
|
42
|
+
}
|
|
43
|
+
//# sourceMappingURL=write-linked-cases-field.component.d.ts.map
|
package/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"write-linked-cases-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AACjE,OAAO,EAAe,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2DAA2D,CAAC;AAC9F,OAAO,EAAE,YAAY,EAAE,MAAM,0CAA0C,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,eAAe,CAAC;AAC5D,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AACtD,OAAO,EAA4B,wBAAwB,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAC/F,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;;AAEhD,qBAIa,8BAA+B,SAAQ,2BAA4B,YAAW,MAAM,EAAE,aAAa;IAW5G,OAAO,CAAC,QAAQ,CAAC,SAAS;IAC1B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAClC,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAb/B,YAAY,EAAE,SAAS,CAAC;IACxB,WAAW,EAAE,QAAQ,CAAC;IACtB,eAAe,EAAE,MAAM,CAAC;IACxB,gBAAgB,0BAAoB;IACpC,wBAAwB,kCAA4B;IACpD,WAAW,EAAE,QAAQ,EAAE,CAAM;IAC7B,aAAa,EAAE,YAAY,EAAE,CAAM;gBAGvB,SAAS,EAAE,iBAAiB,EAC5B,iBAAiB,EAAE,iBAAiB,EACpC,YAAY,EAAE,YAAY,EAC1B,kBAAkB,EAAE,kBAAkB,EACtC,mBAAmB,EAAE,mBAAmB;IAIpD,QAAQ,IAAI,IAAI;IAiBhB,qBAAqB,CAAC,WAAW,EAAE,QAAQ,GAAG,IAAI;IAUlD,eAAe,IAAI,IAAI;IAWvB,yBAAyB,CAAC,gBAAgB,EAAE,gBAAgB,GAAG,IAAI;IAiBnE,oBAAoB,IAAI,IAAI;IAa5B,uCAAuC,IAAI,IAAI;IAe/C,iBAAiB,IAAI,IAAI;IAWzB,iBAAiB,IAAI,IAAI;IAWzB,aAAa,IAAI,OAAO;IAIxB,WAAW,CAAC,gBAAgB,EAAE,gBAAgB,GAAG,MAAM;IAUvD,cAAc,IAAI,IAAI;IA0BtB,sBAAsB,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI;iCApK3C,8BAA8B;2CAA9B,8BAA8B;CA6K1C"}
|
|
@@ -53,66 +53,75 @@ import * as i51 from "./complex/read-complex-field-raw.component";
|
|
|
53
53
|
import * as i52 from "./complex/read-complex-field-table.component";
|
|
54
54
|
import * as i53 from "./complex/read-complex-field-collection-table.component";
|
|
55
55
|
import * as i54 from "./case-flag/read-case-flag-field.component";
|
|
56
|
-
import * as i55 from "./
|
|
57
|
-
import * as i56 from "./
|
|
58
|
-
import * as i57 from "./
|
|
59
|
-
import * as i58 from "./
|
|
60
|
-
import * as i59 from "./
|
|
61
|
-
import * as i60 from "./
|
|
62
|
-
import * as i61 from "./dynamic-
|
|
63
|
-
import * as i62 from "./
|
|
64
|
-
import * as i63 from "./
|
|
65
|
-
import * as i64 from "./
|
|
66
|
-
import * as i65 from "./
|
|
67
|
-
import * as i66 from "./
|
|
68
|
-
import * as i67 from "./
|
|
69
|
-
import * as i68 from "./
|
|
70
|
-
import * as i69 from "./
|
|
71
|
-
import * as i70 from "./
|
|
72
|
-
import * as i71 from "./
|
|
73
|
-
import * as i72 from "./
|
|
74
|
-
import * as i73 from "./
|
|
75
|
-
import * as i74 from "./
|
|
76
|
-
import * as i75 from "./
|
|
77
|
-
import * as i76 from "./
|
|
78
|
-
import * as i77 from "./
|
|
79
|
-
import * as i78 from "./
|
|
80
|
-
import * as i79 from "./case-
|
|
81
|
-
import * as i80 from "./
|
|
82
|
-
import * as i81 from "./case-file-view/
|
|
83
|
-
import * as i82 from "./case-file-view/
|
|
84
|
-
import * as i83 from "./case-file-view/components/
|
|
85
|
-
import * as i84 from "./case-file-view/components/case-file-view-folder/case-file-view-folder-
|
|
86
|
-
import * as i85 from "./case-file-view/components/case-file-view-
|
|
87
|
-
import * as i86 from "
|
|
88
|
-
import * as i87 from "
|
|
89
|
-
import * as i88 from "
|
|
90
|
-
import * as i89 from "
|
|
91
|
-
import * as i90 from "./
|
|
92
|
-
import * as i91 from "
|
|
93
|
-
import * as i92 from "
|
|
94
|
-
import * as i93 from "
|
|
95
|
-
import * as i94 from "
|
|
96
|
-
import * as i95 from "
|
|
97
|
-
import * as i96 from "
|
|
98
|
-
import * as i97 from "
|
|
99
|
-
import * as i98 from "../../
|
|
100
|
-
import * as i99 from "
|
|
101
|
-
import * as i100 from "
|
|
102
|
-
import * as i101 from "
|
|
103
|
-
import * as i102 from "
|
|
104
|
-
import * as i103 from "
|
|
105
|
-
import * as i104 from "
|
|
106
|
-
import * as i105 from "
|
|
107
|
-
import * as i106 from "
|
|
108
|
-
import * as i107 from "
|
|
109
|
-
import * as i108 from "
|
|
110
|
-
import * as i109 from "@angular
|
|
111
|
-
import * as i110 from "@
|
|
112
|
-
import * as i111 from "
|
|
56
|
+
import * as i55 from "./linked-cases/read-linked-cases-field.component";
|
|
57
|
+
import * as i56 from "./judicial-user/write-judicial-user-field.component";
|
|
58
|
+
import * as i57 from "./address/write-address-field.component";
|
|
59
|
+
import * as i58 from "./complex/write-complex-field.component";
|
|
60
|
+
import * as i59 from "./organisation/write-organisation-complex-field.component";
|
|
61
|
+
import * as i60 from "./document/write-document-field.component";
|
|
62
|
+
import * as i61 from "./dynamic-list/write-dynamic-list-field.component";
|
|
63
|
+
import * as i62 from "./dynamic-radio-list/write-dynamic-radio-list-field.component";
|
|
64
|
+
import * as i63 from "./text/write-text-field.component";
|
|
65
|
+
import * as i64 from "./date/write-date-container-field.component";
|
|
66
|
+
import * as i65 from "./text-area/write-text-area-field.component";
|
|
67
|
+
import * as i66 from "./phone-uk/write-phone-uk-field.component";
|
|
68
|
+
import * as i67 from "./number/write-number-field.component";
|
|
69
|
+
import * as i68 from "./email/write-email-field.component";
|
|
70
|
+
import * as i69 from "./date/write-date-field.component";
|
|
71
|
+
import * as i70 from "./case-flag/write-case-flag-field.component";
|
|
72
|
+
import * as i71 from "./linked-cases/write-linked-cases-field.component";
|
|
73
|
+
import * as i72 from "./yes-no/write-yes-no-field.component";
|
|
74
|
+
import * as i73 from "./organisation/write-organisation-field.component";
|
|
75
|
+
import * as i74 from "./order-summary/write-order-summary-field.component";
|
|
76
|
+
import * as i75 from "./money-gbp/write-money-gbp-field.component";
|
|
77
|
+
import * as i76 from "./multi-select-list/write-multi-select-list-field.component";
|
|
78
|
+
import * as i77 from "./fixed-list/write-fixed-list-field.component";
|
|
79
|
+
import * as i78 from "./fixed-radio-list/write-fixed-radio-list-field.component";
|
|
80
|
+
import * as i79 from "./case-link/write-case-link-field.component";
|
|
81
|
+
import * as i80 from "./collection/write-collection-field.component";
|
|
82
|
+
import * as i81 from "./case-file-view/case-file-view-field.component";
|
|
83
|
+
import * as i82 from "./case-file-view/case-file-view-field-read.component";
|
|
84
|
+
import * as i83 from "./case-file-view/components/case-file-view-folder/case-file-view-folder.component";
|
|
85
|
+
import * as i84 from "./case-file-view/components/case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component";
|
|
86
|
+
import * as i85 from "./case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component";
|
|
87
|
+
import * as i86 from "./case-file-view/components/case-file-view-folder/case-file-view-folder-document-actions/case-file-view-folder-document-actions.component";
|
|
88
|
+
import * as i87 from "./case-file-view/components/case-file-view-folder-selector/case-file-view-folder-selector.component";
|
|
89
|
+
import * as i88 from "./linked-cases/components/linked-cases-table/linked-cases-to-table.component";
|
|
90
|
+
import * as i89 from "./linked-cases/components/linked-cases-table/linked-cases-from-table.component";
|
|
91
|
+
import * as i90 from "./linked-cases/components/before-you-start/before-you-start.component";
|
|
92
|
+
import * as i91 from "./linked-cases/components/link-cases/link-cases.component";
|
|
93
|
+
import * as i92 from "./linked-cases/components/check-your-answers/check-your-answers.component";
|
|
94
|
+
import * as i93 from "./linked-cases/components/unlink-cases/unlink-cases.component";
|
|
95
|
+
import * as i94 from "./linked-cases/components/no-linked-cases/no-linked-cases.component";
|
|
96
|
+
import * as i95 from "@angular/common";
|
|
97
|
+
import * as i96 from "@angular/router";
|
|
98
|
+
import * as i97 from "@angular/forms";
|
|
99
|
+
import * as i98 from "../../commons/case-edit-data/case-edit-data.module";
|
|
100
|
+
import * as i99 from "./utils/utils.module";
|
|
101
|
+
import * as i100 from "../../pipes/pipes.module";
|
|
102
|
+
import * as i101 from "../../../components/banners/banners.module";
|
|
103
|
+
import * as i102 from "../../../components/header/headers.module";
|
|
104
|
+
import * as i103 from "../../../components/footer/footers.module";
|
|
105
|
+
import * as i104 from "../../../components/body/body.module";
|
|
106
|
+
import * as i105 from "../../../components/form/form.module";
|
|
107
|
+
import * as i106 from "../../../components/tabs/tabs.module";
|
|
108
|
+
import * as i107 from "../../directives/substitutor/label-substitutor.module";
|
|
109
|
+
import * as i108 from "ngx-md";
|
|
110
|
+
import * as i109 from "@angular-material-components/datetime-picker";
|
|
111
|
+
import * as i110 from "@angular/material/form-field";
|
|
112
|
+
import * as i111 from "@angular/material/input";
|
|
113
|
+
import * as i112 from "@angular/material/datepicker";
|
|
114
|
+
import * as i113 from "@angular/material/autocomplete";
|
|
115
|
+
import * as i114 from "@angular/cdk/tree";
|
|
116
|
+
import * as i115 from "@angular/cdk/overlay";
|
|
117
|
+
import * as i116 from "@hmcts/ccpay-web-component";
|
|
118
|
+
import * as i117 from "@nicky-lenaers/ngx-scroll-to";
|
|
119
|
+
import * as i118 from "@angular/material/dialog";
|
|
120
|
+
import * as i119 from "@hmcts/media-viewer";
|
|
121
|
+
import * as i120 from "../../services/loading/loading.module";
|
|
113
122
|
export declare class PaletteModule {
|
|
114
123
|
static ɵfac: i0.ɵɵFactoryDef<PaletteModule, never>;
|
|
115
|
-
static ɵmod: i0.ɵɵNgModuleDefWithMeta<PaletteModule, [typeof i1.FixedListPipe, typeof i2.FixedRadioListPipe, typeof i3.DynamicListPipe, typeof i4.DynamicRadioListPipe, typeof i5.DocumentUrlPipe, typeof i6.CaseFlagTableComponent, typeof i7.SelectFlagTypeComponent, typeof i8.SearchLanguageInterpreterComponent, typeof i9.SelectFlagLocationComponent, typeof i10.ManageCaseFlagsComponent, typeof i11.AddCommentsComponent, typeof i12.UpdateFlagComponent, typeof i13.CaseFlagSummaryListComponent, typeof i14.UnsupportedFieldComponent, typeof i15.DatetimePickerComponent, typeof i16.WaysToPayFieldComponent, typeof i17.MarkdownComponent, typeof i18.FieldReadComponent, typeof i19.FieldWriteComponent, typeof i20.FieldReadLabelComponent, typeof i21.LabelFieldComponent, typeof i22.CasePaymentHistoryViewerFieldComponent, typeof i23.MoneyGbpInputComponent, typeof i24.CaseHistoryViewerFieldComponent, typeof i25.EventLogComponent, typeof i26.EventLogDetailsComponent, typeof i27.EventLogTableComponent, typeof i28.ReadTextFieldComponent, typeof i29.ReadTextAreaFieldComponent, typeof i30.ReadNumberFieldComponent, typeof i31.ReadEmailFieldComponent, typeof i32.ReadPhoneUKFieldComponent, typeof i33.ReadDateFieldComponent, typeof i34.ReadCollectionFieldComponent, typeof i35.ReadDocumentFieldComponent, typeof i36.ReadJudicialUserFieldComponent, typeof i37.ReadYesNoFieldComponent, typeof i38.ReadOrganisationFieldComponent, typeof i39.ReadOrganisationFieldTableComponent, typeof i40.ReadOrganisationFieldRawComponent, typeof i41.ReadOrderSummaryFieldComponent, typeof i42.ReadOrderSummaryRowComponent, typeof i43.ReadMoneyGbpFieldComponent, typeof i44.ReadMultiSelectListFieldComponent, typeof i45.ReadDynamicListFieldComponent, typeof i46.ReadFixedListFieldComponent, typeof i47.ReadFixedRadioListFieldComponent, typeof i48.ReadDynamicRadioListFieldComponent, typeof i49.ReadCaseLinkFieldComponent, typeof i50.ReadComplexFieldComponent, typeof i51.ReadComplexFieldRawComponent, typeof i52.ReadComplexFieldTableComponent, typeof i53.ReadComplexFieldCollectionTableComponent, typeof i54.ReadCaseFlagFieldComponent, typeof i55.
|
|
124
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<PaletteModule, [typeof i1.FixedListPipe, typeof i2.FixedRadioListPipe, typeof i3.DynamicListPipe, typeof i4.DynamicRadioListPipe, typeof i5.DocumentUrlPipe, typeof i6.CaseFlagTableComponent, typeof i7.SelectFlagTypeComponent, typeof i8.SearchLanguageInterpreterComponent, typeof i9.SelectFlagLocationComponent, typeof i10.ManageCaseFlagsComponent, typeof i11.AddCommentsComponent, typeof i12.UpdateFlagComponent, typeof i13.CaseFlagSummaryListComponent, typeof i14.UnsupportedFieldComponent, typeof i15.DatetimePickerComponent, typeof i16.WaysToPayFieldComponent, typeof i17.MarkdownComponent, typeof i18.FieldReadComponent, typeof i19.FieldWriteComponent, typeof i20.FieldReadLabelComponent, typeof i21.LabelFieldComponent, typeof i22.CasePaymentHistoryViewerFieldComponent, typeof i23.MoneyGbpInputComponent, typeof i24.CaseHistoryViewerFieldComponent, typeof i25.EventLogComponent, typeof i26.EventLogDetailsComponent, typeof i27.EventLogTableComponent, typeof i28.ReadTextFieldComponent, typeof i29.ReadTextAreaFieldComponent, typeof i30.ReadNumberFieldComponent, typeof i31.ReadEmailFieldComponent, typeof i32.ReadPhoneUKFieldComponent, typeof i33.ReadDateFieldComponent, typeof i34.ReadCollectionFieldComponent, typeof i35.ReadDocumentFieldComponent, typeof i36.ReadJudicialUserFieldComponent, typeof i37.ReadYesNoFieldComponent, typeof i38.ReadOrganisationFieldComponent, typeof i39.ReadOrganisationFieldTableComponent, typeof i40.ReadOrganisationFieldRawComponent, typeof i41.ReadOrderSummaryFieldComponent, typeof i42.ReadOrderSummaryRowComponent, typeof i43.ReadMoneyGbpFieldComponent, typeof i44.ReadMultiSelectListFieldComponent, typeof i45.ReadDynamicListFieldComponent, typeof i46.ReadFixedListFieldComponent, typeof i47.ReadFixedRadioListFieldComponent, typeof i48.ReadDynamicRadioListFieldComponent, typeof i49.ReadCaseLinkFieldComponent, typeof i50.ReadComplexFieldComponent, typeof i51.ReadComplexFieldRawComponent, typeof i52.ReadComplexFieldTableComponent, typeof i53.ReadComplexFieldCollectionTableComponent, typeof i54.ReadCaseFlagFieldComponent, typeof i55.ReadLinkedCasesFieldComponent, typeof i56.WriteJudicialUserFieldComponent, typeof i57.WriteAddressFieldComponent, typeof i58.WriteComplexFieldComponent, typeof i59.WriteOrganisationComplexFieldComponent, typeof i60.WriteDocumentFieldComponent, typeof i61.WriteDynamicListFieldComponent, typeof i62.WriteDynamicRadioListFieldComponent, typeof i63.WriteTextFieldComponent, typeof i64.WriteDateContainerFieldComponent, typeof i65.WriteTextAreaFieldComponent, typeof i66.WritePhoneUKFieldComponent, typeof i67.WriteNumberFieldComponent, typeof i68.WriteEmailFieldComponent, typeof i69.WriteDateFieldComponent, typeof i70.WriteCaseFlagFieldComponent, typeof i71.WriteLinkedCasesFieldComponent, typeof i72.WriteYesNoFieldComponent, typeof i73.WriteOrganisationFieldComponent, typeof i59.WriteOrganisationComplexFieldComponent, typeof i74.WriteOrderSummaryFieldComponent, typeof i75.WriteMoneyGbpFieldComponent, typeof i64.WriteDateContainerFieldComponent, typeof i76.WriteMultiSelectListFieldComponent, typeof i77.WriteFixedListFieldComponent, typeof i78.WriteFixedRadioListFieldComponent, typeof i79.WriteCaseLinkFieldComponent, typeof i80.WriteCollectionFieldComponent, typeof i81.CaseFileViewFieldComponent, typeof i82.CaseFileViewFieldReadComponent, typeof i83.CaseFileViewFolderComponent, typeof i84.CaseFileViewFolderSortComponent, typeof i85.CaseFileViewOverlayMenuComponent, typeof i86.CaseFileViewFolderDocumentActionsComponent, typeof i87.CaseFileViewFolderSelectorComponent, typeof i88.LinkedCasesToTableComponent, typeof i89.LinkedCasesFromTableComponent, typeof i90.BeforeYouStartComponent, typeof i91.LinkCasesComponent, typeof i92.CheckYourAnswersComponent, typeof i93.UnLinkCasesComponent, typeof i94.NoLinkedCasesComponent], [typeof i95.CommonModule, typeof i96.RouterModule, typeof i97.FormsModule, typeof i97.ReactiveFormsModule, typeof i98.CaseEditDataModule, typeof i99.PaletteUtilsModule, typeof i100.PipesModule, typeof i101.BannersModule, typeof i102.HeadersModule, typeof i103.FootersModule, typeof i104.BodyModule, typeof i105.FormModule, typeof i106.TabsModule, typeof i107.LabelSubstitutorModule, typeof i108.NgxMdModule, typeof i109.NgxMatDatetimePickerModule, typeof i109.NgxMatTimepickerModule, typeof i109.NgxMatNativeDateModule, typeof i110.MatFormFieldModule, typeof i111.MatInputModule, typeof i112.MatDatepickerModule, typeof i113.MatAutocompleteModule, typeof i114.CdkTreeModule, typeof i115.OverlayModule, typeof i116.PaymentLibModule, typeof i117.ScrollToModule, typeof i118.MatDialogModule, typeof i119.MediaViewerModule, typeof i120.LoadingModule], [typeof i109.NgxMatDatetimePickerModule, typeof i109.NgxMatNativeDateModule, typeof i109.NgxMatTimepickerModule, typeof i106.TabsModule, typeof i99.PaletteUtilsModule, typeof i100.PipesModule, typeof i14.UnsupportedFieldComponent, typeof i15.DatetimePickerComponent, typeof i16.WaysToPayFieldComponent, typeof i17.MarkdownComponent, typeof i18.FieldReadComponent, typeof i19.FieldWriteComponent, typeof i20.FieldReadLabelComponent, typeof i21.LabelFieldComponent, typeof i22.CasePaymentHistoryViewerFieldComponent, typeof i23.MoneyGbpInputComponent, typeof i24.CaseHistoryViewerFieldComponent, typeof i25.EventLogComponent, typeof i26.EventLogDetailsComponent, typeof i27.EventLogTableComponent, typeof i28.ReadTextFieldComponent, typeof i29.ReadTextAreaFieldComponent, typeof i30.ReadNumberFieldComponent, typeof i31.ReadEmailFieldComponent, typeof i32.ReadPhoneUKFieldComponent, typeof i33.ReadDateFieldComponent, typeof i34.ReadCollectionFieldComponent, typeof i35.ReadDocumentFieldComponent, typeof i36.ReadJudicialUserFieldComponent, typeof i37.ReadYesNoFieldComponent, typeof i38.ReadOrganisationFieldComponent, typeof i39.ReadOrganisationFieldTableComponent, typeof i40.ReadOrganisationFieldRawComponent, typeof i41.ReadOrderSummaryFieldComponent, typeof i42.ReadOrderSummaryRowComponent, typeof i43.ReadMoneyGbpFieldComponent, typeof i44.ReadMultiSelectListFieldComponent, typeof i45.ReadDynamicListFieldComponent, typeof i46.ReadFixedListFieldComponent, typeof i47.ReadFixedRadioListFieldComponent, typeof i48.ReadDynamicRadioListFieldComponent, typeof i49.ReadCaseLinkFieldComponent, typeof i50.ReadComplexFieldComponent, typeof i51.ReadComplexFieldRawComponent, typeof i52.ReadComplexFieldTableComponent, typeof i53.ReadComplexFieldCollectionTableComponent, typeof i54.ReadCaseFlagFieldComponent, typeof i55.ReadLinkedCasesFieldComponent, typeof i56.WriteJudicialUserFieldComponent, typeof i57.WriteAddressFieldComponent, typeof i58.WriteComplexFieldComponent, typeof i59.WriteOrganisationComplexFieldComponent, typeof i60.WriteDocumentFieldComponent, typeof i61.WriteDynamicListFieldComponent, typeof i62.WriteDynamicRadioListFieldComponent, typeof i63.WriteTextFieldComponent, typeof i64.WriteDateContainerFieldComponent, typeof i65.WriteTextAreaFieldComponent, typeof i66.WritePhoneUKFieldComponent, typeof i67.WriteNumberFieldComponent, typeof i68.WriteEmailFieldComponent, typeof i69.WriteDateFieldComponent, typeof i70.WriteCaseFlagFieldComponent, typeof i71.WriteLinkedCasesFieldComponent, typeof i72.WriteYesNoFieldComponent, typeof i73.WriteOrganisationFieldComponent, typeof i59.WriteOrganisationComplexFieldComponent, typeof i74.WriteOrderSummaryFieldComponent, typeof i75.WriteMoneyGbpFieldComponent, typeof i64.WriteDateContainerFieldComponent, typeof i76.WriteMultiSelectListFieldComponent, typeof i77.WriteFixedListFieldComponent, typeof i78.WriteFixedRadioListFieldComponent, typeof i79.WriteCaseLinkFieldComponent, typeof i80.WriteCollectionFieldComponent, typeof i81.CaseFileViewFieldComponent, typeof i82.CaseFileViewFieldReadComponent, typeof i83.CaseFileViewFolderComponent, typeof i84.CaseFileViewFolderSortComponent, typeof i85.CaseFileViewOverlayMenuComponent, typeof i86.CaseFileViewFolderDocumentActionsComponent, typeof i87.CaseFileViewFolderSelectorComponent, typeof i88.LinkedCasesToTableComponent, typeof i89.LinkedCasesFromTableComponent, typeof i90.BeforeYouStartComponent, typeof i91.LinkCasesComponent, typeof i92.CheckYourAnswersComponent, typeof i93.UnLinkCasesComponent, typeof i94.NoLinkedCasesComponent]>;
|
|
116
125
|
static ɵinj: i0.ɵɵInjectorDef<PaletteModule>;
|
|
117
126
|
}
|
|
118
127
|
//# sourceMappingURL=palette.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"palette.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/palette.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"palette.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/palette.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiLA,qBA2Ea,aAAa;iCAAb,aAAa;0CAAb,aAAa;kCAAb,aAAa;CACzB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"palette.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/palette.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,IAAI,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;;
|
|
1
|
+
{"version":3,"file":"palette.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/palette.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,IAAI,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;;AAsDrE,qBACa,cAAc;IACzB,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAGxC;IAEK,sBAAsB,CAAC,SAAS,EAAE,SAAS,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,CAAC,EAAE,CAAC;IAmE7E,OAAO,CAAC,6BAA6B;iCAzE1B,cAAc;qCAAd,cAAc;CA0F1B"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare enum DisplayContextParameter {
|
|
2
|
+
Read = "READ",
|
|
3
|
+
Create = "CREATE",
|
|
4
|
+
Update = "UPDATE"
|
|
5
|
+
}
|
|
6
|
+
export declare enum DisplayContextCustomParameter {
|
|
7
|
+
CaseFileView = "CaseFileView",
|
|
8
|
+
LinkedCases = "LinkedCases"
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=display-context-enum.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"display-context-enum.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/definition/display-context-enum.model.ts"],"names":[],"mappings":"AAAA,oBAAY,uBAAuB;IACjC,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,MAAM,WAAW;CAClB;AAED,oBAAY,6BAA6B;IACvC,YAAY,iBAAiB;IAC7B,WAAW,gBAAgB;CAC5B"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export * from './case-reference';
|
|
2
2
|
export * from './case-title';
|
|
3
3
|
export * from './complex';
|
|
4
|
+
export * from './link-cases-reason-code';
|
|
5
|
+
export * from './link-cases-from-reason-code';
|
|
4
6
|
export * from './pipes.module';
|
|
5
7
|
export * from './search-result/sorting/sort-search-result.pipe';
|
|
6
8
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iDAAiD,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,0BAA0B,CAAC;AACzC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iDAAiD,CAAC"}
|
package/lib/shared/pipes/link-cases-from-reason-code/ccd-link-cases-from-reason-code.pipe.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { LinkFromReason } from '../../components/palette/linked-cases/domain';
|
|
3
|
+
import { LinkedCasesService } from '../../components/palette/linked-cases/services';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LinkCasesFromReasonValuePipe implements PipeTransform {
|
|
6
|
+
private readonly linkedCasesService;
|
|
7
|
+
constructor(linkedCasesService: LinkedCasesService);
|
|
8
|
+
transform(linkFromReason: LinkFromReason): string;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDef<LinkCasesFromReasonValuePipe, never>;
|
|
10
|
+
static ɵpipe: i0.ɵɵPipeDefWithMeta<LinkCasesFromReasonValuePipe, "ccdLinkCasesFromReasonValue">;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=ccd-link-cases-from-reason-code.pipe.d.ts.map
|
package/lib/shared/pipes/link-cases-from-reason-code/ccd-link-cases-from-reason-code.pipe.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ccd-link-cases-from-reason-code.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/link-cases-from-reason-code/ccd-link-cases-from-reason-code.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,8CAA8C,CAAC;AAC9E,OAAO,EAAE,kBAAkB,EAAE,MAAM,gDAAgD,CAAC;;AAEpF,qBAGa,4BAA6B,YAAW,aAAa;IAEpD,OAAO,CAAC,QAAQ,CAAC,kBAAkB;gBAAlB,kBAAkB,EAAE,kBAAkB;IAE5D,SAAS,CAAC,cAAc,EAAE,cAAc,GAAG,MAAM;iCAJ7C,4BAA4B;uCAA5B,4BAA4B;CAaxC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/link-cases-from-reason-code/index.ts"],"names":[],"mappings":"AAAA,cAAc,wCAAwC,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { LinkReason } from '../../components';
|
|
3
|
+
import { LinkedCasesService } from '../../components/palette/linked-cases/services';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LinkCasesReasonValuePipe implements PipeTransform {
|
|
6
|
+
private readonly linkedCasesService;
|
|
7
|
+
constructor(linkedCasesService: LinkedCasesService);
|
|
8
|
+
transform(linkReason: LinkReason): string;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDef<LinkCasesReasonValuePipe, never>;
|
|
10
|
+
static ɵpipe: i0.ɵɵPipeDefWithMeta<LinkCasesReasonValuePipe, "ccdLinkCasesReasonValue">;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=ccd-link-cases-reason-code.pipe.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ccd-link-cases-reason-code.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,kBAAkB,EAAE,MAAM,gDAAgD,CAAC;;AAEpF,qBAGa,wBAAyB,YAAW,aAAa;IAEhD,OAAO,CAAC,QAAQ,CAAC,kBAAkB;gBAAlB,kBAAkB,EAAE,kBAAkB;IAE5D,SAAS,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM;iCAJrC,wBAAwB;uCAAxB,wBAAwB;CAapC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/link-cases-reason-code/index.ts"],"names":[],"mappings":"AAAA,cAAc,mCAAmC,CAAC"}
|
|
@@ -7,10 +7,12 @@ import * as i5 from "./complex/ccd-cyapage-label-filter.pipe";
|
|
|
7
7
|
import * as i6 from "./complex/ccd-read-fields-filter.pipe";
|
|
8
8
|
import * as i7 from "./complex/ccd-tab-fields.pipe";
|
|
9
9
|
import * as i8 from "./complex/cdd-page-fields.pipe";
|
|
10
|
-
import * as i9 from "
|
|
10
|
+
import * as i9 from "./link-cases-reason-code/ccd-link-cases-reason-code.pipe";
|
|
11
|
+
import * as i10 from "./link-cases-from-reason-code/ccd-link-cases-from-reason-code.pipe";
|
|
12
|
+
import * as i11 from "@angular/common";
|
|
11
13
|
export declare class PipesModule {
|
|
12
14
|
static ɵfac: i0.ɵɵFactoryDef<PipesModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDefWithMeta<PipesModule, [typeof i1.CaseReferencePipe, typeof i2.SortSearchResultPipe, typeof i3.CcdCaseTitlePipe, typeof i4.CcdCollectionTableCaseFieldsFilterPipe, typeof i5.CcdCYAPageLabelFilterPipe, typeof i6.ReadFieldsFilterPipe, typeof i7.CcdTabFieldsPipe, typeof i8.CcdPageFieldsPipe], [typeof
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<PipesModule, [typeof i1.CaseReferencePipe, typeof i2.SortSearchResultPipe, typeof i3.CcdCaseTitlePipe, typeof i4.CcdCollectionTableCaseFieldsFilterPipe, typeof i5.CcdCYAPageLabelFilterPipe, typeof i6.ReadFieldsFilterPipe, typeof i7.CcdTabFieldsPipe, typeof i8.CcdPageFieldsPipe, typeof i9.LinkCasesReasonValuePipe, typeof i10.LinkCasesFromReasonValuePipe], [typeof i11.CommonModule], [typeof i1.CaseReferencePipe, typeof i2.SortSearchResultPipe, typeof i3.CcdCaseTitlePipe, typeof i4.CcdCollectionTableCaseFieldsFilterPipe, typeof i5.CcdCYAPageLabelFilterPipe, typeof i6.ReadFieldsFilterPipe, typeof i7.CcdTabFieldsPipe, typeof i8.CcdPageFieldsPipe, typeof i9.LinkCasesReasonValuePipe, typeof i10.LinkCasesFromReasonValuePipe]>;
|
|
14
16
|
static ɵinj: i0.ɵɵInjectorDef<PipesModule>;
|
|
15
17
|
}
|
|
16
18
|
//# sourceMappingURL=pipes.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pipes.module.d.ts","sourceRoot":"","sources":["../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/pipes.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"pipes.module.d.ts","sourceRoot":"","sources":["../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/pipes.module.ts"],"names":[],"mappings":";;;;;;;;;;;;AAsBA,qBAWa,WAAW;iCAAX,WAAW;0CAAX,WAAW;kCAAX,WAAW;CAAG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common-data-service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/common-data-service/common-data-service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,UAAU,EAAM,MAAM,MAAM,CAAC;;AAEtC,MAAM,WAAW,eAAe;
|
|
1
|
+
{"version":3,"file":"common-data-service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/common-data-service/common-data-service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,UAAU,EAAM,MAAM,MAAM,CAAC;;AAEtC,MAAM,WAAW,eAAe;IAC9B,YAAY,EAAE,MAAM,CAAC;IACrB,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,eAAe,EAAE,CAAC;IAChC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,wBAAwB;IACvC,cAAc,EAAE,eAAe,EAAE,CAAC;CACnC;AAED,qBACa,iBAAiB;IAEhB,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAAJ,IAAI,EAAE,UAAU;IAEtC,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,UAAU,CAAC,wBAAwB,CAAC;iCAJzD,iBAAiB;qCAAjB,iBAAiB;CAU7B"}
|
|
@@ -66,6 +66,7 @@ export declare class FieldsUtils {
|
|
|
66
66
|
private static getNestedFieldValues;
|
|
67
67
|
static isFlagsCaseField(caseField: CaseField): boolean;
|
|
68
68
|
static isFlagLauncherCaseField(caseField: CaseField): boolean;
|
|
69
|
+
static isComponentLauncherCaseField(caseField: CaseField): boolean;
|
|
69
70
|
static isFlagsFieldType(fieldType: FieldType): boolean;
|
|
70
71
|
/**
|
|
71
72
|
* Extract flags data from a `CaseField` instance, recursing and iterating through sub-fields of a Complex field or
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fields.utils.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/fields/fields.utils.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAEpF,OAAO,EAAE,UAAU,EAAE,MAAM,qCAAqC,CAAC;AACjE,OAAO,EAAE,0BAA0B,EAAE,MAAM,mEAAmE,CAAC;AAC/G,OAAO,EAAc,sBAAsB,EAAE,MAAM,2DAA2D,CAAC;AAG/G,OAAO,EAAE,gBAAgB,EAAE,SAAS,EAAW,QAAQ,EAAE,SAAS,EAAE,aAAa,EAAiB,SAAS,EAAE,MAAM,cAAc,CAAC;;AAIlI,qBACa,WAAW;IAEtB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,yBAAyB,CAAe;IAChE,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAA2C;IAC/E,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAyD;IAEzF,gBAAuB,YAAY,cAAc;IAEjD,gBAAuB,qCAAqC,gBAAgB;IAC5E,gBAAuB,kCAAkC,aAAa;IACtE,gBAAuB,4CAA4C,EAAE,aAAa,EAAE,CAAuC;WAE7G,kBAAkB,CAAC,GAAG,EAAE,GAAG,GAAG,SAAS;WAOvC,WAAW,CAAC,UAAU,EAAE,SAAS,EAAE,GAAG,GAAG;WAQzC,OAAO,CAAC,IAAI,EAAE,GAAG,GAAG,MAAM;WAI1B,QAAQ,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO;WAI5B,gBAAgB,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO;WAIpC,OAAO,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO;WAI3B,+BAA+B,CAAC,UAAU,EAAE,GAAG,EAAE,GAAG,OAAO;WAI3D,yBAAyB,CAAC,UAAU,EAAE,GAAG,GAAG,OAAO;WAInD,kBAAkB,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO;WAItC,eAAe,CAAC,cAAc,EAAE,GAAG,GAAG,OAAO;WAI7C,YAAY,CAAC,cAAc,EAAE,GAAG,GAAG,OAAO;WAI1C,qBAAqB,CAAC,cAAc,EAAE,GAAG,EAAE,GAAG,OAAO;WAIrD,WAAW,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG;WAK1B,aAAa,CAAC,QAAQ,EAAE,QAAQ,GAAG,SAAS,EAAE;WAW9C,kCAAkC,CAAE,CAAC,EAAE,eAAe,EAAE,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,0BAA0B,GAAG,IAAI;IAK5H;;;;;OAKG;WACW,sBAAsB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO;IAiB7D;;;;;;;;;OASG;WACY,wBAAwB,CAAC,QAAQ,EAAE;QAAE,WAAW,EAAE,SAAS,EAAE,CAAA;KAAE,GAAG,GAAG;IAapF,OAAO,CAAC,MAAM,CAAC,YAAY;IAY3B,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,sBAAsB,CAI5C;IAEF,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,oBAAoB,CA4E1C;IAEF;;;;;OAKG;IACH,OAAO,CAAC,MAAM,CAAC,WAAW;IAI1B,OAAO,CAAC,MAAM,CAAC,QAAQ;IAIvB,OAAO,CAAC,MAAM,CAAC,OAAO;IAYtB,OAAO,CAAC,MAAM,CAAC,8BAA8B;IAK7C,OAAO,CAAC,MAAM,CAAC,mBAAmB;IAIlC,OAAO,CAAC,MAAM,CAAC,wBAAwB;IAsCvC,OAAO,CAAC,MAAM,CAAC,mBAAmB;IAOlC,OAAO,CAAC,MAAM,CAAC,oBAAoB;WAarB,gBAAgB,CAAC,SAAS,EAAE,SAAS,GAAG,OAAO;WAQ/C,uBAAuB,CAAC,SAAS,EAAE,SAAS,GAAG,OAAO;
|
|
1
|
+
{"version":3,"file":"fields.utils.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/fields/fields.utils.ts"],"names":[],"mappings":"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"}
|
|
@@ -164,6 +164,20 @@ export declare class FormValueService {
|
|
|
164
164
|
* @param caseFields The list of underlying {@link CaseField} domain model objects for each field
|
|
165
165
|
*/
|
|
166
166
|
populateFlagDetailsFromCaseFields(data: object, caseFields: CaseField[]): void;
|
|
167
|
+
/**
|
|
168
|
+
* Remove the ComponentLauncher case field, which is not intended to be persisted.
|
|
169
|
+
*
|
|
170
|
+
* @param data The object tree of form values on which to perform the removal
|
|
171
|
+
* @param caseFields The list of underlying {@link CaseField} domain model objects for each field
|
|
172
|
+
*/
|
|
173
|
+
removeComponentLauncherField(data: object, caseFields: CaseField[]): void;
|
|
174
|
+
/**
|
|
175
|
+
* Populate the linked cases from the data held in its corresponding CaseField.
|
|
176
|
+
*
|
|
177
|
+
* @param data The object tree of form values on which to perform the data population
|
|
178
|
+
* @param caseFields The list of underlying {@link CaseField} domain model objects for each field
|
|
179
|
+
*/
|
|
180
|
+
populateLinkedCasesDetailsFromCaseFields(data: object, caseFields: CaseField[]): void;
|
|
167
181
|
static ɵfac: i0.ɵɵFactoryDef<FormValueService, never>;
|
|
168
182
|
static ɵprov: i0.ɵɵInjectableDef<FormValueService>;
|
|
169
183
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"form-value.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/form/form-value.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;;AAE5D,qBACa,gBAAgB;IA8Lf,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IA7L/C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAmGG;WACW,aAAa,CAAC,IAAI,KAAA,EAAE,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAiBpD;;;OAGG;WACW,uBAAuB,CAAC,IAAI,EAAE,GAAG,GAAG,IAAI;IAqBtD,OAAO,CAAC,MAAM,CAAC,UAAU;IAIzB,OAAO,CAAC,MAAM,CAAC,UAAU;IAIzB,OAAO,CAAC,MAAM,CAAC,OAAO;IAQtB,OAAO,CAAC,MAAM,CAAC,WAAW;IAkB1B;;;;;OAKG;IACH,OAAO,CAAC,MAAM,CAAC,kBAAkB;gBAOJ,kBAAkB,EAAE,kBAAkB;IAG5D,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM;IAIlC,qBAAqB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM;IAShD,uBAAuB,CAAC,UAAU,EAAE,SAAS,EAAE,EAAE,QAAQ,EAAE,GAAG,GAAG,GAAG;IAUpE,oBAAoB,CAAC,UAAU,EAAE,SAAS,EAAE,EAAE,QAAQ,EAAE,GAAG,GAAG,GAAG;IAIxE,OAAO,CAAC,cAAc;IA6BtB,OAAO,CAAC,aAAa;IAmBrB,OAAO,CAAC,aAAa;IAiBd,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE;IASxD,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE;IAwCtD,oBAAoB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE;IAwCjE;;;;;;;;OAQG;IACI,uBAAuB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,EAAE,UAAU,UAAQ,EAAE,YAAY,UAAQ,EAC5G,gBAAgB,UAAQ,EAAE,qBAAqB,QAAK,GAAG,IAAI;IAmEtD,2BAA2B,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS;IAUjE;;;;;;OAMG;IACI,uCAAuC,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI;IAW3F;;;;;OAKG;IACI,uBAAuB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI;IAU3E;;;;;OAKG;IACI,iCAAiC,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI;
|
|
1
|
+
{"version":3,"file":"form-value.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/form/form-value.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;;AAE5D,qBACa,gBAAgB;IA8Lf,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IA7L/C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAmGG;WACW,aAAa,CAAC,IAAI,KAAA,EAAE,QAAQ,KAAA,EAAE,QAAQ,KAAA;IAiBpD;;;OAGG;WACW,uBAAuB,CAAC,IAAI,EAAE,GAAG,GAAG,IAAI;IAqBtD,OAAO,CAAC,MAAM,CAAC,UAAU;IAIzB,OAAO,CAAC,MAAM,CAAC,UAAU;IAIzB,OAAO,CAAC,MAAM,CAAC,OAAO;IAQtB,OAAO,CAAC,MAAM,CAAC,WAAW;IAkB1B;;;;;OAKG;IACH,OAAO,CAAC,MAAM,CAAC,kBAAkB;gBAOJ,kBAAkB,EAAE,kBAAkB;IAG5D,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM;IAIlC,qBAAqB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM;IAShD,uBAAuB,CAAC,UAAU,EAAE,SAAS,EAAE,EAAE,QAAQ,EAAE,GAAG,GAAG,GAAG;IAUpE,oBAAoB,CAAC,UAAU,EAAE,SAAS,EAAE,EAAE,QAAQ,EAAE,GAAG,GAAG,GAAG;IAIxE,OAAO,CAAC,cAAc;IA6BtB,OAAO,CAAC,aAAa;IAmBrB,OAAO,CAAC,aAAa;IAiBd,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE;IASxD,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE;IAwCtD,oBAAoB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE;IAwCjE;;;;;;;;OAQG;IACI,uBAAuB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,EAAE,UAAU,UAAQ,EAAE,YAAY,UAAQ,EAC5G,gBAAgB,UAAQ,EAAE,qBAAqB,QAAK,GAAG,IAAI;IAmEtD,2BAA2B,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS;IAUjE;;;;;;OAMG;IACI,uCAAuC,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI;IAW3F;;;;;OAKG;IACI,uBAAuB,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI;IAU3E;;;;;OAKG;IACI,iCAAiC,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI;IAyBrF;;;;;OAKG;IACI,4BAA4B,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI;IAUhF;;;;;OAKG;IACI,wCAAwC,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI;iCApiBjF,gBAAgB;qCAAhB,gBAAgB;CA8iB5B"}
|