@valtimo/dossier 11.3.2 → 12.1.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 +55 -16
- 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 +15 -80
- package/esm2022/lib/components/dossier-detail/tab/widgets/components/collection/widget-collection.component.mjs +192 -0
- package/esm2022/lib/components/dossier-detail/tab/widgets/components/custom/widget-custom.component.mjs +80 -0
- package/esm2022/lib/components/dossier-detail/tab/widgets/components/field/widget-field.component.mjs +116 -0
- package/esm2022/lib/components/dossier-detail/tab/widgets/components/formio/widget-formio.component.mjs +67 -0
- package/esm2022/lib/components/dossier-detail/tab/widgets/components/table/widget-table.component.mjs +126 -0
- package/esm2022/lib/components/dossier-detail/tab/widgets/components/widget-block/widget-block.component.mjs +154 -0
- package/esm2022/lib/components/dossier-detail/tab/widgets/components/widgets-container/widgets-container.component.mjs +74 -0
- package/esm2022/lib/components/dossier-detail/tab/widgets/widgets.component.mjs +74 -0
- package/esm2022/lib/components/dossier-detail-task-list/dossier-detail-task-list.component.mjs +131 -0
- package/esm2022/lib/components/dossier-list/dossier-list.component.mjs +80 -55
- 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 +60 -18
- 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/case-widget.constants.mjs +19 -0
- package/esm2022/lib/{models/zaakobjecten.model.mjs → constants/custom-case-widget-token.mjs} +5 -3
- package/esm2022/lib/constants/dossier-list.constants.mjs +39 -0
- package/esm2022/lib/constants/index.mjs +20 -1
- package/esm2022/lib/constants/tab.mjs +2 -6
- package/esm2022/lib/dossier-routing.module.mjs +6 -6
- package/esm2022/lib/dossier.module.mjs +40 -29
- package/esm2022/lib/models/candidate-user.model.mjs +2 -2
- package/esm2022/lib/models/case-widget-content.model.mjs +17 -0
- package/esm2022/lib/models/case-widget-display.model.mjs +13 -0
- package/esm2022/lib/models/case-widget.model.mjs +25 -0
- 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 +7 -5
- 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 +3 -2
- package/esm2022/lib/models/tabs.model.mjs +17 -8
- 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 +34 -13
- package/esm2022/lib/services/dossier-tab.service.mjs +57 -21
- package/esm2022/lib/services/dossier-widgets-api.service.mjs +46 -0
- package/esm2022/lib/services/dossier-widgets-layout.service.mjs +97 -0
- package/esm2022/lib/services/dossier.service.mjs +6 -6
- package/esm2022/lib/services/index.mjs +6 -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 +1941 -985
- package/fesm2022/valtimo-dossier.mjs.map +1 -1
- package/lib/components/dossier-detail/dossier-detail.component.d.ts +15 -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-detail/tab/summary/summary.component.d.ts +7 -26
- package/lib/components/dossier-detail/tab/summary/summary.component.d.ts.map +1 -1
- package/lib/components/dossier-detail/tab/widgets/components/collection/widget-collection.component.d.ts +47 -0
- package/lib/components/dossier-detail/tab/widgets/components/collection/widget-collection.component.d.ts.map +1 -0
- package/lib/components/dossier-detail/tab/widgets/components/custom/widget-custom.component.d.ts +22 -0
- package/lib/components/dossier-detail/tab/widgets/components/custom/widget-custom.component.d.ts.map +1 -0
- package/lib/components/dossier-detail/tab/widgets/components/field/widget-field.component.d.ts +31 -0
- package/lib/components/dossier-detail/tab/widgets/components/field/widget-field.component.d.ts.map +1 -0
- package/lib/components/dossier-detail/tab/widgets/components/formio/widget-formio.component.d.ts +21 -0
- package/lib/components/dossier-detail/tab/widgets/components/formio/widget-formio.component.d.ts.map +1 -0
- package/lib/components/dossier-detail/tab/widgets/components/table/widget-table.component.d.ts +31 -0
- package/lib/components/dossier-detail/tab/widgets/components/table/widget-table.component.d.ts.map +1 -0
- package/lib/components/dossier-detail/tab/widgets/components/widget-block/widget-block.component.d.ts +43 -0
- package/lib/components/dossier-detail/tab/widgets/components/widget-block/widget-block.component.d.ts.map +1 -0
- package/lib/components/dossier-detail/tab/widgets/components/widgets-container/widgets-container.component.d.ts +20 -0
- package/lib/components/dossier-detail/tab/widgets/components/widgets-container/widgets-container.component.d.ts.map +1 -0
- package/lib/components/dossier-detail/tab/widgets/widgets.component.d.ts +25 -0
- package/lib/components/dossier-detail/tab/widgets/widgets.component.d.ts.map +1 -0
- package/lib/components/dossier-detail-task-list/dossier-detail-task-list.component.d.ts +26 -0
- package/lib/components/dossier-detail-task-list/dossier-detail-task-list.component.d.ts.map +1 -0
- package/lib/components/dossier-list/dossier-list.component.d.ts +15 -16
- 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 +14 -7
- 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/case-widget.constants.d.ts +4 -0
- package/lib/constants/case-widget.constants.d.ts.map +1 -0
- package/lib/constants/custom-case-widget-token.d.ts +5 -0
- package/lib/constants/custom-case-widget-token.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 +4 -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 +25 -26
- package/lib/dossier.module.d.ts.map +1 -1
- package/lib/models/case-widget-content.model.d.ts +51 -0
- package/lib/models/case-widget-content.model.d.ts.map +1 -0
- package/lib/models/case-widget-display.model.d.ts +44 -0
- package/lib/models/case-widget-display.model.d.ts.map +1 -0
- package/lib/models/case-widget.model.d.ts +105 -0
- package/lib/models/case-widget.model.d.ts.map +1 -0
- 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 +5 -3
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/tab-api.model.d.ts +13 -2
- package/lib/models/tab-api.model.d.ts.map +1 -1
- package/lib/models/tabs.model.d.ts +6 -1
- package/lib/models/tabs.model.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 +6 -7
- package/lib/services/dossier-tab-api.service.d.ts.map +1 -1
- package/lib/services/dossier-tab.service.d.ts +15 -4
- package/lib/services/dossier-tab.service.d.ts.map +1 -1
- package/lib/services/dossier-widgets-api.service.d.ts +15 -0
- package/lib/services/dossier-widgets-api.service.d.ts.map +1 -0
- package/lib/services/dossier-widgets-layout.service.d.ts +35 -0
- package/lib/services/dossier-widgets-layout.service.d.ts.map +1 -0
- package/lib/services/index.d.ts +4 -1
- package/lib/services/index.d.ts.map +1 -1
- package/lib/services/start-modal.service.d.ts.map +1 -1
- package/package.json +8 -6
- 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 -144
- 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/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 -55
- 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,18 @@ 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>;
|
|
59
|
+
readonly tabHorizontalOverflowDisabled: import("@angular/core").Signal<boolean>;
|
|
60
|
+
readonly showTaskList$: Observable<boolean>;
|
|
50
61
|
private _snapshot;
|
|
51
62
|
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);
|
|
63
|
+
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
64
|
ngAfterViewInit(): void;
|
|
54
65
|
ngOnDestroy(): void;
|
|
55
66
|
getAllAssociatedProcessDefinitions(): void;
|
|
56
67
|
startProcess(processDocumentDefinition: ProcessDocumentDefinition): void;
|
|
57
68
|
claimAssignee(): void;
|
|
69
|
+
unassignAssignee(): void;
|
|
58
70
|
private initBreadcrumb;
|
|
59
71
|
private initTabLoader;
|
|
60
72
|
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"}
|
|
@@ -1,46 +1,27 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { Document, DocumentService, ProcessDocumentInstance } from '@valtimo/document';
|
|
5
|
-
import { TaskDetailModalComponent, TaskService } from '@valtimo/task';
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { Document, DocumentService } from '@valtimo/document';
|
|
6
4
|
import { FormService } from '@valtimo/form';
|
|
7
5
|
import { ValtimoFormioOptions } from '@valtimo/components';
|
|
6
|
+
import moment from 'moment';
|
|
8
7
|
import { FormioForm } from '@formio/angular';
|
|
9
|
-
import { UserProviderService } from '@valtimo/security';
|
|
10
|
-
import { BehaviorSubject } from 'rxjs';
|
|
11
|
-
import { PermissionService } from '@valtimo/access-control';
|
|
12
8
|
import * as i0 from "@angular/core";
|
|
13
9
|
export declare class DossierDetailTabSummaryComponent implements OnInit, OnDestroy {
|
|
14
|
-
private readonly router;
|
|
15
10
|
private readonly documentService;
|
|
16
|
-
private readonly taskService;
|
|
17
|
-
private readonly processService;
|
|
18
|
-
private readonly el;
|
|
19
|
-
private readonly renderer;
|
|
20
11
|
private readonly route;
|
|
21
12
|
private readonly formService;
|
|
22
|
-
private readonly userProviderService;
|
|
23
|
-
private readonly permissionService;
|
|
24
|
-
taskDetail: TaskDetailModalComponent;
|
|
25
13
|
readonly documentDefinitionName: string;
|
|
14
|
+
readonly documentId: string;
|
|
26
15
|
document: Document;
|
|
27
|
-
documentId: string;
|
|
28
|
-
processDocumentInstances: ProcessDocumentInstance[];
|
|
29
16
|
private snapshot;
|
|
30
|
-
|
|
31
|
-
moment: any;
|
|
17
|
+
moment: typeof moment;
|
|
32
18
|
formDefinition: FormioForm;
|
|
33
19
|
options: ValtimoFormioOptions;
|
|
34
|
-
roles: string[];
|
|
35
|
-
readonly loadingTasks$: BehaviorSubject<boolean>;
|
|
36
20
|
private _subscriptions;
|
|
37
|
-
constructor(
|
|
21
|
+
constructor(documentService: DocumentService, route: ActivatedRoute, formService: FormService);
|
|
38
22
|
ngOnInit(): void;
|
|
39
23
|
ngOnDestroy(): void;
|
|
40
24
|
init(): void;
|
|
41
|
-
loadProcessDocumentInstances(documentId: string): void;
|
|
42
|
-
rowTaskClick(task: any): void;
|
|
43
|
-
private loadProcessInstanceTasks;
|
|
44
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<DossierDetailTabSummaryComponent, never>;
|
|
45
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<DossierDetailTabSummaryComponent, "valtimo-dossier-detail-tab-summary", never, {}, {}, never, never, false, never>;
|
|
46
27
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"summary.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/summary/summary.component.ts"],"names":[],"mappings":"AAgBA,OAAO,
|
|
1
|
+
{"version":3,"file":"summary.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/summary/summary.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,SAAS,EAAE,MAAM,EAAoB,MAAM,eAAe,CAAC;AAC9E,OAAO,EAAC,cAAc,EAAW,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAC,QAAQ,EAAE,eAAe,EAAC,MAAM,mBAAmB,CAAC;AAC5D,OAAO,EAAC,WAAW,EAAC,MAAM,eAAe,CAAC;AAC1C,OAAO,EAAoB,oBAAoB,EAAC,MAAM,qBAAqB,CAAC;AAC5E,OAAO,MAAM,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAC,UAAU,EAAC,MAAM,iBAAiB,CAAC;;AAM3C,qBAMa,gCAAiC,YAAW,MAAM,EAAE,SAAS;IAYtE,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,WAAW;IAb9B,SAAgB,sBAAsB,EAAE,MAAM,CAAC;IAC/C,SAAgB,UAAU,EAAG,MAAM,CAAC;IAE7B,QAAQ,EAAG,QAAQ,CAAC;IAC3B,OAAO,CAAC,QAAQ,CAAW;IACpB,MAAM,EAAG,OAAO,MAAM,CAAC;IACvB,cAAc,EAAE,UAAU,CAAQ;IAClC,OAAO,EAAE,oBAAoB,CAAC;IACrC,OAAO,CAAC,cAAc,CAAsB;gBAGzB,eAAe,EAAE,eAAe,EAChC,KAAK,EAAE,cAAc,EACrB,WAAW,EAAE,WAAW;IASpC,QAAQ,IAAI,IAAI;IAKhB,WAAW,IAAI,IAAI;IAGnB,IAAI,IAAI,IAAI;yCA/BR,gCAAgC;2CAAhC,gCAAgC;CA8C5C"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
2
|
+
import { PaginationModel } from 'carbon-components-angular';
|
|
3
|
+
import { CollectionCaseWidget, CollectionCaseWidgetCardData, CollectionWidgetResolvedField } from '../../../../../../models';
|
|
4
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
5
|
+
import { ViewContentService } from '@valtimo/components';
|
|
6
|
+
import { Page } from '@valtimo/config';
|
|
7
|
+
import { DossierWidgetsApiService } from '../../../../../../services';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class WidgetCollectionComponent implements AfterViewInit, OnDestroy {
|
|
10
|
+
private readonly viewContentService;
|
|
11
|
+
private readonly cdr;
|
|
12
|
+
private readonly widgetApiService;
|
|
13
|
+
readonly class = "valtimo-widget-collection";
|
|
14
|
+
private _widgetCollectionRef;
|
|
15
|
+
documentId: string;
|
|
16
|
+
tabKey: string;
|
|
17
|
+
set widgetConfiguration(value: CollectionCaseWidget);
|
|
18
|
+
readonly showPagination$: BehaviorSubject<boolean>;
|
|
19
|
+
private readonly _initialNumberOfElementsSubject$;
|
|
20
|
+
private get _initialNumberOfElements$();
|
|
21
|
+
set widgetData(value: Page<CollectionCaseWidgetCardData> | null);
|
|
22
|
+
readonly widgetTitle: import("@angular/core").WritableSignal<string>;
|
|
23
|
+
readonly widgetConfiguration$: BehaviorSubject<CollectionCaseWidget>;
|
|
24
|
+
readonly paginationModel: import("@angular/core").WritableSignal<PaginationModel>;
|
|
25
|
+
readonly amountOfColumns: import("@angular/core").WritableSignal<number>;
|
|
26
|
+
private readonly _widgetDataSubject$;
|
|
27
|
+
private readonly _queryParams$;
|
|
28
|
+
private readonly _widgetData$;
|
|
29
|
+
readonly collectionWidgetCards$: Observable<{
|
|
30
|
+
title: string;
|
|
31
|
+
fields: CollectionWidgetResolvedField[];
|
|
32
|
+
key: number;
|
|
33
|
+
hidden: boolean;
|
|
34
|
+
}[]>;
|
|
35
|
+
private _observer;
|
|
36
|
+
constructor(viewContentService: ViewContentService, cdr: ChangeDetectorRef, widgetApiService: DossierWidgetsApiService);
|
|
37
|
+
ngAfterViewInit(): void;
|
|
38
|
+
ngOnDestroy(): void;
|
|
39
|
+
onSelectPage(page: number): void;
|
|
40
|
+
private getCardField;
|
|
41
|
+
private openWidthObserver;
|
|
42
|
+
private observerMutation;
|
|
43
|
+
private getCardTitle;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetCollectionComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetCollectionComponent, "valtimo-widget-collection", never, { "documentId": { "alias": "documentId"; "required": true; }; "tabKey": { "alias": "tabKey"; "required": true; }; "widgetConfiguration": { "alias": "widgetConfiguration"; "required": false; }; "widgetData": { "alias": "widgetData"; "required": false; }; }, {}, never, never, true, never>;
|
|
46
|
+
}
|
|
47
|
+
//# sourceMappingURL=widget-collection.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-collection.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/widgets/components/collection/widget-collection.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EACL,aAAa,EAEb,iBAAiB,EAKjB,SAAS,EAIV,MAAM,eAAe,CAAC;AAEvB,OAAO,EAEL,eAAe,EAGhB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAEL,oBAAoB,EACpB,4BAA4B,EAG5B,6BAA6B,EAC9B,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAC,eAAe,EAA8B,UAAU,EAAqB,MAAM,MAAM,CAAC;AACjG,OAAO,EAAmB,kBAAkB,EAAC,MAAM,qBAAqB,CAAC;AAEzE,OAAO,EAAC,IAAI,EAAC,MAAM,iBAAiB,CAAC;AACrC,OAAO,EAAC,wBAAwB,EAAC,MAAM,4BAA4B,CAAC;;AAEpE,qBAgBa,yBAA0B,YAAW,aAAa,EAAE,SAAS;IAwGtE,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,GAAG;IACpB,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IAzGnC,SAAsC,KAAK,+BAA+B;IAC3C,OAAO,CAAC,oBAAoB,CAA6B;IAExD,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IAC/C,IAAoB,mBAAmB,CAAC,KAAK,EAAE,oBAAoB,EAGlE;IACD,SAAgB,eAAe,2BAAuC;IAEtE,OAAO,CAAC,QAAQ,CAAC,gCAAgC,CAAqC;IAEtF,OAAO,KAAK,yBAAyB,GAIpC;IAED,IAAoB,UAAU,CAAC,KAAK,EAAE,IAAI,CAAC,4BAA4B,CAAC,GAAG,IAAI,EAiB9E;IAED,SAAgB,WAAW,iDAAe;IAE1C,SAAgB,oBAAoB,wCAA0D;IAC9F,SAAgB,eAAe,0DAAkD;IACjF,SAAgB,eAAe,iDAAa;IAE5C,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAA6D;IAEjG,OAAO,CAAC,QAAQ,CAAC,aAAa,CAA4C;IAE1E,OAAO,CAAC,QAAQ,CAAC,YAAY,CA0B3B;IAEF,SAAgB,sBAAsB,EAAE,UAAU,CAChD;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,6BAA6B,EAAE,CAAC;QAAC,GAAG,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,OAAO,CAAA;KAAC,EAAE,CACzF,CAoBC;IAEF,OAAO,CAAC,SAAS,CAAkB;gBAGhB,kBAAkB,EAAE,kBAAkB,EACtC,GAAG,EAAE,iBAAiB,EACtB,gBAAgB,EAAE,wBAAwB;IAGtD,eAAe,IAAI,IAAI;IAIvB,WAAW,IAAI,IAAI;IAInB,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAQvC,OAAO,CAAC,YAAY;IAiBpB,OAAO,CAAC,iBAAiB;IAOzB,OAAO,CAAC,gBAAgB;IAgBxB,OAAO,CAAC,YAAY;yCArKT,yBAAyB;2CAAzB,yBAAyB;CAsLrC"}
|
package/lib/components/dossier-detail/tab/widgets/components/custom/widget-custom.component.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
2
|
+
import { CustomCaseWidget, CustomCaseWidgetConfig } from '../../../../../../models';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class WidgetCustomComponent implements AfterViewInit, OnDestroy {
|
|
6
|
+
private readonly customCaseWidgetConfig;
|
|
7
|
+
private readonly cdr;
|
|
8
|
+
private readonly _customWidgetContainerRef;
|
|
9
|
+
set widgetConfig(value: CustomCaseWidget);
|
|
10
|
+
private readonly _customCaseWidgetConfig$;
|
|
11
|
+
private readonly _widgetConfigSubject$;
|
|
12
|
+
get widgetConfig$(): Observable<CustomCaseWidget>;
|
|
13
|
+
readonly noCustomComponentAvailable: import("@angular/core").WritableSignal<boolean>;
|
|
14
|
+
private readonly _subscriptions;
|
|
15
|
+
constructor(customCaseWidgetConfig: CustomCaseWidgetConfig, cdr: ChangeDetectorRef);
|
|
16
|
+
ngAfterViewInit(): void;
|
|
17
|
+
ngOnDestroy(): void;
|
|
18
|
+
private openCustomWidgetSubscription;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetCustomComponent, [{ optional: true; }, null]>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetCustomComponent, "valtimo-widget-custom", never, { "widgetConfig": { "alias": "widgetConfig"; "required": false; }; }, {}, never, never, true, never>;
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=widget-custom.component.d.ts.map
|
package/lib/components/dossier-detail/tab/widgets/components/custom/widget-custom.component.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-custom.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/widgets/components/custom/widget-custom.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EACL,aAAa,EAEb,iBAAiB,EAIjB,SAAS,EAKV,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAC,gBAAgB,EAAE,sBAAsB,EAAC,MAAM,0BAA0B,CAAC;AAElF,OAAO,EAAyC,UAAU,EAAe,MAAM,MAAM,CAAC;;AAItF,qBAQa,qBAAsB,YAAW,aAAa,EAAE,SAAS;IAuBlE,OAAO,CAAC,QAAQ,CAAC,sBAAsB;IACvC,OAAO,CAAC,QAAQ,CAAC,GAAG;IAtBtB,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAAmB;IAE7D,IAAoB,YAAY,CAAC,KAAK,EAAE,gBAAgB,EAEvD;IAED,OAAO,CAAC,QAAQ,CAAC,wBAAwB,CAAwD;IAEjG,OAAO,CAAC,QAAQ,CAAC,qBAAqB,CAAsD;IAE5F,IAAW,aAAa,IAAI,UAAU,CAAC,gBAAgB,CAAC,CAEvD;IAED,SAAgB,0BAA0B,kDAAiB;IAE3D,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAsB;gBAKlC,sBAAsB,EAAE,sBAAsB,EAC9C,GAAG,EAAE,iBAAiB;IAKlC,eAAe,IAAI,IAAI;IAIvB,WAAW,IAAI,IAAI;IAI1B,OAAO,CAAC,4BAA4B;yCArCzB,qBAAqB;2CAArB,qBAAqB;CAyDjC"}
|
package/lib/components/dossier-detail/tab/widgets/components/field/widget-field.component.d.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { AfterViewInit, OnDestroy } from '@angular/core';
|
|
2
|
+
import { ViewContentService } from '@valtimo/components';
|
|
3
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
4
|
+
import { FieldsCaseWidget } from '../../../../../../models';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class WidgetFieldComponent implements AfterViewInit, OnDestroy {
|
|
7
|
+
private viewContentService;
|
|
8
|
+
readonly class = "widget-field";
|
|
9
|
+
private _widgetFieldRef;
|
|
10
|
+
collapseVertically: boolean;
|
|
11
|
+
set widgetConfiguration(value: FieldsCaseWidget);
|
|
12
|
+
readonly isEmptyWidgetData$: BehaviorSubject<boolean>;
|
|
13
|
+
set widgetData(value: object);
|
|
14
|
+
readonly renderVertically: import("@angular/core").WritableSignal<number>;
|
|
15
|
+
readonly widgetConfiguration$: BehaviorSubject<FieldsCaseWidget>;
|
|
16
|
+
readonly widgetData$: BehaviorSubject<object>;
|
|
17
|
+
readonly widgetPropertyValue$: Observable<{
|
|
18
|
+
title: string;
|
|
19
|
+
value: string;
|
|
20
|
+
}[][]>;
|
|
21
|
+
private _observer;
|
|
22
|
+
constructor(viewContentService: ViewContentService);
|
|
23
|
+
ngAfterViewInit(): void;
|
|
24
|
+
ngOnDestroy(): void;
|
|
25
|
+
private openWidthObserver;
|
|
26
|
+
private observerMutation;
|
|
27
|
+
private checkEmptyWidgetData;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetFieldComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetFieldComponent, "valtimo-widget-field", never, { "collapseVertically": { "alias": "collapseVertically"; "required": false; }; "widgetConfiguration": { "alias": "widgetConfiguration"; "required": false; }; "widgetData": { "alias": "widgetData"; "required": false; }; }, {}, never, never, true, never>;
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=widget-field.component.d.ts.map
|
package/lib/components/dossier-detail/tab/widgets/components/field/widget-field.component.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/widgets/components/field/widget-field.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EACL,aAAa,EAMb,SAAS,EAIV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAmB,kBAAkB,EAAC,MAAM,qBAAqB,CAAC;AAEzE,OAAO,EAAC,eAAe,EAAsB,UAAU,EAAC,MAAM,MAAM,CAAC;AACrE,OAAO,EAAC,gBAAgB,EAAC,MAAM,0BAA0B,CAAC;;AAI1D,qBASa,oBAAqB,YAAW,aAAa,EAAE,SAAS;IAoDvD,OAAO,CAAC,kBAAkB;IAnDtC,SAAsC,KAAK,kBAAkB;IAEnC,OAAO,CAAC,eAAe,CAA6B;IAErE,kBAAkB,UAAS;IACpC,IAAoB,mBAAmB,CAAC,KAAK,EAAE,gBAAgB,EAG9D;IACD,SAAgB,kBAAkB,2BAAuC;IAEzE,IAAoB,UAAU,CAAC,KAAK,EAAE,MAAM,EAI3C;IAED,SAAgB,gBAAgB,iDAAa;IAC7C,SAAgB,oBAAoB,oCAAsD;IAC1F,SAAgB,WAAW,0BAA4C;IAEvE,SAAgB,oBAAoB,EAAE,UAAU,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAC,EAAE,EAAE,CAAC,CA0BhF;IAEJ,OAAO,CAAC,SAAS,CAAkB;gBAEf,kBAAkB,EAAE,kBAAkB;IAEnD,eAAe,IAAI,IAAI;IAIvB,WAAW,IAAI,IAAI;IAI1B,OAAO,CAAC,iBAAiB;IAOzB,OAAO,CAAC,gBAAgB;IAgBxB,OAAO,CAAC,oBAAoB;yCArFjB,oBAAoB;2CAApB,oBAAoB;CAwFhC"}
|
package/lib/components/dossier-detail/tab/widgets/components/formio/widget-formio.component.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { FormioCaseWidgetWidgetWithUuid } from '../../../../../../models';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { FormService } from '@valtimo/form';
|
|
4
|
+
import { DossierWidgetsLayoutService } from '../../../../../../services';
|
|
5
|
+
import { FormioForm } from '@formio/angular';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class WidgetFormioComponent {
|
|
8
|
+
private readonly formService;
|
|
9
|
+
private readonly layoutService;
|
|
10
|
+
set documentId(value: string);
|
|
11
|
+
set widgetConfiguration(value: FormioCaseWidgetWidgetWithUuid);
|
|
12
|
+
private readonly _widgetConfigurationSubject$;
|
|
13
|
+
get widgetConfiguration$(): Observable<FormioCaseWidgetWidgetWithUuid>;
|
|
14
|
+
private readonly _documentIdSubject$;
|
|
15
|
+
private get _documentId$();
|
|
16
|
+
readonly prefilledFormDefinition$: Observable<FormioForm>;
|
|
17
|
+
constructor(formService: FormService, layoutService: DossierWidgetsLayoutService);
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetFormioComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetFormioComponent, "valtimo-widget-formio", never, { "documentId": { "alias": "documentId"; "required": false; }; "widgetConfiguration": { "alias": "widgetConfiguration"; "required": false; }; }, {}, never, never, true, never>;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=widget-formio.component.d.ts.map
|
package/lib/components/dossier-detail/tab/widgets/components/formio/widget-formio.component.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-formio.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/widgets/components/formio/widget-formio.component.ts"],"names":[],"mappings":"AAmBA,OAAO,EAAC,8BAA8B,EAAC,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAA8C,UAAU,EAAqB,MAAM,MAAM,CAAC;AACjG,OAAO,EAAC,WAAW,EAAC,MAAM,eAAe,CAAC;AAC1C,OAAO,EAAC,2BAA2B,EAAC,MAAM,4BAA4B,CAAC;AACvE,OAAO,EAAC,UAAU,EAAC,MAAM,iBAAiB,CAAC;;AAG3C,qBAQa,qBAAqB;IAuC9B,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAvChC,IAAoB,UAAU,CAAC,KAAK,EAAE,MAAM,EAE3C;IACD,IAAoB,mBAAmB,CAAC,KAAK,EAAE,8BAA8B,EAI5E;IAED,OAAO,CAAC,QAAQ,CAAC,4BAA4B,CACsB;IACnE,IAAW,oBAAoB,IAAI,UAAU,CAAC,8BAA8B,CAAC,CAE5E;IAED,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAAmC;IACvE,OAAO,KAAK,YAAY,GAEvB;IAED,SAAgB,wBAAwB,EAAE,UAAU,CAAC,UAAU,CAAC,CAe9D;gBAGiB,WAAW,EAAE,WAAW,EACxB,aAAa,EAAE,2BAA2B;yCAxClD,qBAAqB;2CAArB,qBAAqB;CA0CjC"}
|
package/lib/components/dossier-detail/tab/widgets/components/table/widget-table.component.d.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { CarbonListItem, ColumnConfig } from '@valtimo/components';
|
|
3
|
+
import { Page } from '@valtimo/config';
|
|
4
|
+
import { PaginationModel } from 'carbon-components-angular';
|
|
5
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
6
|
+
import { TableCaseWidget } from '../../../../../../models';
|
|
7
|
+
import { DossierWidgetsApiService } from '../../../../../../services';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class WidgetTableComponent {
|
|
10
|
+
private readonly dossierWidgetsApiService;
|
|
11
|
+
private readonly cdr;
|
|
12
|
+
documentId: string;
|
|
13
|
+
tabKey: string;
|
|
14
|
+
private _widgetConfiguration;
|
|
15
|
+
set widgetConfiguration(value: TableCaseWidget);
|
|
16
|
+
get widgetConfiguration(): TableCaseWidget;
|
|
17
|
+
private readonly _initialNumberOfElementsSubject$;
|
|
18
|
+
private get _initialNumberOfElements$();
|
|
19
|
+
readonly showPagination$: BehaviorSubject<boolean>;
|
|
20
|
+
private _widgetData$;
|
|
21
|
+
set widgetData(value: Page<CarbonListItem> | null);
|
|
22
|
+
readonly fields$: BehaviorSubject<ColumnConfig[]>;
|
|
23
|
+
private readonly _queryParams$;
|
|
24
|
+
readonly paginationModel: import("@angular/core").WritableSignal<PaginationModel>;
|
|
25
|
+
readonly widgetData$: Observable<CarbonListItem[]>;
|
|
26
|
+
constructor(dossierWidgetsApiService: DossierWidgetsApiService, cdr: ChangeDetectorRef);
|
|
27
|
+
onSelectPage(page: number): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetTableComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetTableComponent, "valtimo-widget-table", never, { "documentId": { "alias": "documentId"; "required": true; }; "tabKey": { "alias": "tabKey"; "required": true; }; "widgetConfiguration": { "alias": "widgetConfiguration"; "required": true; }; "widgetData": { "alias": "widgetData"; "required": true; }; }, {}, never, never, true, never>;
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=widget-table.component.d.ts.map
|
package/lib/components/dossier-detail/tab/widgets/components/table/widget-table.component.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-table.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/widgets/components/table/widget-table.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAEL,iBAAiB,EAKlB,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAC,cAAc,EAAoB,YAAY,EAAW,MAAM,qBAAqB,CAAC;AAC7F,OAAO,EAAC,IAAI,EAAC,MAAM,iBAAiB,CAAC;AACrC,OAAO,EAAC,eAAe,EAAgC,MAAM,2BAA2B,CAAC;AACzF,OAAO,EAAC,eAAe,EAA8B,UAAU,EAAgB,MAAM,MAAM,CAAC;AAC5F,OAAO,EAAwB,eAAe,EAAC,MAAM,0BAA0B,CAAC;AAChF,OAAO,EAAC,wBAAwB,EAAC,MAAM,4BAA4B,CAAC;;AAEpE,qBASa,oBAAoB;IAqG7B,OAAO,CAAC,QAAQ,CAAC,wBAAwB;IACzC,OAAO,CAAC,QAAQ,CAAC,GAAG;IArGU,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IAE/C,OAAO,CAAC,oBAAoB,CAAkB;IAC9C,IAAoC,mBAAmB,CAAC,KAAK,EAAE,eAAe,EAuB7E;IACD,IAAW,mBAAmB,IAAI,eAAe,CAEhD;IAED,OAAO,CAAC,QAAQ,CAAC,gCAAgC,CAAqC;IAEtF,OAAO,KAAK,yBAAyB,GAIpC;IAED,SAAgB,eAAe,2BAAuC;IAEtE,OAAO,CAAC,YAAY,CAAsD;IAC1E,IAA6B,UAAU,CAAC,KAAK,EAAE,IAAI,CAAC,cAAc,CAAC,GAAG,IAAI,EAiBzE;IAED,SAAgB,OAAO,kCAA2C;IAClE,OAAO,CAAC,QAAQ,CAAC,aAAa,CAA4C;IAE1E,SAAgB,eAAe,0DAAkD;IAEjF,SAAgB,WAAW,+BA8BzB;gBAGiB,wBAAwB,EAAE,wBAAwB,EAClD,GAAG,EAAE,iBAAiB;IAGlC,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;yCAzG5B,oBAAoB;2CAApB,oBAAoB;CAgHhC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { AfterViewInit, OnDestroy, Renderer2, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { CARBON_THEME, CdsThemeService } from '@valtimo/components';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import { CaseWidgetType, CaseWidgetWithUuid } from '../../../../../../models';
|
|
6
|
+
import { DossierTabService, DossierWidgetsApiService, DossierWidgetsLayoutService } from '../../../../../../services';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class WidgetBlockComponent implements AfterViewInit, OnDestroy {
|
|
9
|
+
private readonly dossierWidgetsLayoutService;
|
|
10
|
+
private readonly dossierTabService;
|
|
11
|
+
private readonly route;
|
|
12
|
+
private readonly widgetsApiService;
|
|
13
|
+
private readonly cdsThemeService;
|
|
14
|
+
private readonly renderer;
|
|
15
|
+
private readonly viewRef;
|
|
16
|
+
private _widgetBlockContentRef;
|
|
17
|
+
private _widgetBlockRef;
|
|
18
|
+
set widget(value: CaseWidgetWithUuid);
|
|
19
|
+
private readonly _widget$;
|
|
20
|
+
get widget$(): Observable<CaseWidgetWithUuid>;
|
|
21
|
+
private readonly _viewContainerRefSubject$;
|
|
22
|
+
private get _viewContainerRef$();
|
|
23
|
+
private readonly _contentHeight$;
|
|
24
|
+
readonly blockHeightPx$: Observable<[number, ViewContainerRef]>;
|
|
25
|
+
readonly blockWidthPercentage$: Observable<[number, CaseWidgetWithUuid, ViewContainerRef]>;
|
|
26
|
+
readonly CaseWidgetType: typeof CaseWidgetType;
|
|
27
|
+
readonly documentId$: Observable<any>;
|
|
28
|
+
readonly tabKey$: Observable<string>;
|
|
29
|
+
readonly widgetData$: Observable<any[] | {} | null>;
|
|
30
|
+
readonly theme$: Observable<CARBON_THEME>;
|
|
31
|
+
private readonly _subscriptions;
|
|
32
|
+
private _observer;
|
|
33
|
+
private _widgetUuid;
|
|
34
|
+
constructor(dossierWidgetsLayoutService: DossierWidgetsLayoutService, dossierTabService: DossierTabService, route: ActivatedRoute, widgetsApiService: DossierWidgetsApiService, cdsThemeService: CdsThemeService, renderer: Renderer2, viewRef: ViewContainerRef);
|
|
35
|
+
ngAfterViewInit(): void;
|
|
36
|
+
ngOnDestroy(): void;
|
|
37
|
+
private openContentHeightObserver;
|
|
38
|
+
private observerMutation;
|
|
39
|
+
private getPageSizeParam;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetBlockComponent, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetBlockComponent, "valtimo-dossier-widget-block", never, { "widget": { "alias": "widget"; "required": false; }; }, {}, never, never, true, never>;
|
|
42
|
+
}
|
|
43
|
+
//# sourceMappingURL=widget-block.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-block.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/widgets/components/widget-block/widget-block.component.ts"],"names":[],"mappings":"AAiBA,OAAO,EACL,aAAa,EAKb,SAAS,EACT,SAAS,EAET,gBAAgB,EACjB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAC;AAE/C,OAAO,EACL,YAAY,EAEZ,eAAe,EAEhB,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAML,UAAU,EAKX,MAAM,MAAM,CAAC;AACd,OAAO,EAAC,cAAc,EAAE,kBAAkB,EAAqB,MAAM,0BAA0B,CAAC;AAChG,OAAO,EACL,iBAAiB,EACjB,wBAAwB,EACxB,2BAA2B,EAC5B,MAAM,4BAA4B,CAAC;;AAQpC,qBAmBa,oBAAqB,YAAW,aAAa,EAAE,SAAS;IA2GjE,OAAO,CAAC,QAAQ,CAAC,2BAA2B;IAC5C,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAClC,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAClC,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,QAAQ;IACzB,OAAO,CAAC,QAAQ,CAAC,OAAO;IAhHO,OAAO,CAAC,sBAAsB,CAA6B;IAClE,OAAO,CAAC,eAAe,CAA6B;IAE9E,IAAoB,MAAM,CAAC,KAAK,EAAE,kBAAkB,EAGnD;IAED,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAwD;IAEjF,IAAW,OAAO,IAAI,UAAU,CAAC,kBAAkB,CAAC,CAEnD;IAED,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAAsD;IAEhG,OAAO,KAAK,kBAAkB,GAE7B;IAED,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAkC;IAElE,SAAgB,cAAc,yCAW5B;IAEF,SAAgB,qBAAqB,6DAYnC;IAEF,SAAgB,cAAc,wBAAkB;IAEhD,SAAgB,WAAW,kBAGzB;IAEF,SAAgB,OAAO,EAAE,UAAU,CAAC,MAAM,CAAC,CAAwC;IAEnF,SAAgB,WAAW,EAAE,UAAU,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,CA2BxD;IAEF,SAAgB,MAAM,2BAUpB;IAEF,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAsB;IAErD,OAAO,CAAC,SAAS,CAAkB;IAEnC,OAAO,CAAC,WAAW,CAAU;gBAGV,2BAA2B,EAAE,2BAA2B,EACxD,iBAAiB,EAAE,iBAAiB,EACpC,KAAK,EAAE,cAAc,EACrB,iBAAiB,EAAE,wBAAwB,EAC3C,eAAe,EAAE,eAAe,EAChC,QAAQ,EAAE,SAAS,EACnB,OAAO,EAAE,gBAAgB;IAGrC,eAAe,IAAI,IAAI;IAKvB,WAAW,IAAI,IAAI;IAK1B,OAAO,CAAC,yBAAyB;IAOjC,OAAO,CAAC,gBAAgB;IAQxB,OAAO,CAAC,gBAAgB;yCA7Ib,oBAAoB;2CAApB,oBAAoB;CAgJhC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { AfterViewInit, OnDestroy } from '@angular/core';
|
|
2
|
+
import { CaseWidget, CaseWidgetWithUuid } from '../../../../../../models';
|
|
3
|
+
import { DossierWidgetsLayoutService } from '../../../../../../services';
|
|
4
|
+
import { BehaviorSubject } from 'rxjs';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class WidgetsContainerComponent implements AfterViewInit, OnDestroy {
|
|
7
|
+
private readonly dossierWidgetsLayoutService;
|
|
8
|
+
private _widgetsContainerRef;
|
|
9
|
+
readonly widgetsWithUuids$: BehaviorSubject<CaseWidgetWithUuid[]>;
|
|
10
|
+
set widgets(value: CaseWidget[]);
|
|
11
|
+
private _observer;
|
|
12
|
+
constructor(dossierWidgetsLayoutService: DossierWidgetsLayoutService);
|
|
13
|
+
ngAfterViewInit(): void;
|
|
14
|
+
ngOnDestroy(): void;
|
|
15
|
+
private observerMutation;
|
|
16
|
+
private initMuuri;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetsContainerComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetsContainerComponent, "valtimo-dossier-widgets-container", never, { "widgets": { "alias": "widgets"; "required": false; }; }, {}, never, never, true, never>;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=widgets-container.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widgets-container.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/widgets/components/widgets-container/widgets-container.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EACL,aAAa,EAKb,SAAS,EAEV,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAC,UAAU,EAAE,kBAAkB,EAAC,MAAM,0BAA0B,CAAC;AAExE,OAAO,EAAC,2BAA2B,EAAC,MAAM,4BAA4B,CAAC;AAEvE,OAAO,EAAC,eAAe,EAAc,MAAM,MAAM,CAAC;;AAGlD,qBAQa,yBAA0B,YAAW,aAAa,EAAE,SAAS;IAa5D,OAAO,CAAC,QAAQ,CAAC,2BAA2B;IAZzB,OAAO,CAAC,oBAAoB,CAA6B;IAExF,SAAgB,iBAAiB,wCAAiD;IAElF,IAAoB,OAAO,CAAC,KAAK,EAAE,UAAU,EAAE,EAI9C;IAED,OAAO,CAAC,SAAS,CAAkB;gBAEN,2BAA2B,EAAE,2BAA2B;IAE9E,eAAe,IAAI,IAAI;IASvB,WAAW,IAAI,IAAI;IAI1B,OAAO,CAAC,gBAAgB;IASxB,OAAO,CAAC,SAAS;yCArCN,yBAAyB;2CAAzB,yBAAyB;CAiDrC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
4
|
+
import { DossierTabService, DossierWidgetsApiService, DossierWidgetsLayoutService } from '../../../../services';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DossierDetailWidgetsComponent implements OnInit, OnDestroy {
|
|
7
|
+
private readonly route;
|
|
8
|
+
private readonly dossierTabService;
|
|
9
|
+
private readonly widgetsApiService;
|
|
10
|
+
private readonly dossierWidgetsLayoutService;
|
|
11
|
+
private readonly _noMargin;
|
|
12
|
+
private readonly _noBackground;
|
|
13
|
+
private readonly _noMinHeight;
|
|
14
|
+
private readonly _documentId$;
|
|
15
|
+
private readonly _tabKey$;
|
|
16
|
+
readonly loadingWidgetConfiguration$: BehaviorSubject<boolean>;
|
|
17
|
+
readonly widgetConfiguration$: Observable<import("../../../../models/case-widget.model").CaseWidgetsRes>;
|
|
18
|
+
readonly loaded$: Observable<boolean>;
|
|
19
|
+
constructor(route: ActivatedRoute, dossierTabService: DossierTabService, widgetsApiService: DossierWidgetsApiService, dossierWidgetsLayoutService: DossierWidgetsLayoutService);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
ngOnDestroy(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierDetailWidgetsComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierDetailWidgetsComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=widgets.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widgets.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail/tab/widgets/widgets.component.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAkD,SAAS,EAAE,MAAM,EAAC,MAAM,eAAe,CAAC;AACjG,OAAO,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAC,eAAe,EAAqC,UAAU,EAAiB,MAAM,MAAM,CAAC;AACpG,OAAO,EACL,iBAAiB,EACjB,wBAAwB,EACxB,2BAA2B,EAC5B,MAAM,sBAAsB,CAAC;;AAM9B,qBAaa,6BAA8B,YAAW,MAAM,EAAE,SAAS;IAwBnE,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAClC,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAClC,OAAO,CAAC,QAAQ,CAAC,2BAA2B;IA1BT,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAQ;IAC9B,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAQ;IACtC,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAQ;IAE9E,OAAO,CAAC,QAAQ,CAAC,YAAY,CAG3B;IAEF,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAA4D;IAErF,SAAgB,2BAA2B,2BAAsC;IAEjF,SAAgB,oBAAoB,4EAKlC;IAEF,SAAgB,OAAO,sBAA6D;gBAGjE,KAAK,EAAE,cAAc,EACrB,iBAAiB,EAAE,iBAAiB,EACpC,iBAAiB,EAAE,wBAAwB,EAC3C,2BAA2B,EAAE,2BAA2B;IAGpE,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;yCAlCf,6BAA6B;2CAA7B,6BAA6B;CAsCzC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
2
|
+
import { ProcessInstanceTask, ProcessService } from '@valtimo/process';
|
|
3
|
+
import { ActivatedRoute } from '@angular/router';
|
|
4
|
+
import { DocumentService } from '@valtimo/document';
|
|
5
|
+
import { PermissionService } from '@valtimo/access-control';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class DossierDetailTaskListComponent {
|
|
8
|
+
private readonly documentService;
|
|
9
|
+
private readonly processService;
|
|
10
|
+
private readonly route;
|
|
11
|
+
private readonly permissionService;
|
|
12
|
+
private readonly _taskDetailModal;
|
|
13
|
+
readonly loadingTasks$: BehaviorSubject<boolean>;
|
|
14
|
+
private readonly _refresh$;
|
|
15
|
+
private readonly _documentId$;
|
|
16
|
+
readonly processInstanceTasks$: Observable<ProcessInstanceTask[]>;
|
|
17
|
+
constructor(documentService: DocumentService, processService: ProcessService, route: ActivatedRoute, permissionService: PermissionService);
|
|
18
|
+
rowTaskClick(task: ProcessInstanceTask): void;
|
|
19
|
+
refresh(): void;
|
|
20
|
+
private mapTasks;
|
|
21
|
+
private getUniqueTasks;
|
|
22
|
+
private getSortedTasks;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierDetailTaskListComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierDetailTaskListComponent, "valtimo-dossier-detail-task-list", never, {}, {}, never, never, true, never>;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=dossier-detail-task-list.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-detail-task-list.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier/src/lib/components/dossier-detail-task-list/dossier-detail-task-list.component.ts"],"names":[],"mappings":"AAqBA,OAAO,EACL,eAAe,EAIf,UAAU,EAKX,MAAM,MAAM,CAAC;AAEd,OAAO,EAAC,mBAAmB,EAAE,cAAc,EAAC,MAAM,kBAAkB,CAAC;AASrE,OAAO,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAC,eAAe,EAAC,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAC,iBAAiB,EAAC,MAAM,yBAAyB,CAAC;;AAK1D,qBAkBa,8BAA8B;IAkDvC,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,cAAc;IAC/B,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IApDX,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAA2B;IAErF,SAAgB,aAAa,2BAAsC;IAEnE,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAmC;IAE7D,OAAO,CAAC,QAAQ,CAAC,YAAY,CAG3B;IAEF,SAAgB,qBAAqB,EAAE,UAAU,CAAC,mBAAmB,EAAE,CAAC,CAmCtE;gBAGiB,eAAe,EAAE,eAAe,EAChC,cAAc,EAAE,cAAc,EAC9B,KAAK,EAAE,cAAc,EACrB,iBAAiB,EAAE,iBAAiB;IAGhD,YAAY,CAAC,IAAI,EAAE,mBAAmB,GAAG,IAAI;IAM7C,OAAO,IAAI,IAAI;IAItB,OAAO,CAAC,QAAQ;IAUhB,OAAO,CAAC,cAAc;IAStB,OAAO,CAAC,cAAc;yCArFX,8BAA8B;2CAA9B,8BAA8B;CA6G1C"}
|