@valtimo/plugin 13.14.0 → 13.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/valtimo-plugin.mjs +267 -211
- package/fesm2022/valtimo-plugin.mjs.map +1 -1
- package/lib/plugins/zaken-api/components/delete-zaak-resultaten/delete-zaak-resultaten-configuration.component.d.ts +20 -0
- package/lib/plugins/zaken-api/components/delete-zaak-resultaten/delete-zaak-resultaten-configuration.component.d.ts.map +1 -0
- package/lib/plugins/zaken-api/zaken-api-plugin.module.d.ts +23 -22
- 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 +1 -0
- package/public-api.d.ts.map +1 -1
|
@@ -2779,11 +2779,11 @@ class ZakenApiConfigurationComponent {
|
|
|
2779
2779
|
});
|
|
2780
2780
|
}
|
|
2781
2781
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ZakenApiConfigurationComponent, deps: [{ token: PluginManagementService }, { token: i2.TranslateService }, { token: PluginTranslationService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2782
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: ZakenApiConfigurationComponent, isStandalone: false, selector: "valtimo-zaken-api-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2025 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 noteEventListenerEnabled: noteEventListenerEnabled$ | async\n } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n
|
|
2782
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: ZakenApiConfigurationComponent, isStandalone: false, selector: "valtimo-zaken-api-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2025 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 noteEventListenerEnabled: noteEventListenerEnabled$ | async\n } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n data-test-id=\"zakenApiConfigurationTitle\"\n placeholder=\"Zaken API Plugin\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n\n <v-input\n name=\"url\"\n data-test-id=\"zakenApiUrl\"\n [title]=\"'url' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.url\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [margin]=\"true\"\n [tooltip]=\"'urlTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"https://openzaak.example.com/zaken/api/v1/ \"\n >\n </v-input>\n\n <ng-container\n *ngIf=\"{authenticationPluginSelectItems: authenticationPluginSelectItems$ | async} as authObs\"\n >\n <v-select\n data-test-id=\"zakenApiAuthenticationPluginConfiguration\"\n name=\"authenticationPluginConfiguration\"\n [title]=\"'authenticationPluginConfiguration' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'authenticationPluginConfigurationTooltip' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [items]=\"authObs.authenticationPluginSelectItems\"\n [loading]=\"!authObs.authenticationPluginSelectItems\"\n [defaultSelectionId]=\"obs.prefill?.authenticationPluginConfiguration\"\n ></v-select>\n </ng-container>\n\n <div class=\"input-toggle--small-margin\">\n <v-input-label\n [title]=\"'noteEventListenerEnabled' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'noteEventListenerEnabledTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input-label>\n\n <cds-toggle\n [checked]=\"obs.noteEventListenerEnabled\"\n [disabled]=\"obs.disabled\"\n [onText]=\"'noteEventListenerEnabled.toggleOn' | pluginTranslate: pluginId | async\"\n [offText]=\"'noteEventListenerEnabled.toggleOff' | pluginTranslate: pluginId | async\"\n (checkedChange)=\"onNoteEventListenerEnabledChange($event)\"\n ></cds-toggle>\n </div>\n\n <v-input\n *ngIf=\"obs.noteEventListenerEnabled\"\n name=\"noteSubject\"\n [title]=\"'noteSubject' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.noteSubject\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n >\n </v-input>\n</v-form>\n", styles: [".input-toggle--small-margin{margin-block-end:var(--v-input-small-margin)}\n/*!\n * Copyright 2015-2025 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"], dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2$2.FormComponent, selector: "v-form", inputs: ["className"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.InputComponent, selector: "v-input", inputs: ["name", "type", "title", "titleTranslationKey", "defaultValue", "widthPx", "fullWidth", "margin", "smallMargin", "disabled", "step", "min", "maxLength", "tooltip", "required", "hideNumberSpinBox", "smallLabel", "rows", "clear$", "carbonTheme", "placeholder", "dataTestId", "trim", "presetsTitle", "presetOptions"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.SelectComponent, selector: "v-select", inputs: ["items", "defaultSelection", "defaultSelectionId", "defaultSelectionIds", "disabled", "dropUp", "invalid", "multiple", "margin", "widthInPx", "notFoundText", "clearAllText", "clearText", "clearable", "name", "title", "titleTranslationKey", "clearSelectionSubject$", "tooltip", "required", "loading", "loadingText", "placeholder", "smallMargin", "carbonTheme", "appendInline", "warn", "warnText", "dataTestId"], outputs: ["selectedChange"] }, { kind: "component", type: i1$3.Toggle, selector: "cds-toggle, ibm-toggle", inputs: ["offText", "onText", "label", "size", "hideLabel", "ariaLabel", "skeleton"] }, { kind: "component", type: i2$2.InputLabelComponent, selector: "v-input-label", inputs: ["name", "tooltip", "tooltipTranslationKey", "largeMargin", "small", "noMargin", "title", "titleTranslationKey", "required", "disabled", "carbonTheme"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
|
|
2783
2783
|
}
|
|
2784
2784
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ZakenApiConfigurationComponent, decorators: [{
|
|
2785
2785
|
type: Component,
|
|
2786
|
-
args: [{ standalone: false, selector: 'valtimo-zaken-api-configuration', template: "<!--\n ~ Copyright 2015-2025 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 noteEventListenerEnabled: noteEventListenerEnabled$ | async\n } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n
|
|
2786
|
+
args: [{ standalone: false, selector: 'valtimo-zaken-api-configuration', template: "<!--\n ~ Copyright 2015-2025 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 noteEventListenerEnabled: noteEventListenerEnabled$ | async\n } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n data-test-id=\"zakenApiConfigurationTitle\"\n placeholder=\"Zaken API Plugin\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n\n <v-input\n name=\"url\"\n data-test-id=\"zakenApiUrl\"\n [title]=\"'url' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.url\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [margin]=\"true\"\n [tooltip]=\"'urlTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"https://openzaak.example.com/zaken/api/v1/ \"\n >\n </v-input>\n\n <ng-container\n *ngIf=\"{authenticationPluginSelectItems: authenticationPluginSelectItems$ | async} as authObs\"\n >\n <v-select\n data-test-id=\"zakenApiAuthenticationPluginConfiguration\"\n name=\"authenticationPluginConfiguration\"\n [title]=\"'authenticationPluginConfiguration' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'authenticationPluginConfigurationTooltip' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [items]=\"authObs.authenticationPluginSelectItems\"\n [loading]=\"!authObs.authenticationPluginSelectItems\"\n [defaultSelectionId]=\"obs.prefill?.authenticationPluginConfiguration\"\n ></v-select>\n </ng-container>\n\n <div class=\"input-toggle--small-margin\">\n <v-input-label\n [title]=\"'noteEventListenerEnabled' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'noteEventListenerEnabledTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input-label>\n\n <cds-toggle\n [checked]=\"obs.noteEventListenerEnabled\"\n [disabled]=\"obs.disabled\"\n [onText]=\"'noteEventListenerEnabled.toggleOn' | pluginTranslate: pluginId | async\"\n [offText]=\"'noteEventListenerEnabled.toggleOff' | pluginTranslate: pluginId | async\"\n (checkedChange)=\"onNoteEventListenerEnabledChange($event)\"\n ></cds-toggle>\n </div>\n\n <v-input\n *ngIf=\"obs.noteEventListenerEnabled\"\n name=\"noteSubject\"\n [title]=\"'noteSubject' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.noteSubject\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n >\n </v-input>\n</v-form>\n", styles: [".input-toggle--small-margin{margin-block-end:var(--v-input-small-margin)}\n/*!\n * Copyright 2015-2025 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"] }]
|
|
2787
2787
|
}], ctorParameters: () => [{ type: PluginManagementService }, { type: i2.TranslateService }, { type: PluginTranslationService }], propDecorators: { save$: [{
|
|
2788
2788
|
type: Input
|
|
2789
2789
|
}], disabled$: [{
|
|
@@ -3349,11 +3349,11 @@ class CreateZaakResultaatConfigurationComponent {
|
|
|
3349
3349
|
}));
|
|
3350
3350
|
}
|
|
3351
3351
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: CreateZaakResultaatConfigurationComponent, deps: [{ token: ZakenApiService }, { token: PluginTranslatePipe }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3352
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: CreateZaakResultaatConfigurationComponent, isStandalone: false, selector: "valtimo-create-zaak-resultaat-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$", context$: "context$" }, outputs: { valid: "valid", configuration: "configuration" }, providers: [PluginTranslatePipe], ngImport: i0, template: "<!--\n ~ Copyright 2015-2025 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 pluginId: pluginId$ | async,\n selectedInputOption: selectedInputOption$ | async,\n loading: loading$ | async,\n resultaatTypeItems: resultaatTypeSelectItems$ | async,\n context: context$ | async,\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-input\n name=\"toelichting\"\n [title]=\"'resultaattoelichting' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.toelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'resultaattoelichtingTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeZaakResultaatToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeZaakResultaatToggle' | pluginTranslate: obs.pluginId | async\"\n [radioValues]=\"inputTypeOptions$ | async\"\n [defaultValue]=\"selectedInputOption$ | async\"\n [margin]=\"true\"\n >\n </v-radio>\n\n <v-input\n *ngIf=\"obs.selectedInputOption === 'text'\"\n name=\"resultaattypeUrl\"\n [title]=\"'resultaattypeUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultaattypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'resultaattypeUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <ng-container *ngIf=\"obs.selectedInputOption === 'selection'\">\n <v-select\n [items]=\"obs.
|
|
3352
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: CreateZaakResultaatConfigurationComponent, isStandalone: false, selector: "valtimo-create-zaak-resultaat-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$", context$: "context$" }, outputs: { valid: "valid", configuration: "configuration" }, providers: [PluginTranslatePipe], ngImport: i0, template: "<!--\n ~ Copyright 2015-2025 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 pluginId: pluginId$ | async,\n selectedInputOption: selectedInputOption$ | async,\n loading: loading$ | async,\n resultaatTypeItems: resultaatTypeSelectItems$ | async,\n context: context$ | async,\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-input\n name=\"toelichting\"\n [title]=\"'resultaattoelichting' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.toelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'resultaattoelichtingTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeZaakResultaatToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeZaakResultaatToggle' | pluginTranslate: obs.pluginId | async\"\n [radioValues]=\"inputTypeOptions$ | async\"\n [defaultValue]=\"selectedInputOption$ | async\"\n [margin]=\"true\"\n >\n </v-radio>\n\n <v-input\n *ngIf=\"obs.selectedInputOption === 'text'\"\n name=\"resultaattypeUrl\"\n [title]=\"'resultaattypeUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultaattypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'resultaattypeUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <ng-container *ngIf=\"obs.selectedInputOption === 'selection'\">\n <v-select\n [items]=\"obs.resultaatTypeItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"resultaattypeUrl\"\n [title]=\"'resultaattypeUrlSelect' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'text' || !obs.resultaatTypeItems\"\n [defaultSelectionId]=\"obs.prefill?.resultaattypeUrl\"\n [required]=\"true\"\n [loading]=\"!obs.resultaatTypeItems\"\n [tooltip]=\"'resultaattypeUrlSelectTooltip' | pluginTranslate: obs.pluginId | async\"\n [clearSelectionSubject$]=\"clearStatusSelection$\"\n ></v-select>\n </ng-container>\n </ng-container>\n</v-form>\n\n<ng-template #loading>\n <div class=\"loading-container\">\n <cds-loading></cds-loading>\n </div>\n</ng-template>\n", styles: [".loading-container{display:flex;flex-direction:row;justify-content:center;height:100%;width:100%;align-items:center}\n/*!\n * Copyright 2015-2025 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"], dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2$2.FormComponent, selector: "v-form", inputs: ["className"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.InputComponent, selector: "v-input", inputs: ["name", "type", "title", "titleTranslationKey", "defaultValue", "widthPx", "fullWidth", "margin", "smallMargin", "disabled", "step", "min", "maxLength", "tooltip", "required", "hideNumberSpinBox", "smallLabel", "rows", "clear$", "carbonTheme", "placeholder", "dataTestId", "trim", "presetsTitle", "presetOptions"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.SelectComponent, selector: "v-select", inputs: ["items", "defaultSelection", "defaultSelectionId", "defaultSelectionIds", "disabled", "dropUp", "invalid", "multiple", "margin", "widthInPx", "notFoundText", "clearAllText", "clearText", "clearable", "name", "title", "titleTranslationKey", "clearSelectionSubject$", "tooltip", "required", "loading", "loadingText", "placeholder", "smallMargin", "carbonTheme", "appendInline", "warn", "warnText", "dataTestId"], outputs: ["selectedChange"] }, { kind: "component", type: i2$2.RadioComponent, selector: "v-radio", inputs: ["name", "title", "titleTranslationKey", "defaultValue", "widthPx", "fullWidth", "margin", "smallMargin", "disabled", "tooltip", "required", "smallLabel", "rows", "clear$", "radioValues"], outputs: ["valueChange"] }, { kind: "component", type: i1$3.Loading, selector: "cds-loading, ibm-loading", inputs: ["title", "isActive", "size", "overlay"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
|
|
3353
3353
|
}
|
|
3354
3354
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: CreateZaakResultaatConfigurationComponent, decorators: [{
|
|
3355
3355
|
type: Component,
|
|
3356
|
-
args: [{ standalone: false, selector: 'valtimo-create-zaak-resultaat-configuration', providers: [PluginTranslatePipe], template: "<!--\n ~ Copyright 2015-2025 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 pluginId: pluginId$ | async,\n selectedInputOption: selectedInputOption$ | async,\n loading: loading$ | async,\n resultaatTypeItems: resultaatTypeSelectItems$ | async,\n context: context$ | async,\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-input\n name=\"toelichting\"\n [title]=\"'resultaattoelichting' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.toelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'resultaattoelichtingTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeZaakResultaatToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeZaakResultaatToggle' | pluginTranslate: obs.pluginId | async\"\n [radioValues]=\"inputTypeOptions$ | async\"\n [defaultValue]=\"selectedInputOption$ | async\"\n [margin]=\"true\"\n >\n </v-radio>\n\n <v-input\n *ngIf=\"obs.selectedInputOption === 'text'\"\n name=\"resultaattypeUrl\"\n [title]=\"'resultaattypeUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultaattypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'resultaattypeUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <ng-container *ngIf=\"obs.selectedInputOption === 'selection'\">\n <v-select\n [items]=\"obs.
|
|
3356
|
+
args: [{ standalone: false, selector: 'valtimo-create-zaak-resultaat-configuration', providers: [PluginTranslatePipe], template: "<!--\n ~ Copyright 2015-2025 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 pluginId: pluginId$ | async,\n selectedInputOption: selectedInputOption$ | async,\n loading: loading$ | async,\n resultaatTypeItems: resultaatTypeSelectItems$ | async,\n context: context$ | async,\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-input\n name=\"toelichting\"\n [title]=\"'resultaattoelichting' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.toelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'resultaattoelichtingTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeZaakResultaatToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeZaakResultaatToggle' | pluginTranslate: obs.pluginId | async\"\n [radioValues]=\"inputTypeOptions$ | async\"\n [defaultValue]=\"selectedInputOption$ | async\"\n [margin]=\"true\"\n >\n </v-radio>\n\n <v-input\n *ngIf=\"obs.selectedInputOption === 'text'\"\n name=\"resultaattypeUrl\"\n [title]=\"'resultaattypeUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultaattypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'resultaattypeUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <ng-container *ngIf=\"obs.selectedInputOption === 'selection'\">\n <v-select\n [items]=\"obs.resultaatTypeItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"resultaattypeUrl\"\n [title]=\"'resultaattypeUrlSelect' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'text' || !obs.resultaatTypeItems\"\n [defaultSelectionId]=\"obs.prefill?.resultaattypeUrl\"\n [required]=\"true\"\n [loading]=\"!obs.resultaatTypeItems\"\n [tooltip]=\"'resultaattypeUrlSelectTooltip' | pluginTranslate: obs.pluginId | async\"\n [clearSelectionSubject$]=\"clearStatusSelection$\"\n ></v-select>\n </ng-container>\n </ng-container>\n</v-form>\n\n<ng-template #loading>\n <div class=\"loading-container\">\n <cds-loading></cds-loading>\n </div>\n</ng-template>\n", styles: [".loading-container{display:flex;flex-direction:row;justify-content:center;height:100%;width:100%;align-items:center}\n/*!\n * Copyright 2015-2025 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"] }]
|
|
3357
3357
|
}], ctorParameters: () => [{ type: ZakenApiService }, { type: PluginTranslatePipe }], propDecorators: { save$: [{
|
|
3358
3358
|
type: Input
|
|
3359
3359
|
}], disabled$: [{
|
|
@@ -4041,196 +4041,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
4041
4041
|
type: Output
|
|
4042
4042
|
}] } });
|
|
4043
4043
|
|
|
4044
|
-
/*
|
|
4045
|
-
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
4046
|
-
*
|
|
4047
|
-
* Licensed under EUPL, Version 1.2 (the "License");
|
|
4048
|
-
* you may not use this file except in compliance with the License.
|
|
4049
|
-
* You may obtain a copy of the License at
|
|
4050
|
-
*
|
|
4051
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
4052
|
-
*
|
|
4053
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
4054
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
4055
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4056
|
-
* See the License for the specific language governing permissions and
|
|
4057
|
-
* limitations under the License.
|
|
4058
|
-
*/
|
|
4059
|
-
const PatchZaakPropertyOptions = [
|
|
4060
|
-
'description',
|
|
4061
|
-
'explanation',
|
|
4062
|
-
'startDate',
|
|
4063
|
-
'plannedEndDate',
|
|
4064
|
-
'finalDeliveryDate',
|
|
4065
|
-
'publicationDate',
|
|
4066
|
-
'communicationChannel',
|
|
4067
|
-
'communicationChannelName',
|
|
4068
|
-
'paymentIndication',
|
|
4069
|
-
'lastPaymentDate',
|
|
4070
|
-
'caseGeometryType',
|
|
4071
|
-
'caseGeometryCoordinates',
|
|
4072
|
-
'mainCase',
|
|
4073
|
-
'archiveActionDate',
|
|
4074
|
-
'startDateRetentionPeriod',
|
|
4075
|
-
];
|
|
4076
|
-
|
|
4077
|
-
/*
|
|
4078
|
-
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
4079
|
-
*
|
|
4080
|
-
* Licensed under EUPL, Version 1.2 (the "License");
|
|
4081
|
-
* you may not use this file except in compliance with the License.
|
|
4082
|
-
* You may obtain a copy of the License at
|
|
4083
|
-
*
|
|
4084
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
4085
|
-
*
|
|
4086
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
4087
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
4088
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4089
|
-
* See the License for the specific language governing permissions and
|
|
4090
|
-
* limitations under the License.
|
|
4091
|
-
*/
|
|
4092
|
-
class PatchZaakConfigurationComponent {
|
|
4093
|
-
constructor(iconService) {
|
|
4094
|
-
this.iconService = iconService;
|
|
4095
|
-
this.valid = new EventEmitter();
|
|
4096
|
-
this.configuration = new EventEmitter();
|
|
4097
|
-
this.propertyOptions = Object.values(PatchZaakPropertyOptions);
|
|
4098
|
-
this.propertyList = [];
|
|
4099
|
-
this.geometryTypes = GEOMETRY_TYPES;
|
|
4100
|
-
this.paymentIndicationTypes = PAYMENT_INDICATION_TYPES;
|
|
4101
|
-
this.CASE_GEOMETRY_TYPE = 'caseGeometryType';
|
|
4102
|
-
this.CASE_GEOMETRY_COORDINATES = 'caseGeometryCoordinates';
|
|
4103
|
-
this.PAYMENT_INDICATION_TYPE = 'paymentIndication';
|
|
4104
|
-
this._formValue$ = new BehaviorSubject({});
|
|
4105
|
-
this._properties = new Map();
|
|
4106
|
-
this._valid$ = new BehaviorSubject(false);
|
|
4107
|
-
this.iconService.registerAll([Add16, TrashCan16]);
|
|
4108
|
-
}
|
|
4109
|
-
ngOnInit() {
|
|
4110
|
-
this.initPropertyList();
|
|
4111
|
-
this.openSaveSubscription();
|
|
4112
|
-
}
|
|
4113
|
-
ngOnDestroy() {
|
|
4114
|
-
this._saveSubscription?.unsubscribe();
|
|
4115
|
-
}
|
|
4116
|
-
onFormValueChanged(formValue) {
|
|
4117
|
-
this._formValue$.next(formValue);
|
|
4118
|
-
this.handleValid(formValue);
|
|
4119
|
-
}
|
|
4120
|
-
onPropertyChanged(property, value) {
|
|
4121
|
-
this._properties.set(property, value);
|
|
4122
|
-
const formValue = this._formValue$.value;
|
|
4123
|
-
this._properties.forEach((value, key) => {
|
|
4124
|
-
formValue[key] = value;
|
|
4125
|
-
});
|
|
4126
|
-
this.onFormValueChanged(formValue);
|
|
4127
|
-
}
|
|
4128
|
-
addProperty(property) {
|
|
4129
|
-
if (!this.hasPropertyBeenAdded(property)) {
|
|
4130
|
-
this.propertyList.push(this.propertyFormFieldFor(property));
|
|
4131
|
-
this.onPropertyChanged(property, undefined);
|
|
4132
|
-
}
|
|
4133
|
-
// add linked field coordinates
|
|
4134
|
-
if (property === this.CASE_GEOMETRY_TYPE) {
|
|
4135
|
-
this.addProperty(this.CASE_GEOMETRY_COORDINATES);
|
|
4136
|
-
}
|
|
4137
|
-
}
|
|
4138
|
-
removeProperty(property) {
|
|
4139
|
-
if (this.hasPropertyBeenAdded(property)) {
|
|
4140
|
-
this.propertyList.splice(this.propertyList.findIndex(item => item.name === property), 1);
|
|
4141
|
-
this.onPropertyChanged(property, undefined);
|
|
4142
|
-
}
|
|
4143
|
-
// remove linked field coordinates
|
|
4144
|
-
if (property === this.CASE_GEOMETRY_TYPE) {
|
|
4145
|
-
this.removeProperty(this.CASE_GEOMETRY_COORDINATES);
|
|
4146
|
-
}
|
|
4147
|
-
}
|
|
4148
|
-
hasPropertyBeenAdded(property) {
|
|
4149
|
-
return this.propertyList.findIndex(item => item.name === property) !== -1;
|
|
4150
|
-
}
|
|
4151
|
-
prefillValueFor(property, prefill) {
|
|
4152
|
-
return prefill != null ? prefill[property] : null;
|
|
4153
|
-
}
|
|
4154
|
-
translationKeyForPropertyList(property) {
|
|
4155
|
-
return property === this.CASE_GEOMETRY_TYPE ? 'caseGeometry' : this.translationKeyFor(property);
|
|
4156
|
-
}
|
|
4157
|
-
initPropertyList() {
|
|
4158
|
-
this.prefillConfiguration$.pipe(take(1)).subscribe(prefill => {
|
|
4159
|
-
if (prefill) {
|
|
4160
|
-
PatchZaakPropertyOptions.forEach(property => {
|
|
4161
|
-
if (!!prefill[property])
|
|
4162
|
-
this.addProperty(property);
|
|
4163
|
-
});
|
|
4164
|
-
}
|
|
4165
|
-
});
|
|
4166
|
-
}
|
|
4167
|
-
propertyFormFieldFor(property) {
|
|
4168
|
-
return {
|
|
4169
|
-
name: property,
|
|
4170
|
-
translationKey: this.translationKeyFor(property),
|
|
4171
|
-
tooltipTranslationKey: this.tooltipTranslationKeyFor(property),
|
|
4172
|
-
presetOptions: this.presetOptionsForProperty(property),
|
|
4173
|
-
};
|
|
4174
|
-
}
|
|
4175
|
-
translationKeyFor(property) {
|
|
4176
|
-
return property === 'description' ? 'omschrijving' : property;
|
|
4177
|
-
}
|
|
4178
|
-
tooltipTranslationKeyFor(property) {
|
|
4179
|
-
if (property.includes('Date')) {
|
|
4180
|
-
return 'dateformatTooltip';
|
|
4181
|
-
}
|
|
4182
|
-
else if (property === this.CASE_GEOMETRY_COORDINATES) {
|
|
4183
|
-
return `${property}Tooltip`;
|
|
4184
|
-
}
|
|
4185
|
-
return null;
|
|
4186
|
-
}
|
|
4187
|
-
presetOptionsForProperty(property) {
|
|
4188
|
-
switch (property) {
|
|
4189
|
-
case this.CASE_GEOMETRY_TYPE:
|
|
4190
|
-
return this.geometryTypes;
|
|
4191
|
-
case this.PAYMENT_INDICATION_TYPE:
|
|
4192
|
-
return this.paymentIndicationTypes;
|
|
4193
|
-
default:
|
|
4194
|
-
return [];
|
|
4195
|
-
}
|
|
4196
|
-
}
|
|
4197
|
-
handleValid(formValue) {
|
|
4198
|
-
const isPropertyInvalid = this.propertyList.some(property => !!!formValue[property.name]);
|
|
4199
|
-
const valid = !isPropertyInvalid;
|
|
4200
|
-
this._valid$.next(valid);
|
|
4201
|
-
this.valid.emit(valid);
|
|
4202
|
-
}
|
|
4203
|
-
openSaveSubscription() {
|
|
4204
|
-
this._saveSubscription = this.save$?.subscribe(save => {
|
|
4205
|
-
combineLatest([this._formValue$, this._valid$])
|
|
4206
|
-
.pipe(take(1))
|
|
4207
|
-
.subscribe(([formValue, valid]) => {
|
|
4208
|
-
if (valid) {
|
|
4209
|
-
this.configuration.emit(formValue);
|
|
4210
|
-
}
|
|
4211
|
-
});
|
|
4212
|
-
});
|
|
4213
|
-
}
|
|
4214
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: PatchZaakConfigurationComponent, deps: [{ token: i1$3.IconService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4215
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.18", type: PatchZaakConfigurationComponent, isStandalone: false, selector: "valtimo-patch-zaak-configuration", inputs: { disabled$: "disabled$", pluginId: "pluginId", save$: "save$", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<ng-container\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n } as obs\"\n>\n <v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'patchZaakInformation' | pluginTranslate: pluginId | async }}\n </v-paragraph>\n\n <div class=\"row\">\n <div class=\"col-12\">\n <button\n cdsButton=\"primary\"\n [size]=\"'md'\"\n [cdsOverflowMenu]=\"addPropertyList\"\n [customPane]=\"true\"\n placement=\"bottom\"\n class=\"add-button\"\n >\n {{ 'addPatchZaakProperty' | pluginTranslate: pluginId | async }}\n\n <svg class=\"cds--btn__icon\" cdsIcon=\"add\" size=\"16\"></svg>\n </button>\n </div>\n </div>\n\n <v-form (valueChange)=\"onFormValueChanged($event)\">\n @for (property of propertyList; track property) {\n <div class=\"row\">\n <div class=\"col-11\">\n <v-input\n [name]=\"property.name\"\n [title]=\"property.translationKey | pluginTranslate: pluginId | async\"\n [tooltip]=\"\n property.tooltipTranslationKey !== null\n ? (property.tooltipTranslationKey | pluginTranslate: pluginId | async)\n : null\n \"\n [required]=\"true\"\n [defaultValue]=\"prefillValueFor(property.name, obs.prefill)\"\n [margin]=\"true\"\n [presetOptions]=\"property.presetOptions\"\n (valueChange)=\"onPropertyChanged(property.name, $event)\"\n />\n </div>\n <div class=\"col-1\">\n @if (property.name !== CASE_GEOMETRY_COORDINATES) {\n <button class=\"btn btn-space delete-button\" (click)=\"removeProperty(property.name)\">\n <svg class=\"cds--btn__icon\" cdsIcon=\"trash-can\" size=\"16\"></svg>\n </button>\n }\n </div>\n </div>\n }\n </v-form>\n</ng-container>\n\n<ng-template #addPropertyList>\n @for (propertyOption of propertyOptions; track propertyOption) {\n @if (propertyOption !== CASE_GEOMETRY_COORDINATES) {\n <cds-overflow-menu-option\n *ngIf=\"!hasPropertyBeenAdded(propertyOption)\"\n (click)=\"addProperty(propertyOption)\"\n >\n {{ translationKeyForPropertyList(propertyOption) | pluginTranslate: pluginId | async }}\n </cds-overflow-menu-option>\n }\n }\n</ng-template>\n", styles: ["button.delete-button{height:46px;width:46px;margin-top:20px}button.delete-button:hover{background-color:#e12717}button.add-button{margin-block-end:var(--v-input-margin)}::ng-deep .cds--overflow-menu-options{z-index:10000!important;width:230px}\n/*!\n * Copyright 2015-2025 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"], dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2$2.FormComponent, selector: "v-form", inputs: ["className"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.InputComponent, selector: "v-input", inputs: ["name", "type", "title", "titleTranslationKey", "defaultValue", "widthPx", "fullWidth", "margin", "smallMargin", "disabled", "step", "min", "maxLength", "tooltip", "required", "hideNumberSpinBox", "smallLabel", "rows", "clear$", "carbonTheme", "placeholder", "dataTestId", "trim", "presetsTitle", "presetOptions"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.ParagraphComponent, selector: "v-paragraph", inputs: ["center", "fullWidth", "margin", "italic", "loading", "dataTestId"] }, { kind: "directive", type: i1$3.Button, selector: "[cdsButton], [ibmButton]", inputs: ["ibmButton", "cdsButton", "size", "skeleton", "iconOnly", "isExpressive"] }, { kind: "directive", type: i1$3.OverflowMenuDirective, selector: "[cdsOverflowMenu], [ibmOverflowMenu]", inputs: ["ibmOverflowMenu", "cdsOverflowMenu", "flip", "offset", "wrapperClass", "customPane"], exportAs: ["overflowMenu"] }, { kind: "component", type: i1$3.OverflowMenuOption, selector: "cds-overflow-menu-option, ibm-overflow-menu-option", inputs: ["divider", "type", "disabled", "href", "target", "innerClass"], outputs: ["selected"] }, { kind: "directive", type: i1$3.IconDirective, selector: "[cdsIcon], [ibmIcon]", inputs: ["ibmIcon", "cdsIcon", "size", "title", "ariaLabel", "ariaLabelledBy", "ariaHidden", "isFocusable"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
|
|
4216
|
-
}
|
|
4217
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: PatchZaakConfigurationComponent, decorators: [{
|
|
4218
|
-
type: Component,
|
|
4219
|
-
args: [{ standalone: false, selector: 'valtimo-patch-zaak-configuration', template: "<ng-container\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n } as obs\"\n>\n <v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'patchZaakInformation' | pluginTranslate: pluginId | async }}\n </v-paragraph>\n\n <div class=\"row\">\n <div class=\"col-12\">\n <button\n cdsButton=\"primary\"\n [size]=\"'md'\"\n [cdsOverflowMenu]=\"addPropertyList\"\n [customPane]=\"true\"\n placement=\"bottom\"\n class=\"add-button\"\n >\n {{ 'addPatchZaakProperty' | pluginTranslate: pluginId | async }}\n\n <svg class=\"cds--btn__icon\" cdsIcon=\"add\" size=\"16\"></svg>\n </button>\n </div>\n </div>\n\n <v-form (valueChange)=\"onFormValueChanged($event)\">\n @for (property of propertyList; track property) {\n <div class=\"row\">\n <div class=\"col-11\">\n <v-input\n [name]=\"property.name\"\n [title]=\"property.translationKey | pluginTranslate: pluginId | async\"\n [tooltip]=\"\n property.tooltipTranslationKey !== null\n ? (property.tooltipTranslationKey | pluginTranslate: pluginId | async)\n : null\n \"\n [required]=\"true\"\n [defaultValue]=\"prefillValueFor(property.name, obs.prefill)\"\n [margin]=\"true\"\n [presetOptions]=\"property.presetOptions\"\n (valueChange)=\"onPropertyChanged(property.name, $event)\"\n />\n </div>\n <div class=\"col-1\">\n @if (property.name !== CASE_GEOMETRY_COORDINATES) {\n <button class=\"btn btn-space delete-button\" (click)=\"removeProperty(property.name)\">\n <svg class=\"cds--btn__icon\" cdsIcon=\"trash-can\" size=\"16\"></svg>\n </button>\n }\n </div>\n </div>\n }\n </v-form>\n</ng-container>\n\n<ng-template #addPropertyList>\n @for (propertyOption of propertyOptions; track propertyOption) {\n @if (propertyOption !== CASE_GEOMETRY_COORDINATES) {\n <cds-overflow-menu-option\n *ngIf=\"!hasPropertyBeenAdded(propertyOption)\"\n (click)=\"addProperty(propertyOption)\"\n >\n {{ translationKeyForPropertyList(propertyOption) | pluginTranslate: pluginId | async }}\n </cds-overflow-menu-option>\n }\n }\n</ng-template>\n", styles: ["button.delete-button{height:46px;width:46px;margin-top:20px}button.delete-button:hover{background-color:#e12717}button.add-button{margin-block-end:var(--v-input-margin)}::ng-deep .cds--overflow-menu-options{z-index:10000!important;width:230px}\n/*!\n * Copyright 2015-2025 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"] }]
|
|
4220
|
-
}], ctorParameters: () => [{ type: i1$3.IconService }], propDecorators: { disabled$: [{
|
|
4221
|
-
type: Input
|
|
4222
|
-
}], pluginId: [{
|
|
4223
|
-
type: Input
|
|
4224
|
-
}], save$: [{
|
|
4225
|
-
type: Input
|
|
4226
|
-
}], prefillConfiguration$: [{
|
|
4227
|
-
type: Input
|
|
4228
|
-
}], valid: [{
|
|
4229
|
-
type: Output
|
|
4230
|
-
}], configuration: [{
|
|
4231
|
-
type: Output
|
|
4232
|
-
}] } });
|
|
4233
|
-
|
|
4234
4044
|
/*
|
|
4235
4045
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
4236
4046
|
*
|
|
@@ -5019,6 +4829,196 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
5019
4829
|
type: Output
|
|
5020
4830
|
}] } });
|
|
5021
4831
|
|
|
4832
|
+
/*
|
|
4833
|
+
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
4834
|
+
*
|
|
4835
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
4836
|
+
* you may not use this file except in compliance with the License.
|
|
4837
|
+
* You may obtain a copy of the License at
|
|
4838
|
+
*
|
|
4839
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
4840
|
+
*
|
|
4841
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
4842
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
4843
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4844
|
+
* See the License for the specific language governing permissions and
|
|
4845
|
+
* limitations under the License.
|
|
4846
|
+
*/
|
|
4847
|
+
const PatchZaakPropertyOptions = [
|
|
4848
|
+
'description',
|
|
4849
|
+
'explanation',
|
|
4850
|
+
'startDate',
|
|
4851
|
+
'plannedEndDate',
|
|
4852
|
+
'finalDeliveryDate',
|
|
4853
|
+
'publicationDate',
|
|
4854
|
+
'communicationChannel',
|
|
4855
|
+
'communicationChannelName',
|
|
4856
|
+
'paymentIndication',
|
|
4857
|
+
'lastPaymentDate',
|
|
4858
|
+
'caseGeometryType',
|
|
4859
|
+
'caseGeometryCoordinates',
|
|
4860
|
+
'mainCase',
|
|
4861
|
+
'archiveActionDate',
|
|
4862
|
+
'startDateRetentionPeriod',
|
|
4863
|
+
];
|
|
4864
|
+
|
|
4865
|
+
/*
|
|
4866
|
+
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
4867
|
+
*
|
|
4868
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
4869
|
+
* you may not use this file except in compliance with the License.
|
|
4870
|
+
* You may obtain a copy of the License at
|
|
4871
|
+
*
|
|
4872
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
4873
|
+
*
|
|
4874
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
4875
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
4876
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4877
|
+
* See the License for the specific language governing permissions and
|
|
4878
|
+
* limitations under the License.
|
|
4879
|
+
*/
|
|
4880
|
+
class PatchZaakConfigurationComponent {
|
|
4881
|
+
constructor(iconService) {
|
|
4882
|
+
this.iconService = iconService;
|
|
4883
|
+
this.valid = new EventEmitter();
|
|
4884
|
+
this.configuration = new EventEmitter();
|
|
4885
|
+
this.propertyOptions = Object.values(PatchZaakPropertyOptions);
|
|
4886
|
+
this.propertyList = [];
|
|
4887
|
+
this.geometryTypes = GEOMETRY_TYPES;
|
|
4888
|
+
this.paymentIndicationTypes = PAYMENT_INDICATION_TYPES;
|
|
4889
|
+
this.CASE_GEOMETRY_TYPE = 'caseGeometryType';
|
|
4890
|
+
this.CASE_GEOMETRY_COORDINATES = 'caseGeometryCoordinates';
|
|
4891
|
+
this.PAYMENT_INDICATION_TYPE = 'paymentIndication';
|
|
4892
|
+
this._formValue$ = new BehaviorSubject({});
|
|
4893
|
+
this._properties = new Map();
|
|
4894
|
+
this._valid$ = new BehaviorSubject(false);
|
|
4895
|
+
this.iconService.registerAll([Add16, TrashCan16]);
|
|
4896
|
+
}
|
|
4897
|
+
ngOnInit() {
|
|
4898
|
+
this.initPropertyList();
|
|
4899
|
+
this.openSaveSubscription();
|
|
4900
|
+
}
|
|
4901
|
+
ngOnDestroy() {
|
|
4902
|
+
this._saveSubscription?.unsubscribe();
|
|
4903
|
+
}
|
|
4904
|
+
onFormValueChanged(formValue) {
|
|
4905
|
+
this._formValue$.next(formValue);
|
|
4906
|
+
this.handleValid(formValue);
|
|
4907
|
+
}
|
|
4908
|
+
onPropertyChanged(property, value) {
|
|
4909
|
+
this._properties.set(property, value);
|
|
4910
|
+
const formValue = this._formValue$.value;
|
|
4911
|
+
this._properties.forEach((value, key) => {
|
|
4912
|
+
formValue[key] = value;
|
|
4913
|
+
});
|
|
4914
|
+
this.onFormValueChanged(formValue);
|
|
4915
|
+
}
|
|
4916
|
+
addProperty(property) {
|
|
4917
|
+
if (!this.hasPropertyBeenAdded(property)) {
|
|
4918
|
+
this.propertyList.push(this.propertyFormFieldFor(property));
|
|
4919
|
+
this.onPropertyChanged(property, undefined);
|
|
4920
|
+
}
|
|
4921
|
+
// add linked field coordinates
|
|
4922
|
+
if (property === this.CASE_GEOMETRY_TYPE) {
|
|
4923
|
+
this.addProperty(this.CASE_GEOMETRY_COORDINATES);
|
|
4924
|
+
}
|
|
4925
|
+
}
|
|
4926
|
+
removeProperty(property) {
|
|
4927
|
+
if (this.hasPropertyBeenAdded(property)) {
|
|
4928
|
+
this.propertyList.splice(this.propertyList.findIndex(item => item.name === property), 1);
|
|
4929
|
+
this.onPropertyChanged(property, undefined);
|
|
4930
|
+
}
|
|
4931
|
+
// remove linked field coordinates
|
|
4932
|
+
if (property === this.CASE_GEOMETRY_TYPE) {
|
|
4933
|
+
this.removeProperty(this.CASE_GEOMETRY_COORDINATES);
|
|
4934
|
+
}
|
|
4935
|
+
}
|
|
4936
|
+
hasPropertyBeenAdded(property) {
|
|
4937
|
+
return this.propertyList.findIndex(item => item.name === property) !== -1;
|
|
4938
|
+
}
|
|
4939
|
+
prefillValueFor(property, prefill) {
|
|
4940
|
+
return prefill != null ? prefill[property] : null;
|
|
4941
|
+
}
|
|
4942
|
+
translationKeyForPropertyList(property) {
|
|
4943
|
+
return property === this.CASE_GEOMETRY_TYPE ? 'caseGeometry' : this.translationKeyFor(property);
|
|
4944
|
+
}
|
|
4945
|
+
initPropertyList() {
|
|
4946
|
+
this.prefillConfiguration$.pipe(take(1)).subscribe(prefill => {
|
|
4947
|
+
if (prefill) {
|
|
4948
|
+
PatchZaakPropertyOptions.forEach(property => {
|
|
4949
|
+
if (!!prefill[property])
|
|
4950
|
+
this.addProperty(property);
|
|
4951
|
+
});
|
|
4952
|
+
}
|
|
4953
|
+
});
|
|
4954
|
+
}
|
|
4955
|
+
propertyFormFieldFor(property) {
|
|
4956
|
+
return {
|
|
4957
|
+
name: property,
|
|
4958
|
+
translationKey: this.translationKeyFor(property),
|
|
4959
|
+
tooltipTranslationKey: this.tooltipTranslationKeyFor(property),
|
|
4960
|
+
presetOptions: this.presetOptionsForProperty(property),
|
|
4961
|
+
};
|
|
4962
|
+
}
|
|
4963
|
+
translationKeyFor(property) {
|
|
4964
|
+
return property === 'description' ? 'omschrijving' : property;
|
|
4965
|
+
}
|
|
4966
|
+
tooltipTranslationKeyFor(property) {
|
|
4967
|
+
if (property.includes('Date')) {
|
|
4968
|
+
return 'dateformatTooltip';
|
|
4969
|
+
}
|
|
4970
|
+
else if (property === this.CASE_GEOMETRY_COORDINATES) {
|
|
4971
|
+
return `${property}Tooltip`;
|
|
4972
|
+
}
|
|
4973
|
+
return null;
|
|
4974
|
+
}
|
|
4975
|
+
presetOptionsForProperty(property) {
|
|
4976
|
+
switch (property) {
|
|
4977
|
+
case this.CASE_GEOMETRY_TYPE:
|
|
4978
|
+
return this.geometryTypes;
|
|
4979
|
+
case this.PAYMENT_INDICATION_TYPE:
|
|
4980
|
+
return this.paymentIndicationTypes;
|
|
4981
|
+
default:
|
|
4982
|
+
return [];
|
|
4983
|
+
}
|
|
4984
|
+
}
|
|
4985
|
+
handleValid(formValue) {
|
|
4986
|
+
const isPropertyInvalid = this.propertyList.some(property => !!!formValue[property.name]);
|
|
4987
|
+
const valid = !isPropertyInvalid;
|
|
4988
|
+
this._valid$.next(valid);
|
|
4989
|
+
this.valid.emit(valid);
|
|
4990
|
+
}
|
|
4991
|
+
openSaveSubscription() {
|
|
4992
|
+
this._saveSubscription = this.save$?.subscribe(save => {
|
|
4993
|
+
combineLatest([this._formValue$, this._valid$])
|
|
4994
|
+
.pipe(take(1))
|
|
4995
|
+
.subscribe(([formValue, valid]) => {
|
|
4996
|
+
if (valid) {
|
|
4997
|
+
this.configuration.emit(formValue);
|
|
4998
|
+
}
|
|
4999
|
+
});
|
|
5000
|
+
});
|
|
5001
|
+
}
|
|
5002
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: PatchZaakConfigurationComponent, deps: [{ token: i1$3.IconService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5003
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.18", type: PatchZaakConfigurationComponent, isStandalone: false, selector: "valtimo-patch-zaak-configuration", inputs: { disabled$: "disabled$", pluginId: "pluginId", save$: "save$", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<ng-container\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n } as obs\"\n>\n <v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'patchZaakInformation' | pluginTranslate: pluginId | async }}\n </v-paragraph>\n\n <div class=\"row\">\n <div class=\"col-12\">\n <button\n cdsButton=\"primary\"\n [size]=\"'md'\"\n [cdsOverflowMenu]=\"addPropertyList\"\n [customPane]=\"true\"\n placement=\"bottom\"\n class=\"add-button\"\n >\n {{ 'addPatchZaakProperty' | pluginTranslate: pluginId | async }}\n\n <svg class=\"cds--btn__icon\" cdsIcon=\"add\" size=\"16\"></svg>\n </button>\n </div>\n </div>\n\n <v-form (valueChange)=\"onFormValueChanged($event)\">\n @for (property of propertyList; track property) {\n <div class=\"row\">\n <div class=\"col-11\">\n <v-input\n [name]=\"property.name\"\n [title]=\"property.translationKey | pluginTranslate: pluginId | async\"\n [tooltip]=\"\n property.tooltipTranslationKey !== null\n ? (property.tooltipTranslationKey | pluginTranslate: pluginId | async)\n : null\n \"\n [required]=\"true\"\n [defaultValue]=\"prefillValueFor(property.name, obs.prefill)\"\n [margin]=\"true\"\n [presetOptions]=\"property.presetOptions\"\n (valueChange)=\"onPropertyChanged(property.name, $event)\"\n />\n </div>\n <div class=\"col-1\">\n @if (property.name !== CASE_GEOMETRY_COORDINATES) {\n <button class=\"btn btn-space delete-button\" (click)=\"removeProperty(property.name)\">\n <svg class=\"cds--btn__icon\" cdsIcon=\"trash-can\" size=\"16\"></svg>\n </button>\n }\n </div>\n </div>\n }\n </v-form>\n</ng-container>\n\n<ng-template #addPropertyList>\n @for (propertyOption of propertyOptions; track propertyOption) {\n @if (propertyOption !== CASE_GEOMETRY_COORDINATES) {\n <cds-overflow-menu-option\n *ngIf=\"!hasPropertyBeenAdded(propertyOption)\"\n (click)=\"addProperty(propertyOption)\"\n >\n {{ translationKeyForPropertyList(propertyOption) | pluginTranslate: pluginId | async }}\n </cds-overflow-menu-option>\n }\n }\n</ng-template>\n", styles: ["button.delete-button{height:46px;width:46px;margin-top:20px}button.delete-button:hover{background-color:#e12717}button.add-button{margin-block-end:var(--v-input-margin)}::ng-deep .cds--overflow-menu-options{z-index:10000!important;width:230px}\n/*!\n * Copyright 2015-2025 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"], dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2$2.FormComponent, selector: "v-form", inputs: ["className"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.InputComponent, selector: "v-input", inputs: ["name", "type", "title", "titleTranslationKey", "defaultValue", "widthPx", "fullWidth", "margin", "smallMargin", "disabled", "step", "min", "maxLength", "tooltip", "required", "hideNumberSpinBox", "smallLabel", "rows", "clear$", "carbonTheme", "placeholder", "dataTestId", "trim", "presetsTitle", "presetOptions"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.ParagraphComponent, selector: "v-paragraph", inputs: ["center", "fullWidth", "margin", "italic", "loading", "dataTestId"] }, { kind: "directive", type: i1$3.Button, selector: "[cdsButton], [ibmButton]", inputs: ["ibmButton", "cdsButton", "size", "skeleton", "iconOnly", "isExpressive"] }, { kind: "directive", type: i1$3.OverflowMenuDirective, selector: "[cdsOverflowMenu], [ibmOverflowMenu]", inputs: ["ibmOverflowMenu", "cdsOverflowMenu", "flip", "offset", "wrapperClass", "customPane"], exportAs: ["overflowMenu"] }, { kind: "component", type: i1$3.OverflowMenuOption, selector: "cds-overflow-menu-option, ibm-overflow-menu-option", inputs: ["divider", "type", "disabled", "href", "target", "innerClass"], outputs: ["selected"] }, { kind: "directive", type: i1$3.IconDirective, selector: "[cdsIcon], [ibmIcon]", inputs: ["ibmIcon", "cdsIcon", "size", "title", "ariaLabel", "ariaLabelledBy", "ariaHidden", "isFocusable"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
|
|
5004
|
+
}
|
|
5005
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: PatchZaakConfigurationComponent, decorators: [{
|
|
5006
|
+
type: Component,
|
|
5007
|
+
args: [{ standalone: false, selector: 'valtimo-patch-zaak-configuration', template: "<ng-container\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n } as obs\"\n>\n <v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'patchZaakInformation' | pluginTranslate: pluginId | async }}\n </v-paragraph>\n\n <div class=\"row\">\n <div class=\"col-12\">\n <button\n cdsButton=\"primary\"\n [size]=\"'md'\"\n [cdsOverflowMenu]=\"addPropertyList\"\n [customPane]=\"true\"\n placement=\"bottom\"\n class=\"add-button\"\n >\n {{ 'addPatchZaakProperty' | pluginTranslate: pluginId | async }}\n\n <svg class=\"cds--btn__icon\" cdsIcon=\"add\" size=\"16\"></svg>\n </button>\n </div>\n </div>\n\n <v-form (valueChange)=\"onFormValueChanged($event)\">\n @for (property of propertyList; track property) {\n <div class=\"row\">\n <div class=\"col-11\">\n <v-input\n [name]=\"property.name\"\n [title]=\"property.translationKey | pluginTranslate: pluginId | async\"\n [tooltip]=\"\n property.tooltipTranslationKey !== null\n ? (property.tooltipTranslationKey | pluginTranslate: pluginId | async)\n : null\n \"\n [required]=\"true\"\n [defaultValue]=\"prefillValueFor(property.name, obs.prefill)\"\n [margin]=\"true\"\n [presetOptions]=\"property.presetOptions\"\n (valueChange)=\"onPropertyChanged(property.name, $event)\"\n />\n </div>\n <div class=\"col-1\">\n @if (property.name !== CASE_GEOMETRY_COORDINATES) {\n <button class=\"btn btn-space delete-button\" (click)=\"removeProperty(property.name)\">\n <svg class=\"cds--btn__icon\" cdsIcon=\"trash-can\" size=\"16\"></svg>\n </button>\n }\n </div>\n </div>\n }\n </v-form>\n</ng-container>\n\n<ng-template #addPropertyList>\n @for (propertyOption of propertyOptions; track propertyOption) {\n @if (propertyOption !== CASE_GEOMETRY_COORDINATES) {\n <cds-overflow-menu-option\n *ngIf=\"!hasPropertyBeenAdded(propertyOption)\"\n (click)=\"addProperty(propertyOption)\"\n >\n {{ translationKeyForPropertyList(propertyOption) | pluginTranslate: pluginId | async }}\n </cds-overflow-menu-option>\n }\n }\n</ng-template>\n", styles: ["button.delete-button{height:46px;width:46px;margin-top:20px}button.delete-button:hover{background-color:#e12717}button.add-button{margin-block-end:var(--v-input-margin)}::ng-deep .cds--overflow-menu-options{z-index:10000!important;width:230px}\n/*!\n * Copyright 2015-2025 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"] }]
|
|
5008
|
+
}], ctorParameters: () => [{ type: i1$3.IconService }], propDecorators: { disabled$: [{
|
|
5009
|
+
type: Input
|
|
5010
|
+
}], pluginId: [{
|
|
5011
|
+
type: Input
|
|
5012
|
+
}], save$: [{
|
|
5013
|
+
type: Input
|
|
5014
|
+
}], prefillConfiguration$: [{
|
|
5015
|
+
type: Input
|
|
5016
|
+
}], valid: [{
|
|
5017
|
+
type: Output
|
|
5018
|
+
}], configuration: [{
|
|
5019
|
+
type: Output
|
|
5020
|
+
}] } });
|
|
5021
|
+
|
|
5022
5022
|
/*
|
|
5023
5023
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
5024
5024
|
*
|
|
@@ -5418,6 +5418,61 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
5418
5418
|
type: Output
|
|
5419
5419
|
}] } });
|
|
5420
5420
|
|
|
5421
|
+
/*
|
|
5422
|
+
* Copyright 2015-2026 Ritense BV, the Netherlands.
|
|
5423
|
+
*
|
|
5424
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
5425
|
+
* you may not use this file except in compliance with the License.
|
|
5426
|
+
* You may obtain a copy of the License at
|
|
5427
|
+
*
|
|
5428
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
5429
|
+
*
|
|
5430
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
5431
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
5432
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5433
|
+
* See the License for the specific language governing permissions and
|
|
5434
|
+
* limitations under the License.
|
|
5435
|
+
*/
|
|
5436
|
+
class DeleteZaakResultatenConfigurationComponent {
|
|
5437
|
+
constructor() {
|
|
5438
|
+
this.valid = new EventEmitter();
|
|
5439
|
+
this.configuration = new EventEmitter();
|
|
5440
|
+
}
|
|
5441
|
+
ngOnInit() {
|
|
5442
|
+
this.openSaveSubscription();
|
|
5443
|
+
this.emitValid();
|
|
5444
|
+
}
|
|
5445
|
+
ngOnDestroy() {
|
|
5446
|
+
this.saveSubscription?.unsubscribe();
|
|
5447
|
+
}
|
|
5448
|
+
emitValid() {
|
|
5449
|
+
this.valid.emit(true);
|
|
5450
|
+
}
|
|
5451
|
+
openSaveSubscription() {
|
|
5452
|
+
this.saveSubscription = this.save$?.subscribe(save => {
|
|
5453
|
+
this.configuration.emit({});
|
|
5454
|
+
});
|
|
5455
|
+
}
|
|
5456
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: DeleteZaakResultatenConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5457
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: DeleteZaakResultatenConfigurationComponent, isStandalone: false, selector: "valtimo-delete-zaak-resultaten-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, providers: [PluginTranslatePipe], ngImport: i0, template: "<!--\n ~ Copyright 2015-2025 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 {{ 'deleteZaakResultatenMessage' | pluginTranslate: pluginId | async }}\n</v-paragraph>\n", dependencies: [{ kind: "component", type: i2$2.ParagraphComponent, selector: "v-paragraph", inputs: ["center", "fullWidth", "margin", "italic", "loading", "dataTestId"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
|
|
5458
|
+
}
|
|
5459
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: DeleteZaakResultatenConfigurationComponent, decorators: [{
|
|
5460
|
+
type: Component,
|
|
5461
|
+
args: [{ standalone: false, selector: 'valtimo-delete-zaak-resultaten-configuration', providers: [PluginTranslatePipe], template: "<!--\n ~ Copyright 2015-2025 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 {{ 'deleteZaakResultatenMessage' | pluginTranslate: pluginId | async }}\n</v-paragraph>\n" }]
|
|
5462
|
+
}], propDecorators: { save$: [{
|
|
5463
|
+
type: Input
|
|
5464
|
+
}], disabled$: [{
|
|
5465
|
+
type: Input
|
|
5466
|
+
}], pluginId: [{
|
|
5467
|
+
type: Input
|
|
5468
|
+
}], prefillConfiguration$: [{
|
|
5469
|
+
type: Input
|
|
5470
|
+
}], valid: [{
|
|
5471
|
+
type: Output
|
|
5472
|
+
}], configuration: [{
|
|
5473
|
+
type: Output
|
|
5474
|
+
}] } });
|
|
5475
|
+
|
|
5421
5476
|
/*
|
|
5422
5477
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
5423
5478
|
*
|
|
@@ -5441,14 +5496,13 @@ class ZakenApiPluginModule {
|
|
|
5441
5496
|
GetZaakInformatieobjectenComponent,
|
|
5442
5497
|
SetZaakStatusConfigurationComponent,
|
|
5443
5498
|
CreateZaakResultaatConfigurationComponent,
|
|
5499
|
+
DeleteZaakRolComponent,
|
|
5444
5500
|
CreateMedewerkerZaakRolComponent,
|
|
5445
5501
|
CreateNatuurlijkPersoonZaakRolComponent,
|
|
5446
5502
|
CreateNietNatuurlijkPersoonZaakRolComponent,
|
|
5447
5503
|
CreateOrganisatorischeEenheidZaakRolComponent,
|
|
5448
5504
|
CreateVestigingZaakRolComponent,
|
|
5449
|
-
DeleteZaakRolComponent,
|
|
5450
5505
|
CreateZaakConfigurationComponent,
|
|
5451
|
-
PatchZaakConfigurationComponent,
|
|
5452
5506
|
SetZaakopschortingComponent,
|
|
5453
5507
|
StartHersteltermijnConfigurationComponent,
|
|
5454
5508
|
EndHersteltermijnComponent,
|
|
@@ -5460,7 +5514,8 @@ class ZakenApiPluginModule {
|
|
|
5460
5514
|
PatchZaakConfigurationComponent,
|
|
5461
5515
|
GetZaakbesluitenConfigurationComponent,
|
|
5462
5516
|
CreateZaakNotitieConfigurationComponent,
|
|
5463
|
-
PatchZaakNotitieConfigurationComponent
|
|
5517
|
+
PatchZaakNotitieConfigurationComponent,
|
|
5518
|
+
DeleteZaakResultatenConfigurationComponent], imports: [CommonModule,
|
|
5464
5519
|
PluginTranslatePipeModule,
|
|
5465
5520
|
FormModule,
|
|
5466
5521
|
InputModule,
|
|
@@ -5481,22 +5536,20 @@ class ZakenApiPluginModule {
|
|
|
5481
5536
|
ReactiveFormsModule,
|
|
5482
5537
|
TimePickerModule,
|
|
5483
5538
|
InputModule,
|
|
5484
|
-
|
|
5485
|
-
ReadOnlyDirective,
|
|
5486
|
-
InputLabelModule], exports: [ZakenApiConfigurationComponent,
|
|
5539
|
+
ReadOnlyDirective], exports: [ZakenApiConfigurationComponent,
|
|
5487
5540
|
LinkDocumentToZaakConfigurationComponent,
|
|
5488
5541
|
LinkUploadedDocumentToZaakConfigurationComponent,
|
|
5489
5542
|
GetZaakInformatieobjectenComponent,
|
|
5490
5543
|
SetZaakStatusConfigurationComponent,
|
|
5491
5544
|
CreateZaakResultaatConfigurationComponent,
|
|
5492
5545
|
CreateZaakConfigurationComponent,
|
|
5546
|
+
DeleteZaakRolComponent,
|
|
5493
5547
|
PatchZaakConfigurationComponent,
|
|
5494
5548
|
CreateMedewerkerZaakRolComponent,
|
|
5495
5549
|
CreateNatuurlijkPersoonZaakRolComponent,
|
|
5496
5550
|
CreateNietNatuurlijkPersoonZaakRolComponent,
|
|
5497
5551
|
CreateOrganisatorischeEenheidZaakRolComponent,
|
|
5498
5552
|
CreateVestigingZaakRolComponent,
|
|
5499
|
-
DeleteZaakRolComponent,
|
|
5500
5553
|
SetZaakopschortingComponent,
|
|
5501
5554
|
StartHersteltermijnConfigurationComponent,
|
|
5502
5555
|
EndHersteltermijnComponent,
|
|
@@ -5507,7 +5560,8 @@ class ZakenApiPluginModule {
|
|
|
5507
5560
|
RelateerZakenComponent,
|
|
5508
5561
|
GetZaakbesluitenConfigurationComponent,
|
|
5509
5562
|
CreateZaakNotitieConfigurationComponent,
|
|
5510
|
-
PatchZaakNotitieConfigurationComponent
|
|
5563
|
+
PatchZaakNotitieConfigurationComponent,
|
|
5564
|
+
DeleteZaakResultatenConfigurationComponent] }); }
|
|
5511
5565
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ZakenApiPluginModule, imports: [CommonModule,
|
|
5512
5566
|
PluginTranslatePipeModule,
|
|
5513
5567
|
FormModule,
|
|
@@ -5528,9 +5582,7 @@ class ZakenApiPluginModule {
|
|
|
5528
5582
|
NotificationModule,
|
|
5529
5583
|
ReactiveFormsModule,
|
|
5530
5584
|
TimePickerModule,
|
|
5531
|
-
InputModule
|
|
5532
|
-
ReactiveFormsModule,
|
|
5533
|
-
InputLabelModule] }); }
|
|
5585
|
+
InputModule] }); }
|
|
5534
5586
|
}
|
|
5535
5587
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ZakenApiPluginModule, decorators: [{
|
|
5536
5588
|
type: NgModule,
|
|
@@ -5542,14 +5594,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
5542
5594
|
GetZaakInformatieobjectenComponent,
|
|
5543
5595
|
SetZaakStatusConfigurationComponent,
|
|
5544
5596
|
CreateZaakResultaatConfigurationComponent,
|
|
5597
|
+
DeleteZaakRolComponent,
|
|
5545
5598
|
CreateMedewerkerZaakRolComponent,
|
|
5546
5599
|
CreateNatuurlijkPersoonZaakRolComponent,
|
|
5547
5600
|
CreateNietNatuurlijkPersoonZaakRolComponent,
|
|
5548
5601
|
CreateOrganisatorischeEenheidZaakRolComponent,
|
|
5549
5602
|
CreateVestigingZaakRolComponent,
|
|
5550
|
-
DeleteZaakRolComponent,
|
|
5551
5603
|
CreateZaakConfigurationComponent,
|
|
5552
|
-
PatchZaakConfigurationComponent,
|
|
5553
5604
|
SetZaakopschortingComponent,
|
|
5554
5605
|
StartHersteltermijnConfigurationComponent,
|
|
5555
5606
|
EndHersteltermijnComponent,
|
|
@@ -5562,6 +5613,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
5562
5613
|
GetZaakbesluitenConfigurationComponent,
|
|
5563
5614
|
CreateZaakNotitieConfigurationComponent,
|
|
5564
5615
|
PatchZaakNotitieConfigurationComponent,
|
|
5616
|
+
DeleteZaakResultatenConfigurationComponent
|
|
5565
5617
|
],
|
|
5566
5618
|
imports: [
|
|
5567
5619
|
CommonModule,
|
|
@@ -5585,9 +5637,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
5585
5637
|
ReactiveFormsModule,
|
|
5586
5638
|
TimePickerModule,
|
|
5587
5639
|
InputModule,
|
|
5588
|
-
ReactiveFormsModule,
|
|
5589
5640
|
ReadOnlyDirective,
|
|
5590
|
-
InputLabelModule,
|
|
5591
5641
|
],
|
|
5592
5642
|
exports: [
|
|
5593
5643
|
ZakenApiConfigurationComponent,
|
|
@@ -5597,13 +5647,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
5597
5647
|
SetZaakStatusConfigurationComponent,
|
|
5598
5648
|
CreateZaakResultaatConfigurationComponent,
|
|
5599
5649
|
CreateZaakConfigurationComponent,
|
|
5650
|
+
DeleteZaakRolComponent,
|
|
5600
5651
|
PatchZaakConfigurationComponent,
|
|
5601
5652
|
CreateMedewerkerZaakRolComponent,
|
|
5602
5653
|
CreateNatuurlijkPersoonZaakRolComponent,
|
|
5603
5654
|
CreateNietNatuurlijkPersoonZaakRolComponent,
|
|
5604
5655
|
CreateOrganisatorischeEenheidZaakRolComponent,
|
|
5605
5656
|
CreateVestigingZaakRolComponent,
|
|
5606
|
-
DeleteZaakRolComponent,
|
|
5607
5657
|
SetZaakopschortingComponent,
|
|
5608
5658
|
StartHersteltermijnConfigurationComponent,
|
|
5609
5659
|
EndHersteltermijnComponent,
|
|
@@ -5615,6 +5665,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
5615
5665
|
GetZaakbesluitenConfigurationComponent,
|
|
5616
5666
|
CreateZaakNotitieConfigurationComponent,
|
|
5617
5667
|
PatchZaakNotitieConfigurationComponent,
|
|
5668
|
+
DeleteZaakResultatenConfigurationComponent
|
|
5618
5669
|
],
|
|
5619
5670
|
}]
|
|
5620
5671
|
}] });
|
|
@@ -5677,6 +5728,7 @@ const zakenApiPluginSpecification = {
|
|
|
5677
5728
|
'get-zaak-informatieobjecten': GetZaakInformatieobjectenComponent,
|
|
5678
5729
|
'set-zaakstatus': SetZaakStatusConfigurationComponent,
|
|
5679
5730
|
'create-zaakresultaat': CreateZaakResultaatConfigurationComponent,
|
|
5731
|
+
'delete-zaakresultaten': DeleteZaakResultatenConfigurationComponent,
|
|
5680
5732
|
'create-zaak': CreateZaakConfigurationComponent,
|
|
5681
5733
|
'patch-zaak': PatchZaakConfigurationComponent,
|
|
5682
5734
|
'create-natuurlijk-persoon-zaak-rol': CreateNatuurlijkPersoonZaakRolComponent,
|
|
@@ -5789,6 +5841,8 @@ const zakenApiPluginSpecification = {
|
|
|
5789
5841
|
statustoelichting: 'Zaakstatus toelichting',
|
|
5790
5842
|
statustoelichtingTooltip: 'Een, voor de initiator van de zaak relevante, toelichting op de status van een zaak.',
|
|
5791
5843
|
'create-zaakresultaat': 'Zaakresultaat aanmaken',
|
|
5844
|
+
'delete-zaakresultaten': 'Zaakresultaten verwijderen',
|
|
5845
|
+
'deleteZaakResultatenMessage': 'Zaakresultaten verwijderen heeft geen configuratie nodig.',
|
|
5792
5846
|
resultaattypeUrl: 'Zaakresultaat type URL',
|
|
5793
5847
|
resultaattypeUrlTooltip: 'URL-referentie naar het resultaattype.',
|
|
5794
5848
|
resultaattoelichting: 'Zaakresultaat toelichting',
|
|
@@ -5991,6 +6045,8 @@ const zakenApiPluginSpecification = {
|
|
|
5991
6045
|
statustoelichting: 'Zaakstatus explanation',
|
|
5992
6046
|
statustoelichtingTooltip: 'An explanation of the status of a zaak that is relevant to the initiator of the zaak.',
|
|
5993
6047
|
'create-zaakresultaat': 'Create Zaakresultaat',
|
|
6048
|
+
'delete-zaakresultaten': 'Delete Zaakresultaten',
|
|
6049
|
+
'deleteZaakResultatenMessage': 'Delete Zaakresultaten does not require any configuration.',
|
|
5994
6050
|
resultaattypeUrl: 'Zaakresultaat type URL',
|
|
5995
6051
|
resultaattypeUrlTooltip: 'URL reference to the resultaat type.',
|
|
5996
6052
|
resultaattoelichting: 'Zaakresultaat explanation',
|
|
@@ -9839,5 +9895,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
9839
9895
|
* Generated bundle index. Do not edit.
|
|
9840
9896
|
*/
|
|
9841
9897
|
|
|
9842
|
-
export { BesluitenApiConfigurationComponent, BesluitenApiPluginModule, CatalogiApiConfigurationComponent, CatalogiApiPluginModule, CompletePortalTaskComponent, CreateMedewerkerZaakRolComponent, CreateNatuurlijkPersoonZaakRolComponent, CreateNietNatuurlijkPersoonZaakRolComponent, CreateOrganisatorischeEenheidZaakRolComponent, CreatePersoonComponent, CreatePortalTaskComponent, CreateVestigingZaakRolComponent, CreateZaakBesluitConfigurationComponent, CreateZaakConfigurationComponent, CreateZaakNotitieConfigurationComponent, CreateZaakObjectConfigurationComponent, CreateZaakResultaatConfigurationComponent, CreateZaakeigenschapComponent, DeleteObjectComponent, DeleteZaakRolComponent, DeleteZaakeigenschapComponent, DocumentenApiConfigurationComponent, DocumentenApiPluginModule, DownloadDocumentConfigurationComponent, EndHersteltermijnComponent, ExactPluginModule, GenerateDocumentConfigurationComponent, GetBesluitConfigurationComponent, GetBesluittypeConfigurationComponent, GetEigenschapConfigurationComponent, GetResultaattypeConfigurationComponent, GetResultaattypenConfigurationComponent, GetStatustypeConfigurationComponent, GetStatustypenConfigurationComponent, GetTemplateNamesComponent, GetZaakInformatieobjectenComponent, GetZaakbesluitenConfigurationComponent, KlantinteractiesApiConfigurationComponent, KlantinteractiesApiPluginModule, LinkDocumentToBesluitConfigurationComponent, LinkDocumentToZaakConfigurationComponent, LinkUploadedDocumentToZaakConfigurationComponent, NotificatiesApiConfigurationComponent, NotificatiesApiPluginModule, ObjectTokenAuthencationConfigurationComponent, ObjectTokenAuthenticationPluginModule, ObjectenApiConfigurationComponent, ObjectenApiPluginModule, ObjecttypenApiConfigurationComponent, ObjecttypenApiPluginModule, OpenKlantTokenAuthenticationConfigurationComponent, OpenKlantTokenAuthenticationPluginModule, OpenNotificatiesConfigurationComponent, OpenNotificatiesPluginModule, OpenZaakConfigurationComponent, OpenZaakPluginModule, PLUGINS_TOKEN, PatchZaakBesluitConfigurationComponent, PatchZaakConfigurationComponent, PatchZaakNotitieConfigurationComponent, PluginConfigurationContainerComponent, PluginConfigurationContainerModule, PluginManagementService, PluginService, PluginTranslatePipe, PluginTranslatePipeModule, PluginTranslationService, PortaaltaakConfigurationComponent, PortaaltaakPluginModule, RelateerZakenComponent, SetZaakStatusConfigurationComponent, SetZaakopschortingComponent, SmartDocumentsConfigurationComponent, SmartDocumentsPluginModule, StartHersteltermijnConfigurationComponent, StoreTempDocumentConfigurationComponent, StoreUploadedDocumentConfigurationComponent, StoreUploadedDocumentInPartsConfigurationComponent, UpdateZaakeigenschapComponent, VerzoekConfigurationComponent, VerzoekPluginModule, ZakenApiConfigurationComponent, ZakenApiPluginModule, besluitenApiPluginSpecification, catalogiApiPluginSpecification, documentenApiPluginSpecification, exactPluginSpecification, klantinteractiesApiPluginSpecification, notificatiesApiPluginSpecification, objectTokenAuthenticationPluginSpecification, objectenApiPluginSpecification, objecttypenApiPluginSpecification, openKlantTokenAuthenticationPluginSpecification, openNotificatiesPluginSpecification, openZaakPluginSpecification, portaaltaakPluginSpecification, smartDocumentsPluginSpecification, verzoekPluginSpecification, zakenApiPluginSpecification };
|
|
9898
|
+
export { BesluitenApiConfigurationComponent, BesluitenApiPluginModule, CatalogiApiConfigurationComponent, CatalogiApiPluginModule, CompletePortalTaskComponent, CreateMedewerkerZaakRolComponent, CreateNatuurlijkPersoonZaakRolComponent, CreateNietNatuurlijkPersoonZaakRolComponent, CreateOrganisatorischeEenheidZaakRolComponent, CreatePersoonComponent, CreatePortalTaskComponent, CreateVestigingZaakRolComponent, CreateZaakBesluitConfigurationComponent, CreateZaakConfigurationComponent, CreateZaakNotitieConfigurationComponent, CreateZaakObjectConfigurationComponent, CreateZaakResultaatConfigurationComponent, CreateZaakeigenschapComponent, DeleteObjectComponent, DeleteZaakResultatenConfigurationComponent, DeleteZaakRolComponent, DeleteZaakeigenschapComponent, DocumentenApiConfigurationComponent, DocumentenApiPluginModule, DownloadDocumentConfigurationComponent, EndHersteltermijnComponent, ExactPluginModule, GenerateDocumentConfigurationComponent, GetBesluitConfigurationComponent, GetBesluittypeConfigurationComponent, GetEigenschapConfigurationComponent, GetResultaattypeConfigurationComponent, GetResultaattypenConfigurationComponent, GetStatustypeConfigurationComponent, GetStatustypenConfigurationComponent, GetTemplateNamesComponent, GetZaakInformatieobjectenComponent, GetZaakbesluitenConfigurationComponent, KlantinteractiesApiConfigurationComponent, KlantinteractiesApiPluginModule, LinkDocumentToBesluitConfigurationComponent, LinkDocumentToZaakConfigurationComponent, LinkUploadedDocumentToZaakConfigurationComponent, NotificatiesApiConfigurationComponent, NotificatiesApiPluginModule, ObjectTokenAuthencationConfigurationComponent, ObjectTokenAuthenticationPluginModule, ObjectenApiConfigurationComponent, ObjectenApiPluginModule, ObjecttypenApiConfigurationComponent, ObjecttypenApiPluginModule, OpenKlantTokenAuthenticationConfigurationComponent, OpenKlantTokenAuthenticationPluginModule, OpenNotificatiesConfigurationComponent, OpenNotificatiesPluginModule, OpenZaakConfigurationComponent, OpenZaakPluginModule, PLUGINS_TOKEN, PatchZaakBesluitConfigurationComponent, PatchZaakConfigurationComponent, PatchZaakNotitieConfigurationComponent, PluginConfigurationContainerComponent, PluginConfigurationContainerModule, PluginManagementService, PluginService, PluginTranslatePipe, PluginTranslatePipeModule, PluginTranslationService, PortaaltaakConfigurationComponent, PortaaltaakPluginModule, RelateerZakenComponent, SetZaakStatusConfigurationComponent, SetZaakopschortingComponent, SmartDocumentsConfigurationComponent, SmartDocumentsPluginModule, StartHersteltermijnConfigurationComponent, StoreTempDocumentConfigurationComponent, StoreUploadedDocumentConfigurationComponent, StoreUploadedDocumentInPartsConfigurationComponent, UpdateZaakeigenschapComponent, VerzoekConfigurationComponent, VerzoekPluginModule, ZakenApiConfigurationComponent, ZakenApiPluginModule, besluitenApiPluginSpecification, catalogiApiPluginSpecification, documentenApiPluginSpecification, exactPluginSpecification, klantinteractiesApiPluginSpecification, notificatiesApiPluginSpecification, objectTokenAuthenticationPluginSpecification, objectenApiPluginSpecification, objecttypenApiPluginSpecification, openKlantTokenAuthenticationPluginSpecification, openNotificatiesPluginSpecification, openZaakPluginSpecification, portaaltaakPluginSpecification, smartDocumentsPluginSpecification, verzoekPluginSpecification, zakenApiPluginSpecification };
|
|
9843
9899
|
//# sourceMappingURL=valtimo-plugin.mjs.map
|