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