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