@hmcts/ccd-case-ui-toolkit 5.0.32-angular11-upgrade → 5.0.34-case-file-view-merge-into-angular-11
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 +5773 -1797
- 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/app.config.js +1 -1
- package/esm2015/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.js +15 -11
- package/esm2015/lib/shared/components/case-editor/services/cases.service.js +28 -1
- package/esm2015/lib/shared/components/case-editor/services/page-validation.service.js +10 -2
- package/esm2015/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.js +9 -2
- package/esm2015/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.js +37 -26
- package/esm2015/lib/shared/components/loading-spinner/loading-spinner.component.js +1 -1
- package/esm2015/lib/shared/components/palette/base-field/abstract-form-field.component.js +4 -2
- package/esm2015/lib/shared/components/palette/base-field/field-write.component.js +8 -14
- package/esm2015/lib/shared/components/palette/case-file-view/case-file-view-field-read.component.js +72 -0
- package/esm2015/lib/shared/components/palette/case-file-view/case-file-view-field.component.js +134 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-document-actions/case-file-view-folder-document-actions.component.js +52 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component.js +38 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.js +353 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/case-file-view-folder-selector/case-file-view-folder-selector.component.js +159 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/index.js +6 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu-item.model.js +2 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component.js +100 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/shared/index.js +2 -0
- package/esm2015/lib/shared/components/palette/case-file-view/index.js +4 -0
- package/esm2015/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.js +71 -41
- package/esm2015/lib/shared/components/palette/case-flag/domain/case-flag.model.js +1 -1
- package/esm2015/lib/shared/components/palette/case-flag/read-case-flag-field.component.js +2 -3
- package/esm2015/lib/shared/components/palette/case-flag/write-case-flag-field.component.js +13 -9
- package/esm2015/lib/shared/components/palette/case-link/components/before-you-start/before-you-start.component.js +125 -0
- package/esm2015/lib/shared/components/palette/case-link/components/check-your-answers/check-your-answers.component.js +198 -0
- package/esm2015/lib/shared/components/palette/case-link/components/index.js +10 -0
- package/esm2015/lib/shared/components/palette/case-link/components/link-cases/link-cases.component.js +497 -0
- package/esm2015/lib/shared/components/palette/case-link/components/linked-cases-table/linked-cases-from-table.component.js +221 -0
- package/esm2015/lib/shared/components/palette/case-link/components/linked-cases-table/linked-cases-to-table.component.js +286 -0
- package/esm2015/lib/shared/components/palette/case-link/components/no-linked-cases/no-linked-cases.component.js +76 -0
- package/esm2015/lib/shared/components/palette/case-link/components/read-linked-cases.component.js +178 -0
- package/esm2015/lib/shared/components/palette/case-link/components/unlink-cases/unlink-cases.component.js +216 -0
- package/esm2015/lib/shared/components/palette/case-link/components/write-linked-cases.component.js +260 -0
- package/esm2015/lib/shared/components/palette/case-link/domain/index.js +3 -0
- package/esm2015/lib/shared/components/palette/case-link/domain/linked-cases-state.model.js +2 -0
- package/esm2015/lib/shared/components/palette/case-link/domain/linked-cases.model.js +19 -0
- package/esm2015/lib/shared/components/palette/case-link/enums/index.js +2 -0
- package/esm2015/lib/shared/components/palette/case-link/enums/write-linked-cases-field.enum.js +33 -0
- package/esm2015/lib/shared/components/palette/case-link/index.js +4 -1
- package/esm2015/lib/shared/components/palette/case-link/read-case-link-field.component.js +28 -8
- package/esm2015/lib/shared/components/palette/case-link/services/index.js +2 -0
- package/esm2015/lib/shared/components/palette/case-link/services/jurisdiction.service.js +22 -0
- package/esm2015/lib/shared/components/palette/case-link/services/linked-cases.service.js +136 -0
- package/esm2015/lib/shared/components/palette/case-link/utils/validators.utils.js +27 -0
- package/esm2015/lib/shared/components/palette/case-link/write-case-link-field.component.js +79 -65
- package/esm2015/lib/shared/components/palette/index.js +7 -2
- package/esm2015/lib/shared/components/palette/palette.module.js +135 -27
- package/esm2015/lib/shared/components/palette/palette.service.js +28 -4
- package/esm2015/lib/shared/components/palette/utils/is-compound.pipe.js +2 -2
- package/esm2015/lib/shared/components/search-result/search-result.component.js +53 -46
- package/esm2015/lib/shared/domain/case-file-view/case-file-view-category.model.js +3 -0
- package/esm2015/lib/shared/domain/case-file-view/case-file-view-document.model.js +3 -0
- package/esm2015/lib/shared/domain/case-file-view/categories-and-documents.model.js +7 -0
- package/esm2015/lib/shared/domain/case-file-view/document-tree-node/document-tree-node-type.model.js +6 -0
- package/esm2015/lib/shared/domain/case-file-view/document-tree-node/document-tree-node.model.js +93 -0
- package/esm2015/lib/shared/domain/case-file-view/index.js +6 -0
- package/esm2015/lib/shared/domain/definition/field-type-enum.model.js +1 -1
- package/esm2015/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.js +6 -2
- package/esm2015/lib/shared/pipes/index.js +2 -1
- package/esm2015/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.js +23 -0
- package/esm2015/lib/shared/pipes/link-cases-reason-code/index.js +2 -0
- package/esm2015/lib/shared/pipes/pipes.module.js +9 -5
- package/esm2015/lib/shared/services/case-file-view/case-file-view.service.js +46 -0
- package/esm2015/lib/shared/services/case-file-view/index.js +2 -0
- package/esm2015/lib/shared/services/common-data-service/common-data-service.js +22 -0
- package/esm2015/lib/shared/services/fields/fields.purger.js +128 -112
- package/esm2015/lib/shared/services/fields/fields.utils.js +11 -2
- package/esm2015/lib/shared/services/form/form-value.service.js +9 -7
- package/esm2015/lib/shared/services/index.js +2 -1
- package/esm2015/lib/shared/services/jurisdiction/jurisdiction.service.js +1 -1
- package/esm2015/lib/shared/services/search/search.service.js +8 -1
- package/esm2015/public-api.js +3 -1
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js +5185 -1665
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -1
- package/lib/app.config.d.ts +9 -1
- package/lib/app.config.d.ts.map +1 -1
- package/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts +2 -0
- package/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts.map +1 -1
- package/lib/shared/components/case-editor/services/cases.service.d.ts +7 -0
- package/lib/shared/components/case-editor/services/cases.service.d.ts.map +1 -1
- package/lib/shared/components/case-editor/services/page-validation.service.d.ts +1 -0
- package/lib/shared/components/case-editor/services/page-validation.service.d.ts.map +1 -1
- package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts.map +1 -1
- package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts +4 -3
- package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts.map +1 -1
- package/lib/shared/components/palette/base-field/abstract-form-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/base-field/field-write.component.d.ts +2 -2
- package/lib/shared/components/palette/base-field/field-write.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-file-view/case-file-view-field-read.component.d.ts +8 -0
- package/lib/shared/components/palette/case-file-view/case-file-view-field-read.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/case-file-view-field.component.d.ts +33 -0
- package/lib/shared/components/palette/case-file-view/case-file-view-field.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-document-actions/case-file-view-folder-document-actions.component.d.ts +17 -0
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-document-actions/case-file-view-folder-document-actions.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component.d.ts +13 -0
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.d.ts +53 -0
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder-selector/case-file-view-folder-selector.component.d.ts +28 -0
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder-selector/case-file-view-folder-selector.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/components/index.d.ts +6 -0
- package/lib/shared/components/palette/case-file-view/components/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu-item.model.d.ts +6 -0
- package/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu-item.model.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component.d.ts +13 -0
- package/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/components/shared/index.d.ts +2 -0
- package/lib/shared/components/palette/case-file-view/components/shared/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-file-view/index.d.ts +4 -0
- package/lib/shared/components/palette/case-file-view/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.d.ts +11 -5
- package/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/domain/case-flag.model.d.ts +2 -0
- package/lib/shared/components/palette/case-flag/domain/case-flag.model.d.ts.map +1 -1
- package/lib/shared/components/palette/case-flag/read-case-flag-field.component.d.ts +0 -1
- package/lib/shared/components/palette/case-flag/read-case-flag-field.component.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/components/palette/case-link/components/before-you-start/before-you-start.component.d.ts +19 -0
- package/lib/shared/components/palette/case-link/components/before-you-start/before-you-start.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/check-your-answers/check-your-answers.component.d.ts +18 -0
- package/lib/shared/components/palette/case-link/components/check-your-answers/check-your-answers.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/index.d.ts +10 -0
- package/lib/shared/components/palette/case-link/components/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/link-cases/link-cases.component.d.ts +45 -0
- package/lib/shared/components/palette/case-link/components/link-cases/link-cases.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/linked-cases-table/linked-cases-from-table.component.d.ts +42 -0
- package/lib/shared/components/palette/case-link/components/linked-cases-table/linked-cases-from-table.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/linked-cases-table/linked-cases-to-table.component.d.ts +45 -0
- package/lib/shared/components/palette/case-link/components/linked-cases-table/linked-cases-to-table.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/no-linked-cases/no-linked-cases.component.d.ts +12 -0
- package/lib/shared/components/palette/case-link/components/no-linked-cases/no-linked-cases.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/read-linked-cases.component.d.ts +37 -0
- package/lib/shared/components/palette/case-link/components/read-linked-cases.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/unlink-cases/unlink-cases.component.d.ts +38 -0
- package/lib/shared/components/palette/case-link/components/unlink-cases/unlink-cases.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/components/write-linked-cases.component.d.ts +45 -0
- package/lib/shared/components/palette/case-link/components/write-linked-cases.component.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/domain/index.d.ts +3 -0
- package/lib/shared/components/palette/case-link/domain/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/domain/linked-cases-state.model.d.ts +12 -0
- package/lib/shared/components/palette/case-link/domain/linked-cases-state.model.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/domain/linked-cases.model.d.ts +65 -0
- package/lib/shared/components/palette/case-link/domain/linked-cases.model.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/enums/index.d.ts +2 -0
- package/lib/shared/components/palette/case-link/enums/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/enums/write-linked-cases-field.enum.d.ts +29 -0
- package/lib/shared/components/palette/case-link/enums/write-linked-cases-field.enum.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/index.d.ts +3 -0
- package/lib/shared/components/palette/case-link/index.d.ts.map +1 -1
- package/lib/shared/components/palette/case-link/read-case-link-field.component.d.ts +3 -0
- package/lib/shared/components/palette/case-link/read-case-link-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-link/services/index.d.ts +2 -0
- package/lib/shared/components/palette/case-link/services/index.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/services/jurisdiction.service.d.ts +12 -0
- package/lib/shared/components/palette/case-link/services/jurisdiction.service.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/services/linked-cases.service.d.ts +51 -0
- package/lib/shared/components/palette/case-link/services/linked-cases.service.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/utils/validators.utils.d.ts +10 -0
- package/lib/shared/components/palette/case-link/utils/validators.utils.d.ts.map +1 -0
- package/lib/shared/components/palette/case-link/write-case-link-field.component.d.ts +14 -3
- package/lib/shared/components/palette/case-link/write-case-link-field.component.d.ts.map +1 -1
- package/lib/shared/components/palette/index.d.ts +6 -1
- package/lib/shared/components/palette/index.d.ts.map +1 -1
- package/lib/shared/components/palette/palette.module.d.ts +66 -45
- package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
- package/lib/shared/components/palette/palette.service.d.ts +2 -0
- package/lib/shared/components/palette/palette.service.d.ts.map +1 -1
- package/lib/shared/domain/case-file-view/case-file-view-category.model.d.ts +9 -0
- package/lib/shared/domain/case-file-view/case-file-view-category.model.d.ts.map +1 -0
- package/lib/shared/domain/case-file-view/case-file-view-document.model.d.ts +8 -0
- package/lib/shared/domain/case-file-view/case-file-view-document.model.d.ts.map +1 -0
- package/lib/shared/domain/case-file-view/categories-and-documents.model.d.ts +12 -0
- package/lib/shared/domain/case-file-view/categories-and-documents.model.d.ts.map +1 -0
- package/lib/shared/domain/case-file-view/document-tree-node/document-tree-node-type.model.d.ts +5 -0
- package/lib/shared/domain/case-file-view/document-tree-node/document-tree-node-type.model.d.ts.map +1 -0
- package/lib/shared/domain/case-file-view/document-tree-node/document-tree-node.model.d.ts +14 -0
- package/lib/shared/domain/case-file-view/document-tree-node/document-tree-node.model.d.ts.map +1 -0
- package/lib/shared/domain/case-file-view/index.d.ts +6 -0
- package/lib/shared/domain/case-file-view/index.d.ts.map +1 -0
- package/lib/shared/domain/definition/field-type-enum.model.d.ts +1 -1
- package/lib/shared/domain/definition/field-type-enum.model.d.ts.map +1 -1
- package/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.d.ts.map +1 -1
- package/lib/shared/pipes/index.d.ts +1 -0
- package/lib/shared/pipes/index.d.ts.map +1 -1
- package/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.d.ts +11 -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 +3 -2
- package/lib/shared/pipes/pipes.module.d.ts.map +1 -1
- package/lib/shared/services/case-file-view/case-file-view.service.d.ts +21 -0
- package/lib/shared/services/case-file-view/case-file-view.service.d.ts.map +1 -0
- package/lib/shared/services/case-file-view/index.d.ts +2 -0
- package/lib/shared/services/case-file-view/index.d.ts.map +1 -0
- package/lib/shared/services/common-data-service/common-data-service.d.ts +29 -0
- package/lib/shared/services/common-data-service/common-data-service.d.ts.map +1 -0
- package/lib/shared/services/fields/fields.purger.d.ts +19 -12
- package/lib/shared/services/fields/fields.purger.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.map +1 -1
- package/lib/shared/services/index.d.ts +1 -0
- package/lib/shared/services/index.d.ts.map +1 -1
- package/lib/shared/services/jurisdiction/jurisdiction.service.d.ts.map +1 -1
- package/lib/shared/services/search/search.service.d.ts +4 -0
- package/lib/shared/services/search/search.service.d.ts.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/public-api.d.ts.map +1 -1
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { CaseView } from '../../../../domain/case-view';
|
|
2
|
+
import { Jurisdiction } from '../../../../domain/definition/jurisdiction.model';
|
|
3
|
+
import { SearchService } from '../../../../services';
|
|
4
|
+
import { LovRefDataModel } from '../../../../services/common-data-service/common-data-service';
|
|
5
|
+
import { CaseLink, ESQueryType } from '../domain';
|
|
6
|
+
import { JurisdictionService } from './jurisdiction.service';
|
|
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): {
|
|
37
|
+
caseReference: any;
|
|
38
|
+
caseName: any;
|
|
39
|
+
caseType: string;
|
|
40
|
+
service: string;
|
|
41
|
+
state: string;
|
|
42
|
+
reasons: any;
|
|
43
|
+
};
|
|
44
|
+
searchCasesByCaseIds(searchCasesResponse: any[]): import("rxjs").Observable<unknown[]>;
|
|
45
|
+
getAllLinkedCaseInformation(): void;
|
|
46
|
+
mapLookupIDToValueFromJurisdictions(fieldName: any, fieldValue: any): string;
|
|
47
|
+
getCaseName(searchCasesResponse: CaseView): string;
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDef<LinkedCasesService, never>;
|
|
49
|
+
static ɵprov: i0.ɵɵInjectableDef<LinkedCasesService>;
|
|
50
|
+
}
|
|
51
|
+
//# 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/case-link/services/linked-cases.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,kDAAkD,CAAC;AAChF,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,8DAA8D,CAAC;AAC/F,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAc,MAAM,WAAW,CAAC;AAC9D,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;;AAE7D,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;;;;;;;;IAajC,oBAAoB,CAAC,mBAAmB,EAAE,GAAG,EAAE;IAI/C,2BAA2B;IA2C3B,mCAAmC,CAAC,SAAS,KAAA,EAAE,UAAU,KAAA,GAAG,MAAM;IAqBlE,WAAW,CAAC,mBAAmB,EAAE,QAAQ,GAAG,MAAM;iCAhI9C,kBAAkB;qCAAlB,kBAAkB;CA0I9B"}
|
|
@@ -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/case-link/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"}
|
|
@@ -1,16 +1,27 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { AbstractControl, FormGroup } from '@angular/forms';
|
|
2
|
+
import { AbstractControl, FormArray, FormGroup } from '@angular/forms';
|
|
3
|
+
import { CaseField } from '../../../domain/definition/case-field.model';
|
|
4
|
+
import { CaseEditPageComponent } from '../../case-editor/case-edit-page/case-edit-page.component';
|
|
3
5
|
import { AbstractFieldWriteComponent } from '../base-field/abstract-field-write.component';
|
|
4
6
|
import { WriteComplexFieldComponent } from '../complex/write-complex-field.component';
|
|
7
|
+
import { LinkedCasesService } from './services';
|
|
5
8
|
import * as i0 from "@angular/core";
|
|
6
9
|
export declare class WriteCaseLinkFieldComponent extends AbstractFieldWriteComponent implements OnInit {
|
|
10
|
+
readonly linkedCasesService: LinkedCasesService;
|
|
11
|
+
caseFields: CaseField[];
|
|
12
|
+
formGroup: FormGroup;
|
|
13
|
+
formArray: FormArray;
|
|
14
|
+
caseEditPageComponent: CaseEditPageComponent;
|
|
7
15
|
caseReferenceControl: AbstractControl;
|
|
8
16
|
caseLinkGroup: FormGroup;
|
|
17
|
+
containsCaseLinkCollection: boolean;
|
|
9
18
|
writeComplexFieldComponent: WriteComplexFieldComponent;
|
|
19
|
+
constructor(linkedCasesService: LinkedCasesService);
|
|
10
20
|
ngOnInit(): void;
|
|
21
|
+
submitLinkedCases(): void;
|
|
11
22
|
validCaseReference(valueString: string): boolean;
|
|
12
|
-
|
|
23
|
+
hasCaseLinkCollection(): boolean;
|
|
13
24
|
static ɵfac: i0.ɵɵFactoryDef<WriteCaseLinkFieldComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDefWithMeta<WriteCaseLinkFieldComponent, "ccd-write-case-link-field", never, {}, {}, never, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<WriteCaseLinkFieldComponent, "ccd-write-case-link-field", never, { "caseFields": "caseFields"; "formGroup": "formGroup"; "caseEditPageComponent": "caseEditPageComponent"; }, {}, never, never>;
|
|
15
26
|
}
|
|
16
27
|
//# sourceMappingURL=write-case-link-field.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"write-case-link-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-link/write-case-link-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"write-case-link-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-link/write-case-link-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAa,MAAM,eAAe,CAAC;AACpE,OAAO,EAAE,eAAe,EAAE,SAAS,EAAe,SAAS,EAAc,MAAM,gBAAgB,CAAC;AAChG,OAAO,EAAE,SAAS,EAAE,MAAM,6CAA6C,CAAC;AACxE,OAAO,EAAE,qBAAqB,EAAE,MAAM,2DAA2D,CAAC;AAClG,OAAO,EAAE,2BAA2B,EAAE,MAAM,8CAA8C,CAAC;AAC3F,OAAO,EAAE,0BAA0B,EAAE,MAAM,0CAA0C,CAAC;AACtF,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;;AAEhD,qBAKa,2BAA4B,SAAQ,2BAA4B,YAAW,MAAM;aAoBhE,kBAAkB,EAAE,kBAAkB;IAjB3D,UAAU,EAAE,SAAS,EAAE,CAAM;IAG7B,SAAS,EAAE,SAAS,CAAC;IAErB,SAAS,EAAE,SAAS,CAAC;IAGrB,qBAAqB,EAAE,qBAAqB,CAAC;IAE7C,oBAAoB,EAAE,eAAe,CAAC;IACtC,aAAa,EAAE,SAAS,CAAC;IACzB,0BAA0B,EAAE,OAAO,CAAC;IAGpC,0BAA0B,EAAE,0BAA0B,CAAC;gBAElC,kBAAkB,EAAE,kBAAkB;IAI3D,QAAQ,IAAI,IAAI;IAmBhB,iBAAiB,IAAI,IAAI;IAWzB,kBAAkB,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO;IAOhD,qBAAqB,IAAI,OAAO;iCA7D5B,2BAA2B;2CAA3B,2BAA2B;CAoEvC"}
|
|
@@ -3,8 +3,10 @@ export * from './palette.service';
|
|
|
3
3
|
export * from './unsupported-field.component';
|
|
4
4
|
export * from './address';
|
|
5
5
|
export * from './base-field';
|
|
6
|
+
export * from './case-file-view';
|
|
6
7
|
export * from './case-link';
|
|
7
8
|
export * from './case-flag';
|
|
9
|
+
export * from './case-link';
|
|
8
10
|
export * from './collection';
|
|
9
11
|
export * from './complex';
|
|
10
12
|
export * from './date';
|
|
@@ -23,12 +25,15 @@ export * from './multi-select-list';
|
|
|
23
25
|
export * from './number';
|
|
24
26
|
export * from './order-summary';
|
|
25
27
|
export * from './organisation';
|
|
28
|
+
export * from './palette.module';
|
|
29
|
+
export * from './palette.service';
|
|
26
30
|
export * from './payment';
|
|
27
31
|
export * from './phone-uk';
|
|
28
32
|
export * from './text';
|
|
29
33
|
export * from './text-area';
|
|
34
|
+
export * from './unsupported-field.component';
|
|
30
35
|
export * from './utils';
|
|
31
|
-
export * from './yes-no';
|
|
32
36
|
export * from './waystopay';
|
|
37
|
+
export * from './yes-no';
|
|
33
38
|
export * from './judicial-user';
|
|
34
39
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,+BAA+B,CAAC;AAE9C,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,+BAA+B,CAAC;AAE9C,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,+BAA+B,CAAC;AAC9C,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC"}
|
|
@@ -53,53 +53,74 @@ 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 "./fixed-
|
|
78
|
-
import * as i77 from "./
|
|
79
|
-
import * as i78 from "./
|
|
80
|
-
import * as i79 from "
|
|
81
|
-
import * as i80 from "
|
|
82
|
-
import * as i81 from "
|
|
83
|
-
import * as i82 from "./
|
|
84
|
-
import * as i83 from "
|
|
85
|
-
import * as i84 from "
|
|
86
|
-
import * as i85 from "
|
|
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 "@angular/
|
|
97
|
-
import * as i96 from "@angular/
|
|
98
|
-
import * as i97 from "@
|
|
99
|
-
import * as i98 from "
|
|
56
|
+
import * as i55 from "./case-link/components/read-linked-cases.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 "./yes-no/write-yes-no-field.component";
|
|
73
|
+
import * as i72 from "./organisation/write-organisation-field.component";
|
|
74
|
+
import * as i73 from "./order-summary/write-order-summary-field.component";
|
|
75
|
+
import * as i74 from "./money-gbp/write-money-gbp-field.component";
|
|
76
|
+
import * as i75 from "./multi-select-list/write-multi-select-list-field.component";
|
|
77
|
+
import * as i76 from "./fixed-list/write-fixed-list-field.component";
|
|
78
|
+
import * as i77 from "./fixed-radio-list/write-fixed-radio-list-field.component";
|
|
79
|
+
import * as i78 from "./case-link/write-case-link-field.component";
|
|
80
|
+
import * as i79 from "./collection/write-collection-field.component";
|
|
81
|
+
import * as i80 from "./case-file-view/case-file-view-field.component";
|
|
82
|
+
import * as i81 from "./case-file-view/case-file-view-field-read.component";
|
|
83
|
+
import * as i82 from "./case-file-view/components/case-file-view-folder/case-file-view-folder.component";
|
|
84
|
+
import * as i83 from "./case-file-view/components/case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component";
|
|
85
|
+
import * as i84 from "./case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component";
|
|
86
|
+
import * as i85 from "./case-file-view/components/case-file-view-folder/case-file-view-folder-document-actions/case-file-view-folder-document-actions.component";
|
|
87
|
+
import * as i86 from "./case-file-view/components/case-file-view-folder-selector/case-file-view-folder-selector.component";
|
|
88
|
+
import * as i87 from "./case-link/components/linked-cases-table/linked-cases-to-table.component";
|
|
89
|
+
import * as i88 from "./case-link/components/linked-cases-table/linked-cases-from-table.component";
|
|
90
|
+
import * as i89 from "./case-link/components/before-you-start/before-you-start.component";
|
|
91
|
+
import * as i90 from "./case-link/components/link-cases/link-cases.component";
|
|
92
|
+
import * as i91 from "./case-link/components/check-your-answers/check-your-answers.component";
|
|
93
|
+
import * as i92 from "./case-link/components/write-linked-cases.component";
|
|
94
|
+
import * as i93 from "./case-link/components/unlink-cases/unlink-cases.component";
|
|
95
|
+
import * as i94 from "./case-link/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 "./utils/utils.module";
|
|
100
|
+
import * as i99 from "../../pipes/pipes.module";
|
|
101
|
+
import * as i100 from "../../../components/banners/banners.module";
|
|
102
|
+
import * as i101 from "../../../components/header/headers.module";
|
|
103
|
+
import * as i102 from "../../../components/footer/footers.module";
|
|
104
|
+
import * as i103 from "../../../components/body/body.module";
|
|
105
|
+
import * as i104 from "../../../components/form/form.module";
|
|
106
|
+
import * as i105 from "../../../components/tabs/tabs.module";
|
|
107
|
+
import * as i106 from "../../directives/substitutor/label-substitutor.module";
|
|
108
|
+
import * as i107 from "ngx-md";
|
|
109
|
+
import * as i108 from "@angular-material-components/datetime-picker";
|
|
110
|
+
import * as i109 from "@angular/material/form-field";
|
|
111
|
+
import * as i110 from "@angular/material/input";
|
|
112
|
+
import * as i111 from "@angular/material/datepicker";
|
|
113
|
+
import * as i112 from "@angular/material/autocomplete";
|
|
114
|
+
import * as i113 from "@angular/cdk/tree";
|
|
115
|
+
import * as i114 from "@angular/cdk/overlay";
|
|
116
|
+
import * as i115 from "@hmcts/ccpay-web-component";
|
|
117
|
+
import * as i116 from "@nicky-lenaers/ngx-scroll-to";
|
|
118
|
+
import * as i117 from "@angular/material/dialog";
|
|
119
|
+
import * as i118 from "@hmcts/media-viewer";
|
|
120
|
+
import * as i119 from "../../services/loading/loading.module";
|
|
100
121
|
export declare class PaletteModule {
|
|
101
122
|
static ɵfac: i0.ɵɵFactoryDef<PaletteModule, never>;
|
|
102
|
-
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.
|
|
123
|
+
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.ReadLinkedCasesComponent, 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.WriteYesNoFieldComponent, typeof i72.WriteOrganisationFieldComponent, typeof i59.WriteOrganisationComplexFieldComponent, typeof i73.WriteOrderSummaryFieldComponent, typeof i74.WriteMoneyGbpFieldComponent, typeof i64.WriteDateContainerFieldComponent, typeof i75.WriteMultiSelectListFieldComponent, typeof i76.WriteFixedListFieldComponent, typeof i77.WriteFixedRadioListFieldComponent, typeof i78.WriteCaseLinkFieldComponent, typeof i79.WriteCollectionFieldComponent, typeof i80.CaseFileViewFieldComponent, typeof i81.CaseFileViewFieldReadComponent, typeof i82.CaseFileViewFolderComponent, typeof i83.CaseFileViewFolderSortComponent, typeof i84.CaseFileViewOverlayMenuComponent, typeof i85.CaseFileViewFolderDocumentActionsComponent, typeof i86.CaseFileViewFolderSelectorComponent, typeof i87.LinkedCasesToTableComponent, typeof i88.LinkedCasesFromTableComponent, typeof i89.BeforeYouStartComponent, typeof i90.LinkCasesComponent, typeof i91.CheckYourAnswersComponent, typeof i92.WriteLinkedCasesComponent, typeof i93.UnLinkCasesComponent, typeof i94.NoLinkedCasesComponent], [typeof i95.CommonModule, typeof i96.RouterModule, typeof i97.FormsModule, typeof i97.ReactiveFormsModule, typeof i98.PaletteUtilsModule, typeof i99.PipesModule, typeof i100.BannersModule, typeof i101.HeadersModule, typeof i102.FootersModule, typeof i103.BodyModule, typeof i104.FormModule, typeof i105.TabsModule, typeof i106.LabelSubstitutorModule, typeof i107.NgxMdModule, typeof i108.NgxMatDatetimePickerModule, typeof i108.NgxMatTimepickerModule, typeof i108.NgxMatNativeDateModule, typeof i109.MatFormFieldModule, typeof i110.MatInputModule, typeof i111.MatDatepickerModule, typeof i112.MatAutocompleteModule, typeof i113.CdkTreeModule, typeof i114.OverlayModule, typeof i115.PaymentLibModule, typeof i116.ScrollToModule, typeof i117.MatDialogModule, typeof i118.MediaViewerModule, typeof i119.LoadingModule], [typeof i108.NgxMatDatetimePickerModule, typeof i108.NgxMatNativeDateModule, typeof i108.NgxMatTimepickerModule, typeof i105.TabsModule, typeof i98.PaletteUtilsModule, typeof i99.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.ReadLinkedCasesComponent, 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.WriteYesNoFieldComponent, typeof i72.WriteOrganisationFieldComponent, typeof i59.WriteOrganisationComplexFieldComponent, typeof i73.WriteOrderSummaryFieldComponent, typeof i74.WriteMoneyGbpFieldComponent, typeof i64.WriteDateContainerFieldComponent, typeof i75.WriteMultiSelectListFieldComponent, typeof i76.WriteFixedListFieldComponent, typeof i77.WriteFixedRadioListFieldComponent, typeof i78.WriteCaseLinkFieldComponent, typeof i79.WriteCollectionFieldComponent, typeof i80.CaseFileViewFieldComponent, typeof i81.CaseFileViewFieldReadComponent, typeof i82.CaseFileViewFolderComponent, typeof i83.CaseFileViewFolderSortComponent, typeof i84.CaseFileViewOverlayMenuComponent, typeof i85.CaseFileViewFolderDocumentActionsComponent, typeof i86.CaseFileViewFolderSelectorComponent, typeof i87.LinkedCasesToTableComponent, typeof i88.LinkedCasesFromTableComponent, typeof i89.BeforeYouStartComponent, typeof i90.LinkCasesComponent, typeof i91.CheckYourAnswersComponent, typeof i92.WriteLinkedCasesComponent, typeof i93.UnLinkCasesComponent, typeof i94.NoLinkedCasesComponent]>;
|
|
103
124
|
static ɵinj: i0.ɵɵInjectorDef<PaletteModule>;
|
|
104
125
|
}
|
|
105
126
|
//# 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,qBA0Ea,aAAa;iCAAb,aAAa;0CAAb,aAAa;kCAAb,aAAa;CACzB"}
|
|
@@ -2,7 +2,9 @@ import { Type } from '@angular/core';
|
|
|
2
2
|
import { CaseField } from '../../domain/definition/case-field.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PaletteService {
|
|
5
|
+
private readonly componentLauncherRegistry;
|
|
5
6
|
getFieldComponentClass(caseField: CaseField, write: boolean): Type<{}>;
|
|
7
|
+
private getComponentLauncherComponent;
|
|
6
8
|
static ɵfac: i0.ɵɵFactoryDef<PaletteService, never>;
|
|
7
9
|
static ɵprov: i0.ɵɵInjectableDef<PaletteService>;
|
|
8
10
|
}
|
|
@@ -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;;AAoDrE,qBACa,cAAc;IACzB,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAExC;IAEK,sBAAsB,CAAC,SAAS,EAAE,SAAS,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,CAAC,EAAE,CAAC;IAyE7E,OAAO,CAAC,6BAA6B;iCA9E1B,cAAc;qCAAd,cAAc;CAuF1B"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { CaseFileViewDocument } from './case-file-view-document.model';
|
|
2
|
+
export declare class CaseFileViewCategory {
|
|
3
|
+
category_id: string;
|
|
4
|
+
category_name: string;
|
|
5
|
+
category_order: number;
|
|
6
|
+
documents: CaseFileViewDocument[];
|
|
7
|
+
sub_categories: CaseFileViewCategory[];
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=case-file-view-category.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"case-file-view-category.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/case-file-view/case-file-view-category.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAEvE,qBAAa,oBAAoB;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,oBAAoB,EAAE,CAAC;IAClC,cAAc,EAAE,oBAAoB,EAAE,CAAC;CAC/C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"case-file-view-document.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/case-file-view/case-file-view-document.model.ts"],"names":[],"mappings":"AAAA,qBAAa,oBAAoB;IACxB,YAAY,EAAE,MAAM,CAAC;IACrB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,mBAAmB,EAAE,MAAM,CAAC;IAC5B,cAAc,EAAE,MAAM,CAAC;IACvB,gBAAgB,EAAE,MAAM,CAAC;CACjC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { CaseFileViewCategory } from './case-file-view-category.model';
|
|
2
|
+
import { CaseFileViewDocument } from './case-file-view-document.model';
|
|
3
|
+
/**
|
|
4
|
+
* DTO to provide typing of the response from the CCD Data Store API for Categories and Documents data.
|
|
5
|
+
* @see {@link https://tools.hmcts.net/confluence/x/0KSDX#CaseFileViewDocumentDataendpointLLD-SuccessResponsePayload} for full details
|
|
6
|
+
*/
|
|
7
|
+
export declare class CategoriesAndDocuments {
|
|
8
|
+
case_version: number;
|
|
9
|
+
categories: CaseFileViewCategory[];
|
|
10
|
+
uncategorised_documents: CaseFileViewDocument[];
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=categories-and-documents.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"categories-and-documents.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/case-file-view/categories-and-documents.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AACvE,OAAO,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAEvE;;;GAGG;AACH,qBAAa,sBAAsB;IAC1B,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,oBAAoB,EAAE,CAAC;IACnC,uBAAuB,EAAE,oBAAoB,EAAE,CAAC;CACxD"}
|
package/lib/shared/domain/case-file-view/document-tree-node/document-tree-node-type.model.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"document-tree-node-type.model.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/case-file-view/document-tree-node/document-tree-node-type.model.ts"],"names":[],"mappings":"AAAA,oBAAY,oBAAoB;IAC9B,MAAM,WAAW;IACjB,QAAQ,aAAa;CACtB"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { DocumentTreeNodeType } from './document-tree-node-type.model';
|
|
2
|
+
export declare class DocumentTreeNode {
|
|
3
|
+
name: string;
|
|
4
|
+
type: DocumentTreeNodeType;
|
|
5
|
+
children?: DocumentTreeNode[];
|
|
6
|
+
document_filename?: string;
|
|
7
|
+
document_binary_url?: string;
|
|
8
|
+
attribute_path?: string;
|
|
9
|
+
get childDocumentCount(): number;
|
|
10
|
+
sortChildrenAscending(): void;
|
|
11
|
+
sortChildrenDescending(): void;
|
|
12
|
+
get flattenedAll(): DocumentTreeNode[];
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=document-tree-node.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"document-tree-node.model.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/case-file-view/document-tree-node/document-tree-node.model.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAEvE,qBAAa,gBAAgB;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,oBAAoB,CAAC;IAE3B,QAAQ,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAC9B,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,cAAc,CAAC,EAAE,MAAM,CAAC;IAE/B,IACW,kBAAkB,WAe5B;IAEM,qBAAqB;IA0BrB,sBAAsB;IA0B7B,IAAW,YAAY,IAAI,gBAAgB,EAAE,CAoB5C;CACF"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from './case-file-view-category.model';
|
|
2
|
+
export * from './case-file-view-document.model';
|
|
3
|
+
export * from './categories-and-documents.model';
|
|
4
|
+
export * from './document-tree-node/document-tree-node.model';
|
|
5
|
+
export * from './document-tree-node/document-tree-node-type.model';
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/case-file-view/index.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAChD,cAAc,kCAAkC,CAAC;AACjD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,oDAAoD,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare type FieldTypeEnum = 'Text' | 'TextArea' | 'Postcode' | 'Number' | 'YesOrNo' | 'Date' | 'DateTime' | 'Email' | 'PhoneUK' | 'MoneyGBP' | 'FixedList' | 'DynamicList' | 'FixedRadioList' | 'DynamicRadioList' | 'Complex' | 'Collection' | 'MultiSelectList' | 'Document' | 'Label' | 'AddressGlobal' | 'AddressGlobalUK' | 'AddressUK' | 'CasePaymentHistoryViewer' | 'CaseHistoryViewer' | 'Organisation' | 'WaysToPay' | 'Flags' | 'FlagDetail' | 'FlagLauncher' | 'CaseFlag' | 'JudicialUserField';
|
|
1
|
+
export declare type FieldTypeEnum = 'Text' | 'TextArea' | 'Postcode' | 'Number' | 'YesOrNo' | 'Date' | 'DateTime' | 'Email' | 'PhoneUK' | 'MoneyGBP' | 'FixedList' | 'DynamicList' | 'FixedRadioList' | 'DynamicRadioList' | 'Complex' | 'Collection' | 'MultiSelectList' | 'Document' | 'Label' | 'AddressGlobal' | 'AddressGlobalUK' | 'AddressUK' | 'CasePaymentHistoryViewer' | 'CaseHistoryViewer' | 'Organisation' | 'WaysToPay' | 'ComponentLauncher' | 'Flags' | 'FlagDetail' | 'FlagLauncher' | 'CaseFlag' | 'CaseLink' | 'JudicialUserField';
|
|
2
2
|
//# sourceMappingURL=field-type-enum.model.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"field-type-enum.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/definition/field-type-enum.model.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa,GACvB,MAAM,GACJ,UAAU,GACV,UAAU,GACV,QAAQ,GACR,SAAS,GACT,MAAM,GACN,UAAU,GACV,OAAO,GACP,SAAS,GACT,UAAU,GACV,WAAW,GACX,aAAa,GACb,gBAAgB,GAChB,kBAAkB,GAClB,SAAS,GACT,YAAY,GACZ,iBAAiB,GACjB,UAAU,GACV,OAAO,GACP,eAAe,GACf,iBAAiB,GACjB,WAAW,GACX,0BAA0B,GAC1B,mBAAmB,GACnB,cAAc,GACd,WAAW,GACX,OAAO,GACP,YAAY,GACZ,cAAc,GACd,UAAU,GACV,mBAAmB,CAAC"}
|
|
1
|
+
{"version":3,"file":"field-type-enum.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/definition/field-type-enum.model.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa,GACvB,MAAM,GACJ,UAAU,GACV,UAAU,GACV,QAAQ,GACR,SAAS,GACT,MAAM,GACN,UAAU,GACV,OAAO,GACP,SAAS,GACT,UAAU,GACV,WAAW,GACX,aAAa,GACb,gBAAgB,GAChB,kBAAkB,GAClB,SAAS,GACT,YAAY,GACZ,iBAAiB,GACjB,UAAU,GACV,OAAO,GACP,eAAe,GACf,iBAAiB,GACjB,WAAW,GACX,0BAA0B,GAC1B,mBAAmB,GACnB,cAAc,GACd,WAAW,GACX,mBAAmB,GACnB,OAAO,GACP,YAAY,GACZ,cAAc,GACd,UAAU,GACV,UAAU,GACV,mBAAmB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ccd-read-fields-filter.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAI5D,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;;AAGrE,qBAGa,oBAAqB,YAAW,aAAa;IAExD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAKlC;IAEF,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,kBAAkB,
|
|
1
|
+
{"version":3,"file":"ccd-read-fields-filter.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAI5D,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;;AAGrE,qBAGa,oBAAqB,YAAW,aAAa;IAExD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAKlC;IAEF,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,kBAAkB,CAAkF;IAE5H,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAGlC;IAEF;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,cAAc;IAa7B,OAAO,CAAC,MAAM,CAAC,iBAAiB;IAoBhC,OAAO,CAAC,MAAM,CAAC,OAAO;IAKtB,OAAO,CAAC,MAAM,CAAC,UAAU;IAIzB,OAAO,CAAC,MAAM,CAAC,eAAe;IAK9B,OAAO,CAAC,MAAM,CAAC,SAAS;IAyBxB,OAAO,CAAC,MAAM,CAAC,QAAQ;IAUvB,OAAO,CAAC,MAAM,CAAC,uBAAuB;IAqBtC;;OAEG;IACI,SAAS,CACd,YAAY,EAAE,SAAS,EAAE,SAAS,CAAC,EAAE,OAAO,EAAE,KAAK,CAAC,EAAE,MAAM,EAC5D,WAAW,UAAQ,EAAE,SAAS,CAAC,EAAE,SAAS,GAAG,eAAe,EAAE,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,EAAE;iCA/HhF,oBAAoB;uCAApB,oBAAoB;CAiKhC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './case-reference';
|
|
2
2
|
export * from './case-title';
|
|
3
3
|
export * from './complex';
|
|
4
|
+
export * from './link-cases-reason-code';
|
|
4
5
|
export * from './pipes.module';
|
|
5
6
|
export * from './search-result/sorting/sort-search-result.pipe';
|
|
6
7
|
//# 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,gBAAgB,CAAC;AAC/B,cAAc,iDAAiD,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { LinkedCasesService } from '../../components/palette/case-link/services';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LinkCasesReasonValuePipe implements PipeTransform {
|
|
5
|
+
private readonly linkedCasesService;
|
|
6
|
+
constructor(linkedCasesService: LinkedCasesService);
|
|
7
|
+
transform(reasonCode: string): any;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDef<LinkCasesReasonValuePipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDefWithMeta<LinkCasesReasonValuePipe, "ccdLinkCasesReasonValue">;
|
|
10
|
+
}
|
|
11
|
+
//# 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,kBAAkB,EAAE,MAAM,6CAA6C,CAAC;;AAEjF,qBAIa,wBAAyB,YAAW,aAAa;IAEhD,OAAO,CAAC,QAAQ,CAAC,kBAAkB;gBAAlB,kBAAkB,EAAE,kBAAkB;IAE5D,SAAS,CAAC,UAAU,EAAE,MAAM,GAAG,GAAG;iCAJ9B,wBAAwB;uCAAxB,wBAAwB;CASpC"}
|
|
@@ -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,11 @@ 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 "@angular/common";
|
|
11
12
|
export declare class PipesModule {
|
|
12
13
|
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
|
|
14
|
+
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.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]>;
|
|
14
15
|
static ɵinj: i0.ɵɵInjectorDef<PipesModule>;
|
|
15
16
|
}
|
|
16
17
|
//# 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":";;;;;;;;;;;AAoBA,qBAWa,WAAW;iCAAX,WAAW;0CAAX,WAAW;kCAAX,WAAW;CAAG"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { AbstractAppConfig } from '../../../app.config';
|
|
3
|
+
import { CategoriesAndDocuments } from '../../domain/case-file-view';
|
|
4
|
+
import { HttpService } from '../http';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CaseFileViewService {
|
|
7
|
+
private readonly http;
|
|
8
|
+
private readonly appConfig;
|
|
9
|
+
constructor(http: HttpService, appConfig: AbstractAppConfig);
|
|
10
|
+
/**
|
|
11
|
+
* Retrieves the categories and documents for a case.
|
|
12
|
+
*
|
|
13
|
+
* @param caseRef 16-digit Case Reference number of the case
|
|
14
|
+
* @returns An `Observable` of the `CategoriesAndDocuments` for the case
|
|
15
|
+
*/
|
|
16
|
+
getCategoriesAndDocuments(caseRef: string): Observable<CategoriesAndDocuments>;
|
|
17
|
+
updateDocumentCategory(caseRef: string, caseVersion: number, attributePath: string, categoryId: string): Observable<CategoriesAndDocuments>;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDef<CaseFileViewService, never>;
|
|
19
|
+
static ɵprov: i0.ɵɵInjectableDef<CaseFileViewService>;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=case-file-view.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"case-file-view.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/case-file-view/case-file-view.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAM,MAAM,MAAM,CAAC;AACtC,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AACrE,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;;AAEtC,qBACa,mBAAmB;IAE5B,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,SAAS;gBADT,IAAI,EAAE,WAAW,EACjB,SAAS,EAAE,iBAAiB;IAG/C;;;;;OAKG;IACI,yBAAyB,CAAC,OAAO,EAAE,MAAM,GAAG,UAAU,CAAC,sBAAsB,CAAC;IAY9E,sBAAsB,CAAC,OAAO,EAAE,MAAM,EACf,WAAW,EAAE,MAAM,EACnB,aAAa,EAAE,MAAM,EACrB,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,sBAAsB,CAAC;iCA3B1E,mBAAmB;qCAAnB,mBAAmB;CA2C/B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/case-file-view/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export interface LovRefDataModel {
|
|
5
|
+
category_key: string;
|
|
6
|
+
key: string;
|
|
7
|
+
value_en: string;
|
|
8
|
+
value_cy: string;
|
|
9
|
+
hint_text_en: string;
|
|
10
|
+
hint_text_cy: string;
|
|
11
|
+
lov_order: number;
|
|
12
|
+
parent_category: string;
|
|
13
|
+
parent_key: string;
|
|
14
|
+
active_flag: string;
|
|
15
|
+
child_nodes?: LovRefDataModel[];
|
|
16
|
+
from?: string;
|
|
17
|
+
selected?: boolean;
|
|
18
|
+
}
|
|
19
|
+
export interface LovRefDataByServiceModel {
|
|
20
|
+
list_of_values: LovRefDataModel[];
|
|
21
|
+
}
|
|
22
|
+
export declare class CommonDataService {
|
|
23
|
+
private readonly http;
|
|
24
|
+
constructor(http: HttpClient);
|
|
25
|
+
getRefData(url: string): Observable<LovRefDataByServiceModel>;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDef<CommonDataService, never>;
|
|
27
|
+
static ɵprov: i0.ɵɵInjectableDef<CommonDataService>;
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=common-data-service.d.ts.map
|
|
@@ -0,0 +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;IAC5B,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;AAEH,qBACa,iBAAiB;IAEd,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAAJ,IAAI,EAAE,UAAU;IAEtC,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,UAAU,CAAC,wBAAwB,CAAC;iCAJ3D,iBAAiB;qCAAjB,iBAAiB;CAU7B"}
|