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