@valtimo/plugin 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/plugins/catalogi-api/assets/catalogi-api-plugin-logo.mjs +18 -0
- package/esm2020/lib/plugins/catalogi-api/assets/index.mjs +17 -0
- package/esm2020/lib/plugins/catalogi-api/catalogi-api-plugin-module.mjs +54 -0
- package/esm2020/lib/plugins/catalogi-api/catalogi-api-plugin.specification.mjs +53 -0
- package/esm2020/lib/plugins/catalogi-api/components/catalogi-api-configuration/catalogi-api-configuration.component.mjs +88 -0
- package/esm2020/lib/plugins/catalogi-api/models/config.mjs +17 -0
- package/esm2020/lib/plugins/catalogi-api/models/index.mjs +17 -0
- package/esm2020/lib/plugins/documenten-api/components/store-temp-document/store-temp-document-configuration.component.mjs +21 -4
- package/esm2020/lib/plugins/documenten-api/components/store-uploaded-document/store-uploaded-document-configuration.component.mjs +60 -0
- package/esm2020/lib/plugins/documenten-api/documenten-api-plugin.module.mjs +39 -7
- package/esm2020/lib/plugins/documenten-api/documenten-api-plugin.specification.mjs +57 -1
- package/esm2020/lib/plugins/documenten-api/models/config.mjs +1 -1
- package/esm2020/lib/plugins/zaken-api/components/link-uploaded-document-to-zaak/link-uploaded-document-to-zaak-configuration.component.mjs +60 -0
- package/esm2020/lib/plugins/zaken-api/zaken-api-plugin.module.mjs +18 -5
- package/esm2020/lib/plugins/zaken-api/zaken-api-plugin.specification.mjs +9 -4
- package/esm2020/public-api.mjs +7 -1
- package/fesm2015/valtimo-plugin.mjs +462 -16
- package/fesm2015/valtimo-plugin.mjs.map +1 -1
- package/fesm2020/valtimo-plugin.mjs +456 -16
- package/fesm2020/valtimo-plugin.mjs.map +1 -1
- package/lib/plugins/catalogi-api/assets/catalogi-api-plugin-logo.d.ts +3 -0
- package/lib/plugins/catalogi-api/assets/catalogi-api-plugin-logo.d.ts.map +1 -0
- package/lib/plugins/catalogi-api/assets/index.d.ts +2 -0
- package/lib/plugins/catalogi-api/assets/index.d.ts.map +1 -0
- package/lib/plugins/catalogi-api/catalogi-api-plugin-module.d.ts +11 -0
- package/lib/plugins/catalogi-api/catalogi-api-plugin-module.d.ts.map +1 -0
- package/lib/plugins/catalogi-api/catalogi-api-plugin.specification.d.ts +4 -0
- package/lib/plugins/catalogi-api/catalogi-api-plugin.specification.d.ts.map +1 -0
- package/lib/plugins/catalogi-api/components/catalogi-api-configuration/catalogi-api-configuration.component.d.ts +34 -0
- package/lib/plugins/catalogi-api/components/catalogi-api-configuration/catalogi-api-configuration.component.d.ts.map +1 -0
- package/lib/plugins/catalogi-api/models/config.d.ts +7 -0
- package/lib/plugins/catalogi-api/models/config.d.ts.map +1 -0
- package/lib/plugins/catalogi-api/models/index.d.ts +2 -0
- package/lib/plugins/catalogi-api/models/index.d.ts.map +1 -0
- package/lib/plugins/documenten-api/components/store-temp-document/store-temp-document-configuration.component.d.ts +6 -0
- package/lib/plugins/documenten-api/components/store-temp-document/store-temp-document-configuration.component.d.ts.map +1 -1
- package/lib/plugins/documenten-api/components/store-uploaded-document/store-uploaded-document-configuration.component.d.ts +20 -0
- package/lib/plugins/documenten-api/components/store-uploaded-document/store-uploaded-document-configuration.component.d.ts.map +1 -0
- package/lib/plugins/documenten-api/documenten-api-plugin.module.d.ts +5 -4
- package/lib/plugins/documenten-api/documenten-api-plugin.module.d.ts.map +1 -1
- package/lib/plugins/documenten-api/documenten-api-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/documenten-api/models/config.d.ts +6 -1
- package/lib/plugins/documenten-api/models/config.d.ts.map +1 -1
- package/lib/plugins/zaken-api/components/link-uploaded-document-to-zaak/link-uploaded-document-to-zaak-configuration.component.d.ts +20 -0
- package/lib/plugins/zaken-api/components/link-uploaded-document-to-zaak/link-uploaded-document-to-zaak-configuration.component.d.ts.map +1 -0
- package/lib/plugins/zaken-api/zaken-api-plugin.module.d.ts +5 -4
- package/lib/plugins/zaken-api/zaken-api-plugin.module.d.ts.map +1 -1
- package/lib/plugins/zaken-api/zaken-api-plugin.specification.d.ts.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +5 -0
- package/public-api.d.ts.map +1 -1
|
@@ -1262,6 +1262,20 @@ class StoreTempDocumentConfigurationComponent {
|
|
|
1262
1262
|
this.pluginTranslationService = pluginTranslationService;
|
|
1263
1263
|
this.valid = new EventEmitter();
|
|
1264
1264
|
this.configuration = new EventEmitter();
|
|
1265
|
+
this.CONFIDENTIALITY_LEVEL_ITEMS = [
|
|
1266
|
+
'openbaar',
|
|
1267
|
+
'beperkt_openbaar',
|
|
1268
|
+
'intern',
|
|
1269
|
+
'zaakvertrouwelijk',
|
|
1270
|
+
'vertrouwelijk',
|
|
1271
|
+
'confidentieel',
|
|
1272
|
+
'geheim',
|
|
1273
|
+
'zeer_geheim',
|
|
1274
|
+
];
|
|
1275
|
+
this.confidentialityLevelItems$ = this.translateService.stream('key').pipe(map$1(() => this.CONFIDENTIALITY_LEVEL_ITEMS.map(confidentialityLevel => ({
|
|
1276
|
+
id: confidentialityLevel,
|
|
1277
|
+
text: this.pluginTranslationService.instant(confidentialityLevel, this.pluginId),
|
|
1278
|
+
}))));
|
|
1265
1279
|
this.LANGUAGE_ITEMS = ['nld'];
|
|
1266
1280
|
this.languageSelectItems$ = this.translateService.stream('key').pipe(map$1(() => this.LANGUAGE_ITEMS.map(item => ({
|
|
1267
1281
|
id: item,
|
|
@@ -1291,7 +1305,10 @@ class StoreTempDocumentConfigurationComponent {
|
|
|
1291
1305
|
this.handleValid(formValue);
|
|
1292
1306
|
}
|
|
1293
1307
|
handleValid(formValue) {
|
|
1294
|
-
const valid = !!(formValue.
|
|
1308
|
+
const valid = !!(formValue.confidentialityLevel &&
|
|
1309
|
+
formValue.title &&
|
|
1310
|
+
formValue.description &&
|
|
1311
|
+
formValue.localDocumentLocation &&
|
|
1295
1312
|
formValue.taal &&
|
|
1296
1313
|
formValue.status &&
|
|
1297
1314
|
formValue.informatieobjecttype);
|
|
@@ -1311,10 +1328,10 @@ class StoreTempDocumentConfigurationComponent {
|
|
|
1311
1328
|
}
|
|
1312
1329
|
}
|
|
1313
1330
|
StoreTempDocumentConfigurationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: StoreTempDocumentConfigurationComponent, deps: [{ token: i2.TranslateService }, { token: PluginTranslationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
1314
|
-
StoreTempDocumentConfigurationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: StoreTempDocumentConfigurationComponent, selector: "valtimo-store-temp-document-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null\n } as obs\"\n>\n <v-input\n name=\"localDocumentLocation\"\n [title]=\"'localDocumentLocation' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.localDocumentLocation\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'localDocumentLocationTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n <v-input\n name=\"storedDocumentUrl\"\n [title]=\"'storedDocumentUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.storedDocumentUrl\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'storeDocumentUrlTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n <v-select\n [items]=\"languageSelectItems$ | async\"\n [margin]=\"true\"\n [widthInPx]=\"200\"\n name=\"taal\"\n [title]=\"'taal' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.taal || LANGUAGE_ITEMS[0]\"\n [required]=\"true\"\n ></v-select>\n <v-select\n [items]=\"statusSelectItems$ | async\"\n [margin]=\"true\"\n [widthInPx]=\"200\"\n name=\"status\"\n [title]=\"'status' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.status || STATUS_ITEMS[2]\"\n [required]=\"true\"\n ></v-select>\n <v-input\n name=\"informatieobjecttype\"\n [title]=\"'informatieobjecttype' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.informatieobjecttype\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'informatieobjecttypeTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n", styles: [""], components: [{ type: i3$1.FormComponent, selector: "v-form", outputs: ["valueChange"] }, { type: i3$1.InputComponent, selector: "v-input", inputs: ["name", "type", "title", "titleTranslationKey", "defaultValue", "widthPx", "fullWidth", "margin", "disabled", "step", "min", "maxLength", "tooltip", "required", "hideNumberSpinBox"], outputs: ["valueChange"] }, { type: i3$1.SelectComponent, selector: "v-select", inputs: ["items", "defaultSelection", "defaultSelectionId", "clearable", "disabled", "multiple", "margin", "widthInPx", "notFoundText", "clearAllText", "name", "title", "titleTranslationKey", "clearSelectionSubject$", "tooltip", "required", "loading", "loadingText", "placeholder"], outputs: ["selectedChange", "clear"] }], directives: [{ type: i4$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], pipes: { "async": i4$1.AsyncPipe, "pluginTranslate": PluginTranslatePipe } });
|
|
1331
|
+
StoreTempDocumentConfigurationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: StoreTempDocumentConfigurationComponent, selector: "valtimo-store-temp-document-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null\n } as obs\"\n>\n <v-input\n name=\"fileName\"\n [title]=\"'fileName' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.fileName\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'fileNameTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n <v-select\n [items]=\"confidentialityLevelItems$ | async\"\n [margin]=\"true\"\n [widthInPx]=\"200\"\n name=\"confidentialityLevel\"\n [title]=\"'confidentialityLevel' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.confidentialityLevel || CONFIDENTIALITY_LEVEL_ITEMS[3]\"\n [required]=\"true\"\n [tooltip]=\"'confidentialityLevelTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n <v-input\n name=\"title\"\n [title]=\"'inputTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.title\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'inputTitleTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n <v-input\n name=\"description\"\n [title]=\"'inputDescription' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.description\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'inputDescriptionTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n <v-input\n name=\"localDocumentLocation\"\n [title]=\"'localDocumentLocation' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.localDocumentLocation\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'localDocumentLocationTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n <v-input\n name=\"storedDocumentUrl\"\n [title]=\"'storedDocumentUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.storedDocumentUrl\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'storeDocumentUrlTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n <v-select\n [items]=\"languageSelectItems$ | async\"\n [margin]=\"true\"\n [widthInPx]=\"200\"\n name=\"taal\"\n [title]=\"'taal' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.taal || LANGUAGE_ITEMS[0]\"\n [required]=\"true\"\n ></v-select>\n <v-select\n [items]=\"statusSelectItems$ | async\"\n [margin]=\"true\"\n [widthInPx]=\"200\"\n name=\"status\"\n [title]=\"'status' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.status || STATUS_ITEMS[2]\"\n [required]=\"true\"\n ></v-select>\n <v-input\n name=\"informatieobjecttype\"\n [title]=\"'informatieobjecttype' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.informatieobjecttype\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'informatieobjecttypeTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n", styles: [""], components: [{ type: i3$1.FormComponent, selector: "v-form", outputs: ["valueChange"] }, { type: i3$1.InputComponent, selector: "v-input", inputs: ["name", "type", "title", "titleTranslationKey", "defaultValue", "widthPx", "fullWidth", "margin", "disabled", "step", "min", "maxLength", "tooltip", "required", "hideNumberSpinBox"], outputs: ["valueChange"] }, { type: i3$1.SelectComponent, selector: "v-select", inputs: ["items", "defaultSelection", "defaultSelectionId", "clearable", "disabled", "multiple", "margin", "widthInPx", "notFoundText", "clearAllText", "name", "title", "titleTranslationKey", "clearSelectionSubject$", "tooltip", "required", "loading", "loadingText", "placeholder"], outputs: ["selectedChange", "clear"] }], directives: [{ type: i4$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], pipes: { "async": i4$1.AsyncPipe, "pluginTranslate": PluginTranslatePipe } });
|
|
1315
1332
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: StoreTempDocumentConfigurationComponent, decorators: [{
|
|
1316
1333
|
type: Component,
|
|
1317
|
-
args: [{ selector: 'valtimo-store-temp-document-configuration', template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null\n } as obs\"\n>\n <v-input\n name=\"localDocumentLocation\"\n [title]=\"'localDocumentLocation' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.localDocumentLocation\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'localDocumentLocationTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n <v-input\n name=\"storedDocumentUrl\"\n [title]=\"'storedDocumentUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.storedDocumentUrl\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'storeDocumentUrlTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n <v-select\n [items]=\"languageSelectItems$ | async\"\n [margin]=\"true\"\n [widthInPx]=\"200\"\n name=\"taal\"\n [title]=\"'taal' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.taal || LANGUAGE_ITEMS[0]\"\n [required]=\"true\"\n ></v-select>\n <v-select\n [items]=\"statusSelectItems$ | async\"\n [margin]=\"true\"\n [widthInPx]=\"200\"\n name=\"status\"\n [title]=\"'status' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.status || STATUS_ITEMS[2]\"\n [required]=\"true\"\n ></v-select>\n <v-input\n name=\"informatieobjecttype\"\n [title]=\"'informatieobjecttype' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.informatieobjecttype\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'informatieobjecttypeTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n", styles: [""] }]
|
|
1334
|
+
args: [{ selector: 'valtimo-store-temp-document-configuration', template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null\n } as obs\"\n>\n <v-input\n name=\"fileName\"\n [title]=\"'fileName' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.fileName\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'fileNameTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n <v-select\n [items]=\"confidentialityLevelItems$ | async\"\n [margin]=\"true\"\n [widthInPx]=\"200\"\n name=\"confidentialityLevel\"\n [title]=\"'confidentialityLevel' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.confidentialityLevel || CONFIDENTIALITY_LEVEL_ITEMS[3]\"\n [required]=\"true\"\n [tooltip]=\"'confidentialityLevelTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n <v-input\n name=\"title\"\n [title]=\"'inputTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.title\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'inputTitleTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n <v-input\n name=\"description\"\n [title]=\"'inputDescription' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.description\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'inputDescriptionTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n <v-input\n name=\"localDocumentLocation\"\n [title]=\"'localDocumentLocation' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.localDocumentLocation\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'localDocumentLocationTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n <v-input\n name=\"storedDocumentUrl\"\n [title]=\"'storedDocumentUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.storedDocumentUrl\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'storeDocumentUrlTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n <v-select\n [items]=\"languageSelectItems$ | async\"\n [margin]=\"true\"\n [widthInPx]=\"200\"\n name=\"taal\"\n [title]=\"'taal' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.taal || LANGUAGE_ITEMS[0]\"\n [required]=\"true\"\n ></v-select>\n <v-select\n [items]=\"statusSelectItems$ | async\"\n [margin]=\"true\"\n [widthInPx]=\"200\"\n name=\"status\"\n [title]=\"'status' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.status || STATUS_ITEMS[2]\"\n [required]=\"true\"\n ></v-select>\n <v-input\n name=\"informatieobjecttype\"\n [title]=\"'informatieobjecttype' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.informatieobjecttype\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'informatieobjecttypeTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n", styles: [""] }]
|
|
1318
1335
|
}], ctorParameters: function () { return [{ type: i2.TranslateService }, { type: PluginTranslationService }]; }, propDecorators: { save$: [{
|
|
1319
1336
|
type: Input
|
|
1320
1337
|
}], disabled$: [{
|
|
@@ -1329,6 +1346,61 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1329
1346
|
type: Output
|
|
1330
1347
|
}] } });
|
|
1331
1348
|
|
|
1349
|
+
/*
|
|
1350
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
1351
|
+
*
|
|
1352
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
1353
|
+
* you may not use this file except in compliance with the License.
|
|
1354
|
+
* You may obtain a copy of the License at
|
|
1355
|
+
*
|
|
1356
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
1357
|
+
*
|
|
1358
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
1359
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
1360
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1361
|
+
* See the License for the specific language governing permissions and
|
|
1362
|
+
* limitations under the License.
|
|
1363
|
+
*/
|
|
1364
|
+
class StoreUploadedDocumentConfigurationComponent {
|
|
1365
|
+
constructor() {
|
|
1366
|
+
this.valid = new EventEmitter();
|
|
1367
|
+
this.configuration = new EventEmitter();
|
|
1368
|
+
}
|
|
1369
|
+
ngOnInit() {
|
|
1370
|
+
this.openSaveSubscription();
|
|
1371
|
+
this.emitValid();
|
|
1372
|
+
}
|
|
1373
|
+
ngOnDestroy() {
|
|
1374
|
+
this.saveSubscription?.unsubscribe();
|
|
1375
|
+
}
|
|
1376
|
+
emitValid() {
|
|
1377
|
+
this.valid.emit(true);
|
|
1378
|
+
}
|
|
1379
|
+
openSaveSubscription() {
|
|
1380
|
+
this.saveSubscription = this.save$?.subscribe(save => {
|
|
1381
|
+
this.configuration.emit({});
|
|
1382
|
+
});
|
|
1383
|
+
}
|
|
1384
|
+
}
|
|
1385
|
+
StoreUploadedDocumentConfigurationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: StoreUploadedDocumentConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1386
|
+
StoreUploadedDocumentConfigurationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: StoreUploadedDocumentConfigurationComponent, selector: "valtimo-store-uploaded-document-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-paragraph [center]=\"true\" [fullWidth]=\"true\">\n {{ 'storeUploadedDocumentMessage' | pluginTranslate: pluginId | async }}\n</v-paragraph>\n", styles: [""], components: [{ type: i3$1.ParagraphComponent, selector: "v-paragraph", inputs: ["center", "fullWidth", "margin", "italic", "loading"] }], pipes: { "async": i4$1.AsyncPipe, "pluginTranslate": PluginTranslatePipe } });
|
|
1387
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: StoreUploadedDocumentConfigurationComponent, decorators: [{
|
|
1388
|
+
type: Component,
|
|
1389
|
+
args: [{ selector: 'valtimo-store-uploaded-document-configuration', template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-paragraph [center]=\"true\" [fullWidth]=\"true\">\n {{ 'storeUploadedDocumentMessage' | pluginTranslate: pluginId | async }}\n</v-paragraph>\n", styles: [""] }]
|
|
1390
|
+
}], propDecorators: { save$: [{
|
|
1391
|
+
type: Input
|
|
1392
|
+
}], disabled$: [{
|
|
1393
|
+
type: Input
|
|
1394
|
+
}], pluginId: [{
|
|
1395
|
+
type: Input
|
|
1396
|
+
}], prefillConfiguration$: [{
|
|
1397
|
+
type: Input
|
|
1398
|
+
}], valid: [{
|
|
1399
|
+
type: Output
|
|
1400
|
+
}], configuration: [{
|
|
1401
|
+
type: Output
|
|
1402
|
+
}] } });
|
|
1403
|
+
|
|
1332
1404
|
/*
|
|
1333
1405
|
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
1334
1406
|
*
|
|
@@ -1347,14 +1419,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1347
1419
|
class DocumentenApiPluginModule {
|
|
1348
1420
|
}
|
|
1349
1421
|
DocumentenApiPluginModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DocumentenApiPluginModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1350
|
-
DocumentenApiPluginModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DocumentenApiPluginModule, declarations: [DocumentenApiConfigurationComponent,
|
|
1351
|
-
|
|
1422
|
+
DocumentenApiPluginModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DocumentenApiPluginModule, declarations: [DocumentenApiConfigurationComponent,
|
|
1423
|
+
StoreTempDocumentConfigurationComponent,
|
|
1424
|
+
StoreUploadedDocumentConfigurationComponent], imports: [CommonModule,
|
|
1425
|
+
PluginTranslatePipeModule,
|
|
1426
|
+
FormModule,
|
|
1427
|
+
InputModule,
|
|
1428
|
+
SelectModule,
|
|
1429
|
+
ParagraphModule], exports: [DocumentenApiConfigurationComponent,
|
|
1430
|
+
StoreTempDocumentConfigurationComponent,
|
|
1431
|
+
StoreUploadedDocumentConfigurationComponent] });
|
|
1432
|
+
DocumentenApiPluginModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DocumentenApiPluginModule, imports: [[
|
|
1433
|
+
CommonModule,
|
|
1434
|
+
PluginTranslatePipeModule,
|
|
1435
|
+
FormModule,
|
|
1436
|
+
InputModule,
|
|
1437
|
+
SelectModule,
|
|
1438
|
+
ParagraphModule,
|
|
1439
|
+
]] });
|
|
1352
1440
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DocumentenApiPluginModule, decorators: [{
|
|
1353
1441
|
type: NgModule,
|
|
1354
1442
|
args: [{
|
|
1355
|
-
declarations: [
|
|
1356
|
-
|
|
1357
|
-
|
|
1443
|
+
declarations: [
|
|
1444
|
+
DocumentenApiConfigurationComponent,
|
|
1445
|
+
StoreTempDocumentConfigurationComponent,
|
|
1446
|
+
StoreUploadedDocumentConfigurationComponent,
|
|
1447
|
+
],
|
|
1448
|
+
imports: [
|
|
1449
|
+
CommonModule,
|
|
1450
|
+
PluginTranslatePipeModule,
|
|
1451
|
+
FormModule,
|
|
1452
|
+
InputModule,
|
|
1453
|
+
SelectModule,
|
|
1454
|
+
ParagraphModule,
|
|
1455
|
+
],
|
|
1456
|
+
exports: [
|
|
1457
|
+
DocumentenApiConfigurationComponent,
|
|
1458
|
+
StoreTempDocumentConfigurationComponent,
|
|
1459
|
+
StoreUploadedDocumentConfigurationComponent,
|
|
1460
|
+
],
|
|
1358
1461
|
}]
|
|
1359
1462
|
}] });
|
|
1360
1463
|
|
|
@@ -1412,18 +1515,37 @@ const documentenApiPluginSpecification = {
|
|
|
1412
1515
|
pluginLogoBase64: DOCUMENTEN_API_PLUGIN_LOGO_BASE64,
|
|
1413
1516
|
functionConfigurationComponents: {
|
|
1414
1517
|
'store-temp-document': StoreTempDocumentConfigurationComponent,
|
|
1518
|
+
'store-uploaded-document': StoreUploadedDocumentConfigurationComponent,
|
|
1415
1519
|
},
|
|
1416
1520
|
pluginTranslations: {
|
|
1417
1521
|
nl: {
|
|
1418
1522
|
title: 'Documenten API',
|
|
1419
1523
|
description: 'API voor opslag en ontsluiting van documenten en daarbij behorende metadata.',
|
|
1420
1524
|
'store-temp-document': 'Document opslaan',
|
|
1525
|
+
'store-uploaded-document': 'Geupload document opslaan',
|
|
1526
|
+
storeUploadedDocumentMessage: 'Het opslaan van een geupload document heeft geen configuratie nodig.',
|
|
1421
1527
|
configurationTitle: 'Configuratienaam',
|
|
1422
1528
|
configurationTitleTooltip: 'Hier kunt je een eigen naam verzinnen. Onder deze naam zal de plugin te herkennen zijn in de rest van de applicatie',
|
|
1423
1529
|
url: 'Documenten API URL',
|
|
1424
1530
|
urlTooltip: 'In dit veld moet de verwijzing komen naar de REST API van Documenten. Deze url moet dus eindigen op /documenten/api/v1/',
|
|
1425
1531
|
bronorganisatie: 'Bronorganisatie RSIN',
|
|
1426
1532
|
bronorganisatieTooltip: 'Vul hier het RSIN van de organisatie in die verantwoordelijk is voor de documenten',
|
|
1533
|
+
fileName: 'Bestandsnaam',
|
|
1534
|
+
fileNameTooltip: 'De naam van het fysieke bestand waarin de inhoud van het document is vastgelegd, inclusief extensie',
|
|
1535
|
+
confidentialityLevel: 'Vertrouwelijkheidsaanduiding',
|
|
1536
|
+
confidentialityLevelTooltip: 'Aanduiding van de mate waarin het document voor de openbaarheid bestemd is',
|
|
1537
|
+
inputTitle: 'Titel',
|
|
1538
|
+
inputTitleTooltip: 'De naam waaronder het document formeel bekend is',
|
|
1539
|
+
inputDescription: 'Beschrijving',
|
|
1540
|
+
inputDescriptionTooltip: 'Een generieke beschrijving van de inhoud van het document',
|
|
1541
|
+
openbaar: 'Openbaar',
|
|
1542
|
+
beperkt_openbaar: 'Beperkt openbaar',
|
|
1543
|
+
intern: 'Intern',
|
|
1544
|
+
zaakvertrouwelijk: 'Zaakvertrouwelijk',
|
|
1545
|
+
vertrouwelijk: 'Vertrouwelijk',
|
|
1546
|
+
confidentieel: 'Confidentieel',
|
|
1547
|
+
geheim: 'Geheim',
|
|
1548
|
+
zeer_geheim: 'Zeer geheim',
|
|
1427
1549
|
localDocumentLocation: 'Naam procesvariabele met document',
|
|
1428
1550
|
localDocumentLocationTooltip: 'Hier moet de procesvariabele ingevuld worden die wijst naar de locatie waar het document lokaal staat opgeslagen',
|
|
1429
1551
|
storedDocumentUrl: 'Naam procesvariabele voor opslag document-URL',
|
|
@@ -1444,12 +1566,30 @@ const documentenApiPluginSpecification = {
|
|
|
1444
1566
|
title: 'Documenten API',
|
|
1445
1567
|
description: 'API for storing and accessing documents and associated metadata.',
|
|
1446
1568
|
'store-temp-document': 'Save document',
|
|
1569
|
+
'store-uploaded-document': 'Save uploaded document',
|
|
1570
|
+
storeUploadedDocumentMessage: 'Saving an uploaded document does not require any configuration.',
|
|
1447
1571
|
configurationTitle: 'Configuration name',
|
|
1448
1572
|
configurationTitleTooltip: 'Here you can enter a name for the plugin. This name will be used to recognize the plugin throughout the rest of the application',
|
|
1449
1573
|
url: 'Documenten API URL',
|
|
1450
1574
|
urlTooltip: 'This field must contain the URL to the REST API of Documenten, therefore this URL should end with /documenten/api/v1/',
|
|
1451
1575
|
bronorganisatie: 'Organisation RSIN',
|
|
1452
1576
|
bronorganisatieTooltip: 'Enter here the RSIN of the organization responsible for the documents. The RSIN is a dutch identification number for legal entities and partnerships ',
|
|
1577
|
+
fileName: 'File name',
|
|
1578
|
+
fileNameTooltip: 'The name of the physical file in which the content of the document is captured, including extension',
|
|
1579
|
+
confidentialityLevel: 'Confidentiality level',
|
|
1580
|
+
confidentialityLevelTooltip: 'Indication of the extent to which the document is intended for public access',
|
|
1581
|
+
inputTitle: 'Title',
|
|
1582
|
+
inputTitleTooltip: 'The name by which the document is formally known',
|
|
1583
|
+
inputDescription: 'Description',
|
|
1584
|
+
inputDescriptionTooltip: 'A generic description of the content of the document',
|
|
1585
|
+
openbaar: 'Public',
|
|
1586
|
+
beperkt_openbaar: 'Restricted public',
|
|
1587
|
+
intern: 'Internal',
|
|
1588
|
+
zaakvertrouwelijk: 'Case confidential',
|
|
1589
|
+
vertrouwelijk: 'Private',
|
|
1590
|
+
confidentieel: 'Confidential',
|
|
1591
|
+
geheim: 'Secret',
|
|
1592
|
+
zeer_geheim: 'Very secret',
|
|
1453
1593
|
localDocumentLocation: 'Name of process variable with document',
|
|
1454
1594
|
localDocumentLocationTooltip: 'Enter the process variable that points to the location where the document is stored locally',
|
|
1455
1595
|
storedDocumentUrl: 'Process variable name for storing document URL',
|
|
@@ -1470,12 +1610,30 @@ const documentenApiPluginSpecification = {
|
|
|
1470
1610
|
title: 'Documenten API',
|
|
1471
1611
|
description: 'API zum Speichern und Zugreifen auf Dokumente und zugehörige Metadaten.',
|
|
1472
1612
|
'store-temp-document': 'Dokument speichern',
|
|
1613
|
+
'store-uploaded-document': 'Hochgeladenes Dokument speichern',
|
|
1614
|
+
storeUploadedDocumentMessage: 'Das Speichern eines hochgeladenen Dokuments erfordert keine Konfiguration.',
|
|
1473
1615
|
configurationTitle: 'Konfigurationsname',
|
|
1474
1616
|
configurationTitleTooltip: 'Hier können Sie einen Namen für das Plugin eingeben. Dieser Name wird verwendet, um das Plugin im Rest der Anwendung zu erkennen',
|
|
1475
1617
|
url: 'Documenten API URL',
|
|
1476
1618
|
urlTooltip: 'Dieses Feld muss die URL zur REST API von Documenten enthalten, daher sollte diese URL mit enden /documenten/api/v1/',
|
|
1477
1619
|
bronorganisatie: 'Organisation RSIN',
|
|
1478
1620
|
bronorganisatieTooltip: 'Geben Sie hier den RAIN der für die Dokumente verantwortlichen Organisation ein. Der RAIN ist eine niederländische Identifikationsnummer für juristische Personen und Personengesellschaften',
|
|
1621
|
+
fileName: 'Dateiname',
|
|
1622
|
+
fileNameTooltip: 'Der Name der physischen Datei, in der der Inhalt des Dokuments erfasst wird, einschließlich Erweiterung',
|
|
1623
|
+
confidentialityLevel: 'Vertraulichkeitshinweis',
|
|
1624
|
+
confidentialityLevelTooltip: 'Angabe, inwieweit das Dokument für die Öffentlichkeit bestimmt ist',
|
|
1625
|
+
inputTitle: 'Titel',
|
|
1626
|
+
inputTitleTooltip: 'Der Name, unter dem das Dokument offiziell bekannt ist',
|
|
1627
|
+
inputDescription: 'Beschreibung',
|
|
1628
|
+
inputDescriptionTooltip: 'Eine allgemeine Beschreibung des Inhalts des Dokuments',
|
|
1629
|
+
openbaar: 'Öffentlichkeit',
|
|
1630
|
+
beperkt_openbaar: 'Eingeschränkt_öffentlich',
|
|
1631
|
+
intern: 'Intern',
|
|
1632
|
+
zaakvertrouwelijk: 'Geschäftlich vertraulich',
|
|
1633
|
+
vertrouwelijk: 'Vertraulich',
|
|
1634
|
+
confidentieel: 'Geheim',
|
|
1635
|
+
geheim: 'Geheimnis',
|
|
1636
|
+
zeer_geheim: 'Sehr geheim',
|
|
1479
1637
|
localDocumentLocation: 'Name Prozessvariable mit Dokument',
|
|
1480
1638
|
localDocumentLocationTooltip: 'Geben Sie die Prozessvariable ein, die auf den Ort zeigt, an dem das Dokument lokal gespeichert ist',
|
|
1481
1639
|
storedDocumentUrl: 'Name der Prozessvariablen zum Speichern der Dokument-URL',
|
|
@@ -1864,6 +2022,61 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1864
2022
|
type: Output
|
|
1865
2023
|
}] } });
|
|
1866
2024
|
|
|
2025
|
+
/*
|
|
2026
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
2027
|
+
*
|
|
2028
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
2029
|
+
* you may not use this file except in compliance with the License.
|
|
2030
|
+
* You may obtain a copy of the License at
|
|
2031
|
+
*
|
|
2032
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
2033
|
+
*
|
|
2034
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
2035
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
2036
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2037
|
+
* See the License for the specific language governing permissions and
|
|
2038
|
+
* limitations under the License.
|
|
2039
|
+
*/
|
|
2040
|
+
class LinkUploadedDocumentToZaakConfigurationComponent {
|
|
2041
|
+
constructor() {
|
|
2042
|
+
this.valid = new EventEmitter();
|
|
2043
|
+
this.configuration = new EventEmitter();
|
|
2044
|
+
}
|
|
2045
|
+
ngOnInit() {
|
|
2046
|
+
this.openSaveSubscription();
|
|
2047
|
+
this.emitValid();
|
|
2048
|
+
}
|
|
2049
|
+
ngOnDestroy() {
|
|
2050
|
+
this.saveSubscription?.unsubscribe();
|
|
2051
|
+
}
|
|
2052
|
+
emitValid() {
|
|
2053
|
+
this.valid.emit(true);
|
|
2054
|
+
}
|
|
2055
|
+
openSaveSubscription() {
|
|
2056
|
+
this.saveSubscription = this.save$?.subscribe(save => {
|
|
2057
|
+
this.configuration.emit({});
|
|
2058
|
+
});
|
|
2059
|
+
}
|
|
2060
|
+
}
|
|
2061
|
+
LinkUploadedDocumentToZaakConfigurationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: LinkUploadedDocumentToZaakConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2062
|
+
LinkUploadedDocumentToZaakConfigurationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: LinkUploadedDocumentToZaakConfigurationComponent, selector: "valtimo-link-uploaded-document-to-zaak-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-paragraph [center]=\"true\" [fullWidth]=\"true\">\n {{ 'linkUploadedDocumentToZaakMessage' | pluginTranslate: pluginId | async }}\n</v-paragraph>\n", styles: [""], components: [{ type: i3$1.ParagraphComponent, selector: "v-paragraph", inputs: ["center", "fullWidth", "margin", "italic", "loading"] }], pipes: { "async": i4$1.AsyncPipe, "pluginTranslate": PluginTranslatePipe } });
|
|
2063
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: LinkUploadedDocumentToZaakConfigurationComponent, decorators: [{
|
|
2064
|
+
type: Component,
|
|
2065
|
+
args: [{ selector: 'valtimo-link-uploaded-document-to-zaak-configuration', template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-paragraph [center]=\"true\" [fullWidth]=\"true\">\n {{ 'linkUploadedDocumentToZaakMessage' | pluginTranslate: pluginId | async }}\n</v-paragraph>\n", styles: [""] }]
|
|
2066
|
+
}], propDecorators: { save$: [{
|
|
2067
|
+
type: Input
|
|
2068
|
+
}], disabled$: [{
|
|
2069
|
+
type: Input
|
|
2070
|
+
}], pluginId: [{
|
|
2071
|
+
type: Input
|
|
2072
|
+
}], prefillConfiguration$: [{
|
|
2073
|
+
type: Input
|
|
2074
|
+
}], valid: [{
|
|
2075
|
+
type: Output
|
|
2076
|
+
}], configuration: [{
|
|
2077
|
+
type: Output
|
|
2078
|
+
}] } });
|
|
2079
|
+
|
|
1867
2080
|
/*
|
|
1868
2081
|
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
1869
2082
|
*
|
|
@@ -1882,12 +2095,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1882
2095
|
class ZakenApiPluginModule {
|
|
1883
2096
|
}
|
|
1884
2097
|
ZakenApiPluginModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ZakenApiPluginModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1885
|
-
ZakenApiPluginModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ZakenApiPluginModule, declarations: [ZakenApiConfigurationComponent,
|
|
2098
|
+
ZakenApiPluginModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ZakenApiPluginModule, declarations: [ZakenApiConfigurationComponent,
|
|
2099
|
+
LinkDocumentToZaakConfigurationComponent,
|
|
2100
|
+
LinkUploadedDocumentToZaakConfigurationComponent], imports: [CommonModule,
|
|
1886
2101
|
PluginTranslatePipeModule,
|
|
1887
2102
|
FormModule,
|
|
1888
2103
|
InputModule,
|
|
1889
2104
|
SelectModule,
|
|
1890
|
-
ParagraphModule], exports: [ZakenApiConfigurationComponent,
|
|
2105
|
+
ParagraphModule], exports: [ZakenApiConfigurationComponent,
|
|
2106
|
+
LinkDocumentToZaakConfigurationComponent,
|
|
2107
|
+
LinkUploadedDocumentToZaakConfigurationComponent] });
|
|
1891
2108
|
ZakenApiPluginModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ZakenApiPluginModule, imports: [[
|
|
1892
2109
|
CommonModule,
|
|
1893
2110
|
PluginTranslatePipeModule,
|
|
@@ -1899,7 +2116,11 @@ ZakenApiPluginModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", ve
|
|
|
1899
2116
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ZakenApiPluginModule, decorators: [{
|
|
1900
2117
|
type: NgModule,
|
|
1901
2118
|
args: [{
|
|
1902
|
-
declarations: [
|
|
2119
|
+
declarations: [
|
|
2120
|
+
ZakenApiConfigurationComponent,
|
|
2121
|
+
LinkDocumentToZaakConfigurationComponent,
|
|
2122
|
+
LinkUploadedDocumentToZaakConfigurationComponent,
|
|
2123
|
+
],
|
|
1903
2124
|
imports: [
|
|
1904
2125
|
CommonModule,
|
|
1905
2126
|
PluginTranslatePipeModule,
|
|
@@ -1908,7 +2129,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1908
2129
|
SelectModule,
|
|
1909
2130
|
ParagraphModule,
|
|
1910
2131
|
],
|
|
1911
|
-
exports: [
|
|
2132
|
+
exports: [
|
|
2133
|
+
ZakenApiConfigurationComponent,
|
|
2134
|
+
LinkDocumentToZaakConfigurationComponent,
|
|
2135
|
+
LinkUploadedDocumentToZaakConfigurationComponent,
|
|
2136
|
+
],
|
|
1912
2137
|
}]
|
|
1913
2138
|
}] });
|
|
1914
2139
|
|
|
@@ -1962,13 +2187,11 @@ const ZAKEN_API_PLUGIN_LOGO_BASE64 = 'data:image/png;base64,iVBORw0KGgoAAAANSUhE
|
|
|
1962
2187
|
*/
|
|
1963
2188
|
const zakenApiPluginSpecification = {
|
|
1964
2189
|
pluginId: 'zakenapi',
|
|
1965
|
-
/*
|
|
1966
|
-
A component of the interface PluginConfigurationComponent, used to configure the plugin itself.
|
|
1967
|
-
*/
|
|
1968
2190
|
pluginConfigurationComponent: ZakenApiConfigurationComponent,
|
|
1969
2191
|
pluginLogoBase64: ZAKEN_API_PLUGIN_LOGO_BASE64,
|
|
1970
2192
|
functionConfigurationComponents: {
|
|
1971
2193
|
'link-document-to-zaak': LinkDocumentToZaakConfigurationComponent,
|
|
2194
|
+
'link-uploaded-document-to-zaak': LinkUploadedDocumentToZaakConfigurationComponent,
|
|
1972
2195
|
},
|
|
1973
2196
|
pluginTranslations: {
|
|
1974
2197
|
nl: {
|
|
@@ -1977,6 +2200,8 @@ const zakenApiPluginSpecification = {
|
|
|
1977
2200
|
urlTooltip: 'In dit veld moet de verwijzing komen naar de REST api van Open zaak. Deze url moet dus eindigen op /zaken/api/v1/',
|
|
1978
2201
|
description: 'De API ondersteunt het opslaan en het naar andere applicaties ontsluiten van gegevens over alle gemeentelijke zaken, van elk type.',
|
|
1979
2202
|
'link-document-to-zaak': 'Koppel document aan zaak',
|
|
2203
|
+
'link-uploaded-document-to-zaak': 'Koppel geupload document aan zaak',
|
|
2204
|
+
linkUploadedDocumentToZaakMessage: 'Het koppelen van een geupload document aan een zaak heeft geen configuratie nodig.',
|
|
1980
2205
|
configurationTitle: 'Configuratienaam',
|
|
1981
2206
|
configurationTitleTooltip: 'Onder deze naam zal de plugin te herkennen zijn in de rest van de applicatie',
|
|
1982
2207
|
documentUrl: 'URL naar het document',
|
|
@@ -1995,6 +2220,8 @@ const zakenApiPluginSpecification = {
|
|
|
1995
2220
|
urlTooltip: 'This field must contain the URL to the rest API of Open Zaak, therefore this URL should end with /zaken/api/v1/',
|
|
1996
2221
|
description: 'The API supports the storage and disclosure of data on all municipal matters to other applications, of all types.',
|
|
1997
2222
|
'link-document-to-zaak': 'Link document to zaak',
|
|
2223
|
+
'link-uploaded-document-to-zaak': 'Link uploaded document to zaak',
|
|
2224
|
+
linkUploadedDocumentToZaakMessage: 'Linking an uploaded document to a zaak requires no configuration.',
|
|
1998
2225
|
configurationTitle: 'Configuration name',
|
|
1999
2226
|
configurationTitleTooltip: 'With this name the plugin will be recognizable in the rest of the application',
|
|
2000
2227
|
documentUrl: 'URL to the document',
|
|
@@ -2013,6 +2240,8 @@ const zakenApiPluginSpecification = {
|
|
|
2013
2240
|
urlTooltip: 'Dieses Feld muss die URL zur rest API von Open Zaak enthalten, daher sollte diese URL mit enden /zaken/api/v1/',
|
|
2014
2241
|
description: 'Die API unterstützt die Speicherung und Weitergabe von Daten zu allen kommunalen Belangen an andere Anwendungen.',
|
|
2015
2242
|
'link-document-to-zaak': 'Dokument mit Zaak verknüpfen',
|
|
2243
|
+
'link-uploaded-document-to-zaak': 'Hochgeladenes Dokument mit Zaak verknüpfen',
|
|
2244
|
+
linkUploadedDocumentToZaakMessage: 'Das Verknüpfen eines hochgeladenen Dokuments mit einem Zaak erfordert keine Konfiguration.',
|
|
2016
2245
|
configurationTitle: 'Konfigurationsname',
|
|
2017
2246
|
configurationTitleTooltip: 'An diesem Namen wird das Plugin im Rest der Anwendung erkennbar sein',
|
|
2018
2247
|
documentUrl: 'URL zum Dokument',
|
|
@@ -2239,6 +2468,217 @@ const objectenApiPluginSpecification = {
|
|
|
2239
2468
|
},
|
|
2240
2469
|
};
|
|
2241
2470
|
|
|
2471
|
+
/*
|
|
2472
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
2473
|
+
*
|
|
2474
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
2475
|
+
* you may not use this file except in compliance with the License.
|
|
2476
|
+
* You may obtain a copy of the License at
|
|
2477
|
+
*
|
|
2478
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
2479
|
+
*
|
|
2480
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
2481
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
2482
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2483
|
+
* See the License for the specific language governing permissions and
|
|
2484
|
+
* limitations under the License.
|
|
2485
|
+
*/
|
|
2486
|
+
class CatalogiApiConfigurationComponent {
|
|
2487
|
+
constructor(pluginManagementService, translateService, pluginTranslationService) {
|
|
2488
|
+
this.pluginManagementService = pluginManagementService;
|
|
2489
|
+
this.translateService = translateService;
|
|
2490
|
+
this.pluginTranslationService = pluginTranslationService;
|
|
2491
|
+
this.valid = new EventEmitter();
|
|
2492
|
+
this.configuration = new EventEmitter();
|
|
2493
|
+
this.authenticationPluginSelectItems$ = combineLatest([
|
|
2494
|
+
this.pluginManagementService.getPluginConfigurationsByCategory('catalogi-api-authentication'),
|
|
2495
|
+
this.translateService.stream('key'),
|
|
2496
|
+
]).pipe(map$1(([configurations]) => configurations.map(configuration => ({
|
|
2497
|
+
id: configuration.id,
|
|
2498
|
+
text: `${configuration.title} - ${this.pluginTranslationService.instant('title', configuration.pluginDefinition.key)}`,
|
|
2499
|
+
}))));
|
|
2500
|
+
this.formValue$ = new BehaviorSubject(null);
|
|
2501
|
+
this.valid$ = new BehaviorSubject(false);
|
|
2502
|
+
}
|
|
2503
|
+
ngOnInit() {
|
|
2504
|
+
this.openSaveSubscription();
|
|
2505
|
+
}
|
|
2506
|
+
ngOnDestroy() {
|
|
2507
|
+
this.saveSubscription?.unsubscribe();
|
|
2508
|
+
}
|
|
2509
|
+
formValueChange(formValue) {
|
|
2510
|
+
this.formValue$.next(formValue);
|
|
2511
|
+
this.handleValid(formValue);
|
|
2512
|
+
}
|
|
2513
|
+
handleValid(formValue) {
|
|
2514
|
+
const valid = !!(formValue.configurationTitle &&
|
|
2515
|
+
formValue.url &&
|
|
2516
|
+
formValue.authenticationPluginConfiguration);
|
|
2517
|
+
this.valid$.next(valid);
|
|
2518
|
+
this.valid.emit(valid);
|
|
2519
|
+
}
|
|
2520
|
+
openSaveSubscription() {
|
|
2521
|
+
this.saveSubscription = this.save$?.subscribe(save => {
|
|
2522
|
+
combineLatest([this.formValue$, this.valid$])
|
|
2523
|
+
.pipe(take(1))
|
|
2524
|
+
.subscribe(([formValue, valid]) => {
|
|
2525
|
+
if (valid) {
|
|
2526
|
+
this.configuration.emit(formValue);
|
|
2527
|
+
}
|
|
2528
|
+
});
|
|
2529
|
+
});
|
|
2530
|
+
}
|
|
2531
|
+
}
|
|
2532
|
+
CatalogiApiConfigurationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatalogiApiConfigurationComponent, deps: [{ token: PluginManagementService }, { token: i2.TranslateService }, { token: PluginTranslationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2533
|
+
CatalogiApiConfigurationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CatalogiApiConfigurationComponent, selector: "valtimo-catalogi-api-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null\n } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [required]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n [widthPx]=\"350\"\n >\n </v-input>\n <v-input\n name=\"url\"\n [title]=\"'url' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.url\"\n [required]=\"true\"\n [tooltip]=\"'urlTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n <ng-container\n *ngIf=\"{authenticationPluginSelectItems: authenticationPluginSelectItems$ | async} as authObs\"\n >\n <v-select\n [items]=\"authObs.authenticationPluginSelectItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"authenticationPluginConfiguration\"\n [title]=\"'authenticationPluginConfiguration' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.authenticationPluginConfiguration\"\n [required]=\"true\"\n [loading]=\"!authObs.authenticationPluginSelectItems\"\n ></v-select>\n </ng-container>\n</v-form>\n", styles: ["/*!\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"], components: [{ type: i3$1.FormComponent, selector: "v-form", outputs: ["valueChange"] }, { type: i3$1.InputComponent, selector: "v-input", inputs: ["name", "type", "title", "titleTranslationKey", "defaultValue", "widthPx", "fullWidth", "margin", "disabled", "step", "min", "maxLength", "tooltip", "required", "hideNumberSpinBox"], outputs: ["valueChange"] }, { type: i3$1.SelectComponent, selector: "v-select", inputs: ["items", "defaultSelection", "defaultSelectionId", "clearable", "disabled", "multiple", "margin", "widthInPx", "notFoundText", "clearAllText", "name", "title", "titleTranslationKey", "clearSelectionSubject$", "tooltip", "required", "loading", "loadingText", "placeholder"], outputs: ["selectedChange", "clear"] }], directives: [{ type: i4$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], pipes: { "async": i4$1.AsyncPipe, "pluginTranslate": PluginTranslatePipe } });
|
|
2534
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatalogiApiConfigurationComponent, decorators: [{
|
|
2535
|
+
type: Component,
|
|
2536
|
+
args: [{ selector: 'valtimo-catalogi-api-configuration', template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<v-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null\n } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [required]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n [widthPx]=\"350\"\n >\n </v-input>\n <v-input\n name=\"url\"\n [title]=\"'url' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.url\"\n [required]=\"true\"\n [tooltip]=\"'urlTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n <ng-container\n *ngIf=\"{authenticationPluginSelectItems: authenticationPluginSelectItems$ | async} as authObs\"\n >\n <v-select\n [items]=\"authObs.authenticationPluginSelectItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"authenticationPluginConfiguration\"\n [title]=\"'authenticationPluginConfiguration' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.authenticationPluginConfiguration\"\n [required]=\"true\"\n [loading]=\"!authObs.authenticationPluginSelectItems\"\n ></v-select>\n </ng-container>\n</v-form>\n", styles: ["/*!\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"] }]
|
|
2537
|
+
}], ctorParameters: function () { return [{ type: PluginManagementService }, { type: i2.TranslateService }, { type: PluginTranslationService }]; }, propDecorators: { save$: [{
|
|
2538
|
+
type: Input
|
|
2539
|
+
}], disabled$: [{
|
|
2540
|
+
type: Input
|
|
2541
|
+
}], pluginId: [{
|
|
2542
|
+
type: Input
|
|
2543
|
+
}], prefillConfiguration$: [{
|
|
2544
|
+
type: Input
|
|
2545
|
+
}], valid: [{
|
|
2546
|
+
type: Output
|
|
2547
|
+
}], configuration: [{
|
|
2548
|
+
type: Output
|
|
2549
|
+
}] } });
|
|
2550
|
+
|
|
2551
|
+
/*
|
|
2552
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
2553
|
+
*
|
|
2554
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
2555
|
+
* you may not use this file except in compliance with the License.
|
|
2556
|
+
* You may obtain a copy of the License at
|
|
2557
|
+
*
|
|
2558
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
2559
|
+
*
|
|
2560
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
2561
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
2562
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2563
|
+
* See the License for the specific language governing permissions and
|
|
2564
|
+
* limitations under the License.
|
|
2565
|
+
*/
|
|
2566
|
+
class CatalogiApiPluginModule {
|
|
2567
|
+
}
|
|
2568
|
+
CatalogiApiPluginModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatalogiApiPluginModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2569
|
+
CatalogiApiPluginModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatalogiApiPluginModule, declarations: [CatalogiApiConfigurationComponent], imports: [CommonModule,
|
|
2570
|
+
PluginTranslatePipeModule,
|
|
2571
|
+
FormModule,
|
|
2572
|
+
InputModule,
|
|
2573
|
+
SelectModule,
|
|
2574
|
+
ParagraphModule], exports: [CatalogiApiConfigurationComponent] });
|
|
2575
|
+
CatalogiApiPluginModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatalogiApiPluginModule, imports: [[
|
|
2576
|
+
CommonModule,
|
|
2577
|
+
PluginTranslatePipeModule,
|
|
2578
|
+
FormModule,
|
|
2579
|
+
InputModule,
|
|
2580
|
+
SelectModule,
|
|
2581
|
+
ParagraphModule,
|
|
2582
|
+
]] });
|
|
2583
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CatalogiApiPluginModule, decorators: [{
|
|
2584
|
+
type: NgModule,
|
|
2585
|
+
args: [{
|
|
2586
|
+
declarations: [CatalogiApiConfigurationComponent],
|
|
2587
|
+
imports: [
|
|
2588
|
+
CommonModule,
|
|
2589
|
+
PluginTranslatePipeModule,
|
|
2590
|
+
FormModule,
|
|
2591
|
+
InputModule,
|
|
2592
|
+
SelectModule,
|
|
2593
|
+
ParagraphModule,
|
|
2594
|
+
],
|
|
2595
|
+
exports: [CatalogiApiConfigurationComponent],
|
|
2596
|
+
}]
|
|
2597
|
+
}] });
|
|
2598
|
+
|
|
2599
|
+
/*
|
|
2600
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
2601
|
+
*
|
|
2602
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
2603
|
+
* you may not use this file except in compliance with the License.
|
|
2604
|
+
* You may obtain a copy of the License at
|
|
2605
|
+
*
|
|
2606
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
2607
|
+
*
|
|
2608
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
2609
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
2610
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2611
|
+
* See the License for the specific language governing permissions and
|
|
2612
|
+
* limitations under the License.
|
|
2613
|
+
*/
|
|
2614
|
+
const CATALOGI_API_PLUGIN_LOGO_BASE64 = 'data:image/png;base64,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';
|
|
2615
|
+
|
|
2616
|
+
/*
|
|
2617
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
2618
|
+
*
|
|
2619
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
2620
|
+
* you may not use this file except in compliance with the License.
|
|
2621
|
+
* You may obtain a copy of the License at
|
|
2622
|
+
*
|
|
2623
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
2624
|
+
*
|
|
2625
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
2626
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
2627
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2628
|
+
* See the License for the specific language governing permissions and
|
|
2629
|
+
* limitations under the License.
|
|
2630
|
+
*/
|
|
2631
|
+
|
|
2632
|
+
/*
|
|
2633
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
2634
|
+
*
|
|
2635
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
2636
|
+
* you may not use this file except in compliance with the License.
|
|
2637
|
+
* You may obtain a copy of the License at
|
|
2638
|
+
*
|
|
2639
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
2640
|
+
*
|
|
2641
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
2642
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
2643
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2644
|
+
* See the License for the specific language governing permissions and
|
|
2645
|
+
* limitations under the License.
|
|
2646
|
+
*/
|
|
2647
|
+
const catalogiApiPluginSpecification = {
|
|
2648
|
+
pluginId: 'catalogiapi',
|
|
2649
|
+
pluginConfigurationComponent: CatalogiApiConfigurationComponent,
|
|
2650
|
+
pluginLogoBase64: CATALOGI_API_PLUGIN_LOGO_BASE64,
|
|
2651
|
+
pluginTranslations: {
|
|
2652
|
+
nl: {
|
|
2653
|
+
title: 'Catalogi API',
|
|
2654
|
+
url: 'Catalogi API URL',
|
|
2655
|
+
urlTooltip: 'Een URL naar de REST API van Catalogi',
|
|
2656
|
+
description: 'API voor opslag en ontsluiting van zaaktype-catalogi, zaaktypen en onderliggende typen.',
|
|
2657
|
+
configurationTitle: 'Configuratienaam',
|
|
2658
|
+
configurationTitleTooltip: 'De naam van de huidige plugin-configuratie. Onder deze naam kan de configuratie in de rest van de applicatie teruggevonden worden.',
|
|
2659
|
+
authenticationPluginConfiguration: 'Configuratie authenticatie-plug-in',
|
|
2660
|
+
},
|
|
2661
|
+
en: {
|
|
2662
|
+
title: 'Catalogi API',
|
|
2663
|
+
url: 'Catalogi API URL',
|
|
2664
|
+
urlTooltip: 'A URL to the REST API of Catalogi',
|
|
2665
|
+
description: 'API for storage and retrieval of case type catalogs, case types and child types.',
|
|
2666
|
+
configurationTitle: 'Configuration name',
|
|
2667
|
+
configurationTitleTooltip: 'The name of the current plugin configuration. Under this name, the configuration can be found in the rest of the application.',
|
|
2668
|
+
authenticationPluginConfiguration: 'Authentication plugin configuration',
|
|
2669
|
+
},
|
|
2670
|
+
de: {
|
|
2671
|
+
title: 'Catalogi API',
|
|
2672
|
+
url: 'Catalogi API URL',
|
|
2673
|
+
urlTooltip: 'Die URL zur REST API von Catalogi',
|
|
2674
|
+
description: 'API zum Speichern und Abrufen von Falltypkatalogen, Falltypen und untergeordneten Typen.',
|
|
2675
|
+
configurationTitle: 'Konfigurationsname',
|
|
2676
|
+
configurationTitleTooltip: 'Der Name der aktuellen Plugin-Konfiguration. Unter diesem Namen ist die Konfiguration im Rest der Anwendung zu finden.',
|
|
2677
|
+
authenticationPluginConfiguration: 'Authentifizierungs-Plugin-Konfiguration',
|
|
2678
|
+
},
|
|
2679
|
+
},
|
|
2680
|
+
};
|
|
2681
|
+
|
|
2242
2682
|
/*
|
|
2243
2683
|
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
2244
2684
|
*
|
|
@@ -2259,5 +2699,5 @@ const objectenApiPluginSpecification = {
|
|
|
2259
2699
|
* Generated bundle index. Do not edit.
|
|
2260
2700
|
*/
|
|
2261
2701
|
|
|
2262
|
-
export { DocumentenApiConfigurationComponent, DocumentenApiPluginModule, GenerateDocumentConfigurationComponent, LinkDocumentToZaakConfigurationComponent, ObjectTokenAuthencationConfigurationComponent, ObjectTokenAuthenticationPluginModule, ObjectenApiConfigurationComponent, ObjectenApiPluginModule, ObjecttypenApiConfigurationComponent, ObjecttypenApiPluginModule, OpenZaakConfigurationComponent, OpenZaakPluginModule, PLUGINS_TOKEN, PluginConfigurationContainerComponent, PluginConfigurationContainerModule, PluginManagementService, PluginService, PluginTranslatePipe, PluginTranslatePipeModule, PluginTranslationService, SmartDocumentsConfigurationComponent, SmartDocumentsPluginModule, StoreTempDocumentConfigurationComponent, ZakenApiConfigurationComponent, ZakenApiPluginModule, documentenApiPluginSpecification, objectTokenAuthenticationPluginSpecification, objectenApiPluginSpecification, objecttypenApiPluginSpecification, openZaakPluginSpecification, smartDocumentsPluginSpecification, zakenApiPluginSpecification };
|
|
2702
|
+
export { CatalogiApiConfigurationComponent, CatalogiApiPluginModule, DocumentenApiConfigurationComponent, DocumentenApiPluginModule, GenerateDocumentConfigurationComponent, LinkDocumentToZaakConfigurationComponent, LinkUploadedDocumentToZaakConfigurationComponent, ObjectTokenAuthencationConfigurationComponent, ObjectTokenAuthenticationPluginModule, ObjectenApiConfigurationComponent, ObjectenApiPluginModule, ObjecttypenApiConfigurationComponent, ObjecttypenApiPluginModule, OpenZaakConfigurationComponent, OpenZaakPluginModule, PLUGINS_TOKEN, PluginConfigurationContainerComponent, PluginConfigurationContainerModule, PluginManagementService, PluginService, PluginTranslatePipe, PluginTranslatePipeModule, PluginTranslationService, SmartDocumentsConfigurationComponent, SmartDocumentsPluginModule, StoreTempDocumentConfigurationComponent, StoreUploadedDocumentConfigurationComponent, ZakenApiConfigurationComponent, ZakenApiPluginModule, catalogiApiPluginSpecification, documentenApiPluginSpecification, objectTokenAuthenticationPluginSpecification, objectenApiPluginSpecification, objecttypenApiPluginSpecification, openZaakPluginSpecification, smartDocumentsPluginSpecification, zakenApiPluginSpecification };
|
|
2263
2703
|
//# sourceMappingURL=valtimo-plugin.mjs.map
|