@valtimo/dossier 10.4.0 → 10.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/components/note-modal/note-modal.component.mjs +4 -4
- package/esm2020/lib/dossier-assign-user/dossier-assign-user.component.mjs +4 -4
- package/esm2020/lib/dossier-detail/dossier-detail.component.mjs +4 -4
- package/esm2020/lib/dossier-detail/tab/audit/audit.component.mjs +4 -4
- package/esm2020/lib/dossier-detail/tab/contact-moments/contact-moments.component.mjs +4 -4
- package/esm2020/lib/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.mjs +29 -48
- package/esm2020/lib/dossier-detail/tab/documents/documents.component.mjs +4 -4
- package/esm2020/lib/dossier-detail/tab/notes/notes.component.mjs +4 -4
- package/esm2020/lib/dossier-detail/tab/object-type/object-type.component.mjs +4 -4
- package/esm2020/lib/dossier-detail/tab/progress/progress.component.mjs +4 -4
- package/esm2020/lib/dossier-detail/tab/s3-documents/s3-documents.component.mjs +12 -10
- package/esm2020/lib/dossier-detail/tab/summary/summary.component.mjs +4 -4
- package/esm2020/lib/dossier-detail/tab/zaakobjecten/zaakobjecten.component.mjs +4 -4
- package/esm2020/lib/dossier-detail-tab-enum.mjs +2 -2
- package/esm2020/lib/dossier-list/dossier-list.component.mjs +10 -6
- package/esm2020/lib/dossier-process-start-modal/dossier-process-start-modal.component.mjs +4 -4
- package/esm2020/lib/dossier-routing.module.mjs +2 -2
- package/esm2020/lib/dossier-supporting-process-start-modal/dossier-supporting-process-start-modal.component.mjs +4 -4
- package/esm2020/lib/dossier-update/dossier-update.component.mjs +4 -4
- package/esm2020/lib/dossier.config.mjs +2 -2
- package/esm2020/lib/dossier.module.mjs +9 -5
- package/esm2020/lib/dossier.service.mjs +2 -2
- package/esm2020/lib/models/dossier-parameters.model.mjs +2 -2
- package/esm2020/lib/models/index.mjs +2 -2
- package/esm2020/lib/models/notes.model.mjs +2 -2
- package/esm2020/lib/models/search.model.mjs +16 -1
- package/esm2020/lib/models/tabs.model.mjs +2 -2
- package/esm2020/lib/models/zaakobjecten.model.mjs +2 -2
- package/esm2020/lib/services/dossier-column.service.mjs +16 -1
- package/esm2020/lib/services/dossier-parameter.service.mjs +2 -2
- package/esm2020/lib/services/file-sort.service.mjs +39 -0
- package/esm2020/lib/services/index.mjs +17 -1
- package/esm2020/lib/services/notes.service.mjs +2 -2
- package/esm2020/lib/services/zaakobjecten.service.mjs +2 -2
- package/esm2020/lib/tab.service.mjs +2 -2
- package/esm2020/public_api.mjs +2 -2
- package/fesm2015/valtimo-dossier.mjs +171 -119
- package/fesm2015/valtimo-dossier.mjs.map +1 -1
- package/fesm2020/valtimo-dossier.mjs +192 -121
- package/fesm2020/valtimo-dossier.mjs.map +1 -1
- package/lib/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.d.ts +9 -11
- package/lib/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.d.ts.map +1 -1
- package/lib/dossier-detail/tab/s3-documents/s3-documents.component.d.ts +3 -1
- package/lib/dossier-detail/tab/s3-documents/s3-documents.component.d.ts.map +1 -1
- package/lib/dossier-list/dossier-list.component.d.ts +1 -0
- package/lib/dossier-list/dossier-list.component.d.ts.map +1 -1
- package/lib/dossier.module.d.ts +2 -1
- package/lib/dossier.module.d.ts.map +1 -1
- package/lib/models/search.model.d.ts.map +1 -1
- package/lib/services/dossier-column.service.d.ts.map +1 -1
- package/lib/services/file-sort.service.d.ts +11 -0
- package/lib/services/file-sort.service.d.ts.map +1 -0
- package/lib/services/index.d.ts +1 -0
- package/lib/services/index.d.ts.map +1 -1
- package/package.json +1 -1
package/lib/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { ActivatedRoute } from '@angular/router';
|
|
3
|
-
import { DocumentService, RelatedFile } from '@valtimo/document';
|
|
3
|
+
import { DocumentService, RelatedFile, RelatedFileListItem } from '@valtimo/document';
|
|
4
4
|
import { DownloadService, UploadProviderService } from '@valtimo/resource';
|
|
5
5
|
import { ToastrService } from 'ngx-toastr';
|
|
6
6
|
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
@@ -9,6 +9,7 @@ import { ConfigService } from '@valtimo/config';
|
|
|
9
9
|
import { DocumentenApiMetadata } from '@valtimo/components';
|
|
10
10
|
import { UserProviderService } from '@valtimo/security';
|
|
11
11
|
import { PromptService } from '@valtimo/user-interface';
|
|
12
|
+
import { FileSortService } from '../../../services';
|
|
12
13
|
import * as i0 from "@angular/core";
|
|
13
14
|
export declare class DossierDetailTabDocumentenApiDocumentsComponent implements OnInit {
|
|
14
15
|
private readonly route;
|
|
@@ -20,24 +21,21 @@ export declare class DossierDetailTabDocumentenApiDocumentsComponent implements
|
|
|
20
21
|
private readonly translateService;
|
|
21
22
|
private readonly configService;
|
|
22
23
|
private readonly userProviderService;
|
|
24
|
+
private readonly fileSortService;
|
|
23
25
|
readonly documentId: string;
|
|
24
26
|
readonly documentDefinitionName: string;
|
|
25
27
|
readonly maxFileSize: number;
|
|
26
28
|
readonly acceptedFiles: string;
|
|
27
|
-
fields:
|
|
29
|
+
fields: {
|
|
28
30
|
key: string;
|
|
29
31
|
label: string;
|
|
30
|
-
|
|
31
|
-
} | {
|
|
32
|
-
key: string;
|
|
33
|
-
label: string;
|
|
34
|
-
viewType: string;
|
|
35
|
-
})[];
|
|
32
|
+
}[];
|
|
36
33
|
actions: {
|
|
37
34
|
columnName: string;
|
|
38
35
|
iconClass: string;
|
|
39
36
|
callback: any;
|
|
40
37
|
}[];
|
|
38
|
+
showZaakLinkWarning: boolean;
|
|
41
39
|
isAdmin: boolean;
|
|
42
40
|
uploadProcessLinkedSet: boolean;
|
|
43
41
|
uploadProcessLinked: boolean;
|
|
@@ -46,13 +44,13 @@ export declare class DossierDetailTabDocumentenApiDocumentsComponent implements
|
|
|
46
44
|
readonly hideModal$: Subject<null>;
|
|
47
45
|
readonly modalDisabled$: BehaviorSubject<boolean>;
|
|
48
46
|
readonly fileToBeUploaded$: BehaviorSubject<File>;
|
|
47
|
+
readonly loading$: BehaviorSubject<boolean>;
|
|
49
48
|
private readonly refetch$;
|
|
50
|
-
relatedFiles$: Observable<Array<
|
|
51
|
-
constructor(route: ActivatedRoute, documentService: DocumentService, toastrService: ToastrService, uploadProviderService: UploadProviderService, downloadService: DownloadService, promptService: PromptService, translateService: TranslateService, configService: ConfigService, userProviderService: UserProviderService);
|
|
49
|
+
relatedFiles$: Observable<Array<RelatedFileListItem>>;
|
|
50
|
+
constructor(route: ActivatedRoute, documentService: DocumentService, toastrService: ToastrService, uploadProviderService: UploadProviderService, downloadService: DownloadService, promptService: PromptService, translateService: TranslateService, configService: ConfigService, userProviderService: UserProviderService, fileSortService: FileSortService);
|
|
52
51
|
ngOnInit(): void;
|
|
53
52
|
fileSelected(file: File): void;
|
|
54
53
|
downloadDocument(relatedFile: RelatedFile): void;
|
|
55
|
-
removeRelatedFile(relatedFile: RelatedFile): void;
|
|
56
54
|
metadataSet(metadata: DocumentenApiMetadata): void;
|
|
57
55
|
isUserAdmin(): void;
|
|
58
56
|
private refetchDocuments;
|
package/lib/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"documenten-api-documents.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier/src/lib/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,MAAM,EAAC,MAAM,eAAe,CAAC;AAChD,OAAO,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAC,eAAe,EAAE,WAAW,EAAC,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"documenten-api-documents.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier/src/lib/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,MAAM,EAAC,MAAM,eAAe,CAAC;AAChD,OAAO,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAC,eAAe,EAAE,WAAW,EAAE,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;AACpF,OAAO,EAAC,eAAe,EAAE,qBAAqB,EAAC,MAAM,mBAAmB,CAAC;AACzE,OAAO,EAAC,aAAa,EAAC,MAAM,YAAY,CAAC;AAEzC,OAAO,EAAC,eAAe,EAAiB,UAAU,EAAM,OAAO,EAAC,MAAM,MAAM,CAAC;AAC7E,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAC,qBAAqB,EAAC,MAAM,qBAAqB,CAAC;AAC1D,OAAO,EAAC,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAC,aAAa,EAAC,MAAM,yBAAyB,CAAC;AACtD,OAAO,EAAC,eAAe,EAAC,MAAM,mBAAmB,CAAC;;AAGlD,qBAKa,+CAAgD,YAAW,MAAM;IA+D1E,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IACtC,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IACpC,OAAO,CAAC,QAAQ,CAAC,eAAe;IAvElC,SAAgB,UAAU,EAAE,MAAM,CAAC;IACnC,SAAgB,sBAAsB,EAAE,MAAM,CAAC;IAC/C,SAAgB,WAAW,EAAE,MAAM,CAA8D;IACjG,SAAgB,aAAa,EAAE,MAAM,CAC6B;IAC3D,MAAM;;;QAKX;IACK,OAAO;;;;QAMZ;IACK,mBAAmB,EAAE,OAAO,CAAC;IAC7B,OAAO,EAAE,OAAO,CAAC;IACjB,sBAAsB,UAAS;IAC/B,mBAAmB,EAAG,OAAO,CAAC;IACrC,QAAQ,CAAC,UAAU,2BAAuC;IAC1D,QAAQ,CAAC,UAAU,gBAAuB;IAC1C,QAAQ,CAAC,UAAU,gBAAuB;IAC1C,QAAQ,CAAC,cAAc,2BAAuC;IAC9D,QAAQ,CAAC,iBAAiB,wBAA0C;IACpE,QAAQ,CAAC,QAAQ,2BAAsC;IACvD,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAmC;IAErD,aAAa,EAAE,UAAU,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,CA6B1D;gBAGiB,KAAK,EAAE,cAAc,EACrB,eAAe,EAAE,eAAe,EAChC,aAAa,EAAE,aAAa,EAC5B,qBAAqB,EAAE,qBAAqB,EAC5C,eAAe,EAAE,eAAe,EAChC,aAAa,EAAE,aAAa,EAC5B,gBAAgB,EAAE,gBAAgB,EAClC,aAAa,EAAE,aAAa,EAC5B,mBAAmB,EAAE,mBAAmB,EACxC,eAAe,EAAE,eAAe;IAOnD,QAAQ,IAAI,IAAI;IAMhB,YAAY,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI;IAK9B,gBAAgB,CAAC,WAAW,EAAE,WAAW,GAAG,IAAI;IAOhD,WAAW,CAAC,QAAQ,EAAE,qBAAqB,GAAG,IAAI;IAoB3C,WAAW;IAWlB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,sBAAsB;yCApInB,+CAA+C;2CAA/C,+CAA+C;CA+I3D"}
|
|
@@ -7,6 +7,7 @@ import { BehaviorSubject, Observable } from 'rxjs';
|
|
|
7
7
|
import { TranslateService } from '@ngx-translate/core';
|
|
8
8
|
import { ConfigService } from '@valtimo/config';
|
|
9
9
|
import { PromptService } from '@valtimo/user-interface';
|
|
10
|
+
import { FileSortService } from '../../../services';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class DossierDetailTabS3DocumentsComponent implements OnInit {
|
|
12
13
|
private readonly route;
|
|
@@ -17,6 +18,7 @@ export declare class DossierDetailTabS3DocumentsComponent implements OnInit {
|
|
|
17
18
|
private readonly promptService;
|
|
18
19
|
private readonly translateService;
|
|
19
20
|
private readonly configService;
|
|
21
|
+
private readonly fileSortService;
|
|
20
22
|
readonly documentId: string;
|
|
21
23
|
readonly documentDefinitionName: string;
|
|
22
24
|
readonly maxFileSize: number;
|
|
@@ -38,7 +40,7 @@ export declare class DossierDetailTabS3DocumentsComponent implements OnInit {
|
|
|
38
40
|
readonly uploading$: BehaviorSubject<boolean>;
|
|
39
41
|
private readonly refetch$;
|
|
40
42
|
relatedFiles$: Observable<Array<RelatedFile>>;
|
|
41
|
-
constructor(route: ActivatedRoute, documentService: DocumentService, toastrService: ToastrService, uploadProviderService: UploadProviderService, downloadService: DownloadService, promptService: PromptService, translateService: TranslateService, configService: ConfigService);
|
|
43
|
+
constructor(route: ActivatedRoute, documentService: DocumentService, toastrService: ToastrService, uploadProviderService: UploadProviderService, downloadService: DownloadService, promptService: PromptService, translateService: TranslateService, configService: ConfigService, fileSortService: FileSortService);
|
|
42
44
|
ngOnInit(): void;
|
|
43
45
|
fileSelected(file: File): void;
|
|
44
46
|
downloadDocument(relatedFile: RelatedFile): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"s3-documents.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier/src/lib/dossier-detail/tab/s3-documents/s3-documents.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,MAAM,EAAC,MAAM,eAAe,CAAC;AAChD,OAAO,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAC,eAAe,EAAE,WAAW,EAAC,MAAM,mBAAmB,CAAC;AAC/D,OAAO,EAAC,eAAe,EAAe,qBAAqB,EAAC,MAAM,mBAAmB,CAAC;AACtF,OAAO,EAAC,aAAa,EAAC,MAAM,YAAY,CAAC;AAEzC,OAAO,EAAC,eAAe,EAAiB,UAAU,EAAC,MAAM,MAAM,CAAC;AAChE,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAC,aAAa,EAAC,MAAM,yBAAyB,CAAC;;
|
|
1
|
+
{"version":3,"file":"s3-documents.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier/src/lib/dossier-detail/tab/s3-documents/s3-documents.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,MAAM,EAAC,MAAM,eAAe,CAAC;AAChD,OAAO,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAC,eAAe,EAAE,WAAW,EAAC,MAAM,mBAAmB,CAAC;AAC/D,OAAO,EAAC,eAAe,EAAe,qBAAqB,EAAC,MAAM,mBAAmB,CAAC;AACtF,OAAO,EAAC,aAAa,EAAC,MAAM,YAAY,CAAC;AAEzC,OAAO,EAAC,eAAe,EAAiB,UAAU,EAAC,MAAM,MAAM,CAAC;AAChE,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAC,aAAa,EAAC,MAAM,yBAAyB,CAAC;AACtD,OAAO,EAAC,eAAe,EAAC,MAAM,mBAAmB,CAAC;;AAElD,qBAKa,oCAAqC,YAAW,MAAM;IA8C/D,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IACtC,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,eAAe;IArDlC,SAAgB,UAAU,EAAE,MAAM,CAAC;IACnC,SAAgB,sBAAsB,EAAE,MAAM,CAAC;IAC/C,SAAgB,WAAW,EAAE,MAAM,CAA8D;IACjG,SAAgB,aAAa,EAAE,MAAM,CAC6B;IAC3D,MAAM;;;;;;;;SAKX;IACK,OAAO;;;;QAWZ;IACF,QAAQ,CAAC,UAAU,2BAAuC;IAC1D,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAmC;IACrD,aAAa,EAAE,UAAU,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAiBlD;gBAGiB,KAAK,EAAE,cAAc,EACrB,eAAe,EAAE,eAAe,EAChC,aAAa,EAAE,aAAa,EAC5B,qBAAqB,EAAE,qBAAqB,EAC5C,eAAe,EAAE,eAAe,EAChC,aAAa,EAAE,aAAa,EAC5B,gBAAgB,EAAE,gBAAgB,EAClC,aAAa,EAAE,aAAa,EAC5B,eAAe,EAAE,eAAe;IAOnD,QAAQ,IAAI,IAAI;IAIhB,YAAY,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI;IAuB9B,gBAAgB,CAAC,WAAW,EAAE,WAAW,GAAG,IAAI;IAQhD,iBAAiB,CAAC,WAAW,EAAE,WAAW;IA0B1C,OAAO,CAAC,gBAAgB;yCA1Hb,oCAAoC;2CAApC,oCAAoC;CA6HhD"}
|
|
@@ -23,6 +23,7 @@ export declare class DossierListComponent implements OnInit {
|
|
|
23
23
|
private readonly dossierParameterService;
|
|
24
24
|
processStart: DossierProcessStartModalComponent;
|
|
25
25
|
dossierVisibleTabs: Array<DossierListTab> | null;
|
|
26
|
+
private readonly defaultAssigneeFilter;
|
|
26
27
|
private selectedProcessDocumentDefinition;
|
|
27
28
|
private modalListenerAdded;
|
|
28
29
|
private readonly settingPaginationForDocName$;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-list.component.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/dossier-list/dossier-list.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,MAAM,EAAY,MAAM,eAAe,CAAC;AAC3D,OAAO,EAAC,cAAc,EAAE,MAAM,EAAC,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAEL,aAAa,EAEb,cAAc,EACd,WAAW,EACX,iBAAiB,EAGlB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAIL,eAAe,EACf,yBAAyB,EACzB,SAAS,EAEV,MAAM,mBAAmB,CAAC;AAE3B,OAAO,EACL,eAAe,EAKf,UAAU,EAEV,OAAO,EAIR,MAAM,MAAM,CAAC;AAEd,OAAO,EAAC,iCAAiC,EAAC,MAAM,sEAAsE,CAAC;AACvH,OAAO,EAAC,cAAc,EAAC,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAC,SAAS,EAAa,MAAM,qBAAqB,CAAC;AAC1D,OAAO,EAAC,SAAS,EAAC,MAAM,YAAY,CAAC;AACrC,OAAO,EAAC,iBAAiB,EAAC,MAAM,4BAA4B,CAAC;AAC7D,OAAO,EAAC,oBAAoB,EAAE,uBAAuB,EAAC,MAAM,aAAa,CAAC;;AAO1E,qBAMa,oBAAqB,YAAW,MAAM;
|
|
1
|
+
{"version":3,"file":"dossier-list.component.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/dossier-list/dossier-list.component.ts"],"names":[],"mappings":"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"}
|
package/lib/dossier.module.d.ts
CHANGED
|
@@ -28,11 +28,12 @@ import * as i25 from "@ngx-translate/core";
|
|
|
28
28
|
import * as i26 from "@valtimo/task";
|
|
29
29
|
import * as i27 from "@valtimo/config";
|
|
30
30
|
import * as i28 from "@valtimo/user-interface";
|
|
31
|
+
import * as i29 from "carbon-components-angular";
|
|
31
32
|
export declare type TabsFactory = () => Map<string, object>;
|
|
32
33
|
export declare class DossierModule {
|
|
33
34
|
static forRoot(tabsFactory: TabsFactory): ModuleWithProviders<DossierModule>;
|
|
34
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<DossierModule, never>;
|
|
35
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DossierModule, [typeof i1.DossierListComponent, typeof i2.DossierDetailComponent, typeof i3.DossierDetailTabSummaryComponent, typeof i4.DossierDetailTabProgressComponent, typeof i5.DossierDetailTabAuditComponent, typeof i6.DossierDetailTabDocumentsComponent, typeof i7.DossierDetailTabContactMomentsComponent, typeof i8.DossierDetailTabZaakobjectenComponent, typeof i9.DossierDetailTabNotesComponent, typeof i10.DossierUpdateComponent, typeof i11.DossierProcessStartModalComponent, typeof i12.DossierSupportingProcessStartModalComponent, typeof i13.DossierDetailTabObjectTypeComponent, typeof i14.DossierDetailTabDocumentenApiDocumentsComponent, typeof i15.DossierDetailTabS3DocumentsComponent, typeof i16.DossierAssignUserComponent, typeof i17.NoteModalComponent], [typeof i18.CommonModule, typeof i19.DossierRoutingModule, typeof i20.ListModule, typeof i20.WidgetModule, typeof i20.BpmnJsDiagramModule, typeof i20.TimelineModule, typeof i20.CamundaFormModule, typeof i21.ProcessModule, typeof i20.FilterSidebarModule, typeof i22.NgbButtonsModule, typeof i20.DataListModule, typeof i23.FormsModule, typeof i24.FormModule, typeof i20.FormIoModule, typeof i20.ModalModule, typeof i20.SpinnerModule, typeof i25.TranslateModule, typeof i26.TaskModule, typeof i20.ModalModule, typeof i22.NgbTooltipModule, typeof i20.UploaderModule, typeof i20.DropzoneModule, typeof i22.NgbPaginationModule, typeof i27.ConfigModule, typeof i28.SelectModule, typeof i28.InputLabelModule, typeof i28.ParagraphModule, typeof i28.TableModule, typeof i28.ModalModule, typeof i28.TitleModule, typeof i28.ButtonModule, typeof i20.DocumentenApiMetadataModalModule, typeof i20.SearchableDropdownSelectModule, typeof i20.SearchFieldsModule, typeof i28.PageModule, typeof i24.FormModule, typeof i28.InputModule, typeof i28.FormModule, typeof i22.NgbModule], [typeof i1.DossierListComponent, typeof i2.DossierDetailComponent]>;
|
|
36
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DossierModule, [typeof i1.DossierListComponent, typeof i2.DossierDetailComponent, typeof i3.DossierDetailTabSummaryComponent, typeof i4.DossierDetailTabProgressComponent, typeof i5.DossierDetailTabAuditComponent, typeof i6.DossierDetailTabDocumentsComponent, typeof i7.DossierDetailTabContactMomentsComponent, typeof i8.DossierDetailTabZaakobjectenComponent, typeof i9.DossierDetailTabNotesComponent, typeof i10.DossierUpdateComponent, typeof i11.DossierProcessStartModalComponent, typeof i12.DossierSupportingProcessStartModalComponent, typeof i13.DossierDetailTabObjectTypeComponent, typeof i14.DossierDetailTabDocumentenApiDocumentsComponent, typeof i15.DossierDetailTabS3DocumentsComponent, typeof i16.DossierAssignUserComponent, typeof i17.NoteModalComponent], [typeof i18.CommonModule, typeof i19.DossierRoutingModule, typeof i20.ListModule, typeof i20.WidgetModule, typeof i20.BpmnJsDiagramModule, typeof i20.TimelineModule, typeof i20.CamundaFormModule, typeof i21.ProcessModule, typeof i20.FilterSidebarModule, typeof i22.NgbButtonsModule, typeof i20.DataListModule, typeof i23.FormsModule, typeof i24.FormModule, typeof i20.FormIoModule, typeof i20.ModalModule, typeof i20.SpinnerModule, typeof i25.TranslateModule, typeof i26.TaskModule, typeof i20.ModalModule, typeof i22.NgbTooltipModule, typeof i20.UploaderModule, typeof i20.DropzoneModule, typeof i22.NgbPaginationModule, typeof i27.ConfigModule, typeof i28.SelectModule, typeof i28.InputLabelModule, typeof i28.ParagraphModule, typeof i28.TableModule, typeof i28.ModalModule, typeof i28.TitleModule, typeof i28.ButtonModule, typeof i20.DocumentenApiMetadataModalModule, typeof i20.SearchableDropdownSelectModule, typeof i20.SearchFieldsModule, typeof i28.PageModule, typeof i24.FormModule, typeof i28.InputModule, typeof i28.FormModule, typeof i22.NgbModule, typeof i29.LoadingModule], [typeof i1.DossierListComponent, typeof i2.DossierDetailComponent]>;
|
|
36
37
|
static ɵinj: i0.ɵɵInjectorDeclaration<DossierModule>;
|
|
37
38
|
}
|
|
38
39
|
//# sourceMappingURL=dossier.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dossier/src/lib/dossier.module.ts"],"names":[],"mappings":"AAgBA,OAAO,EAA+B,mBAAmB,EAAW,MAAM,eAAe,CAAC
|
|
1
|
+
{"version":3,"file":"dossier.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dossier/src/lib/dossier.module.ts"],"names":[],"mappings":"AAgBA,OAAO,EAA+B,mBAAmB,EAAW,MAAM,eAAe,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmE1F,oBAAY,WAAW,GAAG,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AAEpD,qBAsEa,aAAa;IACxB,MAAM,CAAC,OAAO,CAAC,WAAW,EAAE,WAAW,GAAG,mBAAmB,CAAC,aAAa,CAAC;yCADjE,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAmBzB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/models/search.model.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"search.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/models/search.model.ts"],"names":[],"mappings":"AAgBA,aAAK,uBAAuB,GAAG,MAAM,GAAG,QAAQ,GAAG,MAAM,GAAG,UAAU,GAAG,SAAS,CAAC;AAEnF,aAAK,wBAAwB,GAAG,QAAQ,GAAG,UAAU,GAAG,OAAO,CAAC;AAEhE,aAAK,wBAAwB,GAAG,OAAO,GAAG,MAAM,CAAC;AAEjD,UAAU,eAAe;IACvB,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,uBAAuB,CAAC;IAClC,SAAS,EAAE,wBAAwB,CAAC;IACpC,SAAS,EAAE,wBAAwB,CAAC;CACrC;AAED,OAAO,EACL,uBAAuB,EACvB,wBAAwB,EACxB,wBAAwB,EACxB,eAAe,GAChB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-column.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/services/dossier-column.service.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dossier-column.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/services/dossier-column.service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,aAAa,EAAE,gBAAgB,EAAC,MAAM,iBAAiB,CAAC;AAChE,OAAO,EAAM,UAAU,EAAC,MAAM,MAAM,CAAC;AACrC,OAAO,EAAiB,eAAe,EAAC,MAAM,mBAAmB,CAAC;;AAElE,qBAGa,oBAAoB;IAE7B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,eAAe;gBADf,aAAa,EAAE,aAAa,EAC5B,eAAe,EAAE,eAAe;IAGnD,oBAAoB,CAClB,sBAAsB,EAAE,MAAM,GAC7B,UAAU,CAAC;QAAC,OAAO,EAAE,KAAK,CAAC,gBAAgB,CAAC,CAAC;QAAC,YAAY,EAAE,OAAO,CAAA;KAAC,CAAC;IAsBxE,oBAAoB,CAAC,sBAAsB,EAAE,MAAM,GAAG,OAAO;IAI7D,OAAO,CAAC,qCAAqC;IAmB7C,OAAO,CAAC,WAAW;IAanB,OAAO,CAAC,eAAe;yCAlEZ,oBAAoB;6CAApB,oBAAoB;CAqEhC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ConfigService } from '@valtimo/config';
|
|
2
|
+
import { RelatedFile } from '@valtimo/document';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FileSortService {
|
|
5
|
+
private readonly configService;
|
|
6
|
+
constructor(configService: ConfigService);
|
|
7
|
+
sortRelatedFilesByDateDescending(relatedFiles: Array<RelatedFile>): Array<RelatedFile>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileSortService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FileSortService>;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=file-sort.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-sort.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/services/file-sort.service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAC,WAAW,EAAC,MAAM,mBAAmB,CAAC;;AAE9C,qBAGa,eAAe;IACd,OAAO,CAAC,QAAQ,CAAC,aAAa;gBAAb,aAAa,EAAE,aAAa;IAEzD,gCAAgC,CAAC,YAAY,EAAE,KAAK,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,WAAW,CAAC;yCAH3E,eAAe;6CAAf,eAAe;CAc3B"}
|
package/lib/services/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/services/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/services/index.ts"],"names":[],"mappings":"AAgBA,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,qBAAqB,CAAC"}
|