@valtimo/dossier 11.3.1 → 12.0.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/esm2022/lib/components/dossier-assign-user/dossier-assign-user.component.mjs +7 -7
- package/esm2022/lib/components/dossier-bulk-assign-modal/dossier-bulk-assign-modal.component.mjs +7 -7
- package/esm2022/lib/components/dossier-detail/dossier-detail.component.mjs +47 -12
- package/esm2022/lib/components/dossier-detail/tab/audit/audit.component.mjs +7 -7
- package/esm2022/lib/components/dossier-detail/tab/documents/documents.component.mjs +52 -16
- package/esm2022/lib/components/dossier-detail/tab/formio/formio.component.mjs +7 -7
- package/esm2022/lib/components/dossier-detail/tab/not-found/not-found.component.mjs +28 -0
- package/esm2022/lib/components/dossier-detail/tab/notes/notes.component.mjs +14 -9
- package/esm2022/lib/components/dossier-detail/tab/progress/progress.component.mjs +8 -12
- package/esm2022/lib/components/dossier-detail/tab/s3-documents/s3-documents.component.mjs +8 -9
- package/esm2022/lib/components/dossier-detail/tab/summary/summary.component.mjs +7 -7
- package/esm2022/lib/components/dossier-list/dossier-list.component.mjs +78 -53
- package/esm2022/lib/components/dossier-list-actions/dossier-list-actions.component.mjs +7 -7
- package/esm2022/lib/components/dossier-process-start-modal/dossier-process-start-modal.component.mjs +18 -16
- package/esm2022/lib/components/dossier-supporting-process-start-modal/dossier-supporting-process-start-modal.component.mjs +9 -9
- package/esm2022/lib/components/dossier-update/dossier-update.component.mjs +7 -7
- package/esm2022/lib/components/note-modal/note-modal.component.mjs +7 -7
- package/esm2022/lib/constants/case-status.constants.mjs +26 -0
- package/esm2022/lib/constants/case-tab-token.mjs +2 -2
- package/esm2022/lib/constants/dossier-list.constants.mjs +39 -0
- package/esm2022/lib/constants/index.mjs +18 -1
- package/esm2022/lib/constants/tab.mjs +2 -6
- package/esm2022/lib/dossier-routing.module.mjs +6 -6
- package/esm2022/lib/dossier.module.mjs +32 -29
- package/esm2022/lib/models/candidate-user.model.mjs +2 -2
- package/esm2022/lib/models/dossier-detail-tab.model.mjs +2 -4
- package/esm2022/lib/models/dossier-parameters.model.mjs +2 -2
- package/esm2022/lib/models/index.mjs +2 -3
- package/esm2022/lib/models/notes.model.mjs +2 -2
- package/esm2022/lib/models/search.model.mjs +2 -2
- package/esm2022/lib/models/tab-api.model.mjs +2 -2
- package/esm2022/lib/models/tabs.model.mjs +2 -2
- package/esm2022/lib/permissions/dossier-detail.permissions.mjs +2 -2
- package/esm2022/lib/permissions/index.mjs +2 -2
- package/esm2022/lib/pipes/index.mjs +2 -2
- package/esm2022/lib/pipes/tab-translate/index.mjs +2 -2
- package/esm2022/lib/pipes/tab-translate/tab-translate-pipe.module.mjs +6 -6
- package/esm2022/lib/pipes/tab-translate/tab-translate.pipe.mjs +6 -6
- package/esm2022/lib/services/dossier-bulk-assign.service.mjs +5 -5
- package/esm2022/lib/services/dossier-column.service.mjs +7 -7
- package/esm2022/lib/services/dossier-list-assignee.service.mjs +6 -6
- package/esm2022/lib/services/dossier-list-pagination.service.mjs +6 -6
- package/esm2022/lib/services/dossier-list-search.service.mjs +6 -6
- package/esm2022/lib/services/dossier-list-status.service.mjs +62 -0
- package/esm2022/lib/services/dossier-list.service.mjs +6 -6
- package/esm2022/lib/services/dossier-parameter.service.mjs +44 -18
- package/esm2022/lib/services/dossier-tab-api.service.mjs +20 -5
- package/esm2022/lib/services/dossier-tab.service.mjs +19 -11
- package/esm2022/lib/services/dossier.service.mjs +6 -6
- package/esm2022/lib/services/index.mjs +4 -3
- package/esm2022/lib/services/notes.service.mjs +6 -6
- package/esm2022/lib/services/start-modal.service.mjs +23 -8
- package/esm2022/public_api.mjs +2 -4
- package/fesm2022/valtimo-dossier.mjs +604 -799
- package/fesm2022/valtimo-dossier.mjs.map +1 -1
- package/lib/components/dossier-detail/dossier-detail.component.d.ts +13 -3
- package/lib/components/dossier-detail/dossier-detail.component.d.ts.map +1 -1
- package/lib/components/dossier-detail/tab/documents/documents.component.d.ts +16 -6
- package/lib/components/dossier-detail/tab/documents/documents.component.d.ts.map +1 -1
- package/lib/components/dossier-detail/tab/not-found/not-found.component.d.ts +6 -0
- package/lib/components/dossier-detail/tab/not-found/not-found.component.d.ts.map +1 -0
- package/lib/components/dossier-detail/tab/notes/notes.component.d.ts +2 -1
- package/lib/components/dossier-detail/tab/notes/notes.component.d.ts.map +1 -1
- package/lib/components/dossier-detail/tab/progress/progress.component.d.ts.map +1 -1
- package/lib/components/dossier-detail/tab/s3-documents/s3-documents.component.d.ts +1 -2
- package/lib/components/dossier-detail/tab/s3-documents/s3-documents.component.d.ts.map +1 -1
- package/lib/components/dossier-list/dossier-list.component.d.ts +14 -15
- package/lib/components/dossier-list/dossier-list.component.d.ts.map +1 -1
- package/lib/components/dossier-process-start-modal/dossier-process-start-modal.component.d.ts +2 -3
- package/lib/components/dossier-process-start-modal/dossier-process-start-modal.component.d.ts.map +1 -1
- package/lib/components/dossier-supporting-process-start-modal/dossier-supporting-process-start-modal.component.d.ts +1 -1
- package/lib/components/dossier-supporting-process-start-modal/dossier-supporting-process-start-modal.component.d.ts.map +1 -1
- package/lib/constants/case-status.constants.d.ts +5 -0
- package/lib/constants/case-status.constants.d.ts.map +1 -0
- package/lib/constants/dossier-list.constants.d.ts +7 -0
- package/lib/constants/dossier-list.constants.d.ts.map +1 -0
- package/lib/constants/index.d.ts +2 -0
- package/lib/constants/index.d.ts.map +1 -1
- package/lib/constants/tab.d.ts.map +1 -1
- package/lib/dossier.module.d.ts +23 -26
- package/lib/dossier.module.d.ts.map +1 -1
- package/lib/models/dossier-detail-tab.model.d.ts +0 -2
- package/lib/models/dossier-detail-tab.model.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/models/index.d.ts +0 -1
- package/lib/models/index.d.ts.map +1 -1
- package/lib/services/dossier-list-status.service.d.ts +21 -0
- package/lib/services/dossier-list-status.service.d.ts.map +1 -0
- package/lib/services/dossier-list.service.d.ts +1 -1
- package/lib/services/dossier-list.service.d.ts.map +1 -1
- package/lib/services/dossier-parameter.service.d.ts +4 -2
- package/lib/services/dossier-parameter.service.d.ts.map +1 -1
- package/lib/services/dossier-tab-api.service.d.ts.map +1 -1
- package/lib/services/dossier-tab.service.d.ts +4 -3
- package/lib/services/dossier-tab.service.d.ts.map +1 -1
- package/lib/services/index.d.ts +2 -1
- package/lib/services/index.d.ts.map +1 -1
- package/lib/services/start-modal.service.d.ts.map +1 -1
- package/package.json +5 -5
- package/public_api.d.ts +0 -2
- package/public_api.d.ts.map +1 -1
- package/esm2022/lib/components/dossier-detail/tab/contact-moments/contact-moments.component.mjs +0 -86
- package/esm2022/lib/components/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.mjs +0 -146
- package/esm2022/lib/components/dossier-detail/tab/object-type/object-type.component.mjs +0 -121
- package/esm2022/lib/components/dossier-detail/tab/zaakobjecten/zaakobjecten.component.mjs +0 -112
- package/esm2022/lib/models/zaakobjecten.model.mjs +0 -17
- package/esm2022/lib/services/file-sort.service.mjs +0 -39
- package/esm2022/lib/services/zaakobjecten.service.mjs +0 -44
- package/lib/components/dossier-detail/tab/contact-moments/contact-moments.component.d.ts +0 -30
- package/lib/components/dossier-detail/tab/contact-moments/contact-moments.component.d.ts.map +0 -1
- package/lib/components/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.d.ts +0 -57
- package/lib/components/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.d.ts.map +0 -1
- package/lib/components/dossier-detail/tab/object-type/object-type.component.d.ts +0 -32
- package/lib/components/dossier-detail/tab/object-type/object-type.component.d.ts.map +0 -1
- package/lib/components/dossier-detail/tab/zaakobjecten/zaakobjecten.component.d.ts +0 -32
- package/lib/components/dossier-detail/tab/zaakobjecten/zaakobjecten.component.d.ts.map +0 -1
- package/lib/models/zaakobjecten.model.d.ts +0 -26
- package/lib/models/zaakobjecten.model.d.ts.map +0 -1
- package/lib/services/file-sort.service.d.ts +0 -11
- package/lib/services/file-sort.service.d.ts.map +0 -1
- package/lib/services/zaakobjecten.service.d.ts +0 -17
- package/lib/services/zaakobjecten.service.d.ts.map +0 -1
|
@@ -2,15 +2,16 @@ import { Location } from '@angular/common';
|
|
|
2
2
|
import { AfterViewInit, ComponentFactoryResolver, OnDestroy, ViewContainerRef } from '@angular/core';
|
|
3
3
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
4
|
import { PermissionService } from '@valtimo/access-control';
|
|
5
|
-
import { BreadcrumbService } from '@valtimo/components';
|
|
5
|
+
import { BreadcrumbService, PageHeaderService, PageTitleService } from '@valtimo/components';
|
|
6
6
|
import { ConfigService } from '@valtimo/config';
|
|
7
|
-
import { Document, DocumentService, ProcessDocumentDefinition } from '@valtimo/document';
|
|
7
|
+
import { CaseStatusService, Document, DocumentService, InternalCaseStatus, ProcessDocumentDefinition } from '@valtimo/document';
|
|
8
8
|
import { KeycloakService } from 'keycloak-angular';
|
|
9
9
|
import { NGXLogger } from 'ngx-logger';
|
|
10
10
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
11
11
|
import { DossierSupportingProcessStartModalComponent } from '../dossier-supporting-process-start-modal/dossier-supporting-process-start-modal.component';
|
|
12
12
|
import { TabLoaderImpl } from '../../models';
|
|
13
13
|
import { DossierService, DossierTabService } from '../../services';
|
|
14
|
+
import { IconService } from 'carbon-components-angular';
|
|
14
15
|
import * as i0 from "@angular/core";
|
|
15
16
|
export declare class DossierDetailComponent implements AfterViewInit, OnDestroy {
|
|
16
17
|
private readonly breadcrumbService;
|
|
@@ -25,6 +26,10 @@ export declare class DossierDetailComponent implements AfterViewInit, OnDestroy
|
|
|
25
26
|
private readonly router;
|
|
26
27
|
private readonly dossierTabService;
|
|
27
28
|
private readonly dossierService;
|
|
29
|
+
private readonly caseStatusService;
|
|
30
|
+
private readonly pageTitleService;
|
|
31
|
+
private readonly iconService;
|
|
32
|
+
private readonly pageHeaderService;
|
|
28
33
|
supportingProcessStart: DossierSupportingProcessStartModalComponent;
|
|
29
34
|
viewContainerRef: ViewContainerRef;
|
|
30
35
|
customDossierHeaderItems: Array<any>;
|
|
@@ -36,8 +41,11 @@ export declare class DossierDetailComponent implements AfterViewInit, OnDestroy
|
|
|
36
41
|
processDocumentDefinitions: ProcessDocumentDefinition[];
|
|
37
42
|
tabLoader: TabLoaderImpl | null;
|
|
38
43
|
readonly assigneeId$: BehaviorSubject<string>;
|
|
44
|
+
private readonly _caseStatusKey$;
|
|
45
|
+
readonly caseStatusKey$: Observable<string | 'NOT_AVAILABLE'>;
|
|
39
46
|
readonly document$: Observable<Document | null>;
|
|
40
47
|
readonly documentDefinitionName$: Observable<string>;
|
|
48
|
+
readonly caseStatus$: Observable<InternalCaseStatus | undefined>;
|
|
41
49
|
readonly userId$: Observable<string | undefined>;
|
|
42
50
|
readonly isAssigning$: BehaviorSubject<boolean>;
|
|
43
51
|
readonly isAssignedToCurrentUser$: Observable<boolean>;
|
|
@@ -47,14 +55,16 @@ export declare class DossierDetailComponent implements AfterViewInit, OnDestroy
|
|
|
47
55
|
readonly canClaim$: Observable<boolean>;
|
|
48
56
|
readonly loadingTabs$: BehaviorSubject<boolean>;
|
|
49
57
|
readonly noTabsConfigured$: BehaviorSubject<boolean>;
|
|
58
|
+
readonly compactMode$: Observable<boolean>;
|
|
50
59
|
private _snapshot;
|
|
51
60
|
private _initialTabName;
|
|
52
|
-
constructor(breadcrumbService: BreadcrumbService, componentFactoryResolver: ComponentFactoryResolver, configService: ConfigService, documentService: DocumentService, keyCloakService: KeycloakService, location: Location, logger: NGXLogger, permissionService: PermissionService, route: ActivatedRoute, router: Router, dossierTabService: DossierTabService, dossierService: DossierService);
|
|
61
|
+
constructor(breadcrumbService: BreadcrumbService, componentFactoryResolver: ComponentFactoryResolver, configService: ConfigService, documentService: DocumentService, keyCloakService: KeycloakService, location: Location, logger: NGXLogger, permissionService: PermissionService, route: ActivatedRoute, router: Router, dossierTabService: DossierTabService, dossierService: DossierService, caseStatusService: CaseStatusService, pageTitleService: PageTitleService, iconService: IconService, pageHeaderService: PageHeaderService);
|
|
53
62
|
ngAfterViewInit(): void;
|
|
54
63
|
ngOnDestroy(): void;
|
|
55
64
|
getAllAssociatedProcessDefinitions(): void;
|
|
56
65
|
startProcess(processDocumentDefinition: ProcessDocumentDefinition): void;
|
|
57
66
|
claimAssignee(): void;
|
|
67
|
+
unassignAssignee(): void;
|
|
58
68
|
private initBreadcrumb;
|
|
59
69
|
private initTabLoader;
|
|
60
70
|
assignmentOfDocumentChanged(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-detail.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/dossier-detail.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,QAAQ,EAAC,MAAM,iBAAiB,CAAC;AACzC,OAAO,EACL,aAAa,EAEb,wBAAwB,EACxB,SAAS,EAET,gBAAgB,EACjB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,cAAc,EAAoB,MAAM,EAAC,MAAM,iBAAiB,CAAC;AACzE,OAAO,EAAC,iBAAiB,EAAC,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAC,iBAAiB,EAAC,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"dossier-detail.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/dossier-detail.component.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,13 +1,23 @@
|
|
|
1
|
+
import { AfterViewInit, OnDestroy, OnInit, Type } from '@angular/core';
|
|
1
2
|
import { ConfigService } from '@valtimo/config';
|
|
3
|
+
import { BehaviorSubject } from 'rxjs';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class DossierDetailTabDocumentsComponent {
|
|
5
|
+
export declare class DossierDetailTabDocumentsComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
4
6
|
private readonly configService;
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
private readonly zgwDocumentenApiDocumentsComponent;
|
|
8
|
+
noMargin: boolean;
|
|
9
|
+
noMinHeight: boolean;
|
|
10
|
+
private _externalDocumentsTab;
|
|
11
|
+
readonly openZaakUploadProvider$: BehaviorSubject<boolean>;
|
|
12
|
+
readonly s3UploadProvider$: BehaviorSubject<boolean>;
|
|
13
|
+
readonly documentenApiUploadProvider$: BehaviorSubject<boolean>;
|
|
14
|
+
private readonly _subscriptions;
|
|
15
|
+
constructor(configService: ConfigService, zgwDocumentenApiDocumentsComponent: Type<any>);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
ngAfterViewInit(): void;
|
|
18
|
+
ngOnDestroy(): void;
|
|
9
19
|
private setConfig;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DossierDetailTabDocumentsComponent,
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierDetailTabDocumentsComponent, [null, { optional: true; }]>;
|
|
11
21
|
static ɵcmp: i0.ɵɵComponentDeclaration<DossierDetailTabDocumentsComponent, "valtimo-dossier-detail-tab-documents", never, {}, {}, never, never, false, never>;
|
|
12
22
|
}
|
|
13
23
|
//# sourceMappingURL=documents.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"documents.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/documents/documents.component.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"documents.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/documents/documents.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EACL,aAAa,EAIb,SAAS,EACT,MAAM,EAEN,IAAI,EAGL,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,aAAa,EAId,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAC,eAAe,EAAe,MAAM,MAAM,CAAC;;AAGnD,qBAIa,kCAAmC,YAAW,MAAM,EAAE,aAAa,EAAE,SAAS;IAcvF,OAAO,CAAC,QAAQ,CAAC,aAAa;IAG9B,OAAO,CAAC,QAAQ,CAAC,kCAAkC;IAhBhB,QAAQ,UAAS;IACb,WAAW,UAAS;IAG7D,OAAO,CAAC,qBAAqB,CAAmB;IAEhD,SAAgB,uBAAuB,2BAAuC;IAC9E,SAAgB,iBAAiB,2BAAuC;IACxE,SAAgB,4BAA4B,2BAAuC;IAEnF,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAsB;gBAGlC,aAAa,EAAE,aAAa,EAG5B,kCAAkC,EAAE,IAAI,CAAC,GAAG,CAAC;IAGzD,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAevB,WAAW,IAAI,IAAI;IAI1B,OAAO,CAAC,SAAS;yCA3CN,kCAAkC;2CAAlC,kCAAkC;CAiD9C"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class DossierDetailTabNotFoundComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierDetailTabNotFoundComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierDetailTabNotFoundComponent, "valtimo-dossier-detail-not-found", never, {}, {}, never, never, false, never>;
|
|
5
|
+
}
|
|
6
|
+
//# sourceMappingURL=not-found.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"not-found.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/not-found/not-found.component.ts"],"names":[],"mappings":";AAkBA,qBAKa,iCAAiC;yCAAjC,iCAAiC;2CAAjC,iCAAiC;CAAG"}
|
|
@@ -2,7 +2,7 @@ import { OnInit } from '@angular/core';
|
|
|
2
2
|
import { ActivatedRoute } from '@angular/router';
|
|
3
3
|
import { TranslateService } from '@ngx-translate/core';
|
|
4
4
|
import { PermissionService } from '@valtimo/access-control';
|
|
5
|
-
import { Pagination,
|
|
5
|
+
import { Pagination, PromptService, TimelineItem } from '@valtimo/components';
|
|
6
6
|
import { ToastrService } from 'ngx-toastr';
|
|
7
7
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
8
8
|
import { Note } from '../../../../models/notes.model';
|
|
@@ -15,6 +15,7 @@ export declare class DossierDetailTabNotesComponent implements OnInit {
|
|
|
15
15
|
private readonly route;
|
|
16
16
|
private readonly toastrService;
|
|
17
17
|
private readonly translateService;
|
|
18
|
+
noMargin: boolean;
|
|
18
19
|
timelineItems: TimelineItem[];
|
|
19
20
|
readonly loading$: BehaviorSubject<boolean>;
|
|
20
21
|
readonly fields$: BehaviorSubject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notes.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/notes/notes.component.ts"],"names":[],"mappings":"AAeA,OAAO,
|
|
1
|
+
{"version":3,"file":"notes.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/notes/notes.component.ts"],"names":[],"mappings":"AAeA,OAAO,EAAyB,MAAM,EAAC,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,iBAAiB,EAAC,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAC,UAAU,EAAE,aAAa,EAAE,YAAY,EAAmB,MAAM,qBAAqB,CAAC;AAG9F,OAAO,EAAC,aAAa,EAAC,MAAM,YAAY,CAAC;AACzC,OAAO,EAAC,eAAe,EAAsB,UAAU,EAAK,MAAM,MAAM,CAAC;AAEzE,OAAO,EAAC,IAAI,EAAC,MAAM,gCAAgC,CAAC;AAOpD,OAAO,EAAC,YAAY,EAAC,MAAM,oCAAoC,CAAC;;AAEhE,qBAKa,8BAA+B,YAAW,MAAM;IA+GzD,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAClC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IAnHE,QAAQ,UAAQ;IAE9C,aAAa,EAAE,YAAY,EAAE,CAAM;IAE1C,SAAgB,QAAQ,2BAAsC;IAC9D,SAAgB,OAAO;aAAmC,MAAM;eAAS,MAAM;SAAQ;IACvF,SAAgB,WAAW,0BAAmC;IAE9D,OAAO,CAAC,QAAQ,CAAC,WAAW,CAA4D;IACxF,SAAgB,OAAO;;;;;QAGrB;IAEF,SAAgB,OAAO,EAAE,UAAU,CAAC,OAAO,CAAC,CAO1C;IAEF,SAAgB,mBAAmB,uCAGhC;IAEH,SAAgB,UAAU,uCAEvB;IAEH,SAAgB,WAAW,EAAE,UAAU,CAAC,UAAU,CAAC,CAQjD;IAEF,SAAgB,MAAM,EAAE,UAAU,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAiE7C;gBAGiB,YAAY,EAAE,YAAY,EAC1B,iBAAiB,EAAE,iBAAiB,EACpC,aAAa,EAAE,aAAa,EAC5B,KAAK,EAAE,cAAc,EACrB,aAAa,EAAE,aAAa,EAC5B,gBAAgB,EAAE,gBAAgB;IAG9C,QAAQ,IAAI,IAAI;IAMhB,iBAAiB,CAAC,aAAa,KAAA,GAAG,IAAI;IAMtC,YAAY,IAAI,IAAI;IAMpB,aAAa,CAAC,OAAO,KAAA,GAAG,IAAI;IAY5B,aAAa,CAAC,OAAO,KAAA,GAAG,IAAI;IAQ5B,QAAQ,CAAC,IAAI,KAAA,GAAG,IAAI;IAMpB,UAAU,CAAC,IAAI,KAAA,GAAG,IAAI;yCAnKlB,8BAA8B;2CAA9B,8BAA8B;CAyL1C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"progress.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/progress/progress.component.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,cAAc,EAAW,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAC,eAAe,EAAE,WAAW,EAAE,uBAAuB,EAAC,MAAM,mBAAmB,CAAC;AACxF,OAAO,EAAC,eAAe,EAAsB,UAAU,EAA4B,MAAM,MAAM,CAAC;AAChG,OAAO,EAAC,QAAQ,EAAC,MAAM,oCAAoC,CAAC;;AAE5D,qBAKa,iCAAiC;
|
|
1
|
+
{"version":3,"file":"progress.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/progress/progress.component.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,cAAc,EAAW,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAC,eAAe,EAAE,WAAW,EAAE,uBAAuB,EAAC,MAAM,mBAAmB,CAAC;AACxF,OAAO,EAAC,eAAe,EAAsB,UAAU,EAA4B,MAAM,MAAM,CAAC;AAChG,OAAO,EAAC,QAAQ,EAAC,MAAM,oCAAoC,CAAC;;AAE5D,qBAKa,iCAAiC;IAwD1C,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,eAAe;IAxDlC,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAqBtC;IAEJ,SAAgB,qBAAqB,EAAE,UAAU,CAAC,WAAW,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAc3E;IAEJ,SAAgB,0BAA0B,0BAA4C;IACtF,SAAgB,wBAAwB,EAAE,UAAU,CAAC,WAAW,CAAC,uBAAuB,CAAC,CAAC,CAYtF;gBAGe,KAAK,EAAE,cAAc,EACrB,eAAe,EAAE,eAAe;IAG5C,mBAAmB,CAAC,iBAAiB,EAAE,MAAM;yCA5DzC,iCAAiC;2CAAjC,iCAAiC;CAiE7C"}
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { ActivatedRoute } from '@angular/router';
|
|
3
|
-
import { DocumentService, RelatedFile } from '@valtimo/document';
|
|
3
|
+
import { DocumentService, FileSortService, RelatedFile } from '@valtimo/document';
|
|
4
4
|
import { DownloadService, UploadProviderService } from '@valtimo/resource';
|
|
5
5
|
import { ToastrService } from 'ngx-toastr';
|
|
6
6
|
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/components';
|
|
10
|
-
import { FileSortService } from '../../../../services/file-sort.service';
|
|
11
10
|
import * as i0 from "@angular/core";
|
|
12
11
|
export declare class DossierDetailTabS3DocumentsComponent implements OnInit {
|
|
13
12
|
private readonly route;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"s3-documents.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier/src/lib/components/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;
|
|
1
|
+
{"version":3,"file":"s3-documents.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier/src/lib/components/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,eAAe,EAAE,WAAW,EAAC,MAAM,mBAAmB,CAAC;AAChF,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,qBAAqB,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"}
|
|
@@ -2,13 +2,13 @@ import { OnDestroy, OnInit } from '@angular/core';
|
|
|
2
2
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
3
|
import { TranslateService } from '@ngx-translate/core';
|
|
4
4
|
import { PermissionService } from '@valtimo/access-control';
|
|
5
|
-
import { BreadcrumbService, CarbonListComponent,
|
|
5
|
+
import { BreadcrumbService, CarbonListComponent, CarbonListNoResultsMessage, CarbonPaginationSelection, ListField, PageTitleService, Pagination } from '@valtimo/components';
|
|
6
6
|
import { AssigneeFilter, ConfigService, DossierListTab, SearchField, SearchFieldValues, SortState } from '@valtimo/config';
|
|
7
|
-
import { DocumentService } from '@valtimo/document';
|
|
7
|
+
import { DocumentService, InternalCaseStatus } from '@valtimo/document';
|
|
8
8
|
import { Tabs } from 'carbon-components-angular';
|
|
9
9
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
10
|
+
import { DossierBulkAssignService, DossierColumnService, DossierListAssigneeService, DossierListPaginationService, DossierListSearchService, DossierListService, DossierListStatusService, DossierParameterService } from '../../services';
|
|
10
11
|
import { DossierListActionsComponent } from '../dossier-list-actions/dossier-list-actions.component';
|
|
11
|
-
import { DossierBulkAssignService, DossierColumnService, DossierListAssigneeService, DossierListPaginationService, DossierListSearchService, DossierListService, DossierParameterService } from '../../services';
|
|
12
12
|
import * as i0 from "@angular/core";
|
|
13
13
|
export declare class DossierListComponent implements OnInit, OnDestroy {
|
|
14
14
|
private readonly assigneeService;
|
|
@@ -26,6 +26,7 @@ export declare class DossierListComponent implements OnInit, OnDestroy {
|
|
|
26
26
|
private readonly searchService;
|
|
27
27
|
private readonly translateService;
|
|
28
28
|
private readonly permissionService;
|
|
29
|
+
private readonly statusService;
|
|
29
30
|
carbonList: CarbonListComponent;
|
|
30
31
|
listActionsComponent: DossierListActionsComponent;
|
|
31
32
|
tabsComponent: Tabs;
|
|
@@ -35,24 +36,23 @@ export declare class DossierListComponent implements OnInit, OnDestroy {
|
|
|
35
36
|
loadingSearchFields: boolean;
|
|
36
37
|
loadingAssigneeFilter: boolean;
|
|
37
38
|
loadingDocumentItems: boolean;
|
|
39
|
+
loadingStatuses: boolean;
|
|
38
40
|
pagination: Pagination;
|
|
39
41
|
canHaveAssignee: boolean;
|
|
40
42
|
visibleDossierTabs: Array<DossierListTab> | null;
|
|
41
43
|
readonly defaultTabs: DossierListTab[];
|
|
42
|
-
readonly tableTranslations: CarbonListTranslations;
|
|
43
|
-
readonly noResultsMessage$: BehaviorSubject<
|
|
44
|
-
description: string;
|
|
45
|
-
isSearchResult: boolean;
|
|
46
|
-
title: string;
|
|
47
|
-
}>;
|
|
44
|
+
readonly tableTranslations: import("@valtimo/components/lib/models/carbon-list.model").CarbonListTranslations;
|
|
45
|
+
readonly noResultsMessage$: BehaviorSubject<CarbonListNoResultsMessage>;
|
|
48
46
|
readonly showAssignModal$: BehaviorSubject<boolean>;
|
|
49
47
|
readonly showChangePageModal$: BehaviorSubject<boolean>;
|
|
50
48
|
readonly showChangeTabModal$: BehaviorSubject<boolean>;
|
|
51
49
|
readonly searchFields$: Observable<Array<SearchField> | null>;
|
|
50
|
+
readonly statuses$: Observable<InternalCaseStatus[]>;
|
|
51
|
+
readonly selectedStatuses$: Observable<InternalCaseStatus[]>;
|
|
52
52
|
readonly documentDefinitionName$: Observable<string>;
|
|
53
|
-
readonly canCreateDocument$: Observable<boolean>;
|
|
54
53
|
readonly selectedDocumentIds$: BehaviorSubject<string[]>;
|
|
55
54
|
readonly schema$: Observable<any>;
|
|
55
|
+
readonly canCreateDocument$: Observable<boolean>;
|
|
56
56
|
readonly searchFieldValues$: Observable<SearchFieldValues>;
|
|
57
57
|
readonly assigneeFilter$: Observable<AssigneeFilter>;
|
|
58
58
|
readonly paginationChange$: BehaviorSubject<CarbonPaginationSelection>;
|
|
@@ -62,16 +62,14 @@ export declare class DossierListComponent implements OnInit, OnDestroy {
|
|
|
62
62
|
private readonly _hasApiColumnConfig$;
|
|
63
63
|
private readonly _canHaveAssignee$;
|
|
64
64
|
private readonly _columns$;
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
showPageInput?: boolean;
|
|
68
|
-
};
|
|
65
|
+
readonly showStatusSelector$: Observable<boolean>;
|
|
66
|
+
private readonly _statusField;
|
|
69
67
|
readonly fields$: Observable<Array<ListField>>;
|
|
70
68
|
private readonly _documentSearchRequest$;
|
|
71
69
|
readonly documentItems$: Observable<any[]>;
|
|
72
70
|
private _previousDocumentDefinitionName;
|
|
73
71
|
private _documentDefinitionNameSubscription;
|
|
74
|
-
constructor(assigneeService: DossierListAssigneeService, breadcrumbService: BreadcrumbService, bulkAssignService: DossierBulkAssignService, columnService: DossierColumnService, configService: ConfigService, documentService: DocumentService, listService: DossierListService, pageTitleService: PageTitleService, paginationService: DossierListPaginationService, parameterService: DossierParameterService, route: ActivatedRoute, router: Router, searchService: DossierListSearchService, translateService: TranslateService, permissionService: PermissionService);
|
|
72
|
+
constructor(assigneeService: DossierListAssigneeService, breadcrumbService: BreadcrumbService, bulkAssignService: DossierBulkAssignService, columnService: DossierColumnService, configService: ConfigService, documentService: DocumentService, listService: DossierListService, pageTitleService: PageTitleService, paginationService: DossierListPaginationService, parameterService: DossierParameterService, route: ActivatedRoute, router: Router, searchService: DossierListSearchService, translateService: TranslateService, permissionService: PermissionService, statusService: DossierListStatusService);
|
|
75
73
|
ngOnInit(): void;
|
|
76
74
|
ngOnDestroy(): void;
|
|
77
75
|
trackByIndex(index: number): number;
|
|
@@ -88,6 +86,7 @@ export declare class DossierListComponent implements OnInit, OnDestroy {
|
|
|
88
86
|
onChangePageConfirm(pagination: CarbonPaginationSelection): void;
|
|
89
87
|
startDossier(): void;
|
|
90
88
|
forceRefresh(): void;
|
|
89
|
+
onSelectedStatusesChange(statuses: InternalCaseStatus[]): void;
|
|
91
90
|
private openDocumentDefinitionNameSubscription;
|
|
92
91
|
private setLoading;
|
|
93
92
|
private setVisibleTabs;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-list.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier/src/lib/components/dossier-list/dossier-list.component.ts"],"names":[],"mappings":"AAeA,OAAO,EAAY,SAAS,EAAE,MAAM,EAAY,MAAM,eAAe,CAAC;AACtE,OAAO,EAAC,cAAc,EAAU,MAAM,EAAC,MAAM,iBAAiB,CAAC;AAC/D,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,iBAAiB,EAAC,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EACL,iBAAiB,EACjB,mBAAmB,EACnB,
|
|
1
|
+
{"version":3,"file":"dossier-list.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier/src/lib/components/dossier-list/dossier-list.component.ts"],"names":[],"mappings":"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"}
|
package/lib/components/dossier-process-start-modal/dossier-process-start-modal.component.d.ts
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { PermissionService } from '@valtimo/access-control';
|
|
3
3
|
import { DocumentService, ProcessDocumentDefinition } from '@valtimo/document';
|
|
4
|
-
import { FormFlowService, ProcessLinkService } from '@valtimo/
|
|
4
|
+
import { FormFlowService, ProcessLinkService } from '@valtimo/process-link';
|
|
5
5
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
6
6
|
import { ProcessService } from '@valtimo/process';
|
|
7
7
|
import { FormioComponent, FormioSubmission, ModalComponent, ValtimoFormioOptions } from '@valtimo/components';
|
|
8
8
|
import { FormioForm } from '@formio/angular';
|
|
9
9
|
import { UserProviderService } from '@valtimo/security';
|
|
10
|
-
import { DossierListService } from '../../services';
|
|
11
|
-
import { StartModalService } from '../../services/start-modal.service';
|
|
10
|
+
import { DossierListService, StartModalService } from '../../services';
|
|
12
11
|
import { ConfigService } from '@valtimo/config';
|
|
13
12
|
import * as i0 from "@angular/core";
|
|
14
13
|
export declare class DossierProcessStartModalComponent implements OnInit {
|
package/lib/components/dossier-process-start-modal/dossier-process-start-modal.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-process-start-modal.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier/src/lib/components/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,iBAAiB,EAAC,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAC,eAAe,EAAE,yBAAyB,EAAC,MAAM,mBAAmB,CAAC;AAC7E,OAAO,EAAC,eAAe,EAAwB,kBAAkB,EAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"dossier-process-start-modal.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier/src/lib/components/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,iBAAiB,EAAC,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAC,eAAe,EAAE,yBAAyB,EAAC,MAAM,mBAAmB,CAAC;AAC7E,OAAO,EAAC,eAAe,EAAwB,kBAAkB,EAAC,MAAM,uBAAuB,CAAC;AAChG,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,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;AAGtD,OAAO,EAAC,kBAAkB,EAAE,iBAAiB,EAAC,MAAM,gBAAgB,CAAC;AACrE,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;;AAE9C,qBAMa,iCAAkC,YAAW,MAAM;IAkB5D,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,cAAc;IACtB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,kBAAkB;IAC1B,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,mBAAmB;IAC3B,OAAO,CAAC,iBAAiB;IACzB,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,iBAAiB;IACzB,OAAO,CAAC,aAAa;IA3BhB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,mBAAmB,EAAE,MAAM,CAAC;IAC5B,sBAAsB,EAAE,MAAM,CAAC;IAC/B,WAAW,EAAE,MAAM,CAAC;IAC3B,OAAO,CAAC,eAAe,CAAS;IAChC,OAAO,CAAC,QAAQ,CAAC,kCAAkC,CAAW;IACvD,cAAc,EAAE,UAAU,CAAC;IAC3B,kBAAkB,EAAE,MAAM,CAAC;IAC3B,gBAAgB,EAAE,gBAAgB,CAAC;IAC1C,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,kBAAkB,EAAE,kBAAkB,EACtC,eAAe,EAAE,eAAe,EAChC,mBAAmB,EAAE,mBAAmB,EACxC,iBAAiB,EAAE,iBAAiB,EACpC,WAAW,EAAE,kBAAkB,EAC/B,iBAAiB,EAAE,iBAAiB,EACpC,aAAa,EAAE,aAAa;IAMtC,QAAQ;IAIR,OAAO,CAAC,eAAe;IAgChB,qBAAqB,IAAI,IAAI;IAKpC,IAAW,UAAU,WAKpB;IAED,SAAS,CAAC,yBAAyB,EAAE,yBAAyB;IAcvD,QAAQ,CAAC,UAAU,EAAE,gBAAgB;IAarC,iBAAiB,IAAI,IAAI;IAKzB,WAAW,IAAI,IAAI;IAW1B,OAAO,CAAC,eAAe;yCA7HZ,iCAAiC;2CAAjC,iCAAiC;CAiJ7C"}
|
|
@@ -4,7 +4,7 @@ import { FormioComponent, FormioSubmission, ModalComponent, ValtimoFormioOptions
|
|
|
4
4
|
import { Router } from '@angular/router';
|
|
5
5
|
import { ProcessService } from '@valtimo/process';
|
|
6
6
|
import { ProcessDocumentDefinition } from '@valtimo/document';
|
|
7
|
-
import { ProcessLinkService } from '@valtimo/
|
|
7
|
+
import { ProcessLinkService } from '@valtimo/process-link';
|
|
8
8
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
9
9
|
import { UserProviderService } from '@valtimo/security';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-supporting-process-start-modal.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier/src/lib/components/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,MAAM,EAAC,MAAM,iBAAiB,CAAC;AACvC,OAAO,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAChD,OAAO,EAAC,yBAAyB,EAAC,MAAM,mBAAmB,CAAC;AAC5D,OAAO,EAAuB,kBAAkB,EAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"dossier-supporting-process-start-modal.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier/src/lib/components/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,MAAM,EAAC,MAAM,iBAAiB,CAAC;AACvC,OAAO,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAChD,OAAO,EAAC,yBAAyB,EAAC,MAAM,mBAAmB,CAAC;AAC5D,OAAO,EAAuB,kBAAkB,EAAC,MAAM,uBAAuB,CAAC;AAC/E,OAAO,EAAC,eAAe,EAAiB,UAAU,EAAY,MAAM,MAAM,CAAC;AAE3E,OAAO,EAAC,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;;AAEtD,qBAMa,2CAA2C;IAuBpD,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,cAAc;IAC/B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAzBF,IAAI,EAAE,eAAe,CAAC;IACC,KAAK,EAAE,cAAc,CAAC;IAEvE,UAAU,oBAAsB;IAE1C,SAAgB,qBAAqB,0BAAmC;IACxE,SAAgB,uBAAuB,0BAAmC;IAC1E,SAAgB,YAAY,0BAAmC;IAC/D,SAAgB,eAAe,8BAA8C;IAC7E,SAAgB,iBAAiB,oCAAoD;IACrF,SAAgB,cAAc,0BAAmC;IACjE,SAAgB,QAAQ,wCAAwD;IAChF,SAAgB,WAAW,0BAA0C;IACrE,SAAgB,oBAAoB,0BAA0C;IAC9E,SAAgB,mBAAmB,0BAA0C;IAC7E,SAAgB,WAAW,0BAA0C;IAErE,SAAgB,QAAQ,EAAE,UAAU,CAAC,OAAO,CAAC,CAE6B;gBAGvD,MAAM,EAAE,MAAM,EACd,cAAc,EAAE,cAAc,EAC9B,kBAAkB,EAAE,kBAAkB,EACtC,mBAAmB,EAAE,mBAAmB;IAG3D,OAAO,CAAC,eAAe;IA4BhB,SAAS,CAAC,yBAAyB,EAAE,yBAAyB,EAAE,UAAU,EAAE,MAAM,GAAG,IAAI;IAoBzF,QAAQ,CAAC,UAAU,EAAE,gBAAgB,GAAG,IAAI;IAsB5C,aAAa,IAAI,IAAI;IAKrB,kBAAkB,IAAI,IAAI;yCAxGtB,2CAA2C;2CAA3C,2CAA2C;CA8GvD"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { CASES_WITHOUT_STATUS_KEY } from '@valtimo/components';
|
|
2
|
+
import { InternalCaseStatus } from '@valtimo/document';
|
|
3
|
+
declare const CASE_WITHOUT_STATUS_STATUS: InternalCaseStatus;
|
|
4
|
+
export { CASES_WITHOUT_STATUS_KEY, CASE_WITHOUT_STATUS_STATUS };
|
|
5
|
+
//# sourceMappingURL=case-status.constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"case-status.constants.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/constants/case-status.constants.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,wBAAwB,EAAC,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAC,kBAAkB,EAA0B,MAAM,mBAAmB,CAAC;AAE9E,QAAA,MAAM,0BAA0B,EAAE,kBAMjC,CAAC;AAEF,OAAO,EAAC,wBAAwB,EAAE,0BAA0B,EAAC,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DossierListTab } from '@valtimo/config';
|
|
2
|
+
import { CarbonListNoResultsMessage, CarbonListTranslations } from '@valtimo/components';
|
|
3
|
+
declare const DEFAULT_DOSSIER_LIST_TABS: DossierListTab[];
|
|
4
|
+
declare const DOSSIER_LIST_TABLE_TRANSLATIONS: CarbonListTranslations;
|
|
5
|
+
declare const DOSSIER_LIST_NO_RESULTS_MESSAGE: CarbonListNoResultsMessage;
|
|
6
|
+
export { DEFAULT_DOSSIER_LIST_TABS, DOSSIER_LIST_TABLE_TRANSLATIONS, DOSSIER_LIST_NO_RESULTS_MESSAGE, };
|
|
7
|
+
//# sourceMappingURL=dossier-list.constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-list.constants.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/constants/dossier-list.constants.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAC,0BAA0B,EAAE,sBAAsB,EAAC,MAAM,qBAAqB,CAAC;AAEvF,QAAA,MAAM,yBAAyB,EAAE,cAAc,EAI9C,CAAC;AAEF,QAAA,MAAM,+BAA+B,EAAE,sBAUtC,CAAC;AAEF,QAAA,MAAM,+BAA+B,EAAE,0BAItC,CAAC;AAEF,OAAO,EACL,yBAAyB,EACzB,+BAA+B,EAC/B,+BAA+B,GAChC,CAAC"}
|
package/lib/constants/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/constants/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/constants/index.ts"],"names":[],"mappings":"AAgBA,cAAc,OAAO,CAAC;AACtB,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tab.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/constants/tab.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,cAAc,EAAC,MAAM,eAAe,CAAC;AAK7C,OAAO,EAAC,oBAAoB,EAAc,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"tab.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/constants/tab.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,cAAc,EAAC,MAAM,eAAe,CAAC;AAK7C,OAAO,EAAC,oBAAoB,EAAc,MAAM,WAAW,CAAC;AAG5D,QAAA,MAAM,OAAO,qCAAoD,CAAC;AAElE,QAAA,MAAM,YAAY,qBAKhB,CAAC;AAEH,QAAA,MAAM,sBAAsB,EAAE,oBAM7B,CAAC;AAEF,OAAO,EAAC,OAAO,EAAE,YAAY,EAAE,sBAAsB,EAAC,CAAC"}
|
package/lib/dossier.module.d.ts
CHANGED
|
@@ -8,36 +8,33 @@ import * as i5 from "./components/dossier-detail/tab/summary/summary.component";
|
|
|
8
8
|
import * as i6 from "./components/dossier-detail/tab/progress/progress.component";
|
|
9
9
|
import * as i7 from "./components/dossier-detail/tab/audit/audit.component";
|
|
10
10
|
import * as i8 from "./components/dossier-detail/tab/documents/documents.component";
|
|
11
|
-
import * as i9 from "./components/dossier-detail/tab/
|
|
12
|
-
import * as i10 from "./components/dossier-
|
|
13
|
-
import * as i11 from "./components/dossier-
|
|
14
|
-
import * as i12 from "./components/dossier-
|
|
15
|
-
import * as i13 from "./components/dossier-
|
|
16
|
-
import * as i14 from "./components/dossier-
|
|
17
|
-
import * as i15 from "./components/dossier-
|
|
18
|
-
import * as i16 from "./components/
|
|
19
|
-
import * as i17 from "./components/dossier-detail/tab/
|
|
20
|
-
import * as i18 from "
|
|
21
|
-
import * as i19 from "./
|
|
22
|
-
import * as i20 from "
|
|
23
|
-
import * as i21 from "@
|
|
24
|
-
import * as i22 from "
|
|
25
|
-
import * as i23 from "@
|
|
26
|
-
import * as i24 from "@valtimo/
|
|
27
|
-
import * as i25 from "@
|
|
28
|
-
import * as i26 from "@
|
|
29
|
-
import * as i27 from "@valtimo/
|
|
30
|
-
import * as i28 from "
|
|
31
|
-
import * as i29 from "@valtimo/
|
|
32
|
-
import * as i30 from "
|
|
33
|
-
import * as i31 from "carbon-components-angular";
|
|
34
|
-
import * as i32 from "@valtimo/form-link";
|
|
35
|
-
import * as i33 from "./pipes/tab-translate/tab-translate-pipe.module";
|
|
11
|
+
import * as i9 from "./components/dossier-detail/tab/notes/notes.component";
|
|
12
|
+
import * as i10 from "./components/dossier-update/dossier-update.component";
|
|
13
|
+
import * as i11 from "./components/dossier-process-start-modal/dossier-process-start-modal.component";
|
|
14
|
+
import * as i12 from "./components/dossier-supporting-process-start-modal/dossier-supporting-process-start-modal.component";
|
|
15
|
+
import * as i13 from "./components/dossier-detail/tab/s3-documents/s3-documents.component";
|
|
16
|
+
import * as i14 from "./components/dossier-detail/tab/not-found/not-found.component";
|
|
17
|
+
import * as i15 from "./components/dossier-assign-user/dossier-assign-user.component";
|
|
18
|
+
import * as i16 from "./components/note-modal/note-modal.component";
|
|
19
|
+
import * as i17 from "./components/dossier-detail/tab/formio/formio.component";
|
|
20
|
+
import * as i18 from "@angular/common";
|
|
21
|
+
import * as i19 from "./dossier-routing.module";
|
|
22
|
+
import * as i20 from "@valtimo/components";
|
|
23
|
+
import * as i21 from "@valtimo/process";
|
|
24
|
+
import * as i22 from "@ng-bootstrap/ng-bootstrap";
|
|
25
|
+
import * as i23 from "@angular/forms";
|
|
26
|
+
import * as i24 from "@valtimo/form";
|
|
27
|
+
import * as i25 from "@ngx-translate/core";
|
|
28
|
+
import * as i26 from "@valtimo/task";
|
|
29
|
+
import * as i27 from "@valtimo/config";
|
|
30
|
+
import * as i28 from "carbon-components-angular";
|
|
31
|
+
import * as i29 from "@valtimo/process-link";
|
|
32
|
+
import * as i30 from "./pipes/tab-translate/tab-translate-pipe.module";
|
|
36
33
|
export type TabsFactory = () => Map<string, object>;
|
|
37
34
|
export declare class DossierModule {
|
|
38
35
|
static forRoot(tabsFactory: TabsFactory): ModuleWithProviders<DossierModule>;
|
|
39
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<DossierModule, never>;
|
|
40
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DossierModule, [typeof i1.DossierBulkAssignModalComponent, typeof i2.DossierListComponent, typeof i3.DossierListActionsComponent, typeof i4.DossierDetailComponent, typeof i5.DossierDetailTabSummaryComponent, typeof i6.DossierDetailTabProgressComponent, typeof i7.DossierDetailTabAuditComponent, typeof i8.DossierDetailTabDocumentsComponent, typeof i9.
|
|
37
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DossierModule, [typeof i1.DossierBulkAssignModalComponent, typeof i2.DossierListComponent, typeof i3.DossierListActionsComponent, typeof i4.DossierDetailComponent, typeof i5.DossierDetailTabSummaryComponent, typeof i6.DossierDetailTabProgressComponent, typeof i7.DossierDetailTabAuditComponent, typeof i8.DossierDetailTabDocumentsComponent, typeof i9.DossierDetailTabNotesComponent, typeof i10.DossierUpdateComponent, typeof i11.DossierProcessStartModalComponent, typeof i12.DossierSupportingProcessStartModalComponent, typeof i13.DossierDetailTabS3DocumentsComponent, typeof i14.DossierDetailTabNotFoundComponent, typeof i15.DossierAssignUserComponent, typeof i16.NoteModalComponent, typeof i17.DossierDetailTabFormioComponent], [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 i23.ReactiveFormsModule, 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 i20.SelectModule, typeof i20.InputLabelModule, typeof i20.ParagraphModule, typeof i20.TableModule, typeof i20.VModalModule, typeof i20.TitleModule, typeof i20.ButtonModule, typeof i20.SearchableDropdownSelectModule, typeof i20.SearchFieldsModule, typeof i20.PageModule, typeof i24.FormModule, typeof i20.InputModule, typeof i20.FormModule, typeof i22.NgbModule, typeof i28.LoadingModule, typeof i28.ButtonModule, typeof i28.IconModule, typeof i29.ProcessLinkModule, typeof i28.ModalModule, typeof i28.SelectModule, typeof i20.ConfirmationModalModule, typeof i28.DropdownModule, typeof i28.TabsModule, typeof i28.ComboBoxModule, typeof i30.TabTranslatePipeModule, typeof i20.CarbonListModule, typeof i20.IsArrayPipe, typeof i28.SkeletonModule, typeof i20.StatusSelectorComponent, typeof i20.RenderInPageHeaderDirectiveModule, typeof i28.TagModule, typeof i28.DialogModule, typeof i20.ValtimoCdsOverflowButtonDirectiveModule], [typeof i2.DossierListComponent, typeof i4.DossierDetailComponent]>;
|
|
41
38
|
static ɵinj: i0.ɵɵInjectorDeclaration<DossierModule>;
|
|
42
39
|
}
|
|
43
40
|
//# 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":"AAiBA,OAAO,EAAC,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":"AAiBA,OAAO,EAAC,mBAAmB,EAAW,MAAM,eAAe,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiF5D,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AAEpD,qBAwFa,aAAa;IACxB,MAAM,CAAC,OAAO,CAAC,WAAW,EAAE,WAAW,GAAG,mBAAmB,CAAC,aAAa,CAAC;yCADjE,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAczB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-detail-tab.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/models/dossier-detail-tab.model.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,IAAI,EAAC,MAAM,eAAe,CAAC;AAEnC,aAAK,WAAW;IACd,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,
|
|
1
|
+
{"version":3,"file":"dossier-detail-tab.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/models/dossier-detail-tab.model.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,IAAI,EAAC,MAAM,eAAe,CAAC;AAEnC,aAAK,WAAW;IACd,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,KAAK,UAAU;CAChB;AAED,KAAK,oBAAoB,GAAG;KACzB,GAAG,IAAI,WAAW,GAAG,IAAI,CAAC,GAAG,CAAC;CAChC,CAAC;AAEF,UAAU,aAAa;IACrB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC;CAC7B;AAED,OAAO,EAAC,WAAW,EAAE,oBAAoB,EAAE,aAAa,EAAC,CAAC"}
|
|
@@ -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,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;
|
|
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,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;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,OAAO,EAAC,iBAAiB,EAAC,CAAC"}
|
package/lib/models/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ export * from './candidate-user.model';
|
|
|
2
2
|
export * from './dossier-parameters.model';
|
|
3
3
|
export * from './search.model';
|
|
4
4
|
export * from './tabs.model';
|
|
5
|
-
export * from './zaakobjecten.model';
|
|
6
5
|
export * from './dossier-detail-tab.model';
|
|
7
6
|
export * from './tab-api.model';
|
|
8
7
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/models/index.ts"],"names":[],"mappings":"AAgBA,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/models/index.ts"],"names":[],"mappings":"AAgBA,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { DossierListService } from './dossier-list.service';
|
|
2
|
+
import { CaseStatusService, InternalCaseStatus } from '@valtimo/document';
|
|
3
|
+
import { DossierParameterService } from './dossier-parameter.service';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DossierListStatusService {
|
|
7
|
+
private readonly dossierListService;
|
|
8
|
+
private readonly caseStatusService;
|
|
9
|
+
private readonly dossierParameterService;
|
|
10
|
+
private readonly _selectedCaseStatuses$;
|
|
11
|
+
private readonly _showStatusSelector$;
|
|
12
|
+
private readonly _caseStatuses$;
|
|
13
|
+
get caseStatuses$(): Observable<Array<InternalCaseStatus>>;
|
|
14
|
+
get showStatusSelector$(): Observable<boolean>;
|
|
15
|
+
get selectedCaseStatuses$(): Observable<Array<InternalCaseStatus>>;
|
|
16
|
+
constructor(dossierListService: DossierListService, caseStatusService: CaseStatusService, dossierParameterService: DossierParameterService);
|
|
17
|
+
setSelectedStatuses(statuses: InternalCaseStatus[]): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierListStatusService, never>;
|
|
19
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DossierListStatusService>;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=dossier-list-status.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-list-status.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/services/dossier-list-status.service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,kBAAkB,EAAC,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAC,iBAAiB,EAAE,kBAAkB,EAAC,MAAM,mBAAmB,CAAC;AACxE,OAAO,EAAC,uBAAuB,EAAC,MAAM,6BAA6B,CAAC;AACpE,OAAO,EAAsC,UAAU,EAA2B,MAAM,MAAM,CAAC;;AAG/F,qBACa,wBAAwB;IA0CjC,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAClC,OAAO,CAAC,QAAQ,CAAC,uBAAuB;IA3C1C,OAAO,CAAC,QAAQ,CAAC,sBAAsB,CAAiD;IAExF,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAuC;IAE5E,OAAO,CAAC,QAAQ,CAAC,cAAc,CAsB3B;IAEJ,IAAW,aAAa,IAAI,UAAU,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAEhE;IAED,IAAW,mBAAmB,IAAI,UAAU,CAAC,OAAO,CAAC,CAEpD;IAED,IAAW,qBAAqB,IAAI,UAAU,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAExE;gBAGkB,kBAAkB,EAAE,kBAAkB,EACtC,iBAAiB,EAAE,iBAAiB,EACpC,uBAAuB,EAAE,uBAAuB;IAG5D,mBAAmB,CAAC,QAAQ,EAAE,kBAAkB,EAAE,GAAG,IAAI;yCA/CrD,wBAAwB;6CAAxB,wBAAwB;CAmDpC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { Documents, SpecifiedDocuments } from '@valtimo/document';
|
|
1
2
|
import { Observable } from 'rxjs';
|
|
2
3
|
import { DossierColumnService } from '../services';
|
|
3
|
-
import { Documents, SpecifiedDocuments } from '@valtimo/document';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class DossierListService {
|
|
6
6
|
private readonly dossierColumnService;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-list.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/services/dossier-list.service.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dossier-list.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/services/dossier-list.service.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,SAAS,EAAE,kBAAkB,EAAC,MAAM,mBAAmB,CAAC;AAChE,OAAO,EAAuB,UAAU,EAAO,MAAM,MAAM,CAAC;AAC5D,OAAO,EAAC,oBAAoB,EAAC,MAAM,aAAa,CAAC;;AAEjD,qBACa,kBAAkB;IA4BjB,OAAO,CAAC,QAAQ,CAAC,oBAAoB;IA3BjD,OAAO,CAAC,QAAQ,CAAC,wBAAwB,CAAmC;IAE5E,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAInC;IAEF,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAuC;IACtE,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAuC;IAEtE,IAAW,uBAAuB,IAAI,UAAU,CAAC,MAAM,CAAC,CAEvD;IAED,IAAW,mBAAmB,IAAI,UAAU,CAAC,OAAO,CAAC,CAEpD;IAED,IAAI,aAAa,IAAI,UAAU,CAAC,OAAO,CAAC,CAEvC;IAED,IAAI,aAAa,IAAI,UAAU,CAAC,OAAO,CAAC,CAEvC;gBAE4B,oBAAoB,EAAE,oBAAoB;IAEhE,yBAAyB,CAAC,sBAAsB,EAAE,MAAM,GAAG,IAAI;IAI/D,YAAY,CACjB,SAAS,EAAE,SAAS,GAAG,kBAAkB,EACzC,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO;IAkBtB,YAAY,IAAI,IAAI;IAMpB,YAAY,IAAI,IAAI;yCA7DhB,kBAAkB;6CAAlB,kBAAkB;CAkE9B"}
|