@valtimo/plugin 13.33.0 → 13.35.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 +144 -12
- package/fesm2022/valtimo-plugin.mjs.map +1 -1
- package/lib/plugins/catalogi-api/catalogi-api-plugin-module.d.ts +5 -4
- package/lib/plugins/catalogi-api/catalogi-api-plugin-module.d.ts.map +1 -1
- package/lib/plugins/catalogi-api/catalogi-api-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/catalogi-api/components/get-informatieobjecttype/get-informatieobjecttype-configuration.component.d.ts +24 -0
- package/lib/plugins/catalogi-api/components/get-informatieobjecttype/get-informatieobjecttype-configuration.component.d.ts.map +1 -0
- package/lib/plugins/catalogi-api/models/config.d.ts +5 -1
- package/lib/plugins/catalogi-api/models/config.d.ts.map +1 -1
- package/lib/plugins/documenten-api/components/store-temp-document/store-temp-document-configuration.component.d.ts +15 -3
- package/lib/plugins/documenten-api/components/store-temp-document/store-temp-document-configuration.component.d.ts.map +1 -1
- package/lib/plugins/documenten-api/documenten-api-plugin.module.d.ts +1 -1
- 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/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/public-api.d.ts.map +1 -1
|
@@ -14,7 +14,7 @@ import { RouterModule } from '@angular/router';
|
|
|
14
14
|
import * as i1$1 from '@angular/common';
|
|
15
15
|
import { CommonModule } from '@angular/common';
|
|
16
16
|
import * as i2$2 from '@valtimo/components';
|
|
17
|
-
import { ParagraphModule, FormModule, InputModule, ValuePathSelectorPrefix, SelectModule, CarbonMultiInputModule, InputLabelModule, CARBON_THEME, CurrentCarbonTheme,
|
|
17
|
+
import { ParagraphModule, FormModule, InputModule, ValuePathSelectorPrefix, SelectModule, CarbonMultiInputModule, RadioModule, InputLabelModule, CARBON_THEME, CurrentCarbonTheme, OverflowMenuComponent, OverflowMenuOptionComponent, ReadOnlyDirective, VModalComponent, MultiInputFormModule, TooltipIconModule, ValtimoCdsModalDirective, VModalModule, DatePickerModule as DatePickerModule$1 } from '@valtimo/components';
|
|
18
18
|
import { validate } from 'uuid';
|
|
19
19
|
import * as i1$3 from 'carbon-components-angular';
|
|
20
20
|
import { ToggleModule, LoadingModule, ButtonModule, IconModule, DatePickerInputModule, DatePickerModule, NotificationModule, TimePickerModule, ModalModule, InputModule as InputModule$1 } from 'carbon-components-angular';
|
|
@@ -1697,6 +1697,21 @@ class StoreTempDocumentConfigurationComponent {
|
|
|
1697
1697
|
id: confidentialityLevel,
|
|
1698
1698
|
text: this.pluginTranslationService.instant(confidentialityLevel, this.pluginId),
|
|
1699
1699
|
}))));
|
|
1700
|
+
this.selectedConfidentialityLevelInputType$ = new BehaviorSubject('selection');
|
|
1701
|
+
this.selectedLanguageInputType$ = new BehaviorSubject('selection');
|
|
1702
|
+
this.selectedStatusInputType$ = new BehaviorSubject('selection');
|
|
1703
|
+
this.confidentialityLevelInputTypeOptions$ = this.translateService.stream('key').pipe(map$1(() => [
|
|
1704
|
+
{ value: 'selection', title: this.pluginTranslationService.instant('selection', this.pluginId) },
|
|
1705
|
+
{ value: 'text', title: this.pluginTranslationService.instant('text', this.pluginId) },
|
|
1706
|
+
]));
|
|
1707
|
+
this.languageInputTypeOptions$ = this.translateService.stream('key').pipe(map$1(() => [
|
|
1708
|
+
{ value: 'selection', title: this.pluginTranslationService.instant('selection', this.pluginId) },
|
|
1709
|
+
{ value: 'text', title: this.pluginTranslationService.instant('text', this.pluginId) },
|
|
1710
|
+
]));
|
|
1711
|
+
this.statusInputTypeOptions$ = this.translateService.stream('key').pipe(map$1(() => [
|
|
1712
|
+
{ value: 'selection', title: this.pluginTranslationService.instant('selection', this.pluginId) },
|
|
1713
|
+
{ value: 'text', title: this.pluginTranslationService.instant('text', this.pluginId) },
|
|
1714
|
+
]));
|
|
1700
1715
|
this.LANGUAGE_ITEMS = ['nld'];
|
|
1701
1716
|
this.languageSelectItems$ = this.translateService.stream('key').pipe(map$1(() => this.LANGUAGE_ITEMS.map(item => ({
|
|
1702
1717
|
id: item,
|
|
@@ -1724,6 +1739,15 @@ class StoreTempDocumentConfigurationComponent {
|
|
|
1724
1739
|
formValueChange(formValue) {
|
|
1725
1740
|
this.formValue$.next(formValue);
|
|
1726
1741
|
this.handleValid(formValue);
|
|
1742
|
+
if (formValue.confidentialityLevelInputType) {
|
|
1743
|
+
this.selectedConfidentialityLevelInputType$.next(formValue.confidentialityLevelInputType);
|
|
1744
|
+
}
|
|
1745
|
+
if (formValue.languageInputType) {
|
|
1746
|
+
this.selectedLanguageInputType$.next(formValue.languageInputType);
|
|
1747
|
+
}
|
|
1748
|
+
if (formValue.statusInputType) {
|
|
1749
|
+
this.selectedStatusInputType$.next(formValue.statusInputType);
|
|
1750
|
+
}
|
|
1727
1751
|
}
|
|
1728
1752
|
handleValid(formValue) {
|
|
1729
1753
|
const valid = !!(formValue.localDocumentLocation &&
|
|
@@ -1745,11 +1769,11 @@ class StoreTempDocumentConfigurationComponent {
|
|
|
1745
1769
|
});
|
|
1746
1770
|
}
|
|
1747
1771
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: StoreTempDocumentConfigurationComponent, deps: [{ token: i2.TranslateService }, { token: PluginTranslationService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1748
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: StoreTempDocumentConfigurationComponent, isStandalone: false, 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-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 } as obs\"\n>\n <v-input\n name=\"fileName\"\n [title]=\"'fileName' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.fileName\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'fileNameTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n ></v-input>\n <v-select\n [items]=\"confidentialityLevelItems$ | async\"\n [margin]=\"true\"\n [widthInPx]=\"200\"\n name=\"confidentialityLevel\"\n [title]=\"'confidentialityLevel' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.confidentialityLevel || CONFIDENTIALITY_LEVEL_ITEMS[3]\"\n [tooltip]=\"'confidentialityLevelTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n <v-input\n name=\"title\"\n [title]=\"'inputTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.title\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'inputTitleTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n ></v-input>\n <v-input\n name=\"description\"\n [title]=\"'inputDescription' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.description\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'inputDescriptionTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n <v-input\n name=\"localDocumentLocation\"\n [title]=\"'localDocumentLocation' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.localDocumentLocation\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"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 [trim]=\"true\"\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 [trim]=\"true\"\n [tooltip]=\"'informatieobjecttypeTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\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: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
|
|
1772
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: StoreTempDocumentConfigurationComponent, isStandalone: false, 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-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 selectedConfidentialityLevelInputType: selectedConfidentialityLevelInputType$ | async,\n selectedLanguageInputType: selectedLanguageInputType$ | async,\n selectedStatusInputType: selectedStatusInputType$ | async,\n } as obs\"\n>\n <v-input\n name=\"fileName\"\n [title]=\"'fileName' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.fileName\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'fileNameTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n ></v-input>\n\n <v-radio\n name=\"confidentialityLevelInputType\"\n [disabled]=\"obs.disabled\"\n [title]=\"'confidentialityLevelInputType' | pluginTranslate: pluginId | async\"\n [radioValues]=\"confidentialityLevelInputTypeOptions$ | async\"\n [defaultValue]=\"obs.prefill?.confidentialityLevelInputType || 'selection'\"\n [margin]=\"true\"\n ></v-radio>\n\n <v-select\n *ngIf=\"obs.selectedConfidentialityLevelInputType === 'selection'\"\n [items]=\"confidentialityLevelItems$ | async\"\n [margin]=\"true\"\n [widthInPx]=\"200\"\n name=\"confidentialityLevel\"\n [title]=\"'confidentialityLevel' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.confidentialityLevel || CONFIDENTIALITY_LEVEL_ITEMS[3]\"\n [tooltip]=\"'confidentialityLevelTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n\n <v-input\n *ngIf=\"obs.selectedConfidentialityLevelInputType === 'text'\"\n name=\"confidentialityLevel\"\n [title]=\"'confidentialityLevel' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.confidentialityLevel\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'confidentialityLevelTextTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n placeholder=\"e.g. doc:confidentialityLevel\"\n ></v-input>\n <v-input\n name=\"title\"\n [title]=\"'inputTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.title\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'inputTitleTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n ></v-input>\n <v-input\n name=\"description\"\n [title]=\"'inputDescription' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.description\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'inputDescriptionTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n <v-input\n name=\"localDocumentLocation\"\n [title]=\"'localDocumentLocation' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.localDocumentLocation\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"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 [trim]=\"true\"\n [tooltip]=\"'storeDocumentUrlTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n <v-radio\n name=\"languageInputType\"\n [disabled]=\"obs.disabled\"\n [title]=\"'languageInputType' | pluginTranslate: pluginId | async\"\n [radioValues]=\"languageInputTypeOptions$ | async\"\n [defaultValue]=\"obs.prefill?.languageInputType || 'selection'\"\n [margin]=\"true\"\n ></v-radio>\n\n <v-select\n *ngIf=\"obs.selectedLanguageInputType === 'selection'\"\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\n <v-input\n *ngIf=\"obs.selectedLanguageInputType === 'text'\"\n name=\"taal\"\n [title]=\"'taal' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.taal\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'taalTextTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n placeholder=\"e.g. doc:language\"\n ></v-input>\n <v-radio\n name=\"statusInputType\"\n [disabled]=\"obs.disabled\"\n [title]=\"'statusInputType' | pluginTranslate: pluginId | async\"\n [radioValues]=\"statusInputTypeOptions$ | async\"\n [defaultValue]=\"obs.prefill?.statusInputType || 'selection'\"\n [margin]=\"true\"\n ></v-radio>\n\n <v-select\n *ngIf=\"obs.selectedStatusInputType === 'selection'\"\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\n <v-input\n *ngIf=\"obs.selectedStatusInputType === 'text'\"\n name=\"status\"\n [title]=\"'status' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.status\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'statusTextTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n placeholder=\"e.g. doc:status\"\n ></v-input>\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 [trim]=\"true\"\n [tooltip]=\"'informatieobjecttypeTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\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: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
|
|
1749
1773
|
}
|
|
1750
1774
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: StoreTempDocumentConfigurationComponent, decorators: [{
|
|
1751
1775
|
type: Component,
|
|
1752
|
-
args: [{ selector: 'valtimo-store-temp-document-configuration', standalone: false, 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 } as obs\"\n>\n <v-input\n name=\"fileName\"\n [title]=\"'fileName' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.fileName\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'fileNameTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n ></v-input>\n <v-select\n [items]=\"confidentialityLevelItems$ | async\"\n [margin]=\"true\"\n [widthInPx]=\"200\"\n name=\"confidentialityLevel\"\n [title]=\"'confidentialityLevel' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.confidentialityLevel || CONFIDENTIALITY_LEVEL_ITEMS[3]\"\n [tooltip]=\"'confidentialityLevelTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n <v-input\n name=\"title\"\n [title]=\"'inputTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.title\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'inputTitleTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n ></v-input>\n <v-input\n name=\"description\"\n [title]=\"'inputDescription' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.description\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'inputDescriptionTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n <v-input\n name=\"localDocumentLocation\"\n [title]=\"'localDocumentLocation' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.localDocumentLocation\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"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 [trim]=\"true\"\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 [trim]=\"true\"\n [tooltip]=\"'informatieobjecttypeTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n" }]
|
|
1776
|
+
args: [{ selector: 'valtimo-store-temp-document-configuration', standalone: false, 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 selectedConfidentialityLevelInputType: selectedConfidentialityLevelInputType$ | async,\n selectedLanguageInputType: selectedLanguageInputType$ | async,\n selectedStatusInputType: selectedStatusInputType$ | async,\n } as obs\"\n>\n <v-input\n name=\"fileName\"\n [title]=\"'fileName' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.fileName\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'fileNameTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n ></v-input>\n\n <v-radio\n name=\"confidentialityLevelInputType\"\n [disabled]=\"obs.disabled\"\n [title]=\"'confidentialityLevelInputType' | pluginTranslate: pluginId | async\"\n [radioValues]=\"confidentialityLevelInputTypeOptions$ | async\"\n [defaultValue]=\"obs.prefill?.confidentialityLevelInputType || 'selection'\"\n [margin]=\"true\"\n ></v-radio>\n\n <v-select\n *ngIf=\"obs.selectedConfidentialityLevelInputType === 'selection'\"\n [items]=\"confidentialityLevelItems$ | async\"\n [margin]=\"true\"\n [widthInPx]=\"200\"\n name=\"confidentialityLevel\"\n [title]=\"'confidentialityLevel' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.confidentialityLevel || CONFIDENTIALITY_LEVEL_ITEMS[3]\"\n [tooltip]=\"'confidentialityLevelTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n\n <v-input\n *ngIf=\"obs.selectedConfidentialityLevelInputType === 'text'\"\n name=\"confidentialityLevel\"\n [title]=\"'confidentialityLevel' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.confidentialityLevel\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'confidentialityLevelTextTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n placeholder=\"e.g. doc:confidentialityLevel\"\n ></v-input>\n <v-input\n name=\"title\"\n [title]=\"'inputTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.title\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'inputTitleTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n ></v-input>\n <v-input\n name=\"description\"\n [title]=\"'inputDescription' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.description\"\n [disabled]=\"obs.disabled\"\n [tooltip]=\"'inputDescriptionTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n <v-input\n name=\"localDocumentLocation\"\n [title]=\"'localDocumentLocation' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.localDocumentLocation\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"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 [trim]=\"true\"\n [tooltip]=\"'storeDocumentUrlTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n <v-radio\n name=\"languageInputType\"\n [disabled]=\"obs.disabled\"\n [title]=\"'languageInputType' | pluginTranslate: pluginId | async\"\n [radioValues]=\"languageInputTypeOptions$ | async\"\n [defaultValue]=\"obs.prefill?.languageInputType || 'selection'\"\n [margin]=\"true\"\n ></v-radio>\n\n <v-select\n *ngIf=\"obs.selectedLanguageInputType === 'selection'\"\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\n <v-input\n *ngIf=\"obs.selectedLanguageInputType === 'text'\"\n name=\"taal\"\n [title]=\"'taal' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.taal\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'taalTextTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n placeholder=\"e.g. doc:language\"\n ></v-input>\n <v-radio\n name=\"statusInputType\"\n [disabled]=\"obs.disabled\"\n [title]=\"'statusInputType' | pluginTranslate: pluginId | async\"\n [radioValues]=\"statusInputTypeOptions$ | async\"\n [defaultValue]=\"obs.prefill?.statusInputType || 'selection'\"\n [margin]=\"true\"\n ></v-radio>\n\n <v-select\n *ngIf=\"obs.selectedStatusInputType === 'selection'\"\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\n <v-input\n *ngIf=\"obs.selectedStatusInputType === 'text'\"\n name=\"status\"\n [title]=\"'status' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.status\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'statusTextTooltip' | pluginTranslate: pluginId | async\"\n [trim]=\"true\"\n placeholder=\"e.g. doc:status\"\n ></v-input>\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 [trim]=\"true\"\n [tooltip]=\"'informatieobjecttypeTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n" }]
|
|
1753
1777
|
}], ctorParameters: () => [{ type: i2.TranslateService }, { type: PluginTranslationService }], propDecorators: { save$: [{
|
|
1754
1778
|
type: Input
|
|
1755
1779
|
}], disabled$: [{
|
|
@@ -1869,11 +1893,11 @@ class DownloadDocumentConfigurationComponent {
|
|
|
1869
1893
|
this.valid.emit(valid);
|
|
1870
1894
|
}
|
|
1871
1895
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DownloadDocumentConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1872
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: DownloadDocumentConfigurationComponent, isStandalone: false, selector: "valtimo-download-document-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 } as obs\"\n>\n <v-input\n name=\"processVariableName\"\n [title]=\"'processVariableName' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariableName\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'processVariableTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n</v-form>\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: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
|
|
1896
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: DownloadDocumentConfigurationComponent, isStandalone: false, selector: "valtimo-download-document-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-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'downloadDocumentMessage' | pluginTranslate: pluginId | async }}\n</v-paragraph>\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=\"processVariableName\"\n [title]=\"'processVariableName' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariableName\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'processVariableTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n</v-form>\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: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
|
|
1873
1897
|
}
|
|
1874
1898
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DownloadDocumentConfigurationComponent, decorators: [{
|
|
1875
1899
|
type: Component,
|
|
1876
|
-
args: [{ selector: 'valtimo-download-document-configuration', standalone: false, 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 } as obs\"\n>\n <v-input\n name=\"processVariableName\"\n [title]=\"'processVariableName' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariableName\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'processVariableTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n</v-form>\n" }]
|
|
1900
|
+
args: [{ selector: 'valtimo-download-document-configuration', standalone: false, 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 [margin]=\"true\" [italic]=\"true\">\n {{ 'downloadDocumentMessage' | pluginTranslate: pluginId | async }}\n</v-paragraph>\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=\"processVariableName\"\n [title]=\"'processVariableName' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariableName\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'processVariableTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n</v-form>\n" }]
|
|
1877
1901
|
}], propDecorators: { save$: [{
|
|
1878
1902
|
type: Input
|
|
1879
1903
|
}], disabled$: [{
|
|
@@ -2176,7 +2200,8 @@ class DocumentenApiPluginModule {
|
|
|
2176
2200
|
FormModule,
|
|
2177
2201
|
InputModule,
|
|
2178
2202
|
SelectModule,
|
|
2179
|
-
ParagraphModule
|
|
2203
|
+
ParagraphModule,
|
|
2204
|
+
RadioModule], exports: [DocumentenApiConfigurationComponent,
|
|
2180
2205
|
StoreTempDocumentConfigurationComponent,
|
|
2181
2206
|
StoreUploadedDocumentConfigurationComponent,
|
|
2182
2207
|
StoreUploadedDocumentInPartsConfigurationComponent,
|
|
@@ -2189,7 +2214,8 @@ class DocumentenApiPluginModule {
|
|
|
2189
2214
|
FormModule,
|
|
2190
2215
|
InputModule,
|
|
2191
2216
|
SelectModule,
|
|
2192
|
-
ParagraphModule
|
|
2217
|
+
ParagraphModule,
|
|
2218
|
+
RadioModule] }); }
|
|
2193
2219
|
}
|
|
2194
2220
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DocumentenApiPluginModule, decorators: [{
|
|
2195
2221
|
type: NgModule,
|
|
@@ -2211,6 +2237,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
2211
2237
|
InputModule,
|
|
2212
2238
|
SelectModule,
|
|
2213
2239
|
ParagraphModule,
|
|
2240
|
+
RadioModule,
|
|
2214
2241
|
],
|
|
2215
2242
|
exports: [
|
|
2216
2243
|
DocumentenApiConfigurationComponent,
|
|
@@ -2309,6 +2336,10 @@ const documentenApiPluginSpecification = {
|
|
|
2309
2336
|
fileNameTooltip: 'De naam van het fysieke bestand waarin de inhoud van het document is vastgelegd, inclusief extensie',
|
|
2310
2337
|
confidentialityLevel: 'Vertrouwelijkheidsaanduiding',
|
|
2311
2338
|
confidentialityLevelTooltip: 'Aanduiding van de mate waarin het document voor de openbaarheid bestemd is',
|
|
2339
|
+
confidentialityLevelInputType: 'Invoertype vertrouwelijkheidsaanduiding',
|
|
2340
|
+
confidentialityLevelTextTooltip: 'Voer een waarde-resolver expressie in die tijdens runtime wordt opgelost (bijv. doc:confidentialityLevel)',
|
|
2341
|
+
selection: 'Selectie',
|
|
2342
|
+
text: 'Tekst (waarde-resolver)',
|
|
2312
2343
|
inputTitle: 'Titel',
|
|
2313
2344
|
inputTitleTooltip: 'De naam waaronder het document formeel bekend is',
|
|
2314
2345
|
inputDescription: 'Beschrijving',
|
|
@@ -2326,7 +2357,11 @@ const documentenApiPluginSpecification = {
|
|
|
2326
2357
|
storedDocumentUrl: 'Naam procesvariabele voor opslag document-URL',
|
|
2327
2358
|
storeDocumentUrlTooltip: 'Nadat het document geupload is naar de Documenten API zal de applicatie in deze procesvariabele de URL naar het document opslaan.',
|
|
2328
2359
|
taal: 'Taal',
|
|
2360
|
+
languageInputType: 'Invoertype taal',
|
|
2361
|
+
taalTextTooltip: 'Voer een waarde-resolver expressie in die tijdens runtime wordt opgelost (bijv. doc:taal)',
|
|
2329
2362
|
status: 'Status',
|
|
2363
|
+
statusInputType: 'Invoertype status',
|
|
2364
|
+
statusTextTooltip: 'Voer een waarde-resolver expressie in die tijdens runtime wordt opgelost (bijv. doc:status)',
|
|
2330
2365
|
informatieobjecttype: 'URL naar het informatieobjecttype',
|
|
2331
2366
|
informatieobjecttypeTooltip: 'Vul in dit veld de volledige URL naar een informatieobjecttype van een Zaak catalogus. Deze URL moet dus eindigen op /catalogi/api/v1/informatieobjecttypen/{uuid}',
|
|
2332
2367
|
nld: 'Nederlands',
|
|
@@ -2338,8 +2373,11 @@ const documentenApiPluginSpecification = {
|
|
|
2338
2373
|
authenticationPluginConfigurationTooltip: 'Selecteer de plugin die de authenticatie kan afhandelen. Wanneer de selectiebox leeg blijft zal de authenticatie plugin (bv. OpenZaak) eerst aangemaakt moeten worden',
|
|
2339
2374
|
apiVersion: 'Documenten API versie',
|
|
2340
2375
|
apiVersionTooltip: 'Selecteer de versie van de Documenten API',
|
|
2341
|
-
downloadDocumentMessage:
|
|
2376
|
+
downloadDocumentMessage: "Downloadt een document vanuit de Documenten API en slaat dit op als tijdelijk document. " +
|
|
2377
|
+
"Het te downloaden document wordt bepaald op basis van de procesvariabele 'documentUrl' of 'documentId'; " +
|
|
2378
|
+
"als beide aanwezig zijn heeft 'documentUrl' voorrang.",
|
|
2342
2379
|
processVariableName: 'Wat is de naam van de procesvariabele waarnaar u het document wilt downloaden?',
|
|
2380
|
+
processVariableTooltip: 'De naam van de procesvariabele waarin de referentie naar het gedownloade document wordt opgeslagen.',
|
|
2343
2381
|
linkDocumentToObjectMessage: "Koppelt het document waarvan de URL is opgeslagen in de procesvariabele 'documentUrl' aan een object. " +
|
|
2344
2382
|
"Procesvariabelen kunnen worden gebruikt met de notatie 'pv:variabelenaam'.",
|
|
2345
2383
|
linkDocumentToObjectExperimentalWarning: '⚠ Experimentele functie: deze actie maakt gebruik van de objectinformatieobjecten-API.',
|
|
@@ -2382,6 +2420,10 @@ const documentenApiPluginSpecification = {
|
|
|
2382
2420
|
fileNameTooltip: 'The name of the physical file in which the content of the document is captured, including extension',
|
|
2383
2421
|
confidentialityLevel: 'Confidentiality level',
|
|
2384
2422
|
confidentialityLevelTooltip: 'Indication of the extent to which the document is intended for public access',
|
|
2423
|
+
confidentialityLevelInputType: 'Confidentiality level input type',
|
|
2424
|
+
confidentialityLevelTextTooltip: 'Enter a value resolver expression that will be resolved at runtime (e.g. doc:confidentialityLevel)',
|
|
2425
|
+
selection: 'Selection',
|
|
2426
|
+
text: 'Text (value resolver)',
|
|
2385
2427
|
inputTitle: 'Title',
|
|
2386
2428
|
inputTitleTooltip: 'The name by which the document is formally known',
|
|
2387
2429
|
inputDescription: 'Description',
|
|
@@ -2399,7 +2441,11 @@ const documentenApiPluginSpecification = {
|
|
|
2399
2441
|
storedDocumentUrl: 'Process variable name for storing document URL',
|
|
2400
2442
|
storeDocumentUrlTooltip: 'After the document has been uploaded to the Documenten API, the application will store the URL to the document in this process variable.',
|
|
2401
2443
|
taal: 'Language',
|
|
2444
|
+
languageInputType: 'Language input type',
|
|
2445
|
+
taalTextTooltip: 'Enter a value resolver expression that will be resolved at runtime (e.g. doc:taal)',
|
|
2402
2446
|
status: 'Status',
|
|
2447
|
+
statusInputType: 'Status input type',
|
|
2448
|
+
statusTextTooltip: 'Enter a value resolver expression that will be resolved at runtime (e.g. doc:status)',
|
|
2403
2449
|
informatieobjecttype: 'URL to the informationobjecttype',
|
|
2404
2450
|
informatieobjecttypeTooltip: 'Enter the full URL to an information object type of a Zaak catalog in this field. So this URL must end with /catalogi/api/v1/informatieobjecttypen/{uuid}',
|
|
2405
2451
|
nld: 'Dutch',
|
|
@@ -2411,8 +2457,11 @@ const documentenApiPluginSpecification = {
|
|
|
2411
2457
|
authenticationPluginConfigurationTooltip: 'Select the plugin that can handle the authentication. If the selection box remains empty, the authentication plugin (e.g. OpenZaak) will have to be created first',
|
|
2412
2458
|
apiVersion: 'Documenten API version',
|
|
2413
2459
|
apiVersionTooltip: 'Select the version of the Documenten API',
|
|
2414
|
-
downloadDocumentMessage:
|
|
2460
|
+
downloadDocumentMessage: "Downloads a document from the Documenten API and stores it as a temporary document. " +
|
|
2461
|
+
"The document is identified by either the 'documentUrl' or the 'documentId' process variable; " +
|
|
2462
|
+
"when both are present 'documentUrl' takes precedence.",
|
|
2415
2463
|
processVariableName: 'What is the name of the process variable you want to download the document to?',
|
|
2464
|
+
processVariableTooltip: 'The name of the process variable in which the reference to the downloaded document is stored.',
|
|
2416
2465
|
linkDocumentToObjectMessage: "Links the document whose URL is stored in the process variable 'documentUrl' to an object. For Zaak items use the Zaken API to ensure backwards compatibility." +
|
|
2417
2466
|
"Process variables can be referenced using the notation 'pv:variableName'.",
|
|
2418
2467
|
linkDocumentToObjectExperimentalWarning: '⚠ Experimental feature: this action uses the objectinformatieobjecten API.',
|
|
@@ -7976,6 +8025,74 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
7976
8025
|
type: Output
|
|
7977
8026
|
}] } });
|
|
7978
8027
|
|
|
8028
|
+
/*
|
|
8029
|
+
* Copyright 2015-2026 Ritense BV, the Netherlands.
|
|
8030
|
+
*
|
|
8031
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
8032
|
+
* you may not use this file except in compliance with the License.
|
|
8033
|
+
* You may obtain a copy of the License at
|
|
8034
|
+
*
|
|
8035
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
8036
|
+
*
|
|
8037
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
8038
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
8039
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
8040
|
+
* See the License for the specific language governing permissions and
|
|
8041
|
+
* limitations under the License.
|
|
8042
|
+
*/
|
|
8043
|
+
class GetInformatieobjecttypeConfigurationComponent {
|
|
8044
|
+
constructor() {
|
|
8045
|
+
this.valid = new EventEmitter();
|
|
8046
|
+
this.configuration = new EventEmitter();
|
|
8047
|
+
this.formValue$ = new BehaviorSubject(null);
|
|
8048
|
+
this.valid$ = new BehaviorSubject(false);
|
|
8049
|
+
}
|
|
8050
|
+
ngOnInit() {
|
|
8051
|
+
this.openSaveSubscription();
|
|
8052
|
+
}
|
|
8053
|
+
ngOnDestroy() {
|
|
8054
|
+
this._saveSubscription?.unsubscribe();
|
|
8055
|
+
}
|
|
8056
|
+
formValueChange(formValue) {
|
|
8057
|
+
this.formValue$.next(formValue);
|
|
8058
|
+
this.handleValid(formValue);
|
|
8059
|
+
}
|
|
8060
|
+
handleValid(formValue) {
|
|
8061
|
+
const valid = !!(formValue.informatieobjecttype && formValue.processVariable);
|
|
8062
|
+
this.valid$.next(valid);
|
|
8063
|
+
this.valid.emit(valid);
|
|
8064
|
+
}
|
|
8065
|
+
openSaveSubscription() {
|
|
8066
|
+
this._saveSubscription = this.save$?.subscribe(save => {
|
|
8067
|
+
combineLatest([this.formValue$, this.valid$])
|
|
8068
|
+
.pipe(take(1))
|
|
8069
|
+
.subscribe(([formValue, valid]) => {
|
|
8070
|
+
if (valid) {
|
|
8071
|
+
this.configuration.emit(formValue);
|
|
8072
|
+
}
|
|
8073
|
+
});
|
|
8074
|
+
});
|
|
8075
|
+
}
|
|
8076
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GetInformatieobjecttypeConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8077
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: GetInformatieobjecttypeConfigurationComponent, isStandalone: false, selector: "valtimo-get-informatieobjecttype-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, ngImport: i0, template: "<!--\n ~ Copyright 2015-2026 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 [margin]=\"true\" [italic]=\"true\">\n {{ 'getInformatieobjecttypeInformation' | pluginTranslate: pluginId | async }}\n</v-paragraph>\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=\"informatieobjecttype\"\n [title]=\"'informatieobjecttype' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.informatieobjecttype\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'informatieobjecttypeTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"processVariable\"\n [title]=\"'processVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'informatieobjecttypeProcessVariableTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\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: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
|
|
8078
|
+
}
|
|
8079
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GetInformatieobjecttypeConfigurationComponent, decorators: [{
|
|
8080
|
+
type: Component,
|
|
8081
|
+
args: [{ standalone: false, selector: 'valtimo-get-informatieobjecttype-configuration', template: "<!--\n ~ Copyright 2015-2026 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 [margin]=\"true\" [italic]=\"true\">\n {{ 'getInformatieobjecttypeInformation' | pluginTranslate: pluginId | async }}\n</v-paragraph>\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=\"informatieobjecttype\"\n [title]=\"'informatieobjecttype' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.informatieobjecttype\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'informatieobjecttypeTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"processVariable\"\n [title]=\"'processVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'informatieobjecttypeProcessVariableTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n" }]
|
|
8082
|
+
}], propDecorators: { save$: [{
|
|
8083
|
+
type: Input
|
|
8084
|
+
}], disabled$: [{
|
|
8085
|
+
type: Input
|
|
8086
|
+
}], pluginId: [{
|
|
8087
|
+
type: Input
|
|
8088
|
+
}], prefillConfiguration$: [{
|
|
8089
|
+
type: Input
|
|
8090
|
+
}], valid: [{
|
|
8091
|
+
type: Output
|
|
8092
|
+
}], configuration: [{
|
|
8093
|
+
type: Output
|
|
8094
|
+
}] } });
|
|
8095
|
+
|
|
7979
8096
|
/*
|
|
7980
8097
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
7981
8098
|
*
|
|
@@ -7999,7 +8116,8 @@ class CatalogiApiPluginModule {
|
|
|
7999
8116
|
GetResultaattypeConfigurationComponent,
|
|
8000
8117
|
GetStatustypenConfigurationComponent,
|
|
8001
8118
|
GetStatustypeConfigurationComponent,
|
|
8002
|
-
GetEigenschapConfigurationComponent
|
|
8119
|
+
GetEigenschapConfigurationComponent,
|
|
8120
|
+
GetInformatieobjecttypeConfigurationComponent], imports: [CommonModule,
|
|
8003
8121
|
PluginTranslatePipeModule,
|
|
8004
8122
|
FormModule,
|
|
8005
8123
|
InputModule,
|
|
@@ -8010,7 +8128,8 @@ class CatalogiApiPluginModule {
|
|
|
8010
8128
|
GetResultaattypeConfigurationComponent,
|
|
8011
8129
|
GetStatustypeConfigurationComponent,
|
|
8012
8130
|
GetStatustypenConfigurationComponent,
|
|
8013
|
-
GetEigenschapConfigurationComponent
|
|
8131
|
+
GetEigenschapConfigurationComponent,
|
|
8132
|
+
GetInformatieobjecttypeConfigurationComponent] }); }
|
|
8014
8133
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: CatalogiApiPluginModule, imports: [CommonModule,
|
|
8015
8134
|
PluginTranslatePipeModule,
|
|
8016
8135
|
FormModule,
|
|
@@ -8029,6 +8148,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
8029
8148
|
GetStatustypenConfigurationComponent,
|
|
8030
8149
|
GetStatustypeConfigurationComponent,
|
|
8031
8150
|
GetEigenschapConfigurationComponent,
|
|
8151
|
+
GetInformatieobjecttypeConfigurationComponent,
|
|
8032
8152
|
],
|
|
8033
8153
|
imports: [
|
|
8034
8154
|
CommonModule,
|
|
@@ -8046,6 +8166,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
8046
8166
|
GetStatustypeConfigurationComponent,
|
|
8047
8167
|
GetStatustypenConfigurationComponent,
|
|
8048
8168
|
GetEigenschapConfigurationComponent,
|
|
8169
|
+
GetInformatieobjecttypeConfigurationComponent,
|
|
8049
8170
|
],
|
|
8050
8171
|
}]
|
|
8051
8172
|
}] });
|
|
@@ -8109,6 +8230,7 @@ const catalogiApiPluginSpecification = {
|
|
|
8109
8230
|
'get-statustypen': GetStatustypenConfigurationComponent,
|
|
8110
8231
|
'get-statustype': GetStatustypeConfigurationComponent,
|
|
8111
8232
|
'get-eigenschap': GetEigenschapConfigurationComponent,
|
|
8233
|
+
'get-informatieobjecttype': GetInformatieobjecttypeConfigurationComponent,
|
|
8112
8234
|
},
|
|
8113
8235
|
pluginTranslations: {
|
|
8114
8236
|
nl: {
|
|
@@ -8146,6 +8268,11 @@ const catalogiApiPluginSpecification = {
|
|
|
8146
8268
|
eigenschapProcessVariableTooltip: 'Nadat de eigenschap is opgehaald, wordt deze opgeslagen in een procesvariabele met deze naam.',
|
|
8147
8269
|
zaaktypeUrl: 'Zaaktype URL',
|
|
8148
8270
|
zaaktypeUrlTooltip: 'Specificeer hier de URL van het betreffende Zaaktype indien deze afwijkt van de aan het Dossier gekoppelde Zaak',
|
|
8271
|
+
'get-informatieobjecttype': 'Informatieobjecttype opvragen',
|
|
8272
|
+
getInformatieobjecttypeInformation: 'Het informatieobjecttype wordt opgehaald en daarna opgeslagen in een procesvariabele.',
|
|
8273
|
+
informatieobjecttype: 'Informatieobjecttype',
|
|
8274
|
+
informatieobjecttypeTooltip: 'Omschrijving van het informatieobjecttype.',
|
|
8275
|
+
informatieobjecttypeProcessVariableTooltip: 'Nadat het informatieobjecttype is opgehaald, wordt deze opgeslagen in een procesvariabele met deze naam.',
|
|
8149
8276
|
},
|
|
8150
8277
|
en: {
|
|
8151
8278
|
title: 'Catalogi API',
|
|
@@ -8182,6 +8309,11 @@ const catalogiApiPluginSpecification = {
|
|
|
8182
8309
|
eigenschapProcessVariableTooltip: 'After the eigenschap is retrieved, it is stored in a process variable with this name.',
|
|
8183
8310
|
zaaktypeUrl: 'Zaaktype URL',
|
|
8184
8311
|
zaaktypeUrlTooltip: 'Specify the URL of the relevant Zaaktype here if it differs from the Zaak linked to the Case',
|
|
8312
|
+
'get-informatieobjecttype': 'Retrieve informatieobjecttype',
|
|
8313
|
+
getInformatieobjecttypeInformation: 'The informatieobjecttype is retrieved and then stored in a process variable.',
|
|
8314
|
+
informatieobjecttype: 'Informatieobjecttype',
|
|
8315
|
+
informatieobjecttypeTooltip: 'Description of the informatieobjecttype.',
|
|
8316
|
+
informatieobjecttypeProcessVariableTooltip: 'After the informatieobjecttype is retrieved, it is stored in a process variable with this name.',
|
|
8185
8317
|
},
|
|
8186
8318
|
},
|
|
8187
8319
|
};
|
|
@@ -11228,5 +11360,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
11228
11360
|
* Generated bundle index. Do not edit.
|
|
11229
11361
|
*/
|
|
11230
11362
|
|
|
11231
|
-
export { BESLUITEN_API_CONFIGURATION_TEST_IDS, BesluitenApiConfigurationComponent, BesluitenApiPluginModule, CATALOGI_API_CONFIGURATION_TEST_IDS, CatalogiApiConfigurationComponent, CatalogiApiPluginModule, CompletePortalTaskComponent, CreateMedewerkerZaakRolComponent, CreateNatuurlijkPersoonZaakRolComponent, CreateNietNatuurlijkPersoonZaakRolComponent, CreateOrganisatorischeEenheidZaakRolComponent, CreatePersoonComponent, CreatePortalTaskComponent, CreateVestigingZaakRolComponent, CreateZaakBesluitConfigurationComponent, CreateZaakConfigurationComponent, CreateZaakNotitieConfigurationComponent, CreateZaakObjectConfigurationComponent, CreateZaakResultaatConfigurationComponent, CreateZaakeigenschapComponent, DEFAULT_PLUGIN_CONFIGURATION_TEST_IDS, DOCUMENTEN_API_CONFIGURATION_TEST_IDS, DeleteDocumentLinkConfigurationComponent, DeleteObjectComponent, DeleteZaakResultatenConfigurationComponent, DeleteZaakRolComponent, DeleteZaakeigenschapComponent, DocumentenApiConfigurationComponent, DocumentenApiPluginModule, DocumentenApiPreviewConfigurationComponent, DocumentenApiPreviewPluginModule, DownloadDocumentConfigurationComponent, EndHersteltermijnComponent, ExactPluginModule, GenerateDocumentConfigurationComponent, GetAuditTrailConfigurationComponent, GetBesluitConfigurationComponent, GetBesluittypeConfigurationComponent, GetEigenschapConfigurationComponent, GetResultaattypeConfigurationComponent, GetResultaattypenConfigurationComponent, GetStatustypeConfigurationComponent, GetStatustypenConfigurationComponent, GetTemplateNamesComponent, GetZaakInformatieobjectenComponent, GetZaakbesluitenConfigurationComponent, KLANTINTERACTIES_API_CONFIGURATION_TEST_IDS, KlantinteractiesApiConfigurationComponent, KlantinteractiesApiPluginModule, LinkDocumentToBesluitConfigurationComponent, LinkDocumentToObjectConfigurationComponent, LinkDocumentToZaakConfigurationComponent, LinkUploadedDocumentToZaakConfigurationComponent, NOTIFICATIES_API_CONFIGURATION_TEST_IDS, NotificatiesApiConfigurationComponent, NotificatiesApiPluginModule, OBJECTEN_API_CONFIGURATION_TEST_IDS, OBJECTTYPEN_API_CONFIGURATION_TEST_IDS, OBJECT_TOKEN_AUTHENTICATION_CONFIGURATION_TEST_IDS, OPEN_KLANT_TOKEN_AUTHENTICATION_CONFIGURATION_TEST_IDS, OPEN_NOTIFICATIES_CONFIGURATION_TEST_IDS, OPEN_ZAAK_CONFIGURATION_TEST_IDS, ObjectTokenAuthencationConfigurationComponent, ObjectTokenAuthenticationPluginModule, ObjectenApiConfigurationComponent, ObjectenApiPluginModule, ObjecttypenApiConfigurationComponent, ObjecttypenApiPluginModule, OpenKlantTokenAuthenticationConfigurationComponent, OpenKlantTokenAuthenticationPluginModule, OpenNotificatiesConfigurationComponent, OpenNotificatiesPluginModule, OpenZaakConfigurationComponent, OpenZaakPluginModule, PLUGINS_TOKEN, PLUGIN_CATALOG_TEST_IDS, PORTAALTAAK_CONFIGURATION_TEST_IDS, PatchZaakBesluitConfigurationComponent, PatchZaakConfigurationComponent, PatchZaakNotitieConfigurationComponent, PluginConfigurationContainerComponent, PluginConfigurationContainerModule, PluginManagementService, PluginService, PluginTranslatePipe, PluginTranslatePipeModule, PluginTranslationService, PortaaltaakConfigurationComponent, PortaaltaakPluginModule, PublishNotificatieConfigurationComponent, ReceiveNotificatieConfigurationComponent, RelateerZakenComponent, SMART_DOCUMENTS_CONFIGURATION_TEST_IDS, SetZaakStatusConfigurationComponent, SetZaakopschortingComponent, SmartDocumentsConfigurationComponent, SmartDocumentsPluginModule, StartHersteltermijnConfigurationComponent, StoreTempDocumentConfigurationComponent, StoreUploadedDocumentConfigurationComponent, StoreUploadedDocumentInPartsConfigurationComponent, UpdateZaakeigenschapComponent, VERZOEK_CONFIGURATION_TEST_IDS, VerzoekConfigurationComponent, VerzoekPluginModule, ZAKEN_API_CONFIGURATION_TEST_IDS, ZakenApiConfigurationComponent, ZakenApiPluginModule, besluitenApiPluginSpecification, catalogiApiPluginSpecification, documentenApiPluginSpecification, documentenApiPreviewPluginSpecification, exactPluginSpecification, klantinteractiesApiPluginSpecification, notificatiesApiPluginSpecification, objectTokenAuthenticationPluginSpecification, objectenApiPluginSpecification, objecttypenApiPluginSpecification, openKlantTokenAuthenticationPluginSpecification, openNotificatiesPluginSpecification, openZaakPluginSpecification, portaaltaakPluginSpecification, smartDocumentsPluginSpecification, verzoekPluginSpecification, zakenApiPluginSpecification };
|
|
11363
|
+
export { BESLUITEN_API_CONFIGURATION_TEST_IDS, BesluitenApiConfigurationComponent, BesluitenApiPluginModule, CATALOGI_API_CONFIGURATION_TEST_IDS, CatalogiApiConfigurationComponent, CatalogiApiPluginModule, CompletePortalTaskComponent, CreateMedewerkerZaakRolComponent, CreateNatuurlijkPersoonZaakRolComponent, CreateNietNatuurlijkPersoonZaakRolComponent, CreateOrganisatorischeEenheidZaakRolComponent, CreatePersoonComponent, CreatePortalTaskComponent, CreateVestigingZaakRolComponent, CreateZaakBesluitConfigurationComponent, CreateZaakConfigurationComponent, CreateZaakNotitieConfigurationComponent, CreateZaakObjectConfigurationComponent, CreateZaakResultaatConfigurationComponent, CreateZaakeigenschapComponent, DEFAULT_PLUGIN_CONFIGURATION_TEST_IDS, DOCUMENTEN_API_CONFIGURATION_TEST_IDS, DeleteDocumentLinkConfigurationComponent, DeleteObjectComponent, DeleteZaakResultatenConfigurationComponent, DeleteZaakRolComponent, DeleteZaakeigenschapComponent, DocumentenApiConfigurationComponent, DocumentenApiPluginModule, DocumentenApiPreviewConfigurationComponent, DocumentenApiPreviewPluginModule, DownloadDocumentConfigurationComponent, EndHersteltermijnComponent, ExactPluginModule, GenerateDocumentConfigurationComponent, GetAuditTrailConfigurationComponent, GetBesluitConfigurationComponent, GetBesluittypeConfigurationComponent, GetEigenschapConfigurationComponent, GetInformatieobjecttypeConfigurationComponent, GetResultaattypeConfigurationComponent, GetResultaattypenConfigurationComponent, GetStatustypeConfigurationComponent, GetStatustypenConfigurationComponent, GetTemplateNamesComponent, GetZaakInformatieobjectenComponent, GetZaakbesluitenConfigurationComponent, KLANTINTERACTIES_API_CONFIGURATION_TEST_IDS, KlantinteractiesApiConfigurationComponent, KlantinteractiesApiPluginModule, LinkDocumentToBesluitConfigurationComponent, LinkDocumentToObjectConfigurationComponent, LinkDocumentToZaakConfigurationComponent, LinkUploadedDocumentToZaakConfigurationComponent, NOTIFICATIES_API_CONFIGURATION_TEST_IDS, NotificatiesApiConfigurationComponent, NotificatiesApiPluginModule, OBJECTEN_API_CONFIGURATION_TEST_IDS, OBJECTTYPEN_API_CONFIGURATION_TEST_IDS, OBJECT_TOKEN_AUTHENTICATION_CONFIGURATION_TEST_IDS, OPEN_KLANT_TOKEN_AUTHENTICATION_CONFIGURATION_TEST_IDS, OPEN_NOTIFICATIES_CONFIGURATION_TEST_IDS, OPEN_ZAAK_CONFIGURATION_TEST_IDS, ObjectTokenAuthencationConfigurationComponent, ObjectTokenAuthenticationPluginModule, ObjectenApiConfigurationComponent, ObjectenApiPluginModule, ObjecttypenApiConfigurationComponent, ObjecttypenApiPluginModule, OpenKlantTokenAuthenticationConfigurationComponent, OpenKlantTokenAuthenticationPluginModule, OpenNotificatiesConfigurationComponent, OpenNotificatiesPluginModule, OpenZaakConfigurationComponent, OpenZaakPluginModule, PLUGINS_TOKEN, PLUGIN_CATALOG_TEST_IDS, PORTAALTAAK_CONFIGURATION_TEST_IDS, PatchZaakBesluitConfigurationComponent, PatchZaakConfigurationComponent, PatchZaakNotitieConfigurationComponent, PluginConfigurationContainerComponent, PluginConfigurationContainerModule, PluginManagementService, PluginService, PluginTranslatePipe, PluginTranslatePipeModule, PluginTranslationService, PortaaltaakConfigurationComponent, PortaaltaakPluginModule, PublishNotificatieConfigurationComponent, ReceiveNotificatieConfigurationComponent, RelateerZakenComponent, SMART_DOCUMENTS_CONFIGURATION_TEST_IDS, SetZaakStatusConfigurationComponent, SetZaakopschortingComponent, SmartDocumentsConfigurationComponent, SmartDocumentsPluginModule, StartHersteltermijnConfigurationComponent, StoreTempDocumentConfigurationComponent, StoreUploadedDocumentConfigurationComponent, StoreUploadedDocumentInPartsConfigurationComponent, UpdateZaakeigenschapComponent, VERZOEK_CONFIGURATION_TEST_IDS, VerzoekConfigurationComponent, VerzoekPluginModule, ZAKEN_API_CONFIGURATION_TEST_IDS, ZakenApiConfigurationComponent, ZakenApiPluginModule, besluitenApiPluginSpecification, catalogiApiPluginSpecification, documentenApiPluginSpecification, documentenApiPreviewPluginSpecification, exactPluginSpecification, klantinteractiesApiPluginSpecification, notificatiesApiPluginSpecification, objectTokenAuthenticationPluginSpecification, objectenApiPluginSpecification, objecttypenApiPluginSpecification, openKlantTokenAuthenticationPluginSpecification, openNotificatiesPluginSpecification, openZaakPluginSpecification, portaaltaakPluginSpecification, smartDocumentsPluginSpecification, verzoekPluginSpecification, zakenApiPluginSpecification };
|
|
11232
11364
|
//# sourceMappingURL=valtimo-plugin.mjs.map
|