@hmcts/ccd-case-ui-toolkit 5.0.24-case-file-view-search-document-exceptions → 5.0.24-case-file-sort-documents
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 +5436 -5169
- 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/components/case-viewer/case-full-access-view/case-full-access-view.component.js +2 -2
- package/esm2015/lib/shared/components/palette/case-file-view/case-file-view-field.component.js +4 -4
- 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 +44 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.js +302 -119
- package/esm2015/lib/shared/components/palette/case-file-view/components/index.js +5 -1
- 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 +88 -0
- package/esm2015/lib/shared/components/palette/case-file-view/components/shared/index.js +2 -0
- package/esm2015/lib/shared/components/palette/palette.module.js +18 -5
- package/esm2015/lib/shared/components/palette/utils/is-compound.pipe.js +2 -2
- 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 +2 -2
- package/esm2015/public-api.js +3 -1
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js +4545 -4316
- package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -1
- package/lib/shared/components/palette/case-file-view/case-file-view-field.component.d.ts +1 -1
- package/lib/shared/components/palette/case-file-view/case-file-view-field.component.d.ts.map +1 -1
- 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 +14 -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 +6 -9
- package/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.d.ts.map +1 -1
- package/lib/shared/components/palette/case-file-view/components/index.d.ts +4 -0
- package/lib/shared/components/palette/case-file-view/components/index.d.ts.map +1 -1
- 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 +15 -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/palette.module.d.ts +25 -22
- package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
- package/lib/shared/domain/case-file-view/document-tree-node/document-tree-node.model.d.ts +10 -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 +1 -1
- package/lib/shared/domain/case-file-view/index.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
- package/esm2015/lib/shared/components/palette/case-file-view/test-data/categories-and-documents-test-data.js +0 -178
- package/esm2015/lib/shared/domain/case-file-view/document-tree-node.model.js +0 -6
- package/lib/shared/components/palette/case-file-view/test-data/categories-and-documents-test-data.d.ts +0 -3
- package/lib/shared/components/palette/case-file-view/test-data/categories-and-documents-test-data.d.ts.map +0 -1
- package/lib/shared/domain/case-file-view/document-tree-node.model.d.ts +0 -11
- package/lib/shared/domain/case-file-view/document-tree-node.model.d.ts.map +0 -1
|
@@ -2,7 +2,7 @@ import { AfterViewInit, ElementRef, OnInit } from '@angular/core';
|
|
|
2
2
|
import { ActivatedRoute } from '@angular/router';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { CategoriesAndDocuments } from '../../../domain/case-file-view';
|
|
5
|
-
import { CaseFileViewService } from '../../../services
|
|
5
|
+
import { CaseFileViewService } from '../../../services';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class CaseFileViewFieldComponent implements OnInit, AfterViewInit {
|
|
8
8
|
private readonly elementRef;
|
package/lib/shared/components/palette/case-file-view/case-file-view-field.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-file-view-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-file-view/case-file-view-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAC7E,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAa,UAAU,EAAE,MAAM,MAAM,CAAC;AAE7C,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AACxE,OAAO,EAAE,mBAAmB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"case-file-view-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-file-view/case-file-view-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAC7E,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAa,UAAU,EAAE,MAAM,MAAM,CAAC;AAE7C,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AACxE,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;;AAExD,qBAKa,0BAA2B,YAAW,MAAM,EAAE,aAAa;IAI1D,OAAO,CAAC,QAAQ,CAAC,UAAU;IAC3B,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,mBAAmB;IALvC,gBAAuB,aAAa,SAAS;IACtC,uBAAuB,EAAE,UAAU,CAAC,sBAAsB,CAAC,CAAC;gBAEtC,UAAU,EAAE,UAAU,EACtB,KAAK,EAAE,cAAc,EAC9B,mBAAmB,EAAE,mBAAmB;IAGrD,QAAQ,IAAI,IAAI;IAKhB,eAAe,IAAI,IAAI;iCAdnB,0BAA0B;2CAA1B,0BAA0B;CA2CtC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { CaseFileViewOverlayMenuItem } from '../../shared/case-file-view-overlay-menu/case-file-view-overlay-menu-item.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CaseFileViewFolderSortComponent implements OnInit {
|
|
5
|
+
isOpen: boolean;
|
|
6
|
+
sortAscending: EventEmitter<void>;
|
|
7
|
+
sortDescending: EventEmitter<void>;
|
|
8
|
+
overlayMenuItems: CaseFileViewOverlayMenuItem[];
|
|
9
|
+
constructor();
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDef<CaseFileViewFolderSortComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<CaseFileViewFolderSortComponent, "ccd-case-file-view-folder-sort", never, {}, { "sortAscending": "sortAscending"; "sortDescending": "sortDescending"; }, never, never>;
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=case-file-view-folder-sort.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"case-file-view-folder-sort.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAAU,MAAM,eAAe,CAAC;AAC/E,OAAO,EAAE,2BAA2B,EAAE,MAAM,iFAAiF,CAAC;;AAE9H,qBAKa,+BAAgC,YAAW,MAAM;IACrD,MAAM,UAAS;IAEL,aAAa,qBAA4B;IACzC,cAAc,qBAA4B;IAEpD,gBAAgB,EAAE,2BAA2B,EAAE,CAGpD;;IAGK,QAAQ;iCAZJ,+BAA+B;2CAA/B,+BAA+B;CAc3C"}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
|
-
import { NestedTreeControl } from '@angular/cdk/tree';
|
|
1
|
+
import { CdkTree, NestedTreeControl } from '@angular/cdk/tree';
|
|
2
2
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
3
|
-
import { FormControl, FormGroup } from '@angular/forms';
|
|
4
3
|
import { Observable, Subscription } from 'rxjs';
|
|
5
4
|
import { CaseFileViewCategory, CaseFileViewDocument, CategoriesAndDocuments, DocumentTreeNode } from '../../../../../domain/case-file-view';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class CaseFileViewFolderComponent implements OnInit, OnDestroy {
|
|
8
7
|
private static readonly UNCATEGORISED_DOCUMENTS_TITLE;
|
|
9
|
-
private static readonly DOCUMENT_SEARCH_FORM_CONTROL_NAME;
|
|
10
|
-
private static readonly MINIMUM_SEARCH_CHARACTERS;
|
|
11
8
|
categoriesAndDocuments: Observable<CategoriesAndDocuments>;
|
|
12
9
|
nestedTreeControl: NestedTreeControl<DocumentTreeNode>;
|
|
13
10
|
nestedDataSource: DocumentTreeNode[];
|
|
14
11
|
categories: CaseFileViewCategory[];
|
|
15
12
|
categoriesAndDocumentsSubscription: Subscription;
|
|
16
|
-
|
|
17
|
-
documentSearchFormControl: FormControl;
|
|
18
|
-
documentTreeData: DocumentTreeNode[];
|
|
19
|
-
documentFilterSubscription: Subscription;
|
|
13
|
+
tree: CdkTree<DocumentTreeNode>;
|
|
20
14
|
private getChildren;
|
|
21
15
|
nestedChildren: (_: number, nodeData: DocumentTreeNode) => DocumentTreeNode[];
|
|
22
16
|
constructor();
|
|
@@ -24,8 +18,11 @@ export declare class CaseFileViewFolderComponent implements OnInit, OnDestroy {
|
|
|
24
18
|
generateTreeData(categories: CaseFileViewCategory[]): DocumentTreeNode[];
|
|
25
19
|
getDocuments(documents: CaseFileViewDocument[]): DocumentTreeNode[];
|
|
26
20
|
getUncategorisedDocuments(uncategorisedDocuments: CaseFileViewDocument[]): DocumentTreeNode;
|
|
27
|
-
|
|
21
|
+
sortDataSourceAscAlphabetically(): void;
|
|
22
|
+
sortDataSourceDescAlphabetically(): void;
|
|
28
23
|
ngOnDestroy(): void;
|
|
24
|
+
updateNodeData(data: DocumentTreeNode[]): void;
|
|
25
|
+
loadCategories(): CaseFileViewCategory[];
|
|
29
26
|
static ɵfac: i0.ɵɵFactoryDef<CaseFileViewFolderComponent, never>;
|
|
30
27
|
static ɵcmp: i0.ɵɵComponentDefWithMeta<CaseFileViewFolderComponent, "ccd-case-file-view-folder", never, { "categoriesAndDocuments": "categoriesAndDocuments"; }, {}, never, never>;
|
|
31
28
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"case-file-view-folder.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"case-file-view-folder.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAC/D,OAAO,EAAoB,SAAS,EAAE,MAAM,EAAa,MAAM,eAAe,CAAC;AAC/E,OAAO,EAAE,UAAU,EAAM,YAAY,EAAE,MAAM,MAAM,CAAC;AACpD,OAAO,EAAE,oBAAoB,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;;AAE5I,qBAKa,2BAA4B,YAAW,MAAM,EAAE,SAAS;IACnE,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,6BAA6B,CAA6B;IAElE,sBAAsB,EAAE,UAAU,CAAC,sBAAsB,CAAC,CAAC;IAEpE,iBAAiB,EAAE,iBAAiB,CAAC,gBAAgB,CAAC,CAAC;IACvD,gBAAgB,EAAE,gBAAgB,EAAE,CAAC;IACrC,UAAU,EAAE,oBAAoB,EAAE,CAAM;IACxC,kCAAkC,EAAE,YAAY,CAAC;IAEd,IAAI,EAAE,OAAO,CAAC,gBAAgB,CAAC,CAAC;IAE1E,OAAO,CAAC,WAAW,CAAiD;IAC7D,cAAc,MAAO,MAAM,YAAY,gBAAgB,wBAAuB;;IAM9E,QAAQ,IAAI,IAAI;IAgBhB,gBAAgB,CAAC,UAAU,EAAE,oBAAoB,EAAE,GAAG,gBAAgB,EAAE;IAcxE,YAAY,CAAC,SAAS,EAAE,oBAAoB,EAAE,GAAG,gBAAgB,EAAE;IAanE,yBAAyB,CAAC,sBAAsB,EAAE,oBAAoB,EAAE,GAAG,gBAAgB;IAkB3F,+BAA+B;IAc/B,gCAAgC;IAQhC,WAAW,IAAI,IAAI;IAMnB,cAAc,CAAC,IAAI,EAAE,gBAAgB,EAAE;IAyBvC,cAAc,IAAI,oBAAoB,EAAE;iCArIpC,2BAA2B;2CAA3B,2BAA2B;CAmTvC"}
|
|
@@ -1,2 +1,6 @@
|
|
|
1
1
|
export * from './case-file-view-folder/case-file-view-folder.component';
|
|
2
|
+
export * from './case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component';
|
|
3
|
+
export * from './shared';
|
|
4
|
+
export * from './case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component';
|
|
5
|
+
export * from './shared';
|
|
2
6
|
//# 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/case-file-view/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,yDAAyD,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-file-view/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,yDAAyD,CAAC;AACxE,cAAc,yFAAyF,CAAC;AAExG,cAAc,UAAU,CAAC;AACzB,cAAc,yFAAyF,CAAC;AAExG,cAAc,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"case-file-view-overlay-menu-item.model.d.ts","sourceRoot":"","sources":["../../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu-item.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,2BAA2B;IAC1C,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,IAAI,IAAI,CAAC;CAClB"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { CdkOverlayOrigin } from '@angular/cdk/overlay';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import { CaseFileViewOverlayMenuItem } from './case-file-view-overlay-menu-item.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CaseFileViewOverlayMenuComponent {
|
|
6
|
+
title: string;
|
|
7
|
+
menuItems: CaseFileViewOverlayMenuItem[];
|
|
8
|
+
cdkOverlayOrigin: CdkOverlayOrigin;
|
|
9
|
+
isOpen: boolean;
|
|
10
|
+
isOpenChange: EventEmitter<boolean>;
|
|
11
|
+
closeOverlay(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDef<CaseFileViewOverlayMenuComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<CaseFileViewOverlayMenuComponent, "ccd-case-file-view-overlay-menu", never, { "title": "title"; "menuItems": "menuItems"; "cdkOverlayOrigin": "cdkOverlayOrigin"; "isOpen": "isOpen"; }, { "isOpenChange": "isOpenChange"; }, never, never>;
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=case-file-view-overlay-menu.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"case-file-view-overlay-menu.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,EAAa,YAAY,EAAiB,MAAM,eAAe,CAAC;AACvE,OAAO,EAAE,2BAA2B,EAAE,MAAM,0CAA0C,CAAC;;AAEvF,qBAKa,gCAAgC;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,2BAA2B,EAAE,CAAC;IAEzC,gBAAgB,EAAE,gBAAgB,CAAC;IACnC,MAAM,UAAS;IACd,YAAY,wBAA+B;IAErD,YAAY,IAAI,IAAI;iCARhB,gCAAgC;2CAAhC,gCAAgC;CAc5C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-file-view/components/shared/index.ts"],"names":[],"mappings":"AAAA,cAAc,qEAAqE,CAAC"}
|
|
@@ -69,30 +69,33 @@ import * as i67 from "./case-link/write-case-link-field.component";
|
|
|
69
69
|
import * as i68 from "./collection/write-collection-field.component";
|
|
70
70
|
import * as i69 from "./case-file-view/case-file-view-field.component";
|
|
71
71
|
import * as i70 from "./case-file-view/components/case-file-view-folder/case-file-view-folder.component";
|
|
72
|
-
import * as i71 from "
|
|
73
|
-
import * as i72 from "
|
|
74
|
-
import * as i73 from "@angular/
|
|
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 "../../../components/
|
|
80
|
-
import * as i79 from "../../../components/
|
|
81
|
-
import * as i80 from "../../../components/
|
|
82
|
-
import * as i81 from "../../../components/
|
|
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 "@angular
|
|
88
|
-
import * as i87 from "@angular/material/
|
|
89
|
-
import * as i88 from "@angular/material/
|
|
90
|
-
import * as i89 from "@angular/
|
|
91
|
-
import * as i90 from "@
|
|
92
|
-
import * as i91 from "@
|
|
72
|
+
import * as i71 from "./case-file-view/components/case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component";
|
|
73
|
+
import * as i72 from "./case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component";
|
|
74
|
+
import * as i73 from "@angular/common";
|
|
75
|
+
import * as i74 from "@angular/router";
|
|
76
|
+
import * as i75 from "@angular/forms";
|
|
77
|
+
import * as i76 from "./utils/utils.module";
|
|
78
|
+
import * as i77 from "../../pipes/pipes.module";
|
|
79
|
+
import * as i78 from "../../../components/banners/banners.module";
|
|
80
|
+
import * as i79 from "../../../components/header/headers.module";
|
|
81
|
+
import * as i80 from "../../../components/footer/footers.module";
|
|
82
|
+
import * as i81 from "../../../components/body/body.module";
|
|
83
|
+
import * as i82 from "../../../components/form/form.module";
|
|
84
|
+
import * as i83 from "../../../components/tabs/tabs.module";
|
|
85
|
+
import * as i84 from "../../directives/substitutor/label-substitutor.module";
|
|
86
|
+
import * as i85 from "ngx-md";
|
|
87
|
+
import * as i86 from "@angular-material-components/datetime-picker";
|
|
88
|
+
import * as i87 from "@angular/material/form-field";
|
|
89
|
+
import * as i88 from "@angular/material/input";
|
|
90
|
+
import * as i89 from "@angular/material/datepicker";
|
|
91
|
+
import * as i90 from "@angular/material/autocomplete";
|
|
92
|
+
import * as i91 from "@angular/cdk/tree";
|
|
93
|
+
import * as i92 from "@angular/cdk/overlay";
|
|
94
|
+
import * as i93 from "@hmcts/ccpay-web-component";
|
|
95
|
+
import * as i94 from "@nicky-lenaers/ngx-scroll-to";
|
|
93
96
|
export declare class PaletteModule {
|
|
94
97
|
static ɵfac: i0.ɵɵFactoryDef<PaletteModule, never>;
|
|
95
|
-
static ɵmod: i0.ɵɵNgModuleDefWithMeta<PaletteModule, [typeof i1.FixedListPipe, typeof i2.FixedRadioListPipe, typeof i3.DynamicListPipe, typeof i4.DynamicRadioListPipe, typeof i5.DocumentUrlPipe, typeof i6.UnsupportedFieldComponent, typeof i7.DatetimePickerComponent, typeof i8.WaysToPayFieldComponent, typeof i9.MarkdownComponent, typeof i10.FieldReadComponent, typeof i11.FieldWriteComponent, typeof i12.FieldReadLabelComponent, typeof i13.LabelFieldComponent, typeof i14.CasePaymentHistoryViewerFieldComponent, typeof i15.MoneyGbpInputComponent, typeof i16.CaseHistoryViewerFieldComponent, typeof i17.EventLogComponent, typeof i18.EventLogDetailsComponent, typeof i19.EventLogTableComponent, typeof i20.ReadTextFieldComponent, typeof i21.ReadTextAreaFieldComponent, typeof i22.ReadNumberFieldComponent, typeof i23.ReadEmailFieldComponent, typeof i24.ReadPhoneUKFieldComponent, typeof i25.ReadDateFieldComponent, typeof i26.ReadCollectionFieldComponent, typeof i27.ReadDocumentFieldComponent, typeof i28.ReadJudicialUserFieldComponent, typeof i29.ReadYesNoFieldComponent, typeof i30.ReadOrganisationFieldComponent, typeof i31.ReadOrganisationFieldTableComponent, typeof i32.ReadOrganisationFieldRawComponent, typeof i33.ReadOrderSummaryFieldComponent, typeof i34.ReadOrderSummaryRowComponent, typeof i35.ReadMoneyGbpFieldComponent, typeof i36.ReadMultiSelectListFieldComponent, typeof i37.ReadDynamicListFieldComponent, typeof i38.ReadFixedListFieldComponent, typeof i39.ReadFixedRadioListFieldComponent, typeof i40.ReadDynamicRadioListFieldComponent, typeof i41.ReadCaseLinkFieldComponent, typeof i42.ReadComplexFieldComponent, typeof i43.ReadComplexFieldRawComponent, typeof i44.ReadComplexFieldTableComponent, typeof i45.ReadComplexFieldCollectionTableComponent, typeof i46.WriteJudicialUserFieldComponent, typeof i47.WriteAddressFieldComponent, typeof i48.WriteComplexFieldComponent, typeof i49.WriteOrganisationComplexFieldComponent, typeof i50.WriteDocumentFieldComponent, typeof i51.WriteDynamicListFieldComponent, typeof i52.WriteDynamicRadioListFieldComponent, typeof i53.WriteTextFieldComponent, typeof i54.WriteDateContainerFieldComponent, typeof i55.WriteTextAreaFieldComponent, typeof i56.WritePhoneUKFieldComponent, typeof i57.WriteNumberFieldComponent, typeof i58.WriteEmailFieldComponent, typeof i59.WriteDateFieldComponent, typeof i60.WriteYesNoFieldComponent, typeof i61.WriteOrganisationFieldComponent, typeof i49.WriteOrganisationComplexFieldComponent, typeof i62.WriteOrderSummaryFieldComponent, typeof i63.WriteMoneyGbpFieldComponent, typeof i54.WriteDateContainerFieldComponent, typeof i64.WriteMultiSelectListFieldComponent, typeof i65.WriteFixedListFieldComponent, typeof i66.WriteFixedRadioListFieldComponent, typeof i67.WriteCaseLinkFieldComponent, typeof i68.WriteCollectionFieldComponent, typeof i69.CaseFileViewFieldComponent, typeof i70.CaseFileViewFolderComponent], [typeof
|
|
98
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<PaletteModule, [typeof i1.FixedListPipe, typeof i2.FixedRadioListPipe, typeof i3.DynamicListPipe, typeof i4.DynamicRadioListPipe, typeof i5.DocumentUrlPipe, typeof i6.UnsupportedFieldComponent, typeof i7.DatetimePickerComponent, typeof i8.WaysToPayFieldComponent, typeof i9.MarkdownComponent, typeof i10.FieldReadComponent, typeof i11.FieldWriteComponent, typeof i12.FieldReadLabelComponent, typeof i13.LabelFieldComponent, typeof i14.CasePaymentHistoryViewerFieldComponent, typeof i15.MoneyGbpInputComponent, typeof i16.CaseHistoryViewerFieldComponent, typeof i17.EventLogComponent, typeof i18.EventLogDetailsComponent, typeof i19.EventLogTableComponent, typeof i20.ReadTextFieldComponent, typeof i21.ReadTextAreaFieldComponent, typeof i22.ReadNumberFieldComponent, typeof i23.ReadEmailFieldComponent, typeof i24.ReadPhoneUKFieldComponent, typeof i25.ReadDateFieldComponent, typeof i26.ReadCollectionFieldComponent, typeof i27.ReadDocumentFieldComponent, typeof i28.ReadJudicialUserFieldComponent, typeof i29.ReadYesNoFieldComponent, typeof i30.ReadOrganisationFieldComponent, typeof i31.ReadOrganisationFieldTableComponent, typeof i32.ReadOrganisationFieldRawComponent, typeof i33.ReadOrderSummaryFieldComponent, typeof i34.ReadOrderSummaryRowComponent, typeof i35.ReadMoneyGbpFieldComponent, typeof i36.ReadMultiSelectListFieldComponent, typeof i37.ReadDynamicListFieldComponent, typeof i38.ReadFixedListFieldComponent, typeof i39.ReadFixedRadioListFieldComponent, typeof i40.ReadDynamicRadioListFieldComponent, typeof i41.ReadCaseLinkFieldComponent, typeof i42.ReadComplexFieldComponent, typeof i43.ReadComplexFieldRawComponent, typeof i44.ReadComplexFieldTableComponent, typeof i45.ReadComplexFieldCollectionTableComponent, typeof i46.WriteJudicialUserFieldComponent, typeof i47.WriteAddressFieldComponent, typeof i48.WriteComplexFieldComponent, typeof i49.WriteOrganisationComplexFieldComponent, typeof i50.WriteDocumentFieldComponent, typeof i51.WriteDynamicListFieldComponent, typeof i52.WriteDynamicRadioListFieldComponent, typeof i53.WriteTextFieldComponent, typeof i54.WriteDateContainerFieldComponent, typeof i55.WriteTextAreaFieldComponent, typeof i56.WritePhoneUKFieldComponent, typeof i57.WriteNumberFieldComponent, typeof i58.WriteEmailFieldComponent, typeof i59.WriteDateFieldComponent, typeof i60.WriteYesNoFieldComponent, typeof i61.WriteOrganisationFieldComponent, typeof i49.WriteOrganisationComplexFieldComponent, typeof i62.WriteOrderSummaryFieldComponent, typeof i63.WriteMoneyGbpFieldComponent, typeof i54.WriteDateContainerFieldComponent, typeof i64.WriteMultiSelectListFieldComponent, typeof i65.WriteFixedListFieldComponent, typeof i66.WriteFixedRadioListFieldComponent, typeof i67.WriteCaseLinkFieldComponent, typeof i68.WriteCollectionFieldComponent, typeof i69.CaseFileViewFieldComponent, typeof i70.CaseFileViewFolderComponent, typeof i71.CaseFileViewFolderSortComponent, typeof i72.CaseFileViewOverlayMenuComponent, typeof i72.CaseFileViewOverlayMenuComponent], [typeof i73.CommonModule, typeof i74.RouterModule, typeof i75.FormsModule, typeof i75.ReactiveFormsModule, typeof i76.PaletteUtilsModule, typeof i77.PipesModule, typeof i78.BannersModule, typeof i79.HeadersModule, typeof i80.FootersModule, typeof i81.BodyModule, typeof i82.FormModule, typeof i83.TabsModule, typeof i84.LabelSubstitutorModule, typeof i85.NgxMdModule, typeof i86.NgxMatDatetimePickerModule, typeof i86.NgxMatTimepickerModule, typeof i86.NgxMatNativeDateModule, typeof i87.MatFormFieldModule, typeof i88.MatInputModule, typeof i89.MatDatepickerModule, typeof i90.MatAutocompleteModule, typeof i91.CdkTreeModule, typeof i92.OverlayModule, typeof i93.PaymentLibModule, typeof i94.ScrollToModule], [typeof i86.NgxMatDatetimePickerModule, typeof i86.NgxMatNativeDateModule, typeof i86.NgxMatTimepickerModule, typeof i83.TabsModule, typeof i76.PaletteUtilsModule, typeof i77.PipesModule, typeof i6.UnsupportedFieldComponent, typeof i7.DatetimePickerComponent, typeof i8.WaysToPayFieldComponent, typeof i9.MarkdownComponent, typeof i10.FieldReadComponent, typeof i11.FieldWriteComponent, typeof i12.FieldReadLabelComponent, typeof i13.LabelFieldComponent, typeof i14.CasePaymentHistoryViewerFieldComponent, typeof i15.MoneyGbpInputComponent, typeof i16.CaseHistoryViewerFieldComponent, typeof i17.EventLogComponent, typeof i18.EventLogDetailsComponent, typeof i19.EventLogTableComponent, typeof i20.ReadTextFieldComponent, typeof i21.ReadTextAreaFieldComponent, typeof i22.ReadNumberFieldComponent, typeof i23.ReadEmailFieldComponent, typeof i24.ReadPhoneUKFieldComponent, typeof i25.ReadDateFieldComponent, typeof i26.ReadCollectionFieldComponent, typeof i27.ReadDocumentFieldComponent, typeof i28.ReadJudicialUserFieldComponent, typeof i29.ReadYesNoFieldComponent, typeof i30.ReadOrganisationFieldComponent, typeof i31.ReadOrganisationFieldTableComponent, typeof i32.ReadOrganisationFieldRawComponent, typeof i33.ReadOrderSummaryFieldComponent, typeof i34.ReadOrderSummaryRowComponent, typeof i35.ReadMoneyGbpFieldComponent, typeof i36.ReadMultiSelectListFieldComponent, typeof i37.ReadDynamicListFieldComponent, typeof i38.ReadFixedListFieldComponent, typeof i39.ReadFixedRadioListFieldComponent, typeof i40.ReadDynamicRadioListFieldComponent, typeof i41.ReadCaseLinkFieldComponent, typeof i42.ReadComplexFieldComponent, typeof i43.ReadComplexFieldRawComponent, typeof i44.ReadComplexFieldTableComponent, typeof i45.ReadComplexFieldCollectionTableComponent, typeof i46.WriteJudicialUserFieldComponent, typeof i47.WriteAddressFieldComponent, typeof i48.WriteComplexFieldComponent, typeof i49.WriteOrganisationComplexFieldComponent, typeof i50.WriteDocumentFieldComponent, typeof i51.WriteDynamicListFieldComponent, typeof i52.WriteDynamicRadioListFieldComponent, typeof i53.WriteTextFieldComponent, typeof i54.WriteDateContainerFieldComponent, typeof i55.WriteTextAreaFieldComponent, typeof i56.WritePhoneUKFieldComponent, typeof i57.WriteNumberFieldComponent, typeof i58.WriteEmailFieldComponent, typeof i59.WriteDateFieldComponent, typeof i60.WriteYesNoFieldComponent, typeof i61.WriteOrganisationFieldComponent, typeof i49.WriteOrganisationComplexFieldComponent, typeof i62.WriteOrderSummaryFieldComponent, typeof i63.WriteMoneyGbpFieldComponent, typeof i54.WriteDateContainerFieldComponent, typeof i64.WriteMultiSelectListFieldComponent, typeof i65.WriteFixedListFieldComponent, typeof i66.WriteFixedRadioListFieldComponent, typeof i67.WriteCaseLinkFieldComponent, typeof i68.WriteCollectionFieldComponent, typeof i69.CaseFileViewFieldComponent, typeof i70.CaseFileViewFolderComponent, typeof i71.CaseFileViewFolderSortComponent, typeof i72.CaseFileViewOverlayMenuComponent]>;
|
|
96
99
|
static ɵinj: i0.ɵɵInjectorDef<PaletteModule>;
|
|
97
100
|
}
|
|
98
101
|
//# 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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsJA,qBA0Da,aAAa;iCAAb,aAAa;0CAAb,aAAa;kCAAb,aAAa;CACzB"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare class DocumentTreeNode {
|
|
2
|
+
name: string;
|
|
3
|
+
type: 'document' | 'category';
|
|
4
|
+
children?: DocumentTreeNode[];
|
|
5
|
+
get childDocumentCount(): number;
|
|
6
|
+
sortChildrenAscending(): void;
|
|
7
|
+
sortChildrenDescending(): void;
|
|
8
|
+
get flattenedAll(): DocumentTreeNode[];
|
|
9
|
+
}
|
|
10
|
+
//# 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":"AAEA,qBAAa,gBAAgB;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,UAAU,GAAG,UAAU,CAAC;IAE9B,QAAQ,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAErC,IACW,kBAAkB,WAe5B;IAEM,qBAAqB;IA0BrB,sBAAsB;IA0B7B,IAAW,YAAY,IAAI,gBAAgB,EAAE,CAqB5C;CACF"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from './case-file-view-category.model';
|
|
2
2
|
export * from './case-file-view-document.model';
|
|
3
3
|
export * from './categories-and-documents.model';
|
|
4
|
-
export * from './document-tree-node.model';
|
|
4
|
+
export * from './document-tree-node/document-tree-node.model';
|
|
5
5
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +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,
|
|
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"}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export * from './lib/components';
|
|
2
2
|
export * from './lib/shared';
|
|
3
3
|
export * from './lib/app.config';
|
|
4
|
+
export * from './lib/shared/components/palette/case-file-view/case-file-view-field.component';
|
|
5
|
+
export * from './lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component';
|
|
4
6
|
//# sourceMappingURL=public-api.d.ts.map
|
package/public-api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../projects/ccd-case-ui-toolkit/src/public-api.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../projects/ccd-case-ui-toolkit/src/public-api.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,+EAA+E,CAAC;AAC9F,cAAc,iHAAiH,CAAC"}
|
|
@@ -1,178 +0,0 @@
|
|
|
1
|
-
export const categoriesAndDocuments = {
|
|
2
|
-
case_version: 1,
|
|
3
|
-
categories: [
|
|
4
|
-
{
|
|
5
|
-
category_id: 'Beers',
|
|
6
|
-
category_name: 'Beers',
|
|
7
|
-
category_order: 1,
|
|
8
|
-
documents: [
|
|
9
|
-
{
|
|
10
|
-
document_url: '/test',
|
|
11
|
-
document_filename: 'Beers encyclopedia',
|
|
12
|
-
document_binary_url: '/test/binary',
|
|
13
|
-
attribute_path: '',
|
|
14
|
-
upload_timestamp: ''
|
|
15
|
-
}
|
|
16
|
-
],
|
|
17
|
-
sub_categories: [
|
|
18
|
-
{
|
|
19
|
-
category_id: 'BeersBitters',
|
|
20
|
-
category_name: 'Bitters',
|
|
21
|
-
category_order: 1,
|
|
22
|
-
documents: [],
|
|
23
|
-
sub_categories: []
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
category_id: 'BeersAmerican',
|
|
27
|
-
category_name: 'American',
|
|
28
|
-
category_order: 2,
|
|
29
|
-
documents: [],
|
|
30
|
-
sub_categories: []
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
category_id: 'BeersAsian',
|
|
34
|
-
category_name: 'Asian',
|
|
35
|
-
category_order: 3,
|
|
36
|
-
documents: [],
|
|
37
|
-
sub_categories: []
|
|
38
|
-
}
|
|
39
|
-
]
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
category_id: 'Wines',
|
|
43
|
-
category_name: 'Wines',
|
|
44
|
-
category_order: 2,
|
|
45
|
-
documents: [],
|
|
46
|
-
sub_categories: [
|
|
47
|
-
{
|
|
48
|
-
category_id: 'WinesFrench',
|
|
49
|
-
category_name: 'French',
|
|
50
|
-
category_order: 1,
|
|
51
|
-
documents: [],
|
|
52
|
-
sub_categories: []
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
category_id: 'WinesItalian',
|
|
56
|
-
category_name: 'Italian',
|
|
57
|
-
category_order: 2,
|
|
58
|
-
documents: [],
|
|
59
|
-
sub_categories: []
|
|
60
|
-
}
|
|
61
|
-
]
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
category_id: 'Spirits',
|
|
65
|
-
category_name: 'Spirits',
|
|
66
|
-
category_order: 3,
|
|
67
|
-
documents: [],
|
|
68
|
-
sub_categories: [
|
|
69
|
-
{
|
|
70
|
-
category_id: 'SpiritsWhisky',
|
|
71
|
-
category_name: 'Scotch whisky',
|
|
72
|
-
category_order: 1,
|
|
73
|
-
documents: [],
|
|
74
|
-
sub_categories: [
|
|
75
|
-
{
|
|
76
|
-
category_id: 'WhiskyHighland',
|
|
77
|
-
category_name: 'Highland',
|
|
78
|
-
category_order: 1,
|
|
79
|
-
documents: [],
|
|
80
|
-
sub_categories: [
|
|
81
|
-
{
|
|
82
|
-
category_id: 'WhiskyHighland1',
|
|
83
|
-
category_name: 'Highland 1',
|
|
84
|
-
category_order: 1,
|
|
85
|
-
documents: [],
|
|
86
|
-
sub_categories: []
|
|
87
|
-
}
|
|
88
|
-
]
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
category_id: 'WhiskyLowland',
|
|
92
|
-
category_name: 'Lowland',
|
|
93
|
-
category_order: 2,
|
|
94
|
-
documents: [],
|
|
95
|
-
sub_categories: [
|
|
96
|
-
{
|
|
97
|
-
category_id: 'WhiskyLowland1',
|
|
98
|
-
category_name: 'Lowland 1',
|
|
99
|
-
category_order: 1,
|
|
100
|
-
documents: [
|
|
101
|
-
{
|
|
102
|
-
document_url: '/test',
|
|
103
|
-
document_filename: 'Details about Whisky Lowland 1',
|
|
104
|
-
document_binary_url: '/test/binary',
|
|
105
|
-
attribute_path: '',
|
|
106
|
-
upload_timestamp: ''
|
|
107
|
-
}
|
|
108
|
-
],
|
|
109
|
-
sub_categories: []
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
category_id: 'WhiskyLowland2',
|
|
113
|
-
category_name: 'Lowland 2',
|
|
114
|
-
category_order: 2,
|
|
115
|
-
documents: [],
|
|
116
|
-
sub_categories: []
|
|
117
|
-
}
|
|
118
|
-
]
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
category_id: 'WhiskyIslay',
|
|
122
|
-
category_name: 'Islay',
|
|
123
|
-
category_order: 3,
|
|
124
|
-
documents: [
|
|
125
|
-
{
|
|
126
|
-
document_url: '/test',
|
|
127
|
-
document_filename: 'Details about Whisky Islay',
|
|
128
|
-
document_binary_url: '/test/binary',
|
|
129
|
-
attribute_path: '',
|
|
130
|
-
upload_timestamp: ''
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
document_url: '/test',
|
|
134
|
-
document_filename: 'More information about Whisky Islay',
|
|
135
|
-
document_binary_url: '/test/binary',
|
|
136
|
-
attribute_path: '',
|
|
137
|
-
upload_timestamp: ''
|
|
138
|
-
}
|
|
139
|
-
],
|
|
140
|
-
sub_categories: []
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
category_id: 'WhiskySpeyside',
|
|
144
|
-
category_name: 'Speyside',
|
|
145
|
-
category_order: 4,
|
|
146
|
-
documents: [],
|
|
147
|
-
sub_categories: []
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
category_id: 'WhiskyCampbeltown',
|
|
151
|
-
category_name: 'Campbeltown',
|
|
152
|
-
category_order: 5,
|
|
153
|
-
documents: [],
|
|
154
|
-
sub_categories: []
|
|
155
|
-
}
|
|
156
|
-
]
|
|
157
|
-
}
|
|
158
|
-
]
|
|
159
|
-
}
|
|
160
|
-
],
|
|
161
|
-
uncategorised_documents: [
|
|
162
|
-
{
|
|
163
|
-
document_url: '/uncategorised-document-1',
|
|
164
|
-
document_filename: 'Uncategorised document 1',
|
|
165
|
-
document_binary_url: '/test/binary',
|
|
166
|
-
attribute_path: '',
|
|
167
|
-
upload_timestamp: ''
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
document_url: '/uncategorised-document-2',
|
|
171
|
-
document_filename: 'Uncategorised document 2',
|
|
172
|
-
document_binary_url: '/test/binary',
|
|
173
|
-
attribute_path: '',
|
|
174
|
-
upload_timestamp: ''
|
|
175
|
-
}
|
|
176
|
-
]
|
|
177
|
-
};
|
|
178
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2F0ZWdvcmllcy1hbmQtZG9jdW1lbnRzLXRlc3QtZGF0YS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NjZC1jYXNlLXVpLXRvb2xraXQvc3JjL2xpYi9zaGFyZWQvY29tcG9uZW50cy9wYWxldHRlL2Nhc2UtZmlsZS12aWV3L3Rlc3QtZGF0YS9jYXRlZ29yaWVzLWFuZC1kb2N1bWVudHMtdGVzdC1kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLE1BQU0sQ0FBQyxNQUFNLHNCQUFzQixHQUEyQjtJQUM1RCxZQUFZLEVBQUUsQ0FBQztJQUNmLFVBQVUsRUFBRTtRQUNWO1lBQ0UsV0FBVyxFQUFFLE9BQU87WUFDcEIsYUFBYSxFQUFFLE9BQU87WUFDdEIsY0FBYyxFQUFFLENBQUM7WUFDakIsU0FBUyxFQUFFO2dCQUNUO29CQUNFLFlBQVksRUFBRSxPQUFPO29CQUNyQixpQkFBaUIsRUFBRSxvQkFBb0I7b0JBQ3ZDLG1CQUFtQixFQUFFLGNBQWM7b0JBQ25DLGNBQWMsRUFBRSxFQUFFO29CQUNsQixnQkFBZ0IsRUFBRSxFQUFFO2lCQUNyQjthQUNGO1lBQ0QsY0FBYyxFQUFFO2dCQUNkO29CQUNFLFdBQVcsRUFBRSxjQUFjO29CQUMzQixhQUFhLEVBQUUsU0FBUztvQkFDeEIsY0FBYyxFQUFFLENBQUM7b0JBQ2pCLFNBQVMsRUFBRSxFQUFFO29CQUNiLGNBQWMsRUFBRSxFQUFFO2lCQUNuQjtnQkFDRDtvQkFDRSxXQUFXLEVBQUUsZUFBZTtvQkFDNUIsYUFBYSxFQUFFLFVBQVU7b0JBQ3pCLGNBQWMsRUFBRSxDQUFDO29CQUNqQixTQUFTLEVBQUUsRUFBRTtvQkFDYixjQUFjLEVBQUUsRUFBRTtpQkFDbkI7Z0JBQ0Q7b0JBQ0UsV0FBVyxFQUFFLFlBQVk7b0JBQ3pCLGFBQWEsRUFBRSxPQUFPO29CQUN0QixjQUFjLEVBQUUsQ0FBQztvQkFDakIsU0FBUyxFQUFFLEVB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RSxDQUFDOzRCQUNqQixTQUFTLEVBQUUsRUFBRTs0QkFDYixjQUFjLEVBQUUsRUFBRTt5QkFDbkI7d0JBQ0Q7NEJBQ0UsV0FBVyxFQUFFLG1CQUFtQjs0QkFDaEMsYUFBYSxFQUFFLGFBQWE7NEJBQzVCLGNBQWMsRUFBRSxDQUFDOzRCQUNqQixTQUFTLEVBQUUsRUFBRTs0QkFDYixjQUFjLEVBQUUsRUFBRTt5QkFDbkI7cUJBQ0Y7aUJBQ0Y7YUFDRjtTQUNGO0tBQ0Y7SUFDRCx1QkFBdUIsRUFBRTtRQUN2QjtZQUNFLFlBQVksRUFBRSwyQkFBMkI7WUFDekMsaUJBQWlCLEVBQUUsMEJBQTBCO1lBQzdDLG1CQUFtQixFQUFFLGNBQWM7WUFDbkMsY0FBYyxFQUFFLEVBQUU7WUFDbEIsZ0JBQWdCLEVBQUUsRUFBRTtTQUNyQjtRQUNEO1lBQ0UsWUFBWSxFQUFFLDJCQUEyQjtZQUN6QyxpQkFBaUIsRUFBRSwwQkFBMEI7WUFDN0MsbUJBQW1CLEVBQUUsY0FBYztZQUNuQyxjQUFjLEVBQUUsRUFBRTtZQUNsQixnQkFBZ0IsRUFBRSxFQUFFO1NBQ3JCO0tBQ0Y7Q0FDRixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2F0ZWdvcmllc0FuZERvY3VtZW50cyB9IGZyb20gJy4uLy4uLy4uLy4uL2RvbWFpbi9jYXNlLWZpbGUtdmlldy9jYXRlZ29yaWVzLWFuZC1kb2N1bWVudHMubW9kZWwnO1xuXG5leHBvcnQgY29uc3QgY2F0ZWdvcmllc0FuZERvY3VtZW50czogQ2F0ZWdvcmllc0FuZERvY3VtZW50cyA9IHtcbiAgY2FzZV92ZXJzaW9uOiAxLFxuICBjYXRlZ29yaWVzOiBbXG4gICAge1xuICAgICAgY2F0ZWdvcnlfaWQ6ICdCZWVycycsXG4gICAgICBjYXRlZ29yeV9uYW1lOiAnQmVlcnMnLFxuICAgICAgY2F0ZWdvcnlfb3JkZXI6IDEsXG4gICAgICBkb2N1bWVudHM6IFtcbiAgICAgICAge1xuICAgICAgICAgIGRvY3VtZW50X3VybDogJy90ZXN0JyxcbiAgICAgICAgICBkb2N1bWVudF9maWxlbmFtZTogJ0JlZXJzIGVuY3ljbG9wZWRpYScsXG4gICAgICAgICAgZG9jdW1lbnRfYmluYXJ5X3VybDogJy90ZXN0L2JpbmFyeScsXG4gICAgICAgICAgYXR0cmlidXRlX3BhdGg6ICcnLFxuICAgICAgICAgIHVwbG9hZF90aW1lc3RhbXA6ICcnXG4gICAgICAgIH1cbiAgICAgIF0sXG4gICAgICBzdWJfY2F0ZWdvcmllczogW1xuICAgICAgICB7XG4gICAgICAgICAgY2F0ZWdvcnlfaWQ6ICdCZWVyc0JpdHRlcnMnLFxuICAgICAgICAgIGNhdGVnb3J5X25hbWU6ICdCaXR0ZXJzJyxcbiAgICAgICAgICBjYXRlZ29yeV9vcmRlcjogMSxcbiAgICAgICAgICBkb2N1bWVudHM6IFtdLFxuICAgICAgICAgIHN1Yl9jYXRlZ29yaWVzOiBbXVxuICAgICAgICB9LFxuICAgICAgICB7XG4gICAgICAgICAgY2F0ZWdvcnlfaWQ6ICdCZWVyc0FtZXJpY2FuJyxcbiAgICAgICAgICBjYXRlZ29yeV9uYW1lOiAnQW1lcmljYW4nLFxuICAgICAgICAgIGNhdGVnb3J5X29yZGVyOiAyLFxuICAgICAgICAgIGRvY3VtZW50czogW10sXG4gICAgICAgICAgc3ViX2NhdGVnb3JpZXM6IFtdXG4gICAgICAgIH0sXG4gICAgICAgIHtcbiAgICAgICAgICBjYXRlZ29yeV9pZDogJ0JlZXJzQXNpYW4nLFxuICAgICAgICAgIGNhdGVnb3J5X25hbWU6ICdBc2lhbicsXG4gICAgICAgICAgY2F0ZWdvcnlfb3JkZXI6IDMsXG4gICAgICAgICAgZG9jdW1lbnRzOiBbXSxcbiAgICAgICAgICBzdWJfY2F0ZWdvcmllczogW11cbiAgICAgICAgfVxuICAgICAgXVxuICAgIH0sXG4gICAge1xuICAgICAgY2F0ZWdvcnlfaWQ6ICdXaW5lcycsXG4gICAgICBjYXRlZ29yeV9uYW1lOiAnV2luZXMnLFxuICAgICAgY2F0ZWdvcnlfb3JkZXI6IDIsXG4gICAgICBkb2N1bWVudHM6IFtdLFxuICAgICAgc3ViX2NhdGVnb3JpZXM6IFtcbiAgICAgICAge1xuICAgICAgICAgIGNhdGVnb3J5X2lkOiAnV2luZXNGcmVuY2gnLFxuICAgICAgICAgIGNhdGVnb3J5X25hbWU6ICdGcmVuY2gnLFxuICAgICAgICAgIGNhdGVnb3J5X29yZGVyOiAxLFxuICAgICAgICAgIGRvY3VtZW50czogW10sXG4gICAgICAgICAgc3ViX2NhdGVnb3JpZXM6IFtdXG4gICAgICAgIH0sXG4gICAgICAgIHtcbiAgICAgICAgICBjYXRlZ29yeV9pZDogJ1dpbmVzSXRhbGlhbicsXG4gICAgICAgICAgY2F0ZWdvcnlfbmFtZTogJ0l0YWxpYW4nLFxuICAgICAgICAgIGNhdGVnb3J5X29yZGVyOiAyLFxuICAgICAgICAgIGRvY3VtZW50czogW10sXG4gICAgICAgICAgc3ViX2NhdGVnb3JpZXM6IFtdXG4gICAgICAgIH1cbiAgICAgIF1cbiAgICB9LFxuICAgIHtcbiAgICAgIGNhdGVnb3J5X2lkOiAnU3Bpcml0cycsXG4gICAgICBjYXRlZ29yeV9uYW1lOiAnU3Bpcml0cycsXG4gICAgICBjYXRlZ29yeV9vcmRlcjogMyxcbiAgICAgIGRvY3VtZW50czogW10sXG4gICAgICBzdWJfY2F0ZWdvcmllczogW1xuICAgICAgICB7XG4gICAgICAgICAgY2F0ZWdvcnlfaWQ6ICdTcGlyaXRzV2hpc2t5JyxcbiAgICAgICAgICBjYXRlZ29yeV9uYW1lOiAnU2NvdGNoIHdoaXNreScsXG4gICAgICAgICAgY2F0ZWdvcnlfb3JkZXI6IDEsXG4gICAgICAgICAgZG9jdW1lbnRzOiBbXSxcbiAgICAgICAgICBzdWJfY2F0ZWdvcmllczogW1xuICAgICAgICAgICAge1xuICAgICAgICAgICAgICBjYXRlZ29yeV9pZDogJ1doaXNreUhpZ2hsYW5kJyxcbiAgICAgICAgICAgICAgY2F0ZWdvcnlfbmFtZTogJ0hpZ2hsYW5kJyxcbiAgICAgICAgICAgICAgY2F0ZWdvcnlfb3JkZXI6IDEsXG4gICAgICAgICAgICAgIGRvY3VtZW50czogW10sXG4gICAgICAgICAgICAgIHN1Yl9jYXRlZ29yaWVzOiBbXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgY2F0ZWdvcnlfaWQ6ICdXaGlza3lIaWdobGFuZDEnLFxuICAgICAgICAgICAgICAgICAgY2F0ZWdvcnlfbmFtZTogJ0hpZ2hsYW5kIDEnLFxuICAgICAgICAgICAgICAgICAgY2F0ZWdvcnlfb3JkZXI6IDEsXG4gICAgICAgICAgICAgICAgICBkb2N1bWVudHM6IFtdLFxuICAgICAgICAgICAgICAgICAgc3ViX2NhdGVnb3JpZXM6IFtdXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICBdXG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAge1xuICAgICAgICAgICAgICBjYXRlZ29yeV9pZDogJ1doaXNreUxvd2xhbmQnLFxuICAgICAgICAgICAgICBjYXRlZ29yeV9uYW1lOiAnTG93bGFuZCcsXG4gICAgICAgICAgICAgIGNhdGVnb3J5X29yZGVyOiAyLFxuICAgICAgICAgICAgICBkb2N1bWVudHM6IFtdLFxuICAgICAgICAgICAgICBzdWJfY2F0ZWdvcmllczogW1xuICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgIGNhdGVnb3J5X2lkOiAnV2hpc2t5TG93bGFuZDEnLFxuICAgICAgICAgICAgICAgICAgY2F0ZWdvcnlfbmFtZTogJ0xvd2xhbmQgMScsXG4gICAgICAgICAgICAgICAgICBjYXRlZ29yeV9vcmRlcjogMSxcbiAgICAgICAgICAgICAgICAgIGRvY3VtZW50czogW1xuICAgICAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgICAgZG9jdW1lbnRfdXJsOiAnL3Rlc3QnLFxuICAgICAgICAgICAgICAgICAgICAgIGRvY3VtZW50X2ZpbGVuYW1lOiAnRGV0YWlscyBhYm91dCBXaGlza3kgTG93bGFuZCAxJyxcbiAgICAgICAgICAgICAgICAgICAgICBkb2N1bWVudF9iaW5hcnlfdXJsOiAnL3Rlc3QvYmluYXJ5JyxcbiAgICAgICAgICAgICAgICAgICAgICBhdHRyaWJ1dGVfcGF0aDogJycsXG4gICAgICAgICAgICAgICAgICAgICAgdXBsb2FkX3RpbWVzdGFtcDogJydcbiAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgXSxcbiAgICAgICAgICAgICAgICAgIHN1Yl9jYXRlZ29yaWVzOiBbXVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgY2F0ZWdvcnlfaWQ6ICdXaGlza3lMb3dsYW5kMicsXG4gICAgICAgICAgICAgICAgICBjYXRlZ29yeV9uYW1lOiAnTG93bGFuZCAyJyxcbiAgICAgICAgICAgICAgICAgIGNhdGVnb3J5X29yZGVyOiAyLFxuICAgICAgICAgICAgICAgICAgZG9jdW1lbnRzOiBbXSxcbiAgICAgICAgICAgICAgICAgIHN1Yl9jYXRlZ29yaWVzOiBbXVxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgXVxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgY2F0ZWdvcnlfaWQ6ICdXaGlza3lJc2xheScsXG4gICAgICAgICAgICAgIGNhdGVnb3J5X25hbWU6ICdJc2xheScsXG4gICAgICAgICAgICAgIGNhdGVnb3J5X29yZGVyOiAzLFxuICAgICAgICAgICAgICBkb2N1bWVudHM6IFtcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICBkb2N1bWVudF91cmw6ICcvdGVzdCcsXG4gICAgICAgICAgICAgICAgICBkb2N1bWVudF9maWxlbmFtZTogJ0RldGFpbHMgYWJvdXQgV2hpc2t5IElzbGF5JyxcbiAgICAgICAgICAgICAgICAgIGRvY3VtZW50X2JpbmFyeV91cmw6ICcvdGVzdC9iaW5hcnknLFxuICAgICAgICAgICAgICAgICAgYXR0cmlidXRlX3BhdGg6ICcnLFxuICAgICAgICAgICAgICAgICAgdXBsb2FkX3RpbWVzdGFtcDogJydcbiAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgIGRvY3VtZW50X3VybDogJy90ZXN0JyxcbiAgICAgICAgICAgICAgICAgIGRvY3VtZW50X2ZpbGVuYW1lOiAnTW9yZSBpbmZvcm1hdGlvbiBhYm91dCBXaGlza3kgSXNsYXknLFxuICAgICAgICAgICAgICAgICAgZG9jdW1lbnRfYmluYXJ5X3VybDogJy90ZXN0L2JpbmFyeScsXG4gICAgICAgICAgICAgICAgICBhdHRyaWJ1dGVfcGF0aDogJycsXG4gICAgICAgICAgICAgICAgICB1cGxvYWRfdGltZXN0YW1wOiAnJ1xuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgXSxcbiAgICAgICAgICAgICAgc3ViX2NhdGVnb3JpZXM6IFtdXG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAge1xuICAgICAgICAgICAgICBjYXRlZ29yeV9pZDogJ1doaXNreVNwZXlzaWRlJyxcbiAgICAgICAgICAgICAgY2F0ZWdvcnlfbmFtZTogJ1NwZXlzaWRlJyxcbiAgICAgICAgICAgICAgY2F0ZWdvcnlfb3JkZXI6IDQsXG4gICAgICAgICAgICAgIGRvY3VtZW50czogW10sXG4gICAgICAgICAgICAgIHN1Yl9jYXRlZ29yaWVzOiBbXVxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgY2F0ZWdvcnlfaWQ6ICdXaGlza3lDYW1wYmVsdG93bicsXG4gICAgICAgICAgICAgIGNhdGVnb3J5X25hbWU6ICdDYW1wYmVsdG93bicsXG4gICAgICAgICAgICAgIGNhdGVnb3J5X29yZGVyOiA1LFxuICAgICAgICAgICAgICBkb2N1bWVudHM6IFtdLFxuICAgICAgICAgICAgICBzdWJfY2F0ZWdvcmllczogW11cbiAgICAgICAgICAgIH1cbiAgICAgICAgICBdXG4gICAgICAgIH1cbiAgICAgIF1cbiAgICB9XG4gIF0sXG4gIHVuY2F0ZWdvcmlzZWRfZG9jdW1lbnRzOiBbXG4gICAge1xuICAgICAgZG9jdW1lbnRfdXJsOiAnL3VuY2F0ZWdvcmlzZWQtZG9jdW1lbnQtMScsXG4gICAgICBkb2N1bWVudF9maWxlbmFtZTogJ1VuY2F0ZWdvcmlzZWQgZG9jdW1lbnQgMScsXG4gICAgICBkb2N1bWVudF9iaW5hcnlfdXJsOiAnL3Rlc3QvYmluYXJ5JyxcbiAgICAgIGF0dHJpYnV0ZV9wYXRoOiAnJyxcbiAgICAgIHVwbG9hZF90aW1lc3RhbXA6ICcnXG4gICAgfSxcbiAgICB7XG4gICAgICBkb2N1bWVudF91cmw6ICcvdW5jYXRlZ29yaXNlZC1kb2N1bWVudC0yJyxcbiAgICAgIGRvY3VtZW50X2ZpbGVuYW1lOiAnVW5jYXRlZ29yaXNlZCBkb2N1bWVudCAyJyxcbiAgICAgIGRvY3VtZW50X2JpbmFyeV91cmw6ICcvdGVzdC9iaW5hcnknLFxuICAgICAgYXR0cmlidXRlX3BhdGg6ICcnLFxuICAgICAgdXBsb2FkX3RpbWVzdGFtcDogJydcbiAgICB9XG4gIF1cbn07XG4iXX0=
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export var DocumentTreeNodeType;
|
|
2
|
-
(function (DocumentTreeNodeType) {
|
|
3
|
-
DocumentTreeNodeType["FOLDER"] = "folder";
|
|
4
|
-
DocumentTreeNodeType["DOCUMENT"] = "document";
|
|
5
|
-
})(DocumentTreeNodeType || (DocumentTreeNodeType = {}));
|
|
6
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG9jdW1lbnQtdHJlZS1ub2RlLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2NkLWNhc2UtdWktdG9vbGtpdC9zcmMvbGliL3NoYXJlZC9kb21haW4vY2FzZS1maWxlLXZpZXcvZG9jdW1lbnQtdHJlZS1ub2RlLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQU9BLE1BQU0sQ0FBTixJQUFZLG9CQUdYO0FBSEQsV0FBWSxvQkFBb0I7SUFDOUIseUNBQWlCLENBQUE7SUFDakIsNkNBQXFCLENBQUE7QUFDdkIsQ0FBQyxFQUhXLG9CQUFvQixLQUFwQixvQkFBb0IsUUFHL0IiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgaW50ZXJmYWNlIERvY3VtZW50VHJlZU5vZGUge1xuICBuYW1lPzogc3RyaW5nO1xuICB0eXBlPzogc3RyaW5nO1xuICBjb3VudD86IG51bWJlcjtcbiAgY2hpbGRyZW4/OiBEb2N1bWVudFRyZWVOb2RlW107XG59XG5cbmV4cG9ydCBlbnVtIERvY3VtZW50VHJlZU5vZGVUeXBlIHtcbiAgRk9MREVSID0gJ2ZvbGRlcicsXG4gIERPQ1VNRU5UID0gJ2RvY3VtZW50Jyxcbn1cbiJdfQ==
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"categories-and-documents-test-data.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-file-view/test-data/categories-and-documents-test-data.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,kEAAkE,CAAC;AAE1G,eAAO,MAAM,sBAAsB,EAAE,sBAgLpC,CAAC"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export interface DocumentTreeNode {
|
|
2
|
-
name?: string;
|
|
3
|
-
type?: string;
|
|
4
|
-
count?: number;
|
|
5
|
-
children?: DocumentTreeNode[];
|
|
6
|
-
}
|
|
7
|
-
export declare enum DocumentTreeNodeType {
|
|
8
|
-
FOLDER = "folder",
|
|
9
|
-
DOCUMENT = "document"
|
|
10
|
-
}
|
|
11
|
-
//# sourceMappingURL=document-tree-node.model.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
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.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,gBAAgB;IAC/B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,gBAAgB,EAAE,CAAC;CAC/B;AAED,oBAAY,oBAAoB;IAC9B,MAAM,WAAW;IACjB,QAAQ,aAAa;CACtB"}
|