@valtimo/dossier-management 4.15.2-next-main.14 → 4.15.3-next-main.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/valtimo-dossier-management.umd.js +565 -565
- package/esm2015/lib/dossier-management-connect-modal/dossier-management-connect-modal.component.js +87 -87
- package/esm2015/lib/dossier-management-detail/dossier-management-detail.component.js +95 -95
- package/esm2015/lib/dossier-management-list/dossier-management-list.component.js +77 -77
- package/esm2015/lib/dossier-management-remove-modal/dossier-management-remove-modal.component.js +62 -62
- package/esm2015/lib/dossier-management-routing.module.js +50 -50
- package/esm2015/lib/dossier-management-upload/dossier-management-upload.component.js +156 -156
- package/esm2015/lib/dossier-management.module.js +55 -55
- package/esm2015/public-api.js +20 -20
- package/esm2015/valtimo-dossier-management.js +9 -9
- package/fesm2015/valtimo-dossier-management.js +542 -542
- package/lib/dossier-management-connect-modal/dossier-management-connect-modal.component.d.ts +25 -25
- package/lib/dossier-management-detail/dossier-management-detail.component.d.ts +25 -25
- package/lib/dossier-management-list/dossier-management-list.component.d.ts +27 -27
- package/lib/dossier-management-remove-modal/dossier-management-remove-modal.component.d.ts +19 -19
- package/lib/dossier-management-routing.module.d.ts +2 -2
- package/lib/dossier-management-upload/dossier-management-upload.component.d.ts +38 -38
- package/lib/dossier-management.module.d.ts +2 -2
- package/package.json +1 -1
- package/public-api.d.ts +2 -2
- package/valtimo-dossier-management.d.ts +9 -9
package/lib/dossier-management-connect-modal/dossier-management-connect-modal.component.d.ts
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { DocumentService } from '@valtimo/document';
|
|
3
|
-
import { DocumentDefinition, ProcessDefinition } from '@valtimo/contract';
|
|
4
|
-
import { ProcessService } from '@valtimo/process';
|
|
5
|
-
import { ToastrService } from 'ngx-toastr';
|
|
6
|
-
import { ModalComponent } from '@valtimo/components';
|
|
7
|
-
export declare class DossierManagementConnectModalComponent implements OnInit {
|
|
8
|
-
private processService;
|
|
9
|
-
private documentService;
|
|
10
|
-
private toasterService;
|
|
11
|
-
documentDefinition: DocumentDefinition | null;
|
|
12
|
-
processDefinitions: ProcessDefinition[];
|
|
13
|
-
newDocumentProcessDefinition: ProcessDefinition | null;
|
|
14
|
-
newDocumentProcessDefinitionInit: boolean;
|
|
15
|
-
newDocumentProcessDefinitionStartableByUser: boolean;
|
|
16
|
-
processDocumentDefinitionExists: any;
|
|
17
|
-
reloadProcessDocumentDefinitions: EventEmitter<any>;
|
|
18
|
-
modal: ModalComponent;
|
|
19
|
-
constructor(processService: ProcessService, documentService: DocumentService, toasterService: ToastrService);
|
|
20
|
-
loadProcessDocumentDefinitions(): void;
|
|
21
|
-
loadProcessDefinitions(): void;
|
|
22
|
-
ngOnInit(): void;
|
|
23
|
-
openModal(dossier: DocumentDefinition): void;
|
|
24
|
-
submit(): void;
|
|
25
|
-
}
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { DocumentService } from '@valtimo/document';
|
|
3
|
+
import { DocumentDefinition, ProcessDefinition } from '@valtimo/contract';
|
|
4
|
+
import { ProcessService } from '@valtimo/process';
|
|
5
|
+
import { ToastrService } from 'ngx-toastr';
|
|
6
|
+
import { ModalComponent } from '@valtimo/components';
|
|
7
|
+
export declare class DossierManagementConnectModalComponent implements OnInit {
|
|
8
|
+
private processService;
|
|
9
|
+
private documentService;
|
|
10
|
+
private toasterService;
|
|
11
|
+
documentDefinition: DocumentDefinition | null;
|
|
12
|
+
processDefinitions: ProcessDefinition[];
|
|
13
|
+
newDocumentProcessDefinition: ProcessDefinition | null;
|
|
14
|
+
newDocumentProcessDefinitionInit: boolean;
|
|
15
|
+
newDocumentProcessDefinitionStartableByUser: boolean;
|
|
16
|
+
processDocumentDefinitionExists: any;
|
|
17
|
+
reloadProcessDocumentDefinitions: EventEmitter<any>;
|
|
18
|
+
modal: ModalComponent;
|
|
19
|
+
constructor(processService: ProcessService, documentService: DocumentService, toasterService: ToastrService);
|
|
20
|
+
loadProcessDocumentDefinitions(): void;
|
|
21
|
+
loadProcessDefinitions(): void;
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
openModal(dossier: DocumentDefinition): void;
|
|
24
|
+
submit(): void;
|
|
25
|
+
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { DocumentService } from '@valtimo/document';
|
|
3
|
-
import { DocumentDefinition, ProcessDocumentDefinition } from '@valtimo/contract';
|
|
4
|
-
import { ActivatedRoute } from '@angular/router';
|
|
5
|
-
import { DossierManagementConnectModalComponent } from '../dossier-management-connect-modal/dossier-management-connect-modal.component';
|
|
6
|
-
import { AlertService } from '@valtimo/components';
|
|
7
|
-
import { DossierManagementRemoveModalComponent } from '../dossier-management-remove-modal/dossier-management-remove-modal.component';
|
|
8
|
-
export declare class DossierManagementDetailComponent implements OnInit {
|
|
9
|
-
private documentService;
|
|
10
|
-
private route;
|
|
11
|
-
private alertService;
|
|
12
|
-
private documentDefinitionName;
|
|
13
|
-
documentDefinition: DocumentDefinition | null;
|
|
14
|
-
processDocumentDefinitions: ProcessDocumentDefinition[];
|
|
15
|
-
dossierConnectModal: DossierManagementConnectModalComponent;
|
|
16
|
-
dossierRemoveModal: DossierManagementRemoveModalComponent;
|
|
17
|
-
constructor(documentService: DocumentService, route: ActivatedRoute, alertService: AlertService);
|
|
18
|
-
ngOnInit(): void;
|
|
19
|
-
loadProcessDocumentDefinitions(): void;
|
|
20
|
-
loadDocumentDefinition(): void;
|
|
21
|
-
openDossierConnectModal(): void;
|
|
22
|
-
openDossierRemoveModal(): void;
|
|
23
|
-
deleteProcessDocumentDefinition(processDocumentDefinition: ProcessDocumentDefinition): void;
|
|
24
|
-
downloadDefinition(): void;
|
|
25
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DocumentService } from '@valtimo/document';
|
|
3
|
+
import { DocumentDefinition, ProcessDocumentDefinition } from '@valtimo/contract';
|
|
4
|
+
import { ActivatedRoute } from '@angular/router';
|
|
5
|
+
import { DossierManagementConnectModalComponent } from '../dossier-management-connect-modal/dossier-management-connect-modal.component';
|
|
6
|
+
import { AlertService } from '@valtimo/components';
|
|
7
|
+
import { DossierManagementRemoveModalComponent } from '../dossier-management-remove-modal/dossier-management-remove-modal.component';
|
|
8
|
+
export declare class DossierManagementDetailComponent implements OnInit {
|
|
9
|
+
private documentService;
|
|
10
|
+
private route;
|
|
11
|
+
private alertService;
|
|
12
|
+
private documentDefinitionName;
|
|
13
|
+
documentDefinition: DocumentDefinition | null;
|
|
14
|
+
processDocumentDefinitions: ProcessDocumentDefinition[];
|
|
15
|
+
dossierConnectModal: DossierManagementConnectModalComponent;
|
|
16
|
+
dossierRemoveModal: DossierManagementRemoveModalComponent;
|
|
17
|
+
constructor(documentService: DocumentService, route: ActivatedRoute, alertService: AlertService);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
loadProcessDocumentDefinitions(): void;
|
|
20
|
+
loadDocumentDefinition(): void;
|
|
21
|
+
openDossierConnectModal(): void;
|
|
22
|
+
openDossierRemoveModal(): void;
|
|
23
|
+
deleteProcessDocumentDefinition(processDocumentDefinition: ProcessDocumentDefinition): void;
|
|
24
|
+
downloadDefinition(): void;
|
|
25
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import { DocumentService } from '@valtimo/document';
|
|
2
|
-
import { DocumentDefinition } from '@valtimo/contract';
|
|
3
|
-
import { Router } from '@angular/router';
|
|
4
|
-
import { BehaviorSubject } from 'rxjs';
|
|
5
|
-
export declare class DossierManagementListComponent {
|
|
6
|
-
private documentService;
|
|
7
|
-
private router;
|
|
8
|
-
dossiers: DocumentDefinition[];
|
|
9
|
-
pagination: {
|
|
10
|
-
collectionSize: number;
|
|
11
|
-
page: number;
|
|
12
|
-
size: number;
|
|
13
|
-
maxPaginationItemSize: number;
|
|
14
|
-
};
|
|
15
|
-
pageParam: number;
|
|
16
|
-
dossierFields: {
|
|
17
|
-
key: string;
|
|
18
|
-
label: string;
|
|
19
|
-
}[];
|
|
20
|
-
readonly showModal$: BehaviorSubject<boolean>;
|
|
21
|
-
constructor(documentService: DocumentService, router: Router);
|
|
22
|
-
paginationClicked(page: any): void;
|
|
23
|
-
paginationSet(): void;
|
|
24
|
-
redirectToDetails(documentDefinition: DocumentDefinition): void;
|
|
25
|
-
private getDocumentDefinitions;
|
|
26
|
-
showModal(): void;
|
|
27
|
-
}
|
|
1
|
+
import { DocumentService } from '@valtimo/document';
|
|
2
|
+
import { DocumentDefinition } from '@valtimo/contract';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import { BehaviorSubject } from 'rxjs';
|
|
5
|
+
export declare class DossierManagementListComponent {
|
|
6
|
+
private documentService;
|
|
7
|
+
private router;
|
|
8
|
+
dossiers: DocumentDefinition[];
|
|
9
|
+
pagination: {
|
|
10
|
+
collectionSize: number;
|
|
11
|
+
page: number;
|
|
12
|
+
size: number;
|
|
13
|
+
maxPaginationItemSize: number;
|
|
14
|
+
};
|
|
15
|
+
pageParam: number;
|
|
16
|
+
dossierFields: {
|
|
17
|
+
key: string;
|
|
18
|
+
label: string;
|
|
19
|
+
}[];
|
|
20
|
+
readonly showModal$: BehaviorSubject<boolean>;
|
|
21
|
+
constructor(documentService: DocumentService, router: Router);
|
|
22
|
+
paginationClicked(page: any): void;
|
|
23
|
+
paginationSet(): void;
|
|
24
|
+
redirectToDetails(documentDefinition: DocumentDefinition): void;
|
|
25
|
+
private getDocumentDefinitions;
|
|
26
|
+
showModal(): void;
|
|
27
|
+
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { DocumentService } from '@valtimo/document';
|
|
2
|
-
import { DocumentDefinition } from '@valtimo/contract';
|
|
3
|
-
import { MenuService, ModalComponent } from '@valtimo/components';
|
|
4
|
-
import { ToastrService } from 'ngx-toastr';
|
|
5
|
-
import { Router } from '@angular/router';
|
|
6
|
-
import { TranslateService } from '@ngx-translate/core';
|
|
7
|
-
export declare class DossierManagementRemoveModalComponent {
|
|
8
|
-
private documentService;
|
|
9
|
-
private toasterService;
|
|
10
|
-
private router;
|
|
11
|
-
private translateService;
|
|
12
|
-
private menuService;
|
|
13
|
-
documentDefinition: DocumentDefinition | null;
|
|
14
|
-
errors: string[];
|
|
15
|
-
modal: ModalComponent;
|
|
16
|
-
constructor(documentService: DocumentService, toasterService: ToastrService, router: Router, translateService: TranslateService, menuService: MenuService);
|
|
17
|
-
openModal(documentDefinition: DocumentDefinition): void;
|
|
18
|
-
removeDocumentDefinition(): void;
|
|
19
|
-
}
|
|
1
|
+
import { DocumentService } from '@valtimo/document';
|
|
2
|
+
import { DocumentDefinition } from '@valtimo/contract';
|
|
3
|
+
import { MenuService, ModalComponent } from '@valtimo/components';
|
|
4
|
+
import { ToastrService } from 'ngx-toastr';
|
|
5
|
+
import { Router } from '@angular/router';
|
|
6
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
7
|
+
export declare class DossierManagementRemoveModalComponent {
|
|
8
|
+
private documentService;
|
|
9
|
+
private toasterService;
|
|
10
|
+
private router;
|
|
11
|
+
private translateService;
|
|
12
|
+
private menuService;
|
|
13
|
+
documentDefinition: DocumentDefinition | null;
|
|
14
|
+
errors: string[];
|
|
15
|
+
modal: ModalComponent;
|
|
16
|
+
constructor(documentService: DocumentService, toasterService: ToastrService, router: Router, translateService: TranslateService, menuService: MenuService);
|
|
17
|
+
openModal(documentDefinition: DocumentDefinition): void;
|
|
18
|
+
removeDocumentDefinition(): void;
|
|
19
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare class DossierManagementRoutingModule {
|
|
2
|
-
}
|
|
1
|
+
export declare class DossierManagementRoutingModule {
|
|
2
|
+
}
|
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
import { AfterViewInit, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
-
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
-
import { MenuService, ModalComponent } from '@valtimo/components';
|
|
4
|
-
import { DocumentService } from '@valtimo/document';
|
|
5
|
-
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
6
|
-
export declare class DossierManagementUploadComponent implements AfterViewInit, OnDestroy {
|
|
7
|
-
private readonly documentService;
|
|
8
|
-
private readonly translateService;
|
|
9
|
-
private readonly menuService;
|
|
10
|
-
show$: Observable<boolean>;
|
|
11
|
-
definitionUploaded: EventEmitter<any>;
|
|
12
|
-
modal: ModalComponent;
|
|
13
|
-
readonly clear$: Subject<unknown>;
|
|
14
|
-
readonly jsonString$: BehaviorSubject<string>;
|
|
15
|
-
readonly error$: BehaviorSubject<string>;
|
|
16
|
-
readonly disabled$: BehaviorSubject<boolean>;
|
|
17
|
-
private showSubscription;
|
|
18
|
-
private fileSubscription;
|
|
19
|
-
private errorSubscription;
|
|
20
|
-
private readonly file$;
|
|
21
|
-
constructor(documentService: DocumentService, translateService: TranslateService, menuService: MenuService);
|
|
22
|
-
ngAfterViewInit(): void;
|
|
23
|
-
ngOnDestroy(): void;
|
|
24
|
-
setFile(file: File): void;
|
|
25
|
-
uploadDefinition(): void;
|
|
26
|
-
private openErrorSubscription;
|
|
27
|
-
private closeErrorSubscription;
|
|
28
|
-
private clearError;
|
|
29
|
-
private openFileSubscription;
|
|
30
|
-
private openShowSubscription;
|
|
31
|
-
private clearJsonString;
|
|
32
|
-
private clearDropzone;
|
|
33
|
-
private showModal;
|
|
34
|
-
private hideModal;
|
|
35
|
-
private stringIsValidJson;
|
|
36
|
-
private disable;
|
|
37
|
-
private enable;
|
|
38
|
-
}
|
|
1
|
+
import { AfterViewInit, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import { MenuService, ModalComponent } from '@valtimo/components';
|
|
4
|
+
import { DocumentService } from '@valtimo/document';
|
|
5
|
+
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
6
|
+
export declare class DossierManagementUploadComponent implements AfterViewInit, OnDestroy {
|
|
7
|
+
private readonly documentService;
|
|
8
|
+
private readonly translateService;
|
|
9
|
+
private readonly menuService;
|
|
10
|
+
show$: Observable<boolean>;
|
|
11
|
+
definitionUploaded: EventEmitter<any>;
|
|
12
|
+
modal: ModalComponent;
|
|
13
|
+
readonly clear$: Subject<unknown>;
|
|
14
|
+
readonly jsonString$: BehaviorSubject<string>;
|
|
15
|
+
readonly error$: BehaviorSubject<string>;
|
|
16
|
+
readonly disabled$: BehaviorSubject<boolean>;
|
|
17
|
+
private showSubscription;
|
|
18
|
+
private fileSubscription;
|
|
19
|
+
private errorSubscription;
|
|
20
|
+
private readonly file$;
|
|
21
|
+
constructor(documentService: DocumentService, translateService: TranslateService, menuService: MenuService);
|
|
22
|
+
ngAfterViewInit(): void;
|
|
23
|
+
ngOnDestroy(): void;
|
|
24
|
+
setFile(file: File): void;
|
|
25
|
+
uploadDefinition(): void;
|
|
26
|
+
private openErrorSubscription;
|
|
27
|
+
private closeErrorSubscription;
|
|
28
|
+
private clearError;
|
|
29
|
+
private openFileSubscription;
|
|
30
|
+
private openShowSubscription;
|
|
31
|
+
private clearJsonString;
|
|
32
|
+
private clearDropzone;
|
|
33
|
+
private showModal;
|
|
34
|
+
private hideModal;
|
|
35
|
+
private stringIsValidJson;
|
|
36
|
+
private disable;
|
|
37
|
+
private enable;
|
|
38
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare class DossierManagementModule {
|
|
2
|
-
}
|
|
1
|
+
export declare class DossierManagementModule {
|
|
2
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './lib/dossier-management.module';
|
|
2
|
-
export * from './lib/dossier-management-list/dossier-management-list.component';
|
|
1
|
+
export * from './lib/dossier-management.module';
|
|
2
|
+
export * from './lib/dossier-management-list/dossier-management-list.component';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './public-api';
|
|
5
|
-
export { DossierManagementConnectModalComponent as ɵb } from './lib/dossier-management-connect-modal/dossier-management-connect-modal.component';
|
|
6
|
-
export { DossierManagementDetailComponent as ɵa } from './lib/dossier-management-detail/dossier-management-detail.component';
|
|
7
|
-
export { DossierManagementRemoveModalComponent as ɵc } from './lib/dossier-management-remove-modal/dossier-management-remove-modal.component';
|
|
8
|
-
export { DossierManagementRoutingModule as ɵe } from './lib/dossier-management-routing.module';
|
|
9
|
-
export { DossierManagementUploadComponent as ɵd } from './lib/dossier-management-upload/dossier-management-upload.component';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
|
+
export { DossierManagementConnectModalComponent as ɵb } from './lib/dossier-management-connect-modal/dossier-management-connect-modal.component';
|
|
6
|
+
export { DossierManagementDetailComponent as ɵa } from './lib/dossier-management-detail/dossier-management-detail.component';
|
|
7
|
+
export { DossierManagementRemoveModalComponent as ɵc } from './lib/dossier-management-remove-modal/dossier-management-remove-modal.component';
|
|
8
|
+
export { DossierManagementRoutingModule as ɵe } from './lib/dossier-management-routing.module';
|
|
9
|
+
export { DossierManagementUploadComponent as ɵd } from './lib/dossier-management-upload/dossier-management-upload.component';
|