@valtimo/dossier 10.5.0 → 10.6.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/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.mjs +16 -12
- package/esm2020/lib/dossier-detail/tab/summary/summary.component.mjs +1 -1
- package/esm2020/lib/dossier-list/dossier-list.component.mjs +153 -281
- package/esm2020/lib/dossier-list-actions/dossier-list-actions.component.mjs +86 -0
- package/esm2020/lib/dossier-process-start-modal/dossier-process-start-modal.component.mjs +113 -45
- package/esm2020/lib/dossier-routing.module.mjs +2 -2
- package/esm2020/lib/dossier-supporting-process-start-modal/dossier-supporting-process-start-modal.component.mjs +107 -50
- package/esm2020/lib/dossier.module.mjs +17 -4
- package/esm2020/lib/models/dossier-parameters.model.mjs +1 -1
- package/esm2020/lib/services/dossier-column.service.mjs +24 -9
- package/esm2020/lib/services/dossier-list-assignee.service.mjs +82 -0
- package/esm2020/lib/services/dossier-list-pagination.service.mjs +116 -0
- package/esm2020/lib/services/dossier-list-search.service.mjs +66 -0
- package/esm2020/lib/services/dossier-list.service.mjs +60 -0
- package/esm2020/lib/services/dossier-parameter.service.mjs +71 -31
- package/esm2020/lib/services/index.mjs +5 -1
- package/fesm2015/valtimo-dossier.mjs +906 -457
- package/fesm2015/valtimo-dossier.mjs.map +1 -1
- package/fesm2020/valtimo-dossier.mjs +906 -460
- package/fesm2020/valtimo-dossier.mjs.map +1 -1
- package/lib/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.d.ts +3 -6
- package/lib/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.d.ts.map +1 -1
- package/lib/dossier-detail/tab/summary/summary.component.d.ts +9 -9
- package/lib/dossier-detail/tab/summary/summary.component.d.ts.map +1 -1
- package/lib/dossier-list/dossier-list.component.d.ts +45 -56
- package/lib/dossier-list/dossier-list.component.d.ts.map +1 -1
- package/lib/dossier-list-actions/dossier-list-actions.component.d.ts +28 -0
- package/lib/dossier-list-actions/dossier-list-actions.component.d.ts.map +1 -0
- package/lib/dossier-process-start-modal/dossier-process-start-modal.component.d.ts +14 -5
- package/lib/dossier-process-start-modal/dossier-process-start-modal.component.d.ts.map +1 -1
- package/lib/dossier-supporting-process-start-modal/dossier-supporting-process-start-modal.component.d.ts +12 -5
- package/lib/dossier-supporting-process-start-modal/dossier-supporting-process-start-modal.component.d.ts.map +1 -1
- package/lib/dossier.module.d.ts +31 -29
- package/lib/dossier.module.d.ts.map +1 -1
- package/lib/models/dossier-parameters.model.d.ts +1 -0
- package/lib/models/dossier-parameters.model.d.ts.map +1 -1
- package/lib/services/dossier-column.service.d.ts +5 -1
- package/lib/services/dossier-column.service.d.ts.map +1 -1
- package/lib/services/dossier-list-assignee.service.d.ts +27 -0
- package/lib/services/dossier-list-assignee.service.d.ts.map +1 -0
- package/lib/services/dossier-list-pagination.service.d.ts +30 -0
- package/lib/services/dossier-list-pagination.service.d.ts.map +1 -0
- package/lib/services/dossier-list-search.service.d.ts +22 -0
- package/lib/services/dossier-list-search.service.d.ts.map +1 -0
- package/lib/services/dossier-list.service.d.ts +17 -0
- package/lib/services/dossier-list.service.d.ts.map +1 -0
- package/lib/services/dossier-parameter.service.d.ts +9 -1
- package/lib/services/dossier-parameter.service.d.ts.map +1 -1
- package/lib/services/index.d.ts +4 -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
|
@@ -30,11 +30,6 @@ export declare class DossierDetailTabDocumentenApiDocumentsComponent implements
|
|
|
30
30
|
key: string;
|
|
31
31
|
label: string;
|
|
32
32
|
}[];
|
|
33
|
-
actions: {
|
|
34
|
-
columnName: string;
|
|
35
|
-
iconClass: string;
|
|
36
|
-
callback: any;
|
|
37
|
-
}[];
|
|
38
33
|
showZaakLinkWarning: boolean;
|
|
39
34
|
isAdmin: boolean;
|
|
40
35
|
uploadProcessLinkedSet: boolean;
|
|
@@ -47,11 +42,13 @@ export declare class DossierDetailTabDocumentenApiDocumentsComponent implements
|
|
|
47
42
|
readonly loading$: BehaviorSubject<boolean>;
|
|
48
43
|
private readonly refetch$;
|
|
49
44
|
relatedFiles$: Observable<Array<RelatedFileListItem>>;
|
|
45
|
+
readonly downloadingFileIndexes$: BehaviorSubject<number[]>;
|
|
50
46
|
constructor(route: ActivatedRoute, documentService: DocumentService, toastrService: ToastrService, uploadProviderService: UploadProviderService, downloadService: DownloadService, promptService: PromptService, translateService: TranslateService, configService: ConfigService, userProviderService: UserProviderService, fileSortService: FileSortService);
|
|
51
47
|
ngOnInit(): void;
|
|
52
48
|
fileSelected(file: File): void;
|
|
53
|
-
downloadDocument(relatedFile: RelatedFile): void;
|
|
49
|
+
downloadDocument(relatedFile: RelatedFile, index: number): void;
|
|
54
50
|
metadataSet(metadata: DocumentenApiMetadata): void;
|
|
51
|
+
indexesIncludeIndex(indexes: Array<number>, index: number): boolean;
|
|
55
52
|
isUserAdmin(): void;
|
|
56
53
|
private refetchDocuments;
|
|
57
54
|
private setUploadProcessLinked;
|
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,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;
|
|
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":"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"}
|
|
@@ -9,15 +9,15 @@ import { FormioForm } from '@formio/angular';
|
|
|
9
9
|
import { UserProviderService } from '@valtimo/security';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class DossierDetailTabSummaryComponent implements OnInit, OnDestroy {
|
|
12
|
-
private router;
|
|
13
|
-
private documentService;
|
|
14
|
-
private taskService;
|
|
15
|
-
private processService;
|
|
16
|
-
private el;
|
|
17
|
-
private renderer;
|
|
18
|
-
private route;
|
|
19
|
-
private formService;
|
|
20
|
-
private userProviderService;
|
|
12
|
+
private readonly router;
|
|
13
|
+
private readonly documentService;
|
|
14
|
+
private readonly taskService;
|
|
15
|
+
private readonly processService;
|
|
16
|
+
private readonly el;
|
|
17
|
+
private readonly renderer;
|
|
18
|
+
private readonly route;
|
|
19
|
+
private readonly formService;
|
|
20
|
+
private readonly userProviderService;
|
|
21
21
|
readonly documentDefinitionName: string;
|
|
22
22
|
document: Document;
|
|
23
23
|
documentId: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"summary.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier/src/lib/dossier-detail/tab/summary/summary.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAEL,UAAU,EACV,SAAS,EACT,MAAM,EACN,SAAS,EAGV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,mBAAmB,EAAE,cAAc,EAAC,MAAM,kBAAkB,CAAC;AACrE,OAAO,EAAC,cAAc,EAAY,MAAM,EAAC,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAC,QAAQ,EAAE,eAAe,EAAE,uBAAuB,EAAC,MAAM,mBAAmB,CAAC;AACrF,OAAO,EAAC,wBAAwB,EAAE,WAAW,EAAC,MAAM,eAAe,CAAC;AACpE,OAAO,EAAC,WAAW,EAAC,MAAM,eAAe,CAAC;AAC1C,OAAO,EAAoB,oBAAoB,EAAC,MAAM,qBAAqB,CAAC;AAE5E,OAAO,EAAC,UAAU,EAAC,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAC,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;;AAMtD,qBAMa,gCAAiC,YAAW,MAAM,EAAE,SAAS;IAetE,OAAO,CAAC,MAAM;
|
|
1
|
+
{"version":3,"file":"summary.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier/src/lib/dossier-detail/tab/summary/summary.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAEL,UAAU,EACV,SAAS,EACT,MAAM,EACN,SAAS,EAGV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,mBAAmB,EAAE,cAAc,EAAC,MAAM,kBAAkB,CAAC;AACrE,OAAO,EAAC,cAAc,EAAY,MAAM,EAAC,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAC,QAAQ,EAAE,eAAe,EAAE,uBAAuB,EAAC,MAAM,mBAAmB,CAAC;AACrF,OAAO,EAAC,wBAAwB,EAAE,WAAW,EAAC,MAAM,eAAe,CAAC;AACpE,OAAO,EAAC,WAAW,EAAC,MAAM,eAAe,CAAC;AAC1C,OAAO,EAAoB,oBAAoB,EAAC,MAAM,qBAAqB,CAAC;AAE5E,OAAO,EAAC,UAAU,EAAC,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAC,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;;AAMtD,qBAMa,gCAAiC,YAAW,MAAM,EAAE,SAAS;IAetE,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,cAAc;IAC/B,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,QAAQ;IACzB,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAtBtC,SAAgB,sBAAsB,EAAE,MAAM,CAAC;IACxC,QAAQ,EAAE,QAAQ,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,wBAAwB,EAAE,uBAAuB,EAAE,CAAM;IAChE,OAAO,CAAC,QAAQ,CAAW;IACpB,KAAK,EAAE,mBAAmB,EAAE,CAAM;IAClC,MAAM,MAAC;IACP,cAAc,EAAE,UAAU,CAAQ;IAClC,OAAO,EAAE,oBAAoB,CAAC;IAC9B,KAAK,EAAE,MAAM,EAAE,CAAM;IAC5B,OAAO,CAAC,cAAc,CAAsB;IACnB,UAAU,EAAE,wBAAwB,CAAC;gBAG3C,MAAM,EAAE,MAAM,EACd,eAAe,EAAE,eAAe,EAChC,WAAW,EAAE,WAAW,EACxB,cAAc,EAAE,cAAc,EAC9B,EAAE,EAAE,UAAU,EACd,QAAQ,EAAE,SAAS,EACnB,KAAK,EAAE,cAAc,EACrB,WAAW,EAAE,WAAW,EACxB,mBAAmB,EAAE,mBAAmB;IAS3D,QAAQ;IAKR,WAAW;IAIX,IAAI;IAwBG,4BAA4B,CAAC,UAAU,EAAE,MAAM;IAatD,OAAO,CAAC,wBAAwB;IA2BzB,YAAY,CAAC,IAAI,EAAE,GAAG;yCAzGlB,gCAAgC;2CAAhC,gCAAgC;CA4G5C"}
|
|
@@ -1,74 +1,63 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
2
3
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
+
import { DossierColumnService, DossierListAssigneeService, DossierListPaginationService, DossierListSearchService, DossierListService, DossierParameterService } from '../services';
|
|
5
|
+
import { AssigneeFilter, ConfigService, DossierListTab, SearchField, SearchFieldValues, SortState } from '@valtimo/config';
|
|
6
|
+
import { ListField, Pagination } from '@valtimo/components';
|
|
3
7
|
import { TranslateService } from '@ngx-translate/core';
|
|
4
|
-
import {
|
|
5
|
-
import { DocumentService, ProcessDocumentDefinition, SortState } from '@valtimo/document';
|
|
6
|
-
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
7
|
-
import { DossierProcessStartModalComponent } from '../dossier-process-start-modal/dossier-process-start-modal.component';
|
|
8
|
-
import { DossierService } from '../dossier.service';
|
|
9
|
-
import { ListField } from '@valtimo/components';
|
|
10
|
-
import { NGXLogger } from 'ngx-logger';
|
|
8
|
+
import { DocumentService } from '@valtimo/document';
|
|
11
9
|
import { NgbNavChangeEvent } from '@ng-bootstrap/ng-bootstrap';
|
|
12
|
-
import { DossierColumnService, DossierParameterService } from '../services';
|
|
13
10
|
import * as i0 from "@angular/core";
|
|
14
|
-
export declare class DossierListComponent implements OnInit {
|
|
11
|
+
export declare class DossierListComponent implements OnInit, OnDestroy {
|
|
15
12
|
private readonly route;
|
|
16
|
-
private readonly router;
|
|
17
|
-
private readonly documentService;
|
|
18
13
|
private readonly translateService;
|
|
19
|
-
private readonly
|
|
20
|
-
private readonly
|
|
14
|
+
private readonly listService;
|
|
15
|
+
private readonly columnService;
|
|
16
|
+
private readonly assigneeService;
|
|
17
|
+
private readonly paginationService;
|
|
18
|
+
private readonly searchService;
|
|
19
|
+
private readonly parameterService;
|
|
20
|
+
private readonly documentService;
|
|
21
|
+
private readonly router;
|
|
21
22
|
private readonly configService;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
readonly
|
|
31
|
-
readonly loadingDocumentSearchFields$: BehaviorSubject<boolean>;
|
|
23
|
+
loadingFields: boolean;
|
|
24
|
+
loadingPagination: boolean;
|
|
25
|
+
loadingSearchFields: boolean;
|
|
26
|
+
loadingAssigneeFilter: boolean;
|
|
27
|
+
loadingDocumentItems: boolean;
|
|
28
|
+
pagination: Pagination;
|
|
29
|
+
canHaveAssignee: boolean;
|
|
30
|
+
visibleDossierTabs: Array<DossierListTab> | null;
|
|
31
|
+
readonly searchFields$: Observable<Array<SearchField> | null>;
|
|
32
32
|
readonly documentDefinitionName$: Observable<string>;
|
|
33
|
-
readonly hasEnvColumnConfig$: Observable<boolean>;
|
|
34
|
-
readonly canHaveAssignee$: Observable<boolean>;
|
|
35
|
-
readonly documentSearchFields$: Observable<Array<SearchField> | null>;
|
|
36
|
-
readonly associatedProcessDocumentDefinitions$: Observable<Array<ProcessDocumentDefinition>>;
|
|
37
33
|
readonly schema$: Observable<any>;
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
private readonly
|
|
41
|
-
private readonly
|
|
42
|
-
private readonly
|
|
34
|
+
readonly searchFieldValues$: Observable<SearchFieldValues>;
|
|
35
|
+
readonly assigneeFilter$: Observable<AssigneeFilter>;
|
|
36
|
+
private readonly _pagination$;
|
|
37
|
+
private readonly _hasEnvColumnConfig$;
|
|
38
|
+
private readonly _hasApiColumnConfig$;
|
|
39
|
+
private readonly _canHaveAssignee$;
|
|
40
|
+
private readonly _searchSwitch$;
|
|
41
|
+
private readonly _columns$;
|
|
43
42
|
readonly fields$: Observable<Array<ListField>>;
|
|
44
|
-
private readonly
|
|
45
|
-
private readonly
|
|
46
|
-
|
|
47
|
-
private
|
|
48
|
-
private
|
|
49
|
-
|
|
50
|
-
private readonly documentsRequest$;
|
|
51
|
-
readonly documentItems$: Observable<any[]>;
|
|
52
|
-
readonly setSearchFieldValuesSubject$: Subject<SearchFieldValues>;
|
|
53
|
-
constructor(route: ActivatedRoute, router: Router, documentService: DocumentService, translateService: TranslateService, dossierService: DossierService, logger: NGXLogger, configService: ConfigService, dossierColumnService: DossierColumnService, dossierParameterService: DossierParameterService);
|
|
43
|
+
private readonly _documentSearchRequest$;
|
|
44
|
+
private readonly _documentsRequest$;
|
|
45
|
+
documentItems$: Observable<any[]>;
|
|
46
|
+
private _previousDocumentDefinitionName;
|
|
47
|
+
private _documentDefinitionNameSubscription;
|
|
48
|
+
constructor(route: ActivatedRoute, translateService: TranslateService, listService: DossierListService, columnService: DossierColumnService, assigneeService: DossierListAssigneeService, paginationService: DossierListPaginationService, searchService: DossierListSearchService, parameterService: DossierParameterService, documentService: DocumentService, router: Router, configService: ConfigService);
|
|
54
49
|
ngOnInit(): void;
|
|
50
|
+
ngOnDestroy(): void;
|
|
51
|
+
search(searchFieldValues: SearchFieldValues): void;
|
|
52
|
+
rowClick(document: any): void;
|
|
55
53
|
pageChange(newPage: number): void;
|
|
56
54
|
pageSizeChange(newPageSize: number): void;
|
|
57
55
|
sortChanged(newSortState: SortState): void;
|
|
58
|
-
rowClick(document: any): void;
|
|
59
|
-
startDossier(): void;
|
|
60
|
-
selectProcess(processDocumentDefinition: ProcessDocumentDefinition): void;
|
|
61
|
-
search(searchFieldValues: SearchFieldValues): void;
|
|
62
56
|
tabChange(tab: NgbNavChangeEvent<any>): void;
|
|
63
|
-
|
|
64
|
-
private
|
|
65
|
-
private
|
|
66
|
-
private
|
|
67
|
-
private getStoredPagination;
|
|
68
|
-
private setCollectionSize;
|
|
69
|
-
private showStartProcessModal;
|
|
70
|
-
private checkPage;
|
|
71
|
-
private setSearchFieldParametersInComponent;
|
|
57
|
+
refresh(): void;
|
|
58
|
+
private openDocumentDefinitionNameSubscription;
|
|
59
|
+
private setLoading;
|
|
60
|
+
private setVisibleTabs;
|
|
72
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<DossierListComponent, never>;
|
|
73
62
|
static ɵcmp: i0.ɵɵComponentDeclaration<DossierListComponent, "valtimo-dossier-list", never, {}, {}, never, never, false>;
|
|
74
63
|
}
|
|
@@ -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,
|
|
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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"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { DocumentService, ProcessDocumentDefinition } from '@valtimo/document';
|
|
4
|
+
import { DossierProcessStartModalComponent } from '../dossier-process-start-modal/dossier-process-start-modal.component';
|
|
5
|
+
import { ActivatedRoute } from '@angular/router';
|
|
6
|
+
import { DossierListService } from '../services';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DossierListActionsComponent implements OnInit {
|
|
9
|
+
private readonly documentService;
|
|
10
|
+
private readonly route;
|
|
11
|
+
private readonly listService;
|
|
12
|
+
processStart: DossierProcessStartModalComponent;
|
|
13
|
+
loading: boolean;
|
|
14
|
+
formFlowComplete: EventEmitter<any>;
|
|
15
|
+
private selectedProcessDocumentDefinition;
|
|
16
|
+
private modalListenerAdded;
|
|
17
|
+
private _cachedAssociatedProcessDocumentDefinitions;
|
|
18
|
+
readonly associatedProcessDocumentDefinitions$: Observable<Array<ProcessDocumentDefinition>>;
|
|
19
|
+
constructor(documentService: DocumentService, route: ActivatedRoute, listService: DossierListService);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
startDossier(): void;
|
|
22
|
+
selectProcess(processDocumentDefinition: ProcessDocumentDefinition): void;
|
|
23
|
+
onFormFlowComplete(): void;
|
|
24
|
+
private showStartProcessModal;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierListActionsComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierListActionsComponent, "valtimo-dossier-list-actions", never, { "loading": "loading"; }, { "formFlowComplete": "formFlowComplete"; }, never, never, false>;
|
|
27
|
+
}
|
|
28
|
+
//# sourceMappingURL=dossier-list-actions.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-list-actions.component.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/dossier-list-actions/dossier-list-actions.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,YAAY,EAAS,MAAM,EAAoB,MAAM,eAAe,CAAC;AACxF,OAAO,EAAM,UAAU,EAAqB,MAAM,MAAM,CAAC;AACzD,OAAO,EAAC,eAAe,EAAE,yBAAyB,EAAC,MAAM,mBAAmB,CAAC;AAC7E,OAAO,EAAC,iCAAiC,EAAC,MAAM,sEAAsE,CAAC;AACvH,OAAO,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAC,kBAAkB,EAAC,MAAM,aAAa,CAAC;;AAI/C,qBAKa,2BAA4B,YAAW,MAAM;IA6BtD,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,WAAW;IA9BE,YAAY,EAAE,iCAAiC,CAAC;IAEvE,OAAO,EAAG,OAAO,CAAC;IAEjB,gBAAgB,oBAAsB;IAEhD,OAAO,CAAC,iCAAiC,CAA0C;IAEnF,OAAO,CAAC,kBAAkB,CAAS;IAEnC,OAAO,CAAC,2CAA2C,CAAwC;IAE3F,QAAQ,CAAC,qCAAqC,EAAE,UAAU,CAAC,KAAK,CAAC,yBAAyB,CAAC,CAAC,CAaxF;gBAGe,eAAe,EAAE,eAAe,EAChC,KAAK,EAAE,cAAc,EACrB,WAAW,EAAE,kBAAkB;IAGlD,QAAQ,IAAI,IAAI;IAIhB,YAAY,IAAI,IAAI;IAWpB,aAAa,CAAC,yBAAyB,EAAE,yBAAyB,GAAG,IAAI;IAUzE,kBAAkB;IAIlB,OAAO,CAAC,qBAAqB;yCA/DlB,2BAA2B;2CAA3B,2BAA2B;CAqEvC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { DocumentService, ProcessDocumentDefinition } from '@valtimo/document';
|
|
3
|
-
import { FormLinkService } from '@valtimo/form-link';
|
|
3
|
+
import { FormFlowService, FormLinkService, ProcessLinkService } from '@valtimo/form-link';
|
|
4
4
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
5
5
|
import { ProcessService } from '@valtimo/process';
|
|
6
6
|
import { FormioComponent, FormioSubmission, ModalComponent, ValtimoFormioOptions } from '@valtimo/components';
|
|
@@ -14,27 +14,36 @@ export declare class DossierProcessStartModalComponent implements OnInit {
|
|
|
14
14
|
private processService;
|
|
15
15
|
private documentService;
|
|
16
16
|
private formLinkService;
|
|
17
|
+
private processLinkService;
|
|
18
|
+
private formFlowService;
|
|
17
19
|
private userProviderService;
|
|
18
20
|
private logger;
|
|
19
21
|
processDefinitionKey: string;
|
|
22
|
+
processDefinitionId: string;
|
|
20
23
|
documentDefinitionName: string;
|
|
21
24
|
processName: string;
|
|
22
25
|
formDefinition: FormioForm;
|
|
26
|
+
formFlowInstanceId: string;
|
|
23
27
|
formioSubmission: FormioSubmission;
|
|
24
28
|
private formAssociation;
|
|
29
|
+
private processLinkId;
|
|
25
30
|
options: ValtimoFormioOptions;
|
|
26
31
|
isAdmin: boolean;
|
|
27
32
|
form: FormioComponent;
|
|
28
33
|
modal: ModalComponent;
|
|
29
|
-
|
|
34
|
+
formFlowComplete: EventEmitter<any>;
|
|
35
|
+
constructor(route: ActivatedRoute, router: Router, processService: ProcessService, documentService: DocumentService, formLinkService: FormLinkService, processLinkService: ProcessLinkService, formFlowService: FormFlowService, userProviderService: UserProviderService, logger: NGXLogger);
|
|
30
36
|
ngOnInit(): void;
|
|
31
|
-
private
|
|
37
|
+
private loadProcessLink;
|
|
38
|
+
private openFormAssociation;
|
|
32
39
|
gotoFormLinkScreen(): void;
|
|
33
40
|
get modalTitle(): string;
|
|
34
41
|
openModal(processDocumentDefinition: ProcessDocumentDefinition): void;
|
|
35
42
|
onSubmit(submission: FormioSubmission): void;
|
|
43
|
+
formFlowSubmitted(): void;
|
|
36
44
|
isUserAdmin(): void;
|
|
45
|
+
private submitCompleted;
|
|
37
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<DossierProcessStartModalComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DossierProcessStartModalComponent, "valtimo-dossier-process-start-modal", never, {}, {}, never, never, false>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierProcessStartModalComponent, "valtimo-dossier-process-start-modal", never, {}, { "formFlowComplete": "formFlowComplete"; }, never, never, false>;
|
|
39
48
|
}
|
|
40
49
|
//# sourceMappingURL=dossier-process-start-modal.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-process-start-modal.component.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/dossier-process-start-modal/dossier-process-start-modal.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,MAAM,
|
|
1
|
+
{"version":3,"file":"dossier-process-start-modal.component.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/dossier-process-start-modal/dossier-process-start-modal.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,YAAY,EAAE,MAAM,EAAuC,MAAM,eAAe,CAAC;AACpG,OAAO,EAAC,eAAe,EAAE,yBAAyB,EAAC,MAAM,mBAAmB,CAAC;AAC7E,OAAO,EAEL,eAAe,EACf,eAAe,EAEf,kBAAkB,EACnB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAC,cAAc,EAAE,MAAM,EAAC,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAChD,OAAO,EACL,eAAe,EAEf,gBAAgB,EAChB,cAAc,EACd,oBAAoB,EACrB,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAC,UAAU,EAAC,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAC,SAAS,EAAC,MAAM,YAAY,CAAC;AACrC,OAAO,EAAC,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;;AAGtD,qBAMa,iCAAkC,YAAW,MAAM;IAiB5D,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,cAAc;IACtB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,kBAAkB;IAC1B,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,mBAAmB;IAC3B,OAAO,CAAC,MAAM;IAxBT,oBAAoB,EAAE,MAAM,CAAC;IAC7B,mBAAmB,EAAE,MAAM,CAAC;IAC5B,sBAAsB,EAAE,MAAM,CAAC;IAC/B,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,UAAU,CAAC;IAC3B,kBAAkB,EAAE,MAAM,CAAC;IAC3B,gBAAgB,EAAE,gBAAgB,CAAC;IAC1C,OAAO,CAAC,eAAe,CAAkB;IACzC,OAAO,CAAC,aAAa,CAAS;IACvB,OAAO,EAAE,oBAAoB,CAAC;IAC9B,OAAO,EAAE,OAAO,CAAC;IACY,IAAI,EAAE,eAAe,CAAC;IACT,KAAK,EAAE,cAAc,CAAC;IAC7D,gBAAgB,oBAAsB;gBAGtC,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM,EACd,cAAc,EAAE,cAAc,EAC9B,eAAe,EAAE,eAAe,EAChC,eAAe,EAAE,eAAe,EAChC,kBAAkB,EAAE,kBAAkB,EACtC,eAAe,EAAE,eAAe,EAChC,mBAAmB,EAAE,mBAAmB,EACxC,MAAM,EAAE,SAAS;IAG3B,QAAQ;IAIR,OAAO,CAAC,eAAe;IAwCvB,OAAO,CAAC,mBAAmB;IAsCpB,kBAAkB;IAKzB,IAAW,UAAU,WAEpB;IAED,SAAS,CAAC,yBAAyB,EAAE,yBAAyB;IAcvD,QAAQ,CAAC,UAAU,EAAE,gBAAgB;IA0BrC,iBAAiB,IAAI,IAAI;IAKzB,WAAW,IAAI,IAAI;IAW1B,OAAO,CAAC,eAAe;yCA/KZ,iCAAiC;2CAAjC,iCAAiC;CAyL7C"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { FormioForm } from '@formio/angular';
|
|
3
|
-
import { FormioComponent,
|
|
3
|
+
import { FormioComponent, FormioSubmission, ModalComponent, ValtimoFormioOptions } from '@valtimo/components';
|
|
4
4
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
5
5
|
import { ProcessService } from '@valtimo/process';
|
|
6
6
|
import { DocumentService, ProcessDocumentDefinition } from '@valtimo/document';
|
|
7
|
-
import { FormLinkService } from '@valtimo/form-link';
|
|
7
|
+
import { FormFlowService, FormLinkService, ProcessLinkService } from '@valtimo/form-link';
|
|
8
8
|
import { NGXLogger } from 'ngx-logger';
|
|
9
9
|
import { Observable } from 'rxjs';
|
|
10
10
|
import { UserProviderService } from '@valtimo/security';
|
|
@@ -13,8 +13,10 @@ export declare class DossierSupportingProcessStartModalComponent {
|
|
|
13
13
|
private route;
|
|
14
14
|
private router;
|
|
15
15
|
private processService;
|
|
16
|
+
private processLinkService;
|
|
16
17
|
private documentService;
|
|
17
18
|
private formLinkService;
|
|
19
|
+
private formFlowService;
|
|
18
20
|
private logger;
|
|
19
21
|
private readonly userProviderService;
|
|
20
22
|
processDefinitionKey: string;
|
|
@@ -23,17 +25,22 @@ export declare class DossierSupportingProcessStartModalComponent {
|
|
|
23
25
|
formDefinition: FormioForm;
|
|
24
26
|
formioSubmission: FormioSubmission;
|
|
25
27
|
private formAssociation;
|
|
28
|
+
private processLinkId;
|
|
26
29
|
options: ValtimoFormioOptions;
|
|
27
30
|
submission: object;
|
|
31
|
+
processDefinitionId: string;
|
|
32
|
+
formFlowInstanceId: string;
|
|
28
33
|
readonly isAdmin$: Observable<boolean>;
|
|
29
34
|
form: FormioComponent;
|
|
30
35
|
modal: ModalComponent;
|
|
31
|
-
private documentId;
|
|
32
36
|
formSubmit: EventEmitter<any>;
|
|
33
|
-
|
|
34
|
-
|
|
37
|
+
private documentId;
|
|
38
|
+
constructor(route: ActivatedRoute, router: Router, processService: ProcessService, processLinkService: ProcessLinkService, documentService: DocumentService, formLinkService: FormLinkService, formFlowService: FormFlowService, logger: NGXLogger, userProviderService: UserProviderService);
|
|
39
|
+
private loadProcessLink;
|
|
40
|
+
private openFormAssociation;
|
|
35
41
|
openModal(processDocumentDefinition: ProcessDocumentDefinition, documentId: string): void;
|
|
36
42
|
onSubmit(submission: FormioSubmission): void;
|
|
43
|
+
formSubmitted(): void;
|
|
37
44
|
gotoFormLinkScreen(): void;
|
|
38
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<DossierSupportingProcessStartModalComponent, never>;
|
|
39
46
|
static ɵcmp: i0.ɵɵComponentDeclaration<DossierSupportingProcessStartModalComponent, "valtimo-dossier-supporting-process-start-modal", never, {}, { "formSubmit": "formSubmit"; }, never, never, false>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-supporting-process-start-modal.component.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/dossier-supporting-process-start-modal/dossier-supporting-process-start-modal.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,YAAY,EAAuC,MAAM,eAAe,CAAC;AAC5F,OAAO,EAAqB,UAAU,EAAC,MAAM,iBAAiB,CAAC;AAC/D,OAAO,EACL,eAAe,
|
|
1
|
+
{"version":3,"file":"dossier-supporting-process-start-modal.component.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/dossier-supporting-process-start-modal/dossier-supporting-process-start-modal.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,YAAY,EAAuC,MAAM,eAAe,CAAC;AAC5F,OAAO,EAAqB,UAAU,EAAC,MAAM,iBAAiB,CAAC;AAC/D,OAAO,EACL,eAAe,EAEf,gBAAgB,EAChB,cAAc,EACd,oBAAoB,EACrB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAC,cAAc,EAAE,MAAM,EAAC,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAChD,OAAO,EAAC,eAAe,EAAE,yBAAyB,EAAC,MAAM,mBAAmB,CAAC;AAC7E,OAAO,EAEL,eAAe,EACf,eAAe,EAEf,kBAAkB,EACnB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAC,SAAS,EAAC,MAAM,YAAY,CAAC;AACrC,OAAO,EAAO,UAAU,EAAC,MAAM,MAAM,CAAC;AAEtC,OAAO,EAAC,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;;AAEtD,qBAMa,2CAA2C;IAwBpD,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,cAAc;IACtB,OAAO,CAAC,kBAAkB;IAC1B,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IA/B/B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,sBAAsB,EAAE,MAAM,CAAC;IAC/B,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,UAAU,CAAC;IAC3B,gBAAgB,EAAE,gBAAgB,CAAC;IAC1C,OAAO,CAAC,eAAe,CAAkB;IACzC,OAAO,CAAC,aAAa,CAAS;IACvB,OAAO,EAAE,oBAAoB,CAAC;IAC9B,UAAU,EAAE,MAAM,CAAC;IACnB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,kBAAkB,EAAE,MAAM,CAAC;IAElC,QAAQ,CAAC,QAAQ,EAAE,UAAU,CAAC,OAAO,CAAC,CAEoC;IAEtC,IAAI,EAAE,eAAe,CAAC;IACC,KAAK,EAAE,cAAc,CAAC;IACvE,UAAU,oBAAsB;IAE1C,OAAO,CAAC,UAAU,CAAS;gBAGjB,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM,EACd,cAAc,EAAE,cAAc,EAC9B,kBAAkB,EAAE,kBAAkB,EACtC,eAAe,EAAE,eAAe,EAChC,eAAe,EAAE,eAAe,EAChC,eAAe,EAAE,eAAe,EAChC,MAAM,EAAE,SAAS,EACR,mBAAmB,EAAE,mBAAmB;IAG3D,OAAO,CAAC,eAAe;IAuCvB,OAAO,CAAC,mBAAmB;IA8C3B,SAAS,CAAC,yBAAyB,EAAE,yBAAyB,EAAE,UAAU,EAAE,MAAM;IAe3E,QAAQ,CAAC,UAAU,EAAE,gBAAgB;IAgCrC,aAAa;IAKb,kBAAkB;yCA5Kd,2CAA2C;2CAA3C,2CAA2C;CAgLvD"}
|
package/lib/dossier.module.d.ts
CHANGED
|
@@ -1,39 +1,41 @@
|
|
|
1
1
|
import { ModuleWithProviders } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
import * as i1 from "./dossier-list/dossier-list.component";
|
|
4
|
-
import * as i2 from "./dossier-
|
|
5
|
-
import * as i3 from "./dossier-detail/
|
|
6
|
-
import * as i4 from "./dossier-detail/tab/
|
|
7
|
-
import * as i5 from "./dossier-detail/tab/
|
|
8
|
-
import * as i6 from "./dossier-detail/tab/
|
|
9
|
-
import * as i7 from "./dossier-detail/tab/
|
|
10
|
-
import * as i8 from "./dossier-detail/tab/
|
|
11
|
-
import * as i9 from "./dossier-detail/tab/
|
|
12
|
-
import * as i10 from "./dossier-
|
|
13
|
-
import * as i11 from "./dossier-
|
|
14
|
-
import * as i12 from "./dossier-
|
|
15
|
-
import * as i13 from "./dossier-
|
|
16
|
-
import * as i14 from "./dossier-detail/tab/
|
|
17
|
-
import * as i15 from "./dossier-detail/tab/
|
|
18
|
-
import * as i16 from "./dossier-
|
|
19
|
-
import * as i17 from "./
|
|
20
|
-
import * as i18 from "
|
|
21
|
-
import * as i19 from "
|
|
22
|
-
import * as i20 from "
|
|
23
|
-
import * as i21 from "@valtimo/
|
|
24
|
-
import * as i22 from "@
|
|
25
|
-
import * as i23 from "@
|
|
26
|
-
import * as i24 from "@
|
|
27
|
-
import * as i25 from "@
|
|
28
|
-
import * as i26 from "@
|
|
29
|
-
import * as i27 from "@valtimo/
|
|
30
|
-
import * as i28 from "@valtimo/
|
|
31
|
-
import * as i29 from "
|
|
4
|
+
import * as i2 from "./dossier-list-actions/dossier-list-actions.component";
|
|
5
|
+
import * as i3 from "./dossier-detail/dossier-detail.component";
|
|
6
|
+
import * as i4 from "./dossier-detail/tab/summary/summary.component";
|
|
7
|
+
import * as i5 from "./dossier-detail/tab/progress/progress.component";
|
|
8
|
+
import * as i6 from "./dossier-detail/tab/audit/audit.component";
|
|
9
|
+
import * as i7 from "./dossier-detail/tab/documents/documents.component";
|
|
10
|
+
import * as i8 from "./dossier-detail/tab/contact-moments/contact-moments.component";
|
|
11
|
+
import * as i9 from "./dossier-detail/tab/zaakobjecten/zaakobjecten.component";
|
|
12
|
+
import * as i10 from "./dossier-detail/tab/notes/notes.component";
|
|
13
|
+
import * as i11 from "./dossier-update/dossier-update.component";
|
|
14
|
+
import * as i12 from "./dossier-process-start-modal/dossier-process-start-modal.component";
|
|
15
|
+
import * as i13 from "./dossier-supporting-process-start-modal/dossier-supporting-process-start-modal.component";
|
|
16
|
+
import * as i14 from "./dossier-detail/tab/object-type/object-type.component";
|
|
17
|
+
import * as i15 from "./dossier-detail/tab/documenten-api-documents/documenten-api-documents.component";
|
|
18
|
+
import * as i16 from "./dossier-detail/tab/s3-documents/s3-documents.component";
|
|
19
|
+
import * as i17 from "./dossier-assign-user/dossier-assign-user.component";
|
|
20
|
+
import * as i18 from "./components/note-modal/note-modal.component";
|
|
21
|
+
import * as i19 from "@angular/common";
|
|
22
|
+
import * as i20 from "./dossier-routing.module";
|
|
23
|
+
import * as i21 from "@valtimo/components";
|
|
24
|
+
import * as i22 from "@valtimo/process";
|
|
25
|
+
import * as i23 from "@ng-bootstrap/ng-bootstrap";
|
|
26
|
+
import * as i24 from "@angular/forms";
|
|
27
|
+
import * as i25 from "@valtimo/form";
|
|
28
|
+
import * as i26 from "@ngx-translate/core";
|
|
29
|
+
import * as i27 from "@valtimo/task";
|
|
30
|
+
import * as i28 from "@valtimo/config";
|
|
31
|
+
import * as i29 from "@valtimo/user-interface";
|
|
32
|
+
import * as i30 from "carbon-components-angular";
|
|
33
|
+
import * as i31 from "@valtimo/form-link";
|
|
32
34
|
export declare type TabsFactory = () => Map<string, object>;
|
|
33
35
|
export declare class DossierModule {
|
|
34
36
|
static forRoot(tabsFactory: TabsFactory): ModuleWithProviders<DossierModule>;
|
|
35
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<DossierModule, never>;
|
|
36
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DossierModule, [typeof i1.DossierListComponent, typeof i2.
|
|
38
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DossierModule, [typeof i1.DossierListComponent, typeof i2.DossierListActionsComponent, typeof i3.DossierDetailComponent, typeof i4.DossierDetailTabSummaryComponent, typeof i5.DossierDetailTabProgressComponent, typeof i6.DossierDetailTabAuditComponent, typeof i7.DossierDetailTabDocumentsComponent, typeof i8.DossierDetailTabContactMomentsComponent, typeof i9.DossierDetailTabZaakobjectenComponent, typeof i10.DossierDetailTabNotesComponent, typeof i11.DossierUpdateComponent, typeof i12.DossierProcessStartModalComponent, typeof i13.DossierSupportingProcessStartModalComponent, typeof i14.DossierDetailTabObjectTypeComponent, typeof i15.DossierDetailTabDocumentenApiDocumentsComponent, typeof i16.DossierDetailTabS3DocumentsComponent, typeof i17.DossierAssignUserComponent, typeof i18.NoteModalComponent], [typeof i19.CommonModule, typeof i20.DossierRoutingModule, typeof i21.ListModule, typeof i21.WidgetModule, typeof i21.BpmnJsDiagramModule, typeof i21.TimelineModule, typeof i21.CamundaFormModule, typeof i22.ProcessModule, typeof i21.FilterSidebarModule, typeof i23.NgbButtonsModule, typeof i21.DataListModule, typeof i24.FormsModule, typeof i25.FormModule, typeof i21.FormIoModule, typeof i21.ModalModule, typeof i21.SpinnerModule, typeof i26.TranslateModule, typeof i27.TaskModule, typeof i21.ModalModule, typeof i23.NgbTooltipModule, typeof i21.UploaderModule, typeof i21.DropzoneModule, typeof i23.NgbPaginationModule, typeof i28.ConfigModule, typeof i29.SelectModule, typeof i29.InputLabelModule, typeof i29.ParagraphModule, typeof i29.TableModule, typeof i29.ModalModule, typeof i29.TitleModule, typeof i29.ButtonModule, typeof i21.DocumentenApiMetadataModalModule, typeof i21.SearchableDropdownSelectModule, typeof i21.SearchFieldsModule, typeof i29.PageModule, typeof i25.FormModule, typeof i29.InputModule, typeof i29.FormModule, typeof i23.NgbModule, typeof i30.LoadingModule, typeof i30.ButtonModule, typeof i30.IconModule, typeof i31.FormLinkModule], [typeof i1.DossierListComponent, typeof i3.DossierDetailComponent]>;
|
|
37
39
|
static ɵinj: i0.ɵɵInjectorDeclaration<DossierModule>;
|
|
38
40
|
}
|
|
39
41
|
//# 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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyE1F,oBAAY,WAAW,GAAG,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AAEpD,qBA0Ea,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":"dossier-parameters.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/models/dossier-parameters.model.ts"],"names":[],"mappings":"AAgBA,UAAU,oBAAoB;IAC5B,cAAc,EAAE,MAAM,CAAC;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,qBAAqB,EAAE,MAAM,CAAC;IAC9B,aAAa,EAAE,MAAM,CAAC;IACtB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC;CAC7B;AAED,UAAU,iBAAkB,SAAQ,oBAAoB;IACtD,MAAM,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"dossier-parameters.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/models/dossier-parameters.model.ts"],"names":[],"mappings":"AAgBA,UAAU,oBAAoB;IAC5B,cAAc,EAAE,MAAM,CAAC;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,qBAAqB,EAAE,MAAM,CAAC;IAC9B,aAAa,EAAE,MAAM,CAAC;IACtB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC;CAC7B;AAED,UAAU,iBAAkB,SAAQ,oBAAoB;IACtD,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,OAAO,EAAC,iBAAiB,EAAC,CAAC"}
|
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
import { ConfigService, DefinitionColumn } from '@valtimo/config';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { DocumentService } from '@valtimo/document';
|
|
4
|
+
import { ListField } from '@valtimo/components';
|
|
5
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
4
6
|
import * as i0 from "@angular/core";
|
|
5
7
|
export declare class DossierColumnService {
|
|
6
8
|
private readonly configService;
|
|
7
9
|
private readonly documentService;
|
|
8
|
-
|
|
10
|
+
private readonly translateService;
|
|
11
|
+
constructor(configService: ConfigService, documentService: DocumentService, translateService: TranslateService);
|
|
9
12
|
getDefinitionColumns(documentDefinitionName: string): Observable<{
|
|
10
13
|
columns: Array<DefinitionColumn>;
|
|
11
14
|
hasApiConfig: boolean;
|
|
12
15
|
}>;
|
|
13
16
|
hasEnvironmentConfig(documentDefinitionName: string): boolean;
|
|
17
|
+
mapDefinitionColumnsToListFields(columns: Array<DefinitionColumn>, hasEnvConfig: boolean): Array<ListField>;
|
|
14
18
|
private mapCaseListColumnsToDefinitionColumns;
|
|
15
19
|
private getViewType;
|
|
16
20
|
private getPropertyName;
|
|
@@ -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":"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;;
|
|
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;AAClE,OAAO,EAAC,SAAS,EAAC,MAAM,qBAAqB,CAAC;AAC9C,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;;AAErD,qBACa,oBAAoB;IAE7B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,gBAAgB;gBAFhB,aAAa,EAAE,aAAa,EAC5B,eAAe,EAAE,eAAe,EAChC,gBAAgB,EAAE,gBAAgB;IAGrD,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,gCAAgC,CAC9B,OAAO,EAAE,KAAK,CAAC,gBAAgB,CAAC,EAChC,YAAY,EAAE,OAAO,GACpB,KAAK,CAAC,SAAS,CAAC;IAiBnB,OAAO,CAAC,qCAAqC;IAmB7C,OAAO,CAAC,WAAW;IAanB,OAAO,CAAC,eAAe;yCAvFZ,oBAAoB;6CAApB,oBAAoB;CA0FhC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { DossierListService } from './dossier-list.service';
|
|
3
|
+
import { DocumentService } from '@valtimo/document';
|
|
4
|
+
import { AssigneeFilter, DefinitionColumn } from '@valtimo/config';
|
|
5
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
6
|
+
import { ListField } from '@valtimo/components';
|
|
7
|
+
import { DossierParameterService } from './dossier-parameter.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class DossierListAssigneeService {
|
|
10
|
+
private readonly dossierListService;
|
|
11
|
+
private readonly documentService;
|
|
12
|
+
private readonly translateService;
|
|
13
|
+
private readonly dossierParameterService;
|
|
14
|
+
private readonly ASSIGNEE_KEY;
|
|
15
|
+
private readonly defaultAssigneeFilter;
|
|
16
|
+
readonly canHaveAssignee$: Observable<boolean>;
|
|
17
|
+
private readonly _assigneeFilter$;
|
|
18
|
+
get assigneeFilter$(): Observable<AssigneeFilter>;
|
|
19
|
+
constructor(dossierListService: DossierListService, documentService: DocumentService, translateService: TranslateService, dossierParameterService: DossierParameterService);
|
|
20
|
+
resetAssigneeFilter(): void;
|
|
21
|
+
setAssigneeFilter(assigneeFilter: AssigneeFilter): void;
|
|
22
|
+
filterAssigneeColumns(columns: Array<DefinitionColumn>, canHaveAssignee: boolean): Array<DefinitionColumn>;
|
|
23
|
+
addAssigneeListField(columns: Array<DefinitionColumn>, listFields: Array<ListField>, canHaveAssignee: boolean): Array<ListField>;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierListAssigneeService, never>;
|
|
25
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DossierListAssigneeService>;
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=dossier-list-assignee.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-list-assignee.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/services/dossier-list-assignee.service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAuB,UAAU,EAAkB,MAAM,MAAM,CAAC;AACvE,OAAO,EAAC,kBAAkB,EAAC,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAC,eAAe,EAAC,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAC,cAAc,EAAE,gBAAgB,EAAC,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,SAAS,EAAC,MAAM,qBAAqB,CAAC;AAC9C,OAAO,EAAC,uBAAuB,EAAC,MAAM,6BAA6B,CAAC;;AAEpE,qBACa,0BAA0B;IAqBnC,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,uBAAuB;IAvB1C,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAsB;IACnD,OAAO,CAAC,QAAQ,CAAC,qBAAqB,CAAyB;IAE/D,QAAQ,CAAC,gBAAgB,EAAE,UAAU,CAAC,OAAO,CAAC,CAM1C;IAEJ,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAE/B;IAEF,IAAI,eAAe,IAAI,UAAU,CAAC,cAAc,CAAC,CAEhD;gBAGkB,kBAAkB,EAAE,kBAAkB,EACtC,eAAe,EAAE,eAAe,EAChC,gBAAgB,EAAE,gBAAgB,EAClC,uBAAuB,EAAE,uBAAuB;IAGnE,mBAAmB,IAAI,IAAI;IAY3B,iBAAiB,CAAC,cAAc,EAAE,cAAc,GAAG,IAAI;IAKvD,qBAAqB,CACnB,OAAO,EAAE,KAAK,CAAC,gBAAgB,CAAC,EAChC,eAAe,EAAE,OAAO,GACvB,KAAK,CAAC,gBAAgB,CAAC;IAS1B,oBAAoB,CAClB,OAAO,EAAE,KAAK,CAAC,gBAAgB,CAAC,EAChC,UAAU,EAAE,KAAK,CAAC,SAAS,CAAC,EAC5B,eAAe,EAAE,OAAO,GACvB,KAAK,CAAC,SAAS,CAAC;yCA5DR,0BAA0B;6CAA1B,0BAA0B;CA2EtC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { Pagination } from '@valtimo/components';
|
|
3
|
+
import { NGXLogger } from 'ngx-logger';
|
|
4
|
+
import { DossierParameterService } from './dossier-parameter.service';
|
|
5
|
+
import { DefinitionColumn } from '@valtimo/config';
|
|
6
|
+
import { DossierService } from '../dossier.service';
|
|
7
|
+
import { Documents, SortState, SpecifiedDocuments } from '@valtimo/document';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class DossierListPaginationService {
|
|
10
|
+
private readonly logger;
|
|
11
|
+
private readonly dossierParameterService;
|
|
12
|
+
private readonly dossierService;
|
|
13
|
+
private readonly DEFAULT_PAGINATION;
|
|
14
|
+
private readonly _pagination$;
|
|
15
|
+
private readonly _paginationCopy$;
|
|
16
|
+
get pagination$(): Observable<Pagination>;
|
|
17
|
+
constructor(logger: NGXLogger, dossierParameterService: DossierParameterService, dossierService: DossierService);
|
|
18
|
+
pageChange(newPage: number): void;
|
|
19
|
+
pageSizeChange(newPageSize: number): void;
|
|
20
|
+
sortChanged(newSortState: SortState): void;
|
|
21
|
+
setPage(newPageNumber: number): void;
|
|
22
|
+
setCollectionSize(documents: Documents | SpecifiedDocuments): void;
|
|
23
|
+
checkPage(documents: Documents | SpecifiedDocuments): void;
|
|
24
|
+
clearPagination(): void;
|
|
25
|
+
setPagination(documentDefinitionName: string, columns: Array<DefinitionColumn>): void;
|
|
26
|
+
private getDefaultPagination;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierListPaginationService, never>;
|
|
28
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DossierListPaginationService>;
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=dossier-list-pagination.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-list-pagination.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/services/dossier-list-pagination.service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAA+B,UAAU,EAAY,MAAM,MAAM,CAAC;AACzE,OAAO,EAAC,UAAU,EAAC,MAAM,qBAAqB,CAAC;AAC/C,OAAO,EAAC,SAAS,EAAC,MAAM,YAAY,CAAC;AACrC,OAAO,EAAC,uBAAuB,EAAC,MAAM,6BAA6B,CAAC;AACpE,OAAO,EAAC,gBAAgB,EAAC,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAC,cAAc,EAAC,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAC,SAAS,EAAE,SAAS,EAAE,kBAAkB,EAAC,MAAM,mBAAmB,CAAC;;AAE3E,qBACa,4BAA4B;IAsBrC,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,uBAAuB;IACxC,OAAO,CAAC,QAAQ,CAAC,cAAc;IAvBjC,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAMjC;IAEF,OAAO,CAAC,QAAQ,CAAC,YAAY,CAA0D;IAEvF,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAI/B;IAEF,IAAI,WAAW,IAAI,UAAU,CAAC,UAAU,CAAC,CAExC;gBAGkB,MAAM,EAAE,SAAS,EACjB,uBAAuB,EAAE,uBAAuB,EAChD,cAAc,EAAE,cAAc;IAGjD,UAAU,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IASjC,cAAc,CAAC,WAAW,EAAE,MAAM,GAAG,IAAI;IAazC,WAAW,CAAC,YAAY,EAAE,SAAS,GAAG,IAAI;IAS1C,OAAO,CAAC,aAAa,EAAE,MAAM,GAAG,IAAI;IAMpC,iBAAiB,CAAC,SAAS,EAAE,SAAS,GAAG,kBAAkB,GAAG,IAAI;IAQlE,SAAS,CAAC,SAAS,EAAE,SAAS,GAAG,kBAAkB,GAAG,IAAI;IAc1D,eAAe,IAAI,IAAI;IAIvB,aAAa,CAAC,sBAAsB,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,CAAC,gBAAgB,CAAC,GAAG,IAAI;IAarF,OAAO,CAAC,oBAAoB;yCAvGjB,4BAA4B;6CAA5B,4BAA4B;CA+GxC"}
|