@valtimo/zgw 13.15.0 → 13.17.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/fesm2022/valtimo-zgw.mjs +3 -10
- package/fesm2022/valtimo-zgw.mjs.map +1 -1
- package/lib/modules/documenten-api/formio/documenten-api-uploader/documenten-api-uploader.component.d.ts.map +1 -1
- package/lib/modules/zaken-api/components/zaken-api-zaaktype-link/zaken-api-zaaktype-link.component.d.ts +0 -1
- package/lib/modules/zaken-api/components/zaken-api-zaaktype-link/zaken-api-zaaktype-link.component.d.ts.map +1 -1
- package/package.json +1 -1
package/fesm2022/valtimo-zgw.mjs
CHANGED
|
@@ -1928,7 +1928,7 @@ class CaseManagementLinkProcessComponent {
|
|
|
1928
1928
|
]).pipe(map(([definitions, selectedProcessKey]) => (definitions || [])
|
|
1929
1929
|
.filter(definition => !!definition?.key)
|
|
1930
1930
|
.map(process => ({
|
|
1931
|
-
content: process?.name ||
|
|
1931
|
+
content: process?.name || `<${process.key}>`,
|
|
1932
1932
|
id: process.key,
|
|
1933
1933
|
selected: selectedProcessKey === process.key,
|
|
1934
1934
|
}))), tap(() => this.documentenApiVersionService.refresh()));
|
|
@@ -3203,8 +3203,8 @@ class DocumentenApiUploaderComponent {
|
|
|
3203
3203
|
}
|
|
3204
3204
|
set documentType(defaultValue) {
|
|
3205
3205
|
this.defaultValues['informatieobjecttype'] = defaultValue;
|
|
3206
|
-
this.stateService.
|
|
3207
|
-
.pipe(filter$1(
|
|
3206
|
+
this.stateService.caseDefinitionKey$
|
|
3207
|
+
.pipe(filter$1(caseDefinitionKey => !!caseDefinitionKey), switchMap(caseDefinitionKey => this.documentService.getCaseSettings(caseDefinitionKey)), switchMap(caseDefinition => this.documentService.getDocumentTypesForCase(String(caseDefinition.caseDefinitionKey), String(caseDefinition.caseDefinitionVersionTag))), catchError(() => {
|
|
3208
3208
|
this.defaultValues['informatieobjecttype'] = defaultValue;
|
|
3209
3209
|
return EMPTY;
|
|
3210
3210
|
}))
|
|
@@ -4202,13 +4202,6 @@ class ZakenApiZaaktypeLinkComponent {
|
|
|
4202
4202
|
this.findPluginConfiguration(this.zaakTypeLink$.getValue()?.zakenApiPluginConfigurationId ?? '');
|
|
4203
4203
|
});
|
|
4204
4204
|
}
|
|
4205
|
-
loadInformatieObjectTypeUrls() {
|
|
4206
|
-
this.openZaakService
|
|
4207
|
-
.getInformatieObjectTypes()
|
|
4208
|
-
.subscribe((informatieObjectTypes) => {
|
|
4209
|
-
this.informatieObjectTypes = informatieObjectTypes;
|
|
4210
|
-
});
|
|
4211
|
-
}
|
|
4212
4205
|
closeModal() {
|
|
4213
4206
|
this.modalOpen$.next(false);
|
|
4214
4207
|
}
|