@valtimo/dossier 5.9.1 → 5.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.mjs +162 -0
- package/esm2020/lib/dossier-detail/tab/documents/documents.component.mjs +17 -91
- package/esm2020/lib/dossier-detail/tab/progress/progress.component.mjs +3 -2
- package/esm2020/lib/dossier-detail/tab/s3-documents/s3-documents.component.mjs +132 -0
- package/esm2020/lib/dossier-process-start-modal/dossier-process-start-modal.component.mjs +1 -2
- package/esm2020/lib/dossier.module.mjs +13 -4
- package/fesm2015/valtimo-dossier.mjs +265 -62
- package/fesm2015/valtimo-dossier.mjs.map +1 -1
- package/fesm2020/valtimo-dossier.mjs +269 -64
- package/fesm2020/valtimo-dossier.mjs.map +1 -1
- package/lib/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.d.ts +63 -0
- package/lib/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.d.ts.map +1 -0
- package/lib/dossier-detail/tab/documents/documents.component.d.ts +6 -40
- package/lib/dossier-detail/tab/documents/documents.component.d.ts.map +1 -1
- package/lib/dossier-detail/tab/progress/progress.component.d.ts.map +1 -1
- package/lib/dossier-detail/tab/s3-documents/s3-documents.component.d.ts +50 -0
- package/lib/dossier-detail/tab/s3-documents/s3-documents.component.d.ts.map +1 -0
- package/lib/dossier-process-start-modal/dossier-process-start-modal.component.d.ts.map +1 -1
- package/lib/dossier.module.d.ts +14 -12
- package/lib/dossier.module.d.ts.map +1 -1
- package/package.json +1 -1
package/lib/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.d.ts
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { DocumentService, RelatedFile } from '@valtimo/document';
|
|
4
|
+
import { DownloadService, UploadProviderService } from '@valtimo/resource';
|
|
5
|
+
import { ToastrService } from 'ngx-toastr';
|
|
6
|
+
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
7
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
8
|
+
import { ConfigService } from '@valtimo/config';
|
|
9
|
+
import { DocumentenApiMetadata } from '@valtimo/components';
|
|
10
|
+
import { UserProviderService } from '@valtimo/security';
|
|
11
|
+
import { PromptService } from '@valtimo/user-interface';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
13
|
+
export declare class DossierDetailTabDocumentenApiDocumentsComponent implements OnInit {
|
|
14
|
+
private readonly route;
|
|
15
|
+
private readonly documentService;
|
|
16
|
+
private readonly toastrService;
|
|
17
|
+
private readonly uploadProviderService;
|
|
18
|
+
private readonly downloadService;
|
|
19
|
+
private readonly promptService;
|
|
20
|
+
private readonly translateService;
|
|
21
|
+
private readonly configService;
|
|
22
|
+
private readonly userProviderService;
|
|
23
|
+
readonly documentId: string;
|
|
24
|
+
readonly documentDefinitionName: string;
|
|
25
|
+
readonly maxFileSize: number;
|
|
26
|
+
readonly acceptedFiles: string;
|
|
27
|
+
fields: ({
|
|
28
|
+
key: string;
|
|
29
|
+
label: string;
|
|
30
|
+
viewType?: undefined;
|
|
31
|
+
} | {
|
|
32
|
+
key: string;
|
|
33
|
+
label: string;
|
|
34
|
+
viewType: string;
|
|
35
|
+
})[];
|
|
36
|
+
actions: {
|
|
37
|
+
columnName: string;
|
|
38
|
+
iconClass: string;
|
|
39
|
+
callback: any;
|
|
40
|
+
}[];
|
|
41
|
+
isAdmin: boolean;
|
|
42
|
+
uploadProcessLinkedSet: boolean;
|
|
43
|
+
uploadProcessLinked: boolean;
|
|
44
|
+
readonly uploading$: BehaviorSubject<boolean>;
|
|
45
|
+
readonly showModal$: Subject<null>;
|
|
46
|
+
readonly hideModal$: Subject<null>;
|
|
47
|
+
readonly modalDisabled$: BehaviorSubject<boolean>;
|
|
48
|
+
readonly fileToBeUploaded$: BehaviorSubject<File>;
|
|
49
|
+
private readonly refetch$;
|
|
50
|
+
relatedFiles$: Observable<Array<RelatedFile>>;
|
|
51
|
+
constructor(route: ActivatedRoute, documentService: DocumentService, toastrService: ToastrService, uploadProviderService: UploadProviderService, downloadService: DownloadService, promptService: PromptService, translateService: TranslateService, configService: ConfigService, userProviderService: UserProviderService);
|
|
52
|
+
ngOnInit(): void;
|
|
53
|
+
fileSelected(file: File): void;
|
|
54
|
+
downloadDocument(relatedFile: RelatedFile): void;
|
|
55
|
+
removeRelatedFile(relatedFile: RelatedFile): void;
|
|
56
|
+
metadataSet(metadata: DocumentenApiMetadata): void;
|
|
57
|
+
isUserAdmin(): void;
|
|
58
|
+
private refetchDocuments;
|
|
59
|
+
private setUploadProcessLinked;
|
|
60
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierDetailTabDocumentenApiDocumentsComponent, never>;
|
|
61
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierDetailTabDocumentenApiDocumentsComponent, "valtimo-dossier-detail-tab-documenten-api-documents", never, {}, {}, never, never>;
|
|
62
|
+
}
|
|
63
|
+
//# sourceMappingURL=documenten-api-documents.component.d.ts.map
|
package/lib/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"documenten-api-documents.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier/src/lib/dossier-detail/tab/documenten-api-documents/documenten-api-documents.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,MAAM,EAAC,MAAM,eAAe,CAAC;AAChD,OAAO,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAC,eAAe,EAAE,WAAW,EAAC,MAAM,mBAAmB,CAAC;AAC/D,OAAO,EAAC,eAAe,EAAe,qBAAqB,EAAC,MAAM,mBAAmB,CAAC;AACtF,OAAO,EAAC,aAAa,EAAC,MAAM,YAAY,CAAC;AAEzC,OAAO,EAAC,eAAe,EAAiB,UAAU,EAAE,OAAO,EAAC,MAAM,MAAM,CAAC;AACzE,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAC,qBAAqB,EAAC,MAAM,qBAAqB,CAAC;AAC1D,OAAO,EAAC,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAC,aAAa,EAAC,MAAM,yBAAyB,CAAC;;AAEtD,qBAKa,+CAAgD,YAAW,MAAM;IAoD1E,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IACtC,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IA3DtC,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;IACK,OAAO,EAAE,OAAO,CAAC;IACjB,sBAAsB,UAAS;IAC/B,mBAAmB,EAAG,OAAO,CAAC;IACrC,QAAQ,CAAC,UAAU,2BAAuC;IAC1D,QAAQ,CAAC,UAAU,gBAAuB;IAC1C,QAAQ,CAAC,UAAU,gBAAuB;IAC1C,QAAQ,CAAC,cAAc,2BAAuC;IAC9D,QAAQ,CAAC,iBAAiB,wBAA0C;IACpE,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAmC;IACrD,aAAa,EAAE,UAAU,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAgBlD;gBAGiB,KAAK,EAAE,cAAc,EACrB,eAAe,EAAE,eAAe,EAChC,aAAa,EAAE,aAAa,EAC5B,qBAAqB,EAAE,qBAAqB,EAC5C,eAAe,EAAE,eAAe,EAChC,aAAa,EAAE,aAAa,EAC5B,gBAAgB,EAAE,gBAAgB,EAClC,aAAa,EAAE,aAAa,EAC5B,mBAAmB,EAAE,mBAAmB;IAO3D,QAAQ,IAAI,IAAI;IAMhB,YAAY,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI;IAK9B,gBAAgB,CAAC,WAAW,EAAE,WAAW,GAAG,IAAI;IAQhD,iBAAiB,CAAC,WAAW,EAAE,WAAW;IA0B1C,WAAW,CAAC,QAAQ,EAAE,qBAAqB,GAAG,IAAI;IAoB3C,WAAW;IAWlB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,sBAAsB;yCAnJnB,+CAA+C;2CAA/C,+CAA+C;CA8J3D"}
|
|
@@ -1,46 +1,12 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ActivatedRoute } from '@angular/router';
|
|
3
|
-
import { DocumentService, RelatedFile } from '@valtimo/document';
|
|
4
|
-
import { ToastrService } from 'ngx-toastr';
|
|
5
|
-
import { DownloadService, UploadProviderService } from '@valtimo/resource';
|
|
6
|
-
import { BehaviorSubject, Observable } from 'rxjs';
|
|
7
|
-
import { TranslateService } from '@ngx-translate/core';
|
|
8
1
|
import { ConfigService } from '@valtimo/config';
|
|
9
2
|
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class DossierDetailTabDocumentsComponent
|
|
11
|
-
private readonly route;
|
|
12
|
-
private readonly documentService;
|
|
13
|
-
private readonly toastrService;
|
|
14
|
-
private readonly uploadProviderService;
|
|
15
|
-
private readonly downloadService;
|
|
16
|
-
private readonly translateService;
|
|
3
|
+
export declare class DossierDetailTabDocumentsComponent {
|
|
17
4
|
private readonly configService;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
fields: ({
|
|
24
|
-
key: string;
|
|
25
|
-
label: string;
|
|
26
|
-
viewType?: undefined;
|
|
27
|
-
} | {
|
|
28
|
-
key: string;
|
|
29
|
-
label: string;
|
|
30
|
-
viewType: string;
|
|
31
|
-
})[];
|
|
32
|
-
actions: {
|
|
33
|
-
columnName: string;
|
|
34
|
-
iconClass: string;
|
|
35
|
-
callback: any;
|
|
36
|
-
}[];
|
|
37
|
-
readonly uploading$: BehaviorSubject<boolean>;
|
|
38
|
-
constructor(route: ActivatedRoute, documentService: DocumentService, toastrService: ToastrService, uploadProviderService: UploadProviderService, downloadService: DownloadService, translateService: TranslateService, configService: ConfigService);
|
|
39
|
-
ngOnInit(): void;
|
|
40
|
-
fileSelected(file: File): void;
|
|
41
|
-
downloadDocument(relatedFile: RelatedFile): void;
|
|
42
|
-
removeRelatedFile(relatedFile: RelatedFile): void;
|
|
43
|
-
private refetchDocuments;
|
|
5
|
+
openZaakUploadProvider: boolean;
|
|
6
|
+
s3UploadProvider: boolean;
|
|
7
|
+
documentenApiUploadProvider: boolean;
|
|
8
|
+
constructor(configService: ConfigService);
|
|
9
|
+
private setConfig;
|
|
44
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<DossierDetailTabDocumentsComponent, never>;
|
|
45
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<DossierDetailTabDocumentsComponent, "valtimo-dossier-detail-tab-documents", never, {}, {}, never, never>;
|
|
46
12
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"documents.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier/src/lib/dossier-detail/tab/documents/documents.component.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"documents.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier/src/lib/dossier-detail/tab/documents/documents.component.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,aAAa,EAAgC,MAAM,iBAAiB,CAAC;;AAE7E,qBAKa,kCAAkC;IAKjC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAJ1C,sBAAsB,EAAG,OAAO,CAAC;IACjC,gBAAgB,EAAG,OAAO,CAAC;IAC3B,2BAA2B,EAAG,OAAO,CAAC;gBAET,aAAa,EAAE,aAAa;IAIzD,OAAO,CAAC,SAAS;yCATN,kCAAkC;2CAAlC,kCAAkC;CAe9C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"progress.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier/src/lib/dossier-detail/tab/progress/progress.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,EAAC,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAC,uBAAuB,EAAC,MAAM,mBAAmB,CAAC;;AAE1D,qBAKa,iCAAkC,YAAW,MAAM;IAKlD,OAAO,CAAC,KAAK;IAAkB,OAAO,CAAC,eAAe;IAJ3D,wBAAwB,EAAE,uBAAuB,EAAE,CAAC;IACpD,yBAAyB,EAAE,MAAM,CAAC;IACzC,SAAgB,UAAU,EAAE,MAAM,CAAC;gBAEf,KAAK,EAAE,cAAc,EAAU,eAAe,EAAE,eAAe;IAKnF,QAAQ;
|
|
1
|
+
{"version":3,"file":"progress.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier/src/lib/dossier-detail/tab/progress/progress.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,EAAC,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAC,uBAAuB,EAAC,MAAM,mBAAmB,CAAC;;AAE1D,qBAKa,iCAAkC,YAAW,MAAM;IAKlD,OAAO,CAAC,KAAK;IAAkB,OAAO,CAAC,eAAe;IAJ3D,wBAAwB,EAAE,uBAAuB,EAAE,CAAC;IACpD,yBAAyB,EAAE,MAAM,CAAC;IACzC,SAAgB,UAAU,EAAE,MAAM,CAAC;gBAEf,KAAK,EAAE,cAAc,EAAU,eAAe,EAAE,eAAe;IAKnF,QAAQ;IAYD,mBAAmB,CAAC,iBAAiB,EAAE,MAAM;yCAtBzC,iCAAiC;2CAAjC,iCAAiC;CAyB7C"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { DocumentService, RelatedFile } from '@valtimo/document';
|
|
4
|
+
import { DownloadService, UploadProviderService } from '@valtimo/resource';
|
|
5
|
+
import { ToastrService } from 'ngx-toastr';
|
|
6
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
7
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
8
|
+
import { ConfigService } from '@valtimo/config';
|
|
9
|
+
import { PromptService } from '@valtimo/user-interface';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class DossierDetailTabS3DocumentsComponent implements OnInit {
|
|
12
|
+
private readonly route;
|
|
13
|
+
private readonly documentService;
|
|
14
|
+
private readonly toastrService;
|
|
15
|
+
private readonly uploadProviderService;
|
|
16
|
+
private readonly downloadService;
|
|
17
|
+
private readonly promptService;
|
|
18
|
+
private readonly translateService;
|
|
19
|
+
private readonly configService;
|
|
20
|
+
readonly documentId: string;
|
|
21
|
+
readonly documentDefinitionName: string;
|
|
22
|
+
readonly maxFileSize: number;
|
|
23
|
+
readonly acceptedFiles: string;
|
|
24
|
+
fields: ({
|
|
25
|
+
key: string;
|
|
26
|
+
label: string;
|
|
27
|
+
viewType?: undefined;
|
|
28
|
+
} | {
|
|
29
|
+
key: string;
|
|
30
|
+
label: string;
|
|
31
|
+
viewType: string;
|
|
32
|
+
})[];
|
|
33
|
+
actions: {
|
|
34
|
+
columnName: string;
|
|
35
|
+
iconClass: string;
|
|
36
|
+
callback: any;
|
|
37
|
+
}[];
|
|
38
|
+
readonly uploading$: BehaviorSubject<boolean>;
|
|
39
|
+
private readonly refetch$;
|
|
40
|
+
relatedFiles$: Observable<Array<RelatedFile>>;
|
|
41
|
+
constructor(route: ActivatedRoute, documentService: DocumentService, toastrService: ToastrService, uploadProviderService: UploadProviderService, downloadService: DownloadService, promptService: PromptService, translateService: TranslateService, configService: ConfigService);
|
|
42
|
+
ngOnInit(): void;
|
|
43
|
+
fileSelected(file: File): void;
|
|
44
|
+
downloadDocument(relatedFile: RelatedFile): void;
|
|
45
|
+
removeRelatedFile(relatedFile: RelatedFile): void;
|
|
46
|
+
private refetchDocuments;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierDetailTabS3DocumentsComponent, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierDetailTabS3DocumentsComponent, "valtimo-dossier-detail-tab-s3-documents", never, {}, {}, never, never>;
|
|
49
|
+
}
|
|
50
|
+
//# sourceMappingURL=s3-documents.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"s3-documents.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier/src/lib/dossier-detail/tab/s3-documents/s3-documents.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,MAAM,EAAC,MAAM,eAAe,CAAC;AAChD,OAAO,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAC,eAAe,EAAE,WAAW,EAAC,MAAM,mBAAmB,CAAC;AAC/D,OAAO,EAAC,eAAe,EAAe,qBAAqB,EAAC,MAAM,mBAAmB,CAAC;AACtF,OAAO,EAAC,aAAa,EAAC,MAAM,YAAY,CAAC;AAEzC,OAAO,EAAC,eAAe,EAAiB,UAAU,EAAC,MAAM,MAAM,CAAC;AAChE,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAC,aAAa,EAAC,MAAM,yBAAyB,CAAC;;AAEtD,qBAKa,oCAAqC,YAAW,MAAM;IA4C/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;IAlDhC,SAAgB,UAAU,EAAE,MAAM,CAAC;IACnC,SAAgB,sBAAsB,EAAE,MAAM,CAAC;IAC/C,SAAgB,WAAW,EAAE,MAAM,CAA8D;IACjG,SAAgB,aAAa,EAAE,MAAM,CAAmE;IACjG,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,CAgBlD;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;IAO/C,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;yCAvHb,oCAAoC;2CAApC,oCAAoC;CA0HhD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-process-start-modal.component.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/dossier-process-start-modal/dossier-process-start-modal.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,MAAM,EAA+B,MAAM,eAAe,CAAC;AAC9E,OAAO,EAAC,eAAe,EAAE,yBAAyB,EAAC,MAAM,mBAAmB,CAAC;AAC7E,OAAO,EAAkB,eAAe,EAAuB,MAAM,oBAAoB,CAAC;AAC1F,OAAO,EAAC,cAAc,EAAE,MAAM,EAAC,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAChD,OAAO,EACL,eAAe,EAEf,gBAAgB,EAChB,cAAc,EACd,oBAAoB,EACrB,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAC,UAAU,EAAC,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAC,SAAS,EAAC,MAAM,YAAY,CAAC;AACrC,OAAO,EAAC,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;;AAEtD,qBAMa,iCAAkC,YAAW,MAAM;IAa5D,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,cAAc;IACtB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,mBAAmB;IAC3B,OAAO,CAAC,MAAM;IAlBT,oBAAoB,EAAE,MAAM,CAAC;IAC7B,sBAAsB,EAAE,MAAM,CAAC;IAC/B,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,UAAU,CAAC;IAC3B,gBAAgB,EAAE,gBAAgB,CAAC;IAC1C,OAAO,CAAC,eAAe,CAAkB;IAClC,OAAO,EAAE,oBAAoB,CAAC;IAC9B,OAAO,EAAE,OAAO,CAAC;IACY,IAAI,EAAE,eAAe,CAAC;IACT,KAAK,EAAE,cAAc,CAAC;gBAG7D,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM,EACd,cAAc,EAAE,cAAc,EAC9B,eAAe,EAAE,eAAe,EAChC,eAAe,EAAE,eAAe,EAChC,mBAAmB,EAAE,mBAAmB,EACxC,MAAM,EAAE,SAAS;IAG3B,QAAQ;IAIR,OAAO,CAAC,kBAAkB;IAiCnB,kBAAkB;IAKzB,IAAW,UAAU,WAEpB;IAED,SAAS,CAAC,yBAAyB,EAAE,yBAAyB;IAavD,QAAQ,CAAC,UAAU,EAAE,gBAAgB;IAqBrC,WAAW;
|
|
1
|
+
{"version":3,"file":"dossier-process-start-modal.component.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier/src/lib/dossier-process-start-modal/dossier-process-start-modal.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAY,MAAM,EAA+B,MAAM,eAAe,CAAC;AAC9E,OAAO,EAAC,eAAe,EAAE,yBAAyB,EAAC,MAAM,mBAAmB,CAAC;AAC7E,OAAO,EAAkB,eAAe,EAAuB,MAAM,oBAAoB,CAAC;AAC1F,OAAO,EAAC,cAAc,EAAE,MAAM,EAAC,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAChD,OAAO,EACL,eAAe,EAEf,gBAAgB,EAChB,cAAc,EACd,oBAAoB,EACrB,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAC,UAAU,EAAC,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAC,SAAS,EAAC,MAAM,YAAY,CAAC;AACrC,OAAO,EAAC,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;;AAEtD,qBAMa,iCAAkC,YAAW,MAAM;IAa5D,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,cAAc;IACtB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,mBAAmB;IAC3B,OAAO,CAAC,MAAM;IAlBT,oBAAoB,EAAE,MAAM,CAAC;IAC7B,sBAAsB,EAAE,MAAM,CAAC;IAC/B,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,UAAU,CAAC;IAC3B,gBAAgB,EAAE,gBAAgB,CAAC;IAC1C,OAAO,CAAC,eAAe,CAAkB;IAClC,OAAO,EAAE,oBAAoB,CAAC;IAC9B,OAAO,EAAE,OAAO,CAAC;IACY,IAAI,EAAE,eAAe,CAAC;IACT,KAAK,EAAE,cAAc,CAAC;gBAG7D,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM,EACd,cAAc,EAAE,cAAc,EAC9B,eAAe,EAAE,eAAe,EAChC,eAAe,EAAE,eAAe,EAChC,mBAAmB,EAAE,mBAAmB,EACxC,MAAM,EAAE,SAAS;IAG3B,QAAQ;IAIR,OAAO,CAAC,kBAAkB;IAiCnB,kBAAkB;IAKzB,IAAW,UAAU,WAEpB;IAED,SAAS,CAAC,yBAAyB,EAAE,yBAAyB;IAavD,QAAQ,CAAC,UAAU,EAAE,gBAAgB;IAqBrC,WAAW,IAAI,IAAI;yCAtGf,iCAAiC;2CAAjC,iCAAiC;CAgH7C"}
|
package/lib/dossier.module.d.ts
CHANGED
|
@@ -12,22 +12,24 @@ import * as i9 from "./dossier-update/dossier-update.component";
|
|
|
12
12
|
import * as i10 from "./dossier-process-start-modal/dossier-process-start-modal.component";
|
|
13
13
|
import * as i11 from "./dossier-supporting-process-start-modal/dossier-supporting-process-start-modal.component";
|
|
14
14
|
import * as i12 from "./dossier-detail/tab/object-type/object-type.component";
|
|
15
|
-
import * as i13 from "
|
|
16
|
-
import * as i14 from "./dossier-
|
|
17
|
-
import * as i15 from "@
|
|
18
|
-
import * as i16 from "
|
|
19
|
-
import * as i17 from "@
|
|
20
|
-
import * as i18 from "@
|
|
21
|
-
import * as i19 from "@
|
|
22
|
-
import * as i20 from "@
|
|
23
|
-
import * as i21 from "@valtimo/
|
|
24
|
-
import * as i22 from "@
|
|
25
|
-
import * as i23 from "@valtimo/
|
|
15
|
+
import * as i13 from "./dossier-detail/tab/documenten-api-documents/documenten-api-documents.component";
|
|
16
|
+
import * as i14 from "./dossier-detail/tab/s3-documents/s3-documents.component";
|
|
17
|
+
import * as i15 from "@angular/common";
|
|
18
|
+
import * as i16 from "./dossier-routing.module";
|
|
19
|
+
import * as i17 from "@valtimo/components";
|
|
20
|
+
import * as i18 from "@valtimo/process";
|
|
21
|
+
import * as i19 from "@ng-bootstrap/ng-bootstrap";
|
|
22
|
+
import * as i20 from "@angular/forms";
|
|
23
|
+
import * as i21 from "@valtimo/form";
|
|
24
|
+
import * as i22 from "@ngx-translate/core";
|
|
25
|
+
import * as i23 from "@valtimo/task";
|
|
26
|
+
import * as i24 from "@valtimo/config";
|
|
27
|
+
import * as i25 from "@valtimo/user-interface";
|
|
26
28
|
export declare type TabsFactory = () => Map<string, object>;
|
|
27
29
|
export declare class DossierModule {
|
|
28
30
|
static forRoot(tabsFactory: TabsFactory): ModuleWithProviders<DossierModule>;
|
|
29
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<DossierModule, never>;
|
|
30
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DossierModule, [typeof i1.DossierListComponent, typeof i2.DossierDetailComponent, typeof i3.DossierDetailTabSummaryComponent, typeof i4.DossierDetailTabProgressComponent, typeof i5.DossierDetailTabAuditComponent, typeof i6.DossierDetailTabDocumentsComponent, typeof i7.DossierDetailTabContactMomentsComponent, typeof i8.DossierDetailTabZaakobjectenComponent, typeof i9.DossierUpdateComponent, typeof i10.DossierProcessStartModalComponent, typeof i11.DossierSupportingProcessStartModalComponent, typeof i12.DossierDetailTabObjectTypeComponent], [typeof
|
|
32
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DossierModule, [typeof i1.DossierListComponent, typeof i2.DossierDetailComponent, typeof i3.DossierDetailTabSummaryComponent, typeof i4.DossierDetailTabProgressComponent, typeof i5.DossierDetailTabAuditComponent, typeof i6.DossierDetailTabDocumentsComponent, typeof i7.DossierDetailTabContactMomentsComponent, typeof i8.DossierDetailTabZaakobjectenComponent, typeof i9.DossierUpdateComponent, typeof i10.DossierProcessStartModalComponent, typeof i11.DossierSupportingProcessStartModalComponent, typeof i12.DossierDetailTabObjectTypeComponent, typeof i13.DossierDetailTabDocumentenApiDocumentsComponent, typeof i14.DossierDetailTabS3DocumentsComponent], [typeof i15.CommonModule, typeof i16.DossierRoutingModule, typeof i17.ListModule, typeof i17.WidgetModule, typeof i17.BpmnJsDiagramModule, typeof i17.TimelineModule, typeof i17.CamundaFormModule, typeof i18.ProcessModule, typeof i17.FilterSidebarModule, typeof i19.NgbButtonsModule, typeof i17.DataListModule, typeof i20.FormsModule, typeof i21.FormModule, typeof i17.FormIoModule, typeof i17.ModalModule, typeof i17.SpinnerModule, typeof i22.TranslateModule, typeof i23.TaskModule, typeof i17.ModalModule, typeof i19.NgbTooltipModule, typeof i17.UploaderModule, typeof i17.DropzoneModule, typeof i19.NgbPaginationModule, typeof i24.ConfigModule, typeof i25.SelectModule, typeof i25.InputLabelModule, typeof i25.ParagraphModule, typeof i25.TableModule, typeof i25.ModalModule, typeof i25.TitleModule, typeof i25.ButtonModule, typeof i17.DocumentenApiMetadataModalModule], [typeof i1.DossierListComponent, typeof i2.DossierDetailComponent]>;
|
|
31
33
|
static ɵinj: i0.ɵɵInjectorDeclaration<DossierModule>;
|
|
32
34
|
}
|
|
33
35
|
//# sourceMappingURL=dossier.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dossier/src/lib/dossier.module.ts"],"names":[],"mappings":"AAgBA,OAAO,EAA+B,mBAAmB,EAAW,MAAM,eAAe,CAAC
|
|
1
|
+
{"version":3,"file":"dossier.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dossier/src/lib/dossier.module.ts"],"names":[],"mappings":"AAgBA,OAAO,EAA+B,mBAAmB,EAAW,MAAM,eAAe,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqD1F,oBAAY,WAAW,GAAG,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AAEpD,qBA2Da,aAAa;IACxB,MAAM,CAAC,OAAO,CAAC,WAAW,EAAE,WAAW,GAAG,mBAAmB,CAAC,aAAa,CAAC;yCADjE,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAmBzB"}
|