@valtimo/plugin 13.5.0 → 13.7.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.
Files changed (48) hide show
  1. package/fesm2022/valtimo-plugin.mjs +682 -442
  2. package/fesm2022/valtimo-plugin.mjs.map +1 -1
  3. package/lib/plugins/besluiten-api/besluiten-api-plugin.module.d.ts +8 -6
  4. package/lib/plugins/besluiten-api/besluiten-api-plugin.module.d.ts.map +1 -1
  5. package/lib/plugins/besluiten-api/besluiten-api-plugin.specification.d.ts.map +1 -1
  6. package/lib/plugins/besluiten-api/components/get-besluit/get-besluit-configuration.component.d.ts +24 -0
  7. package/lib/plugins/besluiten-api/components/get-besluit/get-besluit-configuration.component.d.ts.map +1 -0
  8. package/lib/plugins/besluiten-api/components/patch-zaak-besluit/patch-zaak-besluit-configuration.component.d.ts +39 -0
  9. package/lib/plugins/besluiten-api/components/patch-zaak-besluit/patch-zaak-besluit-configuration.component.d.ts.map +1 -0
  10. package/lib/plugins/besluiten-api/models/config.d.ts +17 -1
  11. package/lib/plugins/besluiten-api/models/config.d.ts.map +1 -1
  12. package/lib/plugins/besluiten-api/models/patch-besluit-properties.d.ts +3 -0
  13. package/lib/plugins/besluiten-api/models/patch-besluit-properties.d.ts.map +1 -0
  14. package/lib/plugins/catalogi-api/catalogi-api-plugin.specification.d.ts.map +1 -1
  15. package/lib/plugins/catalogi-api/components/get-resultaattypen/get-resultaattypen-configuration.component.d.ts.map +1 -1
  16. package/lib/plugins/catalogi-api/components/get-statustypen/get-statustypen-configuration.component.d.ts.map +1 -1
  17. package/lib/plugins/documenten-api/documenten-api-plugin.specification.d.ts.map +1 -1
  18. package/lib/plugins/exact/exact.plugin.specification.d.ts.map +1 -1
  19. package/lib/plugins/iko/iko-plugin.specification.d.ts.map +1 -1
  20. package/lib/plugins/klantinteracties-api/klantinteracties-api-plugin.specification.d.ts.map +1 -1
  21. package/lib/plugins/notificaties-api/notificaties-api-plugin.specification.d.ts.map +1 -1
  22. package/lib/plugins/notificaties-api-authentication/open-notificaties-plugin.specification.d.ts.map +1 -1
  23. package/lib/plugins/object-token-authentication/object-token-authentication-plugin.specification.d.ts.map +1 -1
  24. package/lib/plugins/objecten-api/objecten-api-plugin.specification.d.ts.map +1 -1
  25. package/lib/plugins/objecttypen-api/objecttypen-api-plugin.specification.d.ts.map +1 -1
  26. package/lib/plugins/open-klant-token-authentication/open-klant-token-authentication-plugin.specification.d.ts.map +1 -1
  27. package/lib/plugins/open-zaak/open-zaak-plugin.specification.d.ts.map +1 -1
  28. package/lib/plugins/portaaltaak/portaaltaak-plugin.specification.d.ts.map +1 -1
  29. package/lib/plugins/smart-documents/smart-documents-plugin.specification.d.ts.map +1 -1
  30. package/lib/plugins/verzoek/verzoek-plugin.specification.d.ts.map +1 -1
  31. package/lib/plugins/zaken-api/components/create-natuurlijk-persoon-zaak-rol/create-natuurlijk-persoon-zaak-rol.component.d.ts.map +1 -1
  32. package/lib/plugins/zaken-api/components/create-niet-natuurlijk-persoon-zaak-rol/create-niet-natuurlijk-persoon-zaak-rol.component.d.ts.map +1 -1
  33. package/lib/plugins/zaken-api/components/create-zaak-object/create-zaak-object-configuration.component.d.ts.map +1 -1
  34. package/lib/plugins/zaken-api/components/delete-zaak-rol/delete-zaak-rol.component.d.ts.map +1 -1
  35. package/lib/plugins/zaken-api/components/get-zaak-informatieobjecten/get-zaak-informatieobjecten.component.d.ts +34 -0
  36. package/lib/plugins/zaken-api/components/get-zaak-informatieobjecten/get-zaak-informatieobjecten.component.d.ts.map +1 -0
  37. package/lib/plugins/zaken-api/components/get-zaakbesluiten/get-zaakbesluiten-configuration.component.d.ts +24 -0
  38. package/lib/plugins/zaken-api/components/get-zaakbesluiten/get-zaakbesluiten-configuration.component.d.ts.map +1 -0
  39. package/lib/plugins/zaken-api/components/set-zaak-status/set-zaak-status-configuration.component.d.ts +17 -2
  40. package/lib/plugins/zaken-api/components/set-zaak-status/set-zaak-status-configuration.component.d.ts.map +1 -1
  41. package/lib/plugins/zaken-api/models/config.d.ts +9 -1
  42. package/lib/plugins/zaken-api/models/config.d.ts.map +1 -1
  43. package/lib/plugins/zaken-api/zaken-api-plugin.module.d.ts +27 -24
  44. package/lib/plugins/zaken-api/zaken-api-plugin.module.d.ts.map +1 -1
  45. package/lib/plugins/zaken-api/zaken-api-plugin.specification.d.ts.map +1 -1
  46. package/package.json +1 -1
  47. package/public-api.d.ts +5 -0
  48. package/public-api.d.ts.map +1 -1
@@ -1,6 +1,6 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { InjectionToken, Inject, Injectable, Pipe, NgModule, EventEmitter, Output, Input, Component, ViewContainerRef, ViewChild, ViewChildren } from '@angular/core';
3
- import { BehaviorSubject, combineLatest, take, map as map$1, switchMap, filter, Subject, Subscription, tap as tap$1, catchError, of } from 'rxjs';
3
+ import { BehaviorSubject, combineLatest, take, map as map$1, switchMap, filter, Subject, Subscription, tap as tap$1, withLatestFrom, catchError, of } from 'rxjs';
4
4
  import { map, tap } from 'rxjs/operators';
5
5
  import * as i2 from '@ngx-translate/core';
6
6
  import { TranslateModule } from '@ngx-translate/core';
@@ -14,14 +14,16 @@ 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, RadioModule, VModalComponent, MultiInputFormModule, TooltipIconModule, ValtimoCdsModalDirective, VModalModule, DatePickerModule } from '@valtimo/components';
17
+ import { ParagraphModule, FormModule, InputModule, ValuePathSelectorPrefix, SelectModule, CarbonMultiInputModule, CARBON_THEME, CurrentCarbonTheme, InputLabelModule, RadioModule, VModalComponent, MultiInputFormModule, TooltipIconModule, ValtimoCdsModalDirective, VModalModule, DatePickerModule as DatePickerModule$1 } from '@valtimo/components';
18
18
  import { validate } from 'uuid';
19
- import * as i4 from 'carbon-components-angular';
20
- import { ToggleModule, LoadingModule, ButtonModule, DialogModule, IconModule, DatePickerInputModule, ModalModule, InputModule as InputModule$1 } from 'carbon-components-angular';
19
+ import * as i1$3 from 'carbon-components-angular';
20
+ import { ToggleModule, LoadingModule, ButtonModule, DialogModule, IconModule, DatePickerInputModule, DatePickerModule, NotificationModule, TimePickerModule, ModalModule, InputModule as InputModule$1 } from 'carbon-components-angular';
21
+ import flatpickr from 'flatpickr';
21
22
  import { Add16, TrashCan16, DataTable16, Checkmark16 } from '@carbon/icons';
22
- import * as i1$3 from '@valtimo/resource';
23
- import * as i1$4 from '@valtimo/document';
24
- import * as i4$1 from '@valtimo/process';
23
+ import * as i1$4 from '@valtimo/resource';
24
+ import * as i1$5 from '@valtimo/document';
25
+ import { FormsModule, ReactiveFormsModule } from '@angular/forms';
26
+ import * as i4 from '@valtimo/process';
25
27
  import { AuthGuardService } from '@valtimo/security';
26
28
 
27
29
  /*
@@ -860,16 +862,6 @@ const openZaakPluginSpecification = {
860
862
  clientSecret: 'Secret',
861
863
  clientSecretTooltip: 'Enter the secret associated with the clientId above',
862
864
  },
863
- de: {
864
- title: 'OpenZaak',
865
- description: 'OpenZaak ist eine produktionstaugliche API-Plattform, die den API-Standard für fallorientiertes Arbeiten (die ZGW-APIs) implementiert.',
866
- configurationTitle: 'Konfigurationsname',
867
- configurationTitleTooltip: 'Unter diesem Namen wird das Plugin im Rest der Anwendung erkennbar sein',
868
- clientId: 'Client ID',
869
- clientIdTooltip: 'Geben Sie hier die clientId ein, die unter OpenZaak-Verwaltung konfiguriert ist (siehe API-Berechtigungen > Anwendungen). Diese clientId muss die richtigen Berechtigungen für die erforderliche Funktionalität haben',
870
- clientSecret: 'Secret',
871
- clientSecretTooltip: 'Geben Sie das mit der obigen clientId verknüpfte Geheimnis ein',
872
- },
873
865
  },
874
866
  };
875
867
 
@@ -1023,14 +1015,6 @@ const objectTokenAuthenticationPluginSpecification = {
1023
1015
  token: 'Token',
1024
1016
  tokenTooltip: 'The token is a key that grants permissions to access specific object types and objects',
1025
1017
  },
1026
- de: {
1027
- title: 'Object Token-Authentifizierung',
1028
- description: 'Authentifizierung mit Token zur Verwendung durch die Objecten API und die Objecttypen API.',
1029
- configurationTitle: 'Konfigurationsname',
1030
- configurationTitleTooltip: 'An diesem Namen wird das Plugin im Rest der Anwendung erkennbar sein',
1031
- token: 'Token',
1032
- tokenTooltip: 'Das Token ist ein Schlüssel, der Berechtigungen zum Anzeigen bestimmter Objekttypen und Objekte erteilt',
1033
- },
1034
1018
  },
1035
1019
  };
1036
1020
 
@@ -1415,29 +1399,6 @@ const smartDocumentsPluginSpecification = {
1415
1399
  key: 'Key',
1416
1400
  value: 'Value',
1417
1401
  },
1418
- de: {
1419
- title: 'SmartDocuments',
1420
- description: 'Automatisieren Sie Dokumente mit intelligenten Templates.',
1421
- 'generate-document': 'Dokument generieren',
1422
- 'get-template-names': 'Get Template Names',
1423
- configurationTitle: 'Konfigurationsname',
1424
- configurationTitleTooltip: 'An diesem Namen wird das Plugin im Rest der Anwendung erkennbar sein',
1425
- url: 'SmartDocuments URL',
1426
- username: 'Nutzername',
1427
- password: 'Passwort',
1428
- templateGroup: 'Template gruppe',
1429
- templateName: 'Template name',
1430
- templateGroupName: 'Template gruppe name',
1431
- resultingTemplateNameListProcessVariableName: 'Name der Prozessvariable, um die Liste zu speichern',
1432
- format: 'Dokumentformat',
1433
- templateData: 'Templatedaten',
1434
- templateDataTooltip: 'Die rechte Wertespalte unterstützt auch die Verwendung von Prozessvariablen wie pv: und doc:',
1435
- resultingDocumentProcessVariableName: 'Prozessvariablenname zum Speichern des Dokuments',
1436
- resultingDocumentProcessVariableNameTooltip: 'Der Ort des generierten Dokuments wird in einer Prozessvariablen gespeichert. Diese Prozessvariable wird verwendet, um in einer anderen BPMN-Aufgabe auf das Dokument zuzugreifen.',
1437
- generateDocumentWarning: 'Diese Aktion erzeugt eine temporäre Datei. Die Verarbeitung muss durch eine andere Aktion erfolgen.',
1438
- key: 'Schlüssel',
1439
- value: 'Wert',
1440
- },
1441
1402
  },
1442
1403
  };
1443
1404
 
@@ -2087,57 +2048,6 @@ const documentenApiPluginSpecification = {
2087
2048
  downloadDocumentMessage: 'Downloading a document form the Documenten API does not require any configuration.',
2088
2049
  processVariableName: 'What is the name of the process variable you want to download the document to?',
2089
2050
  },
2090
- de: {
2091
- title: 'Documenten API',
2092
- description: 'API zum Speichern und Zugreifen auf Dokumente und zugehörige Metadaten.',
2093
- 'store-temp-document': 'Dokument speichern',
2094
- 'store-uploaded-document': 'Hochgeladenes Dokument speichern',
2095
- 'store-uploaded-document-in-parts': 'Hochgeladenes Dokument in Teilen speichern',
2096
- 'download-document': 'Dokument herunterladen',
2097
- storeUploadedDocumentMessage: 'Das Speichern eines hochgeladenen Dokuments erfordert keine Konfiguration.',
2098
- storeUploadedDocumentInPartsMessage: 'Das Speichern eines hochgeladenen Dokuments in Teilen erfordert keine Konfiguration.',
2099
- configurationTitle: 'Konfigurationsname',
2100
- configurationTitleTooltip: 'Hier können Sie einen Namen für das Plugin eingeben. Dieser Name wird verwendet, um das Plugin im Rest der Anwendung zu erkennen',
2101
- url: 'Documenten API URL',
2102
- urlTooltip: 'Dieses Feld muss die URL zur REST API von Documenten enthalten, daher sollte diese URL mit enden /documenten/api/v1/',
2103
- bronorganisatie: 'Organisation RSIN',
2104
- bronorganisatieTooltip: 'Geben Sie hier den RAIN der für die Dokumente verantwortlichen Organisation ein. Der RAIN ist eine niederländische Identifikationsnummer für juristische Personen und Personengesellschaften',
2105
- fileName: 'Dateiname',
2106
- fileNameTooltip: 'Der Name der physischen Datei, in der der Inhalt des Dokuments erfasst wird, einschließlich Erweiterung',
2107
- confidentialityLevel: 'Vertraulichkeitshinweis',
2108
- confidentialityLevelTooltip: 'Angabe, inwieweit das Dokument für die Öffentlichkeit bestimmt ist',
2109
- inputTitle: 'Titel',
2110
- inputTitleTooltip: 'Der Name, unter dem das Dokument offiziell bekannt ist',
2111
- inputDescription: 'Beschreibung',
2112
- inputDescriptionTooltip: 'Eine allgemeine Beschreibung des Inhalts des Dokuments',
2113
- openbaar: 'Öffentlichkeit',
2114
- beperkt_openbaar: 'Eingeschränkt_öffentlich',
2115
- intern: 'Intern',
2116
- zaakvertrouwelijk: 'Geschäftlich vertraulich',
2117
- vertrouwelijk: 'Vertraulich',
2118
- confidentieel: 'Geheim',
2119
- geheim: 'Geheimnis',
2120
- zeer_geheim: 'Sehr geheim',
2121
- localDocumentLocation: 'Name Prozessvariable mit Dokument',
2122
- localDocumentLocationTooltip: 'Geben Sie die Prozessvariable ein, die auf den Ort zeigt, an dem das Dokument lokal gespeichert ist',
2123
- storedDocumentUrl: 'Name der Prozessvariablen zum Speichern der Dokument-URL',
2124
- storeDocumentUrlTooltip: 'Nachdem das Dokument in die Dokumenten-API hochgeladen wurde, speichert die Anwendung die URL zum Dokument in dieser Prozessvariablen.',
2125
- taal: 'Sprache',
2126
- status: 'Status',
2127
- informatieobjecttype: 'URL zum Informationsobjekttyp',
2128
- informatieobjecttypeTooltip: 'Geben Sie in diesem Feld die vollständige URL zu einem Informationsobjekttyp eines Case Katalogs. Diese URL muss daher mit enden /catalogi/api/v1/informatieobjecttypen/{uuid}',
2129
- nld: 'Niederländisch',
2130
- in_bewerking: 'In Bearbeitung',
2131
- ter_vaststelling: 'Zu bestimmen',
2132
- definitief: 'Endgültig',
2133
- gearchiveerd: 'Archiviert',
2134
- authenticationPluginConfiguration: 'Authentifizierungs-Plugin-Konfiguration',
2135
- authenticationPluginConfigurationTooltip: 'Wählen Sie das Plugin aus, das die Authentifizierung verarbeiten kann. Bleibt das Auswahlfeld leer, muss zunächst das Authentifizierungs-Plugin (z. B. OpenZaak) erstellt werden',
2136
- apiVersion: 'Documenten-API-Version',
2137
- apiVersionTooltip: 'Wählen Sie die Version der Documenten-API aus',
2138
- downloadDocumentMessage: 'Das Herunterladen eines Dokuments aus der Documenten-API erfordert keine Konfiguration.',
2139
- processVariableName: 'Wie lautet der Name der Prozessvariablen, in die Sie das Dokument herunterladen möchten?',
2140
- },
2141
2051
  },
2142
2052
  };
2143
2053
 
@@ -2318,14 +2228,6 @@ const ikoPluginSpecification = {
2318
2228
  configurationTitle: 'Configuration name',
2319
2229
  configurationTitleTooltip: 'The name of the current plugin configuration. Under this name, the configuration can be found in the rest of the application.',
2320
2230
  },
2321
- de: {
2322
- title: 'IKO',
2323
- url: 'IKO URL',
2324
- urlTooltip: 'Die URL zur REST API von IKO',
2325
- description: 'Integraal Klant & Objectbeeld.',
2326
- configurationTitle: 'Konfigurationsname',
2327
- configurationTitleTooltip: 'Der Name der aktuellen Plugin-Konfiguration. Unter diesem Namen ist die Konfiguration im Rest der Anwendung zu finden.',
2328
- },
2329
2231
  },
2330
2232
  };
2331
2233
 
@@ -2618,24 +2520,6 @@ const klantinteractiesApiPluginSpecification = {
2618
2520
  processVariableName: 'Process Variable Name for Storing Person URL',
2619
2521
  processVariableNameTooltip: "The person's URL is stored in a process variable. This variable can be used to log further interactions with the person in another BPMN task.",
2620
2522
  },
2621
- de: {
2622
- title: 'Klantinteracties API',
2623
- url: 'Klantinteracties API-URL',
2624
- urlTooltip: 'Die URL der REST-API für Klantinteracties.',
2625
- description: 'Mit den Spezifikationen der Klantinteracties-API können Kommunen Kundeninteraktionen einheitlich erfassen, speichern und bereitstellen.',
2626
- configurationTitle: 'Konfigurationsname',
2627
- configurationTitleTooltip: 'Unter diesem Namen ist das Plug-in in der gesamten Anwendung erkennbar.',
2628
- authenticationPluginConfiguration: 'Konfiguration des Authentifizierungs-Plug-ins',
2629
- 'create-persoon': 'Person erstellen',
2630
- bsn: 'BSN',
2631
- bsnTooltip: 'Bürger-Service-Nummer.',
2632
- voorletters: 'Initialen',
2633
- voornaam: 'Vorname',
2634
- voorvoegselAchternaam: 'Namensvorsatz Nachname',
2635
- achternaam: 'Nachname',
2636
- processVariableName: 'Name der Prozessvariablen zur Speicherung der Personen-URL',
2637
- processVariableNameTooltip: 'Die URL der Person wird in einer Prozessvariablen gespeichert. Diese Variable kann verwendet werden, um weitere Interaktionen mit der Person in einer anderen BPMN-Aufgabe zu erfassen.',
2638
- },
2639
2523
  },
2640
2524
  };
2641
2525
 
@@ -2836,15 +2720,6 @@ const objecttypenApiPluginSpecification = {
2836
2720
  configurationTitleTooltip: 'With this name the plugin will be recognizable in the rest of the application',
2837
2721
  authenticationPluginConfiguration: 'Authentication plugin configuration',
2838
2722
  },
2839
- de: {
2840
- title: 'Objecttypen API',
2841
- url: 'Objecttypen API URL',
2842
- urlTooltip: 'Dieses Feld muss die URL zur REST API von Objecttypen enthalten',
2843
- description: 'Mit den Spezifikationen der Other Objects Registration API (Objekttypen) können Kommunen Objekte eindeutig registrieren, speichern und darauf zugreifen.',
2844
- configurationTitle: 'Konfigurationsname',
2845
- configurationTitleTooltip: 'An diesem Namen wird das Plugin im Rest der Anwendung erkennbar sein',
2846
- authenticationPluginConfiguration: 'Authentifizierungs-Plugin-Konfiguration',
2847
- },
2848
2723
  },
2849
2724
  };
2850
2725
 
@@ -2992,14 +2867,6 @@ const openKlantTokenAuthenticationPluginSpecification = {
2992
2867
  token: 'Token',
2993
2868
  tokenTooltip: 'The token is a key that grants permissions to access specific open-klant data',
2994
2869
  },
2995
- de: {
2996
- title: 'OpenKlant Token-Authentifizierung',
2997
- description: 'Authentifizierung mit Token zur Verwendung durch OpenKlant.',
2998
- configurationTitle: 'Konfigurationsname',
2999
- configurationTitleTooltip: 'An diesem Namen wird das Plugin im Rest der Anwendung erkennbar sein',
3000
- token: 'Token',
3001
- tokenTooltip: 'Das Token ist ein Schlüssel, der Berechtigungen zum Anzeigen bestimmter open-klant data erteilt',
3002
- },
3003
2870
  },
3004
2871
  };
3005
2872
 
@@ -3290,18 +3157,21 @@ class SetZaakStatusConfigurationComponent {
3290
3157
  set pluginId(value) {
3291
3158
  this.pluginId$.next(value);
3292
3159
  }
3293
- constructor(zakenApiService, pluginTranslatePipe) {
3160
+ constructor(zakenApiService, pluginTranslatePipe, cdsThemeService) {
3294
3161
  this.zakenApiService = zakenApiService;
3295
3162
  this.pluginTranslatePipe = pluginTranslatePipe;
3163
+ this.cdsThemeService = cdsThemeService;
3296
3164
  this.valid = new EventEmitter();
3297
3165
  this.configuration = new EventEmitter();
3298
3166
  this.clearStatusSelection$ = new Subject();
3299
3167
  this.loading$ = new BehaviorSubject(true);
3300
3168
  this.selectedInputOption$ = new BehaviorSubject('selection');
3169
+ this.datumStatusGezetSelectedInputOption$ = new BehaviorSubject('now');
3301
3170
  this.pluginId$ = new BehaviorSubject('');
3302
3171
  this.formValue$ = new BehaviorSubject(null);
3303
3172
  this.valid$ = new BehaviorSubject(false);
3304
3173
  this.statusTypeSelectItems$ = new BehaviorSubject([]);
3174
+ this.datePickerInvalid$ = new BehaviorSubject(false);
3305
3175
  this.inputTypeOptions$ = this.pluginId$.pipe(filter(pluginId => !!pluginId), switchMap(pluginId => combineLatest([
3306
3176
  this.pluginTranslatePipe.transform('selection', pluginId),
3307
3177
  this.pluginTranslatePipe.transform('text', pluginId),
@@ -3309,22 +3179,112 @@ class SetZaakStatusConfigurationComponent {
3309
3179
  { value: 'selection', title: selectionTranslation },
3310
3180
  { value: 'text', title: textTranslation },
3311
3181
  ]));
3182
+ this.datePickerInputTypeOptions$ = this.pluginId$.pipe(filter(pluginId => !!pluginId), switchMap(pluginId => combineLatest([
3183
+ this.pluginTranslatePipe.transform('now', pluginId),
3184
+ this.pluginTranslatePipe.transform('selection', pluginId),
3185
+ this.pluginTranslatePipe.transform('text', pluginId),
3186
+ ])), map(([nowTranslation, selectionTranslation, textTranslation]) => [
3187
+ { value: 'now', title: nowTranslation },
3188
+ { value: 'selection', title: selectionTranslation },
3189
+ { value: 'text', title: textTranslation },
3190
+ ]));
3191
+ this.theme$ = this.cdsThemeService.currentTheme$.pipe(map((theme) => theme === CurrentCarbonTheme.G10 ? CARBON_THEME.WHITE : CARBON_THEME.G100));
3312
3192
  this._subscriptions = new Subscription();
3193
+ this.selectedDate = null;
3194
+ this.selectedTime = null;
3313
3195
  }
3314
3196
  ngOnInit() {
3315
3197
  this.initContextHandling();
3316
3198
  this.initSaveHandling();
3199
+ this.prefillToday();
3317
3200
  }
3318
3201
  ngOnDestroy() {
3319
3202
  this._subscriptions.unsubscribe();
3320
3203
  }
3321
3204
  formValueChange(formValue) {
3322
- this.formValue$.next(formValue);
3323
- this.handleValid(formValue);
3324
- if (formValue.inputTypeZaakStatusToggle) {
3325
- this.selectedInputOption$.next(formValue.inputTypeZaakStatusToggle);
3205
+ const currentFormValue = this.formValue$.value ?? {};
3206
+ const updatedFormValue = {
3207
+ ...currentFormValue,
3208
+ ...formValue,
3209
+ };
3210
+ this.formValue$.next(updatedFormValue);
3211
+ this.handleValid(updatedFormValue);
3212
+ if (updatedFormValue.inputTypeZaakStatusToggle) {
3213
+ this.selectedInputOption$.next(updatedFormValue.inputTypeZaakStatusToggle);
3214
+ }
3215
+ if (updatedFormValue.inputDatumStatusGezetToggle) {
3216
+ this.datumStatusGezetSelectedInputOption$.next(updatedFormValue.inputDatumStatusGezetToggle);
3217
+ }
3218
+ if (updatedFormValue.inputDatumStatusGezetToggle === 'now') {
3219
+ this.selectedDate = null;
3220
+ this.selectedTime = null;
3326
3221
  }
3327
3222
  }
3223
+ onDateSelected(event) {
3224
+ const date = Array.isArray(event) && event[0];
3225
+ if (!date)
3226
+ return;
3227
+ this.selectedDate = date.toISOString();
3228
+ this.updateDatumStatusGezet();
3229
+ }
3230
+ onTimeSelected(event) {
3231
+ this.selectedTime = event;
3232
+ this.updateDatumStatusGezet();
3233
+ }
3234
+ updateDatumStatusGezet() {
3235
+ if (!this.selectedDate && !this.selectedTime) {
3236
+ return;
3237
+ }
3238
+ let hoursStr;
3239
+ let minutesStr;
3240
+ let secondsStr;
3241
+ try {
3242
+ [hoursStr, minutesStr = '00', secondsStr = '00'] = this.selectedTime.split(':');
3243
+ }
3244
+ catch (error) {
3245
+ [hoursStr, minutesStr = '00', secondsStr = '00'] = ['00', '00'];
3246
+ }
3247
+ const date = new Date(this.selectedDate);
3248
+ const year = date.getFullYear();
3249
+ const month = String(date.getMonth() + 1).padStart(2, '0');
3250
+ const day = String(date.getDate()).padStart(2, '0');
3251
+ const hh = hoursStr.padStart(2, '0');
3252
+ const mm = minutesStr.padStart(2, '0');
3253
+ const ss = secondsStr.padStart(2, '0');
3254
+ const isoWithoutMs = `${year}-${month}-${day}T${hh}:${mm}:${ss}Z`;
3255
+ const currentFormValue = this.formValue$.value ?? {};
3256
+ const updatedFormValue = {
3257
+ ...currentFormValue,
3258
+ datumStatusGezet: isoWithoutMs,
3259
+ };
3260
+ this.formValueChange(updatedFormValue);
3261
+ }
3262
+ prefillToday() {
3263
+ this._subscriptions.add(this.prefillConfiguration$.subscribe(config => {
3264
+ let baseDate;
3265
+ if (config?.datumStatusGezet !== null) {
3266
+ try {
3267
+ baseDate = flatpickr.formatDate(!!config?.datumStatusGezet ? new Date(config.datumStatusGezet) : new Date(), 'Z');
3268
+ this.datumStatusGezetSelectedInputOption$.next('selection');
3269
+ }
3270
+ catch (error) {
3271
+ baseDate = config.datumStatusGezet;
3272
+ this.datumStatusGezetSelectedInputOption$.next('text');
3273
+ }
3274
+ }
3275
+ else {
3276
+ baseDate = null;
3277
+ this.datumStatusGezetSelectedInputOption$.next('now');
3278
+ }
3279
+ this.selectedDate = baseDate;
3280
+ this.selectedTime = this.formatTime(baseDate);
3281
+ }));
3282
+ this.updateDatumStatusGezet();
3283
+ }
3284
+ formatTime(date) {
3285
+ const [hours, minutes, seconds] = date.split('T')[1].split(':');
3286
+ return `${hours}:${minutes}:${seconds.split('.')[0]}`;
3287
+ }
3328
3288
  oneSelectItem(selectItems) {
3329
3289
  return Array.isArray(selectItems) && selectItems.length === 1;
3330
3290
  }
@@ -3359,27 +3319,70 @@ class SetZaakStatusConfigurationComponent {
3359
3319
  .pipe(take(1))
3360
3320
  .subscribe(([formValue, valid]) => {
3361
3321
  if (valid) {
3322
+ if (formValue.inputDatumStatusGezetToggle == 'now') {
3323
+ formValue.datumStatusGezet = null;
3324
+ }
3362
3325
  this.configuration.emit({
3363
3326
  statustoelichting: formValue.statustoelichting,
3364
3327
  statustypeUrl: formValue.statustypeUrl,
3328
+ datumStatusGezet: formValue.datumStatusGezet,
3365
3329
  });
3366
3330
  }
3367
3331
  });
3368
3332
  });
3369
3333
  this._subscriptions.add(saveSub);
3370
3334
  }
3335
+ isValidDatumStatusGezet(value) {
3336
+ if (['text', 'now'].includes(this.datumStatusGezetSelectedInputOption$.getValue())) {
3337
+ return true;
3338
+ }
3339
+ if (!value) {
3340
+ return false;
3341
+ }
3342
+ const trimmed = value.trim();
3343
+ // Required format: YYYY-MM-DDTHH:mm:ssZ
3344
+ const regex = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z$/;
3345
+ if (!regex.test(trimmed)) {
3346
+ return false;
3347
+ }
3348
+ const date = new Date(trimmed);
3349
+ return !isNaN(date.getTime());
3350
+ }
3351
+ isDateNotInFuture(value) {
3352
+ if (['text', 'now'].includes(this.datumStatusGezetSelectedInputOption$.getValue())) {
3353
+ return true;
3354
+ }
3355
+ if (!value) {
3356
+ return false;
3357
+ }
3358
+ const date = new Date(value);
3359
+ const now = new Date();
3360
+ const isDateNotInFuture = date.getTime() <= now.getTime();
3361
+ this.datePickerInvalid$.next(!isDateNotInFuture);
3362
+ return isDateNotInFuture;
3363
+ }
3364
+ hasEnteredDateText(value) {
3365
+ if (this.datumStatusGezetSelectedInputOption$.getValue() !== 'text') {
3366
+ return true;
3367
+ }
3368
+ return !value === false;
3369
+ }
3371
3370
  handleValid(formValue) {
3372
- const valid = !!formValue.statustypeUrl;
3371
+ const hasStatusType = !!formValue.statustypeUrl;
3372
+ const hasValidDatumStatusGezet = this.isValidDatumStatusGezet(formValue.datumStatusGezet);
3373
+ const dateIsNotInFuture = this.isDateNotInFuture(formValue.datumStatusGezet);
3374
+ const hasEnteredDateText = this.hasEnteredDateText(formValue.datumStatusGezet);
3375
+ const valid = hasStatusType && hasValidDatumStatusGezet && dateIsNotInFuture && hasEnteredDateText;
3373
3376
  this.valid$.next(valid);
3374
3377
  this.valid.emit(valid);
3375
3378
  }
3376
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SetZaakStatusConfigurationComponent, deps: [{ token: ZakenApiService }, { token: PluginTranslatePipe }], target: i0.ɵɵFactoryTarget.Component }); }
3377
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: SetZaakStatusConfigurationComponent, isStandalone: false, selector: "valtimo-set-zaak-status-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 statusTypeItems: statusTypeSelectItems$ | async,\n context: context$ | async,\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-input\n name=\"statustoelichting\"\n [title]=\"'statustoelichting' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.statustoelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'statustoelichtingTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeZaakStatusToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeZaakStatusToggle' | 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=\"statustypeUrl\"\n [title]=\"'statustypeUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.statustypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'statustypeUrlTooltip' | 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.statusTypeItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"statustypeUrl\"\n [title]=\"'statustypeUrlSelect' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'text' || !obs.statusTypeItems\"\n [defaultSelectionId]=\"obs.prefill?.statustypeUrl\"\n [required]=\"true\"\n [loading]=\"!obs.statusTypeItems\"\n [tooltip]=\"'statustypeUrlSelectTooltip' | 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", "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: i4.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" }] }); }
3379
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SetZaakStatusConfigurationComponent, deps: [{ token: ZakenApiService }, { token: PluginTranslatePipe }, { token: i2$2.CdsThemeService }], target: i0.ɵɵFactoryTarget.Component }); }
3380
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: SetZaakStatusConfigurationComponent, isStandalone: false, selector: "valtimo-set-zaak-status-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 datumStatusGezetSelectedInputOption: datumStatusGezetSelectedInputOption$ | async,\n loading: loading$ | async,\n statusTypeItems: statusTypeSelectItems$ | async,\n context: context$ | async,\n datePickerInvalid: datePickerInvalid$ | async\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-input\n name=\"statustoelichting\"\n [title]=\"'statustoelichting' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.statustoelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'statustoelichtingTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n [placeholder]=\"'statustoelichting' | pluginTranslate: obs.pluginId | async\"\n >\n </v-input>\n\n <v-radio\n name=\"inputDatumStatusGezetToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputDatumStatusGezetToggle' | pluginTranslate: obs.pluginId | async\"\n [radioValues]=\"datePickerInputTypeOptions$ | async\"\n [defaultValue]=\"obs.datumStatusGezetSelectedInputOption\"\n [margin]=\"true\"\n ></v-radio>\n\n <div class=\"date-time-row\" *ngIf=\"obs.datumStatusGezetSelectedInputOption === 'selection'\">\n <cds-date-picker\n [attr.data-carbon-theme]=\"theme$ | async\"\n [label]=\"'logging.search.afterTimestamp' | translate\"\n placeholder=\"DD-MM-YYYY\"\n [dateFormat]=\"'d-m-Y'\"\n [value]=\"[selectedDate]\"\n [invalid]=\"obs.datePickerInvalid\"\n [invalidText]=\"'datumStatusGezetInvalidText' | pluginTranslate: obs.pluginId | async\"\n (valueChange)=\"onDateSelected($event)\"\n ></cds-date-picker>\n\n <cds-timepicker\n class=\"timepicker\"\n [attr.data-carbon-theme]=\"theme$ | async\"\n [value]=\"selectedTime\"\n [invalid]=\"obs.datePickerInvalid\"\n (valueChange)=\"onTimeSelected($event)\"\n ></cds-timepicker>\n </div>\n\n <v-input\n *ngIf=\"obs.datumStatusGezetSelectedInputOption === 'text'\"\n name=\"datumStatusGezet\"\n [title]=\"'datumStatusGezet' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.datumStatusGezet\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'datumStatusGezetTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n ></v-input>\n\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeZaakStatusToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeZaakStatusToggle' | 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=\"statustypeUrl\"\n [title]=\"'statustypeUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.statustypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'statustypeUrlTooltip' | 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.statusTypeItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"statustypeUrl\"\n [title]=\"'statustypeUrlSelect' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'text' || !obs.statusTypeItems\"\n [defaultSelectionId]=\"obs.prefill?.statustypeUrl\"\n [required]=\"true\"\n [loading]=\"!obs.statusTypeItems\"\n [tooltip]=\"'statustypeUrlSelectTooltip' | 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}.date-time-row{display:flex;align-items:flex-start;gap:16px;margin-bottom:34px}.timepicker{margin-top:24px!important;height:48px!important}.date-time-row cds-date-picker,.date-time-row cds-timepicker{display:block}\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", "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: "component", type: i1$3.DatePicker, selector: "cds-date-picker, ibm-date-picker", inputs: ["range", "dateFormat", "language", "label", "helperText", "rangeHelperText", "rangeLabel", "placeholder", "ariaLabel", "inputPattern", "id", "value", "theme", "disabled", "readonly", "invalid", "invalidText", "warn", "warnText", "size", "rangeInvalid", "rangeInvalidText", "rangeWarn", "rangeWarnText", "skeleton", "plugins", "flatpickrOptions"], outputs: ["valueChange", "onClose"] }, { kind: "component", type: i1$3.TimePicker, selector: "cds-timepicker, ibm-timepicker", inputs: ["invalid", "invalidText", "label", "hideLabel", "placeholder", "pattern", "id", "disabled", "value", "maxLength", "skeleton", "theme", "size"], outputs: ["valueChange"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }, { kind: "pipe", type: i2.TranslatePipe, name: "translate" }] }); }
3378
3381
  }
3379
3382
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SetZaakStatusConfigurationComponent, decorators: [{
3380
3383
  type: Component,
3381
- args: [{ standalone: false, selector: 'valtimo-set-zaak-status-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 statusTypeItems: statusTypeSelectItems$ | async,\n context: context$ | async,\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-input\n name=\"statustoelichting\"\n [title]=\"'statustoelichting' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.statustoelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'statustoelichtingTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeZaakStatusToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeZaakStatusToggle' | 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=\"statustypeUrl\"\n [title]=\"'statustypeUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.statustypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'statustypeUrlTooltip' | 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.statusTypeItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"statustypeUrl\"\n [title]=\"'statustypeUrlSelect' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'text' || !obs.statusTypeItems\"\n [defaultSelectionId]=\"obs.prefill?.statustypeUrl\"\n [required]=\"true\"\n [loading]=\"!obs.statusTypeItems\"\n [tooltip]=\"'statustypeUrlSelectTooltip' | 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"] }]
3382
- }], ctorParameters: () => [{ type: ZakenApiService }, { type: PluginTranslatePipe }], propDecorators: { save$: [{
3384
+ args: [{ standalone: false, selector: 'valtimo-set-zaak-status-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 datumStatusGezetSelectedInputOption: datumStatusGezetSelectedInputOption$ | async,\n loading: loading$ | async,\n statusTypeItems: statusTypeSelectItems$ | async,\n context: context$ | async,\n datePickerInvalid: datePickerInvalid$ | async\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-input\n name=\"statustoelichting\"\n [title]=\"'statustoelichting' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.statustoelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'statustoelichtingTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n [placeholder]=\"'statustoelichting' | pluginTranslate: obs.pluginId | async\"\n >\n </v-input>\n\n <v-radio\n name=\"inputDatumStatusGezetToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputDatumStatusGezetToggle' | pluginTranslate: obs.pluginId | async\"\n [radioValues]=\"datePickerInputTypeOptions$ | async\"\n [defaultValue]=\"obs.datumStatusGezetSelectedInputOption\"\n [margin]=\"true\"\n ></v-radio>\n\n <div class=\"date-time-row\" *ngIf=\"obs.datumStatusGezetSelectedInputOption === 'selection'\">\n <cds-date-picker\n [attr.data-carbon-theme]=\"theme$ | async\"\n [label]=\"'logging.search.afterTimestamp' | translate\"\n placeholder=\"DD-MM-YYYY\"\n [dateFormat]=\"'d-m-Y'\"\n [value]=\"[selectedDate]\"\n [invalid]=\"obs.datePickerInvalid\"\n [invalidText]=\"'datumStatusGezetInvalidText' | pluginTranslate: obs.pluginId | async\"\n (valueChange)=\"onDateSelected($event)\"\n ></cds-date-picker>\n\n <cds-timepicker\n class=\"timepicker\"\n [attr.data-carbon-theme]=\"theme$ | async\"\n [value]=\"selectedTime\"\n [invalid]=\"obs.datePickerInvalid\"\n (valueChange)=\"onTimeSelected($event)\"\n ></cds-timepicker>\n </div>\n\n <v-input\n *ngIf=\"obs.datumStatusGezetSelectedInputOption === 'text'\"\n name=\"datumStatusGezet\"\n [title]=\"'datumStatusGezet' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.datumStatusGezet\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'datumStatusGezetTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n ></v-input>\n\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeZaakStatusToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeZaakStatusToggle' | 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=\"statustypeUrl\"\n [title]=\"'statustypeUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.statustypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'statustypeUrlTooltip' | 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.statusTypeItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"statustypeUrl\"\n [title]=\"'statustypeUrlSelect' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'text' || !obs.statusTypeItems\"\n [defaultSelectionId]=\"obs.prefill?.statustypeUrl\"\n [required]=\"true\"\n [loading]=\"!obs.statusTypeItems\"\n [tooltip]=\"'statustypeUrlSelectTooltip' | 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}.date-time-row{display:flex;align-items:flex-start;gap:16px;margin-bottom:34px}.timepicker{margin-top:24px!important;height:48px!important}.date-time-row cds-date-picker,.date-time-row cds-timepicker{display:block}\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"] }]
3385
+ }], ctorParameters: () => [{ type: ZakenApiService }, { type: PluginTranslatePipe }, { type: i2$2.CdsThemeService }], propDecorators: { save$: [{
3383
3386
  type: Input
3384
3387
  }], disabled$: [{
3385
3388
  type: Input
@@ -3498,7 +3501,7 @@ class CreateZaakResultaatConfigurationComponent {
3498
3501
  }));
3499
3502
  }
3500
3503
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakResultaatConfigurationComponent, deps: [{ token: ZakenApiService }, { token: PluginTranslatePipe }], target: i0.ɵɵFactoryTarget.Component }); }
3501
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", 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.resultaatTypeItem\"\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", "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: i4.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" }] }); }
3504
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", 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.resultaatTypeItem\"\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", "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" }] }); }
3502
3505
  }
3503
3506
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakResultaatConfigurationComponent, decorators: [{
3504
3507
  type: Component,
@@ -3591,11 +3594,11 @@ class CreateMedewerkerZaakRolComponent {
3591
3594
  });
3592
3595
  }
3593
3596
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateMedewerkerZaakRolComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3594
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: CreateMedewerkerZaakRolComponent, isStandalone: false, selector: "valtimo-create-medewerker-zaak-rol-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=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"identificatie\"\n [title]=\"'identificatie' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.identificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'identificatieMedewerkerTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"achternaam\"\n [title]=\"'achternaam' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.achternaam\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'achternaamTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"voorletters\"\n [title]=\"'voorletters' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.voorletters\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'voorlettersTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"voorvoegselAchternaam\"\n [title]=\"'voorvoegselAchternaam' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.voorvoegselAchternaam\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'voorvoegselAchternaamTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"afwijkendeNaamBetrokkene\"\n [title]=\"'afwijkendeNaamBetrokkene' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.afwijkendeNaamBetrokkene\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'afwijkendeNaamBetrokkeneTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-radio\n name=\"indicatieMachtiging\"\n [title]=\"'indicatieMachtiging' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.indicatieMachtiging\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'indicatieMachtigingTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n [radioValues]=\"INDICATIE_MACHTIGING_VALUES\"\n >\n </v-radio>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'resultProcessVariable' | 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.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" }] }); }
3597
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: CreateMedewerkerZaakRolComponent, isStandalone: false, selector: "valtimo-create-medewerker-zaak-rol-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=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [required]=\"true\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"identificatie\"\n [title]=\"'identificatie' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'identificatieMedewerkerTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.identificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"achternaam\"\n [title]=\"'achternaam' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'achternaamTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.achternaam\"\n [required]=\"true\"\n [disabled]=\"obs.disabled\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"voorletters\"\n [title]=\"'voorletters' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.voorletters\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'voorlettersTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"voorvoegselAchternaam\"\n [title]=\"'voorvoegselAchternaam' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.voorvoegselAchternaam\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'voorvoegselAchternaamTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"afwijkendeNaamBetrokkene\"\n [title]=\"'afwijkendeNaamBetrokkene' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'afwijkendeNaamBetrokkeneTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.afwijkendeNaamBetrokkene\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-radio\n name=\"indicatieMachtiging\"\n [title]=\"'indicatieMachtiging' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'indicatieMachtigingTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.indicatieMachtiging\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [fullWidth]=\"true\"\n [radioValues]=\"INDICATIE_MACHTIGING_VALUES\"\n >\n </v-radio>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\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.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" }] }); }
3595
3598
  }
3596
3599
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateMedewerkerZaakRolComponent, decorators: [{
3597
3600
  type: Component,
3598
- args: [{ standalone: false, selector: 'valtimo-create-medewerker-zaak-rol-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 } as obs\"\n>\n <v-input\n name=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"identificatie\"\n [title]=\"'identificatie' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.identificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'identificatieMedewerkerTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"achternaam\"\n [title]=\"'achternaam' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.achternaam\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'achternaamTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"voorletters\"\n [title]=\"'voorletters' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.voorletters\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'voorlettersTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"voorvoegselAchternaam\"\n [title]=\"'voorvoegselAchternaam' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.voorvoegselAchternaam\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'voorvoegselAchternaamTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"afwijkendeNaamBetrokkene\"\n [title]=\"'afwijkendeNaamBetrokkene' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.afwijkendeNaamBetrokkene\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'afwijkendeNaamBetrokkeneTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-radio\n name=\"indicatieMachtiging\"\n [title]=\"'indicatieMachtiging' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.indicatieMachtiging\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'indicatieMachtigingTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n [radioValues]=\"INDICATIE_MACHTIGING_VALUES\"\n >\n </v-radio>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n" }]
3601
+ args: [{ standalone: false, selector: 'valtimo-create-medewerker-zaak-rol-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 } as obs\"\n>\n <v-input\n name=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [required]=\"true\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"identificatie\"\n [title]=\"'identificatie' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'identificatieMedewerkerTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.identificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"achternaam\"\n [title]=\"'achternaam' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'achternaamTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.achternaam\"\n [required]=\"true\"\n [disabled]=\"obs.disabled\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"voorletters\"\n [title]=\"'voorletters' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.voorletters\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'voorlettersTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"voorvoegselAchternaam\"\n [title]=\"'voorvoegselAchternaam' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.voorvoegselAchternaam\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'voorvoegselAchternaamTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"afwijkendeNaamBetrokkene\"\n [title]=\"'afwijkendeNaamBetrokkene' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'afwijkendeNaamBetrokkeneTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.afwijkendeNaamBetrokkene\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-radio\n name=\"indicatieMachtiging\"\n [title]=\"'indicatieMachtiging' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'indicatieMachtigingTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.indicatieMachtiging\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [fullWidth]=\"true\"\n [radioValues]=\"INDICATIE_MACHTIGING_VALUES\"\n >\n </v-radio>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n" }]
3599
3602
  }], propDecorators: { save$: [{
3600
3603
  type: Input
3601
3604
  }], disabled$: [{
@@ -3659,11 +3662,11 @@ class CreateNatuurlijkPersoonZaakRolComponent {
3659
3662
  });
3660
3663
  }
3661
3664
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateNatuurlijkPersoonZaakRolComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3662
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: CreateNatuurlijkPersoonZaakRolComponent, isStandalone: false, selector: "valtimo-create-natuurlijk-persoon-zaak-rol-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=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"inpBsn\"\n [title]=\"'inpBsn' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.inpBsn\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'inpBsnTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"anpIdentificatie\"\n [title]=\"'anpIdentificatie' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.anpIdentificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'anpIdentificatieTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"inpA_nummer\"\n [title]=\"'inpA_nummer' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.inpA_nummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'inpA_nummerTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'resultProcessVariable' | 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: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
3665
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: CreateNatuurlijkPersoonZaakRolComponent, isStandalone: false, selector: "valtimo-create-natuurlijk-persoon-zaak-rol-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=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"inpBsn\"\n [title]=\"'inpBsn' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'inpBsnTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.inpBsn\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"anpIdentificatie\"\n [title]=\"'anpIdentificatie' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'anpIdentificatieTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.anpIdentificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"inpA_nummer\"\n [title]=\"'inpA_nummer' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'inpA_nummerTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.inpA_nummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\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: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
3663
3666
  }
3664
3667
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateNatuurlijkPersoonZaakRolComponent, decorators: [{
3665
3668
  type: Component,
3666
- args: [{ standalone: false, selector: 'valtimo-create-natuurlijk-persoon-zaak-rol-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 } as obs\"\n>\n <v-input\n name=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"inpBsn\"\n [title]=\"'inpBsn' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.inpBsn\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'inpBsnTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"anpIdentificatie\"\n [title]=\"'anpIdentificatie' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.anpIdentificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'anpIdentificatieTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"inpA_nummer\"\n [title]=\"'inpA_nummer' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.inpA_nummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'inpA_nummerTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n" }]
3669
+ args: [{ standalone: false, selector: 'valtimo-create-natuurlijk-persoon-zaak-rol-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 } as obs\"\n>\n <v-input\n name=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"inpBsn\"\n [title]=\"'inpBsn' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'inpBsnTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.inpBsn\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"anpIdentificatie\"\n [title]=\"'anpIdentificatie' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'anpIdentificatieTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.anpIdentificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"inpA_nummer\"\n [title]=\"'inpA_nummer' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'inpA_nummerTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.inpA_nummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n" }]
3667
3670
  }], propDecorators: { save$: [{
3668
3671
  type: Input
3669
3672
  }], disabled$: [{
@@ -3711,7 +3714,11 @@ class CreateNietNatuurlijkPersoonZaakRolComponent {
3711
3714
  this.handleValid(formValue);
3712
3715
  }
3713
3716
  handleValid(formValue) {
3714
- const valid = !!(formValue.rolToelichting && formValue.roltypeUrl);
3717
+ const valid = !!(formValue.rolToelichting &&
3718
+ formValue.roltypeUrl && (formValue.innNnpId ||
3719
+ formValue.annIdentificatie ||
3720
+ formValue.kvkNummer ||
3721
+ formValue.vestigingsNummer));
3715
3722
  this._valid$.next(valid);
3716
3723
  this.valid.emit(valid);
3717
3724
  }
@@ -3727,11 +3734,11 @@ class CreateNietNatuurlijkPersoonZaakRolComponent {
3727
3734
  });
3728
3735
  }
3729
3736
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateNietNatuurlijkPersoonZaakRolComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3730
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: CreateNietNatuurlijkPersoonZaakRolComponent, isStandalone: false, selector: "valtimo-create-niet-natuurlijk-persoon-zaak-rol-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=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"innNnpId\"\n [title]=\"'innNnpId' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.innNnpId\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'innNnpIdTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"annIdentificatie\"\n [title]=\"'annIdentificatie' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.annIdentificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'annIdentificatieTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"kvkNummer\"\n [title]=\"'kvkNummer' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.kvkNummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'kvkNummerTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"vestigingsNummer\"\n [title]=\"'vestigingsNummer' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.vestigingsNummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'vestigingsNummerTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'resultProcessVariable' | 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: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
3737
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: CreateNietNatuurlijkPersoonZaakRolComponent, isStandalone: false, selector: "valtimo-create-niet-natuurlijk-persoon-zaak-rol-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<ng-container\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n } as obs\"\n>\n <div class=\"notification--margin\">\n <cds-inline-notification\n [notificationObj]=\"{\n type: 'info',\n message: 'createZaakrolNietNatuurlijkPersoonIdentifierFieldsInformation' | pluginTranslate: pluginId | async,\n showClose: false,\n lowContrast: true\n }\"\n >\n </cds-inline-notification>\n </div>\n\n <v-form (valueChange)=\"formValueChange($event)\">\n <v-input\n name=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"innNnpId\"\n [title]=\"'innNnpId' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'innNnpIdTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.innNnpId\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"annIdentificatie\"\n [title]=\"'annIdentificatie' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'annIdentificatieTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.annIdentificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"kvkNummer\"\n [title]=\"'kvkNummer' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'kvkNummerTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.kvkNummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"vestigingsNummer\"\n [title]=\"'vestigingsNummer' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'vestigingsNummerTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.vestigingsNummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n </v-form>\n</ng-container>\n", styles: [".notification--margin{margin-block-end:var(--v-spacing-block-xl)}\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: i1$3.Notification, selector: "cds-notification, cds-inline-notification, ibm-notification, ibm-inline-notification", inputs: ["notificationObj"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
3731
3738
  }
3732
3739
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateNietNatuurlijkPersoonZaakRolComponent, decorators: [{
3733
3740
  type: Component,
3734
- args: [{ standalone: false, selector: 'valtimo-create-niet-natuurlijk-persoon-zaak-rol-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 } as obs\"\n>\n <v-input\n name=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"innNnpId\"\n [title]=\"'innNnpId' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.innNnpId\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'innNnpIdTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"annIdentificatie\"\n [title]=\"'annIdentificatie' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.annIdentificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'annIdentificatieTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"kvkNummer\"\n [title]=\"'kvkNummer' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.kvkNummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'kvkNummerTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"vestigingsNummer\"\n [title]=\"'vestigingsNummer' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.vestigingsNummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'vestigingsNummerTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n" }]
3741
+ args: [{ standalone: false, selector: 'valtimo-create-niet-natuurlijk-persoon-zaak-rol-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<ng-container\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n } as obs\"\n>\n <div class=\"notification--margin\">\n <cds-inline-notification\n [notificationObj]=\"{\n type: 'info',\n message: 'createZaakrolNietNatuurlijkPersoonIdentifierFieldsInformation' | pluginTranslate: pluginId | async,\n showClose: false,\n lowContrast: true\n }\"\n >\n </cds-inline-notification>\n </div>\n\n <v-form (valueChange)=\"formValueChange($event)\">\n <v-input\n name=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"innNnpId\"\n [title]=\"'innNnpId' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'innNnpIdTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.innNnpId\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"annIdentificatie\"\n [title]=\"'annIdentificatie' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'annIdentificatieTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.annIdentificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"kvkNummer\"\n [title]=\"'kvkNummer' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'kvkNummerTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.kvkNummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"vestigingsNummer\"\n [title]=\"'vestigingsNummer' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'vestigingsNummerTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.vestigingsNummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n </v-form>\n</ng-container>\n", styles: [".notification--margin{margin-block-end:var(--v-spacing-block-xl)}\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"] }]
3735
3742
  }], propDecorators: { save$: [{
3736
3743
  type: Input
3737
3744
  }], disabled$: [{
@@ -3800,11 +3807,11 @@ class CreateOrganisatorischeEenheidZaakRolComponent {
3800
3807
  });
3801
3808
  }
3802
3809
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateOrganisatorischeEenheidZaakRolComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3803
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: CreateOrganisatorischeEenheidZaakRolComponent, isStandalone: false, selector: "valtimo-create-organisatorische-eenheid-zaak-rol-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=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"identificatie\"\n [title]=\"'identificatie' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.identificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'identificatieOrganisatorischeEenheidTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"naam\"\n [title]=\"'naam' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.naam\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'naamTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"isGehuisvestIn\"\n [title]=\"'isGehuisvestIn' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.isGehuisvestIn\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'isGehuisvestInTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"afwijkendeNaamBetrokkene\"\n [title]=\"'afwijkendeNaamBetrokkene' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.afwijkendeNaamBetrokkene\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'afwijkendeNaamBetrokkeneTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-radio\n name=\"indicatieMachtiging\"\n [title]=\"'indicatieMachtiging' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.indicatieMachtiging\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'indicatieMachtigingTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n [radioValues]=\"INDICATIE_MACHTIGING_VALUES\"\n >\n </v-radio>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'resultProcessVariable' | 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.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" }] }); }
3810
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: CreateOrganisatorischeEenheidZaakRolComponent, isStandalone: false, selector: "valtimo-create-organisatorische-eenheid-zaak-rol-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=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"identificatie\"\n [title]=\"'identificatie' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'identificatieOrganisatorischeEenheidTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.identificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"naam\"\n [title]=\"'naam' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'naamTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.naam\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"isGehuisvestIn\"\n [title]=\"'isGehuisvestIn' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'isGehuisvestInTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.isGehuisvestIn\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"afwijkendeNaamBetrokkene\"\n [title]=\"'afwijkendeNaamBetrokkene' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'afwijkendeNaamBetrokkeneTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.afwijkendeNaamBetrokkene\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-radio\n name=\"indicatieMachtiging\"\n [title]=\"'indicatieMachtiging' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'indicatieMachtigingTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.indicatieMachtiging\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [fullWidth]=\"true\"\n [radioValues]=\"INDICATIE_MACHTIGING_VALUES\"\n >\n </v-radio>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\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.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" }] }); }
3804
3811
  }
3805
3812
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateOrganisatorischeEenheidZaakRolComponent, decorators: [{
3806
3813
  type: Component,
3807
- args: [{ standalone: false, selector: 'valtimo-create-organisatorische-eenheid-zaak-rol-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 } as obs\"\n>\n <v-input\n name=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"identificatie\"\n [title]=\"'identificatie' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.identificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'identificatieOrganisatorischeEenheidTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"naam\"\n [title]=\"'naam' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.naam\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'naamTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"isGehuisvestIn\"\n [title]=\"'isGehuisvestIn' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.isGehuisvestIn\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'isGehuisvestInTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"afwijkendeNaamBetrokkene\"\n [title]=\"'afwijkendeNaamBetrokkene' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.afwijkendeNaamBetrokkene\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'afwijkendeNaamBetrokkeneTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-radio\n name=\"indicatieMachtiging\"\n [title]=\"'indicatieMachtiging' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.indicatieMachtiging\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'indicatieMachtigingTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n [radioValues]=\"INDICATIE_MACHTIGING_VALUES\"\n >\n </v-radio>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n" }]
3814
+ args: [{ standalone: false, selector: 'valtimo-create-organisatorische-eenheid-zaak-rol-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 } as obs\"\n>\n <v-input\n name=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"identificatie\"\n [title]=\"'identificatie' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'identificatieOrganisatorischeEenheidTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.identificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"naam\"\n [title]=\"'naam' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'naamTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.naam\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"isGehuisvestIn\"\n [title]=\"'isGehuisvestIn' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'isGehuisvestInTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.isGehuisvestIn\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"afwijkendeNaamBetrokkene\"\n [title]=\"'afwijkendeNaamBetrokkene' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'afwijkendeNaamBetrokkeneTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.afwijkendeNaamBetrokkene\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-radio\n name=\"indicatieMachtiging\"\n [title]=\"'indicatieMachtiging' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'indicatieMachtigingTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.indicatieMachtiging\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [fullWidth]=\"true\"\n [radioValues]=\"INDICATIE_MACHTIGING_VALUES\"\n >\n </v-radio>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n" }]
3808
3815
  }], propDecorators: { save$: [{
3809
3816
  type: Input
3810
3817
  }], disabled$: [{
@@ -3872,11 +3879,11 @@ class CreateVestigingZaakRolComponent {
3872
3879
  });
3873
3880
  }
3874
3881
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateVestigingZaakRolComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3875
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: CreateVestigingZaakRolComponent, isStandalone: false, selector: "valtimo-create-vestiging-zaak-rol-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=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"vestigingsNummer\"\n [title]=\"'vestigingsNummer' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.vestigingsNummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'vestigingsNummerTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"handelsnaam\"\n [title]=\"'handelsnaam' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.handelsnaam\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'handelsnaamTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"kvkNummer\"\n [title]=\"'kvkNummer' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.kvkNummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'kvkNummerTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'resultProcessVariable' | 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: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
3882
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: CreateVestigingZaakRolComponent, isStandalone: false, selector: "valtimo-create-vestiging-zaak-rol-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=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"vestigingsNummer\"\n [title]=\"'vestigingsNummer' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'vestigingsNummerTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.vestigingsNummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"handelsnaam\"\n [title]=\"'handelsnaam' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'handelsnaamTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.handelsnaam\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"kvkNummer\"\n [title]=\"'kvkNummer' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'kvkNummerTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.kvkNummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\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: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
3876
3883
  }
3877
3884
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateVestigingZaakRolComponent, decorators: [{
3878
3885
  type: Component,
3879
- args: [{ standalone: false, selector: 'valtimo-create-vestiging-zaak-rol-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 } as obs\"\n>\n <v-input\n name=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"vestigingsNummer\"\n [title]=\"'vestigingsNummer' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.vestigingsNummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'vestigingsNummerTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"handelsnaam\"\n [title]=\"'handelsnaam' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.handelsnaam\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'handelsnaamTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"kvkNummer\"\n [title]=\"'kvkNummer' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.kvkNummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'kvkNummerTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n" }]
3886
+ args: [{ standalone: false, selector: 'valtimo-create-vestiging-zaak-rol-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 } as obs\"\n>\n <v-input\n name=\"roltypeUrl\"\n [title]=\"'roltypeUrl' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'roltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.roltypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"rolToelichting\"\n [title]=\"'rolToelichting' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'rolToelichtingTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.rolToelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"vestigingsNummer\"\n [title]=\"'vestigingsNummer' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'vestigingsNummerTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.vestigingsNummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"handelsnaam\"\n [title]=\"'handelsnaam' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'handelsnaamTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.handelsnaam\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"kvkNummer\"\n [title]=\"'kvkNummer' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'kvkNummerTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.kvkNummer\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [margin]=\"true\"\n [trim]=\"true\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n" }]
3880
3887
  }], propDecorators: { save$: [{
3881
3888
  type: Input
3882
3889
  }], disabled$: [{
@@ -3924,7 +3931,7 @@ class DeleteZaakRolComponent {
3924
3931
  this.handleValid(formValue);
3925
3932
  }
3926
3933
  handleValid(formValue) {
3927
- const valid = !!(formValue.rolUuid);
3934
+ const valid = !!formValue.rolUuid;
3928
3935
  this._valid$.next(valid);
3929
3936
  this.valid.emit(valid);
3930
3937
  }
@@ -3940,11 +3947,11 @@ class DeleteZaakRolComponent {
3940
3947
  });
3941
3948
  }
3942
3949
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DeleteZaakRolComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
3943
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: DeleteZaakRolComponent, isStandalone: false, selector: "valtimo-delete-zaak-rol-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=\"rolUuid\"\n [title]=\"'rolUuid' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.rolUuid\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'rolUuidTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\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" }] }); }
3950
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: DeleteZaakRolComponent, isStandalone: false, selector: "valtimo-delete-zaak-rol-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=\"rolUuid\"\n [title]=\"'rolUuid' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.rolUuid\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'rolUuidTooltip' | 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: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
3944
3951
  }
3945
3952
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DeleteZaakRolComponent, decorators: [{
3946
3953
  type: Component,
3947
- args: [{ standalone: false, selector: 'valtimo-delete-zaak-rol-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 } as obs\"\n>\n <v-input\n name=\"rolUuid\"\n [title]=\"'rolUuid' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.rolUuid\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'rolUuidTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n</v-form>\n" }]
3954
+ args: [{ standalone: false, selector: 'valtimo-delete-zaak-rol-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 } as obs\"\n>\n <v-input\n name=\"rolUuid\"\n [title]=\"'rolUuid' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.rolUuid\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'rolUuidTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n" }]
3948
3955
  }], propDecorators: { save$: [{
3949
3956
  type: Input
3950
3957
  }], disabled$: [{
@@ -3983,7 +3990,7 @@ const CreateZaakExtraPropertyOptions = [
3983
3990
  'paymentIndication',
3984
3991
  'caseGeometryType',
3985
3992
  'caseGeometryCoordinates',
3986
- 'mainCase'
3993
+ 'mainCase',
3987
3994
  ];
3988
3995
 
3989
3996
  const GEOMETRY_TYPES = [
@@ -4166,13 +4173,13 @@ class CreateZaakConfigurationComponent {
4166
4173
  });
4167
4174
  });
4168
4175
  }
4169
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakConfigurationComponent, deps: [{ token: i1$3.OpenZaakService }, { token: i2$2.ModalService }, { token: PluginTranslatePipe }, { token: i4.IconService }], target: i0.ɵɵFactoryTarget.Component }); }
4170
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.15", type: CreateZaakConfigurationComponent, isStandalone: false, selector: "valtimo-create-zaak-configuration", inputs: { context$: "context$", disabled$: "disabled$", pluginId: "pluginId", save$: "save$", 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<ng-container\n *ngIf=\"{\n context: context$ | async,\n disabled: disabled$ | async,\n loading: loading$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n selectedInputOption: selectedInputOption$ | async,\n zaakTypeSelectItems: zaakTypeItems$ | async,\n } as obs\"\n>\n @if (obs.loading) {\n <cds-loading></cds-loading>\n } @else {\n <v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'createZaakInformation' | pluginTranslate: pluginId | async }}\n </v-paragraph>\n\n <v-form (valueChange)=\"onFormValueChanged($event)\">\n <v-input\n name=\"rsin\"\n [title]=\"'rsin' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'rsinTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.rsin\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [margin]=\"true\"\n [widthPx]=\"350\"\n >\n </v-input>\n\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeZaakTypeToggle\"\n [title]=\"'inputTypeZaakTypeToggle' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"selectedInputOption$ | async\"\n [radioValues]=\"inputTypeOptions$ | async\"\n [disabled]=\"obs.disabled\"\n [margin]=\"true\"\n >\n </v-radio>\n\n <v-input\n *ngIf=\"obs.selectedInputOption === 'text'\"\n name=\"zaaktypeUrl\"\n [title]=\"'zaakTypeUrl' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'zaakTypeTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.zaaktypeUrl\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'selection'\"\n [required]=\"true\"\n [trim]=\"true\"\n [margin]=\"true\"\n [widthPx]=\"700\"\n >\n </v-input>\n\n <v-select\n *ngIf=\"obs.selectedInputOption === 'selection'\"\n name=\"zaaktypeUrl\"\n [title]=\"'zaakType' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'zaakTypeSelectTooltip' | pluginTranslate: pluginId | async\"\n [required]=\"true\"\n [items]=\"obs.zaakTypeSelectItems\"\n [loading]=\"!obs.zaakTypeSelectItems\"\n [disabled]=\"\n obs.disabled ||\n obs.selectedInputOption === 'text' ||\n oneSelectItem(obs.zaakTypeSelectItems)\n \"\n [margin]=\"true\"\n [defaultSelectionId]=\"\n (selectItemsIncludeId(obs.zaakTypeSelectItems, obs.prefill?.zaaktypeUrl) &&\n obs.prefill?.zaaktypeUrl) ||\n (oneSelectItem(obs.zaakTypeSelectItems) && obs.zaakTypeSelectItems[0].id)\n \"\n [widthInPx]=\"350\"\n ></v-select>\n\n <div class=\"property-row\">\n <div class=\"property-input-col\">\n <button\n cdsButton=\"primary\"\n class=\"add-button\"\n [size]=\"'md'\"\n [cdsOverflowMenu]=\"addCasePropertyList\"\n [customPane]=\"true\"\n placement=\"bottom,top\"\n >\n {{ 'addZaakProperty' | pluginTranslate: pluginId | async }}\n\n <svg class=\"cds--btn__icon\" cdsIcon=\"add\" size=\"16\"></svg>\n </button>\n </div>\n </div>\n\n @for (property of propertyList; track property) {\n <div class=\"property-row\">\n <div class=\"property-input-col\">\n @switch (property) {\n @case (CASE_GEOMETRY_TYPE) {\n <v-input\n [name]=\"CASE_GEOMETRY_TYPE\"\n [title]=\"\n translationKeyFor(CASE_GEOMETRY_TYPE) | pluginTranslate: pluginId | async\n \"\n [defaultValue]=\"prefillValueFor(CASE_GEOMETRY_TYPE, obs.prefill)\"\n (valueChange)=\"onPropertyChanged(CASE_GEOMETRY_TYPE, $event)\"\n [required]=\"true\"\n [margin]=\"true\"\n [presetOptions]=\"geometryTypes\"\n />\n }\n @case (CASE_GEOMETRY_COORDINATES) {\n <v-input\n [name]=\"CASE_GEOMETRY_COORDINATES\"\n [title]=\"\n translationKeyFor(CASE_GEOMETRY_COORDINATES) | pluginTranslate: pluginId | async\n \"\n [tooltip]=\"translationKeyFor(`${CASE_GEOMETRY_COORDINATES}Tooltip`) | pluginTranslate: pluginId | async\"\n [defaultValue]=\"prefillValueFor(CASE_GEOMETRY_COORDINATES, obs.prefill)\"\n (valueChange)=\"onPropertyChanged(CASE_GEOMETRY_COORDINATES, $event)\"\n [required]=\"true\"\n [margin]=\"true\"\n />\n }\n @default {\n <v-input\n [name]=\"property\"\n [title]=\"translationKeyFor(property) | pluginTranslate: pluginId | async\"\n [tooltip]=\"\n property.includes('Date')\n ? ('dateformatTooltip' | pluginTranslate: pluginId | async)\n : null\n \"\n [defaultValue]=\"prefillValueFor(property, obs.prefill)\"\n (valueChange)=\"onPropertyChanged(property, $event)\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [presetOptions]=\"\n property === PAYMENT_INDICATION_TYPE ? paymentIndicationTypes : []\n \"\n />\n }\n }\n </div>\n\n <div class=\"property-delete-col\">\n @if (property !== CASE_GEOMETRY_COORDINATES) {\n <button class=\"btn btn-space delete-button\" (click)=\"removeProperty(property)\">\n <svg class=\"cds--btn__icon\" cdsIcon=\"trash-can\" size=\"16\"></svg>\n </button>\n }\n </div>\n </div>\n }\n </v-form>\n }\n</ng-container>\n\n<ng-template #addCasePropertyList>\n @for (propertyOption of propertyOptions; track propertyOption) {\n @if (propertyOption !== CASE_GEOMETRY_COORDINATES && !hasPropertyBeenAdded(propertyOption)) {\n <cds-overflow-menu-option (click)=\"addProperty(propertyOption)\">\n {{ translationKeyForPropertyList(propertyOption) | pluginTranslate: pluginId | async }}\n </cds-overflow-menu-option>\n }\n }\n</ng-template>\n", styles: [".loading-container{display:flex;flex-direction:row;justify-content:center;height:100%;width:100%;align-items:center}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}.property-input{display:flex}.property-input v-input,.property-input cds-date-picker-input{flex-grow:1}.property-input button{height:46px;width:46px;margin:16px}div.property-row{width:100%;display:grid;grid-template-columns:92% 8%}div.property-row>*{box-sizing:border-box;min-width:0}div.property-delete-col{margin-left:auto}\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", "dataTestId"], outputs: ["selectedChange"] }, { kind: "component", type: i2$2.ParagraphComponent, selector: "v-paragraph", inputs: ["center", "fullWidth", "margin", "italic", "loading", "dataTestId"] }, { 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: i4.Loading, selector: "cds-loading, ibm-loading", inputs: ["title", "isActive", "size", "overlay"] }, { kind: "directive", type: i4.Button, selector: "[cdsButton], [ibmButton]", inputs: ["ibmButton", "cdsButton", "size", "skeleton", "iconOnly", "isExpressive"] }, { kind: "directive", type: i4.OverflowMenuDirective, selector: "[cdsOverflowMenu], [ibmOverflowMenu]", inputs: ["ibmOverflowMenu", "cdsOverflowMenu", "flip", "offset", "wrapperClass", "customPane"], exportAs: ["overflowMenu"] }, { kind: "component", type: i4.OverflowMenuOption, selector: "cds-overflow-menu-option, ibm-overflow-menu-option", inputs: ["divider", "type", "disabled", "href", "target", "innerClass"], outputs: ["selected"] }, { kind: "directive", type: i4.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" }] }); }
4176
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakConfigurationComponent, deps: [{ token: i1$4.OpenZaakService }, { token: i2$2.ModalService }, { token: PluginTranslatePipe }, { token: i1$3.IconService }], target: i0.ɵɵFactoryTarget.Component }); }
4177
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.15", type: CreateZaakConfigurationComponent, isStandalone: false, selector: "valtimo-create-zaak-configuration", inputs: { context$: "context$", disabled$: "disabled$", pluginId: "pluginId", save$: "save$", 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<ng-container\n *ngIf=\"{\n context: context$ | async,\n disabled: disabled$ | async,\n loading: loading$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n selectedInputOption: selectedInputOption$ | async,\n zaakTypeSelectItems: zaakTypeItems$ | async,\n } as obs\"\n>\n @if (obs.loading) {\n <cds-loading></cds-loading>\n } @else {\n <v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'createZaakInformation' | pluginTranslate: pluginId | async }}\n </v-paragraph>\n\n <v-form (valueChange)=\"onFormValueChanged($event)\">\n <v-input\n name=\"rsin\"\n [title]=\"'rsin' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'rsinTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.rsin\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [margin]=\"true\"\n [widthPx]=\"350\"\n >\n </v-input>\n\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeZaakTypeToggle\"\n [title]=\"'inputTypeZaakTypeToggle' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"selectedInputOption$ | async\"\n [radioValues]=\"inputTypeOptions$ | async\"\n [disabled]=\"obs.disabled\"\n [margin]=\"true\"\n >\n </v-radio>\n\n <v-input\n *ngIf=\"obs.selectedInputOption === 'text'\"\n name=\"zaaktypeUrl\"\n [title]=\"'zaakTypeUrl' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'zaakTypeTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.zaaktypeUrl\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'selection'\"\n [required]=\"true\"\n [trim]=\"true\"\n [margin]=\"true\"\n [widthPx]=\"700\"\n >\n </v-input>\n\n <v-select\n *ngIf=\"obs.selectedInputOption === 'selection'\"\n name=\"zaaktypeUrl\"\n [title]=\"'zaakType' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'zaakTypeSelectTooltip' | pluginTranslate: pluginId | async\"\n [required]=\"true\"\n [items]=\"obs.zaakTypeSelectItems\"\n [loading]=\"!obs.zaakTypeSelectItems\"\n [disabled]=\"\n obs.disabled ||\n obs.selectedInputOption === 'text' ||\n oneSelectItem(obs.zaakTypeSelectItems)\n \"\n [margin]=\"true\"\n [defaultSelectionId]=\"\n (selectItemsIncludeId(obs.zaakTypeSelectItems, obs.prefill?.zaaktypeUrl) &&\n obs.prefill?.zaaktypeUrl) ||\n (oneSelectItem(obs.zaakTypeSelectItems) && obs.zaakTypeSelectItems[0].id)\n \"\n [widthInPx]=\"350\"\n ></v-select>\n\n <div class=\"property-row\">\n <div class=\"property-input-col\">\n <button\n cdsButton=\"primary\"\n class=\"add-button\"\n [size]=\"'md'\"\n [cdsOverflowMenu]=\"addCasePropertyList\"\n [customPane]=\"true\"\n placement=\"bottom,top\"\n >\n {{ 'addZaakProperty' | pluginTranslate: pluginId | async }}\n\n <svg class=\"cds--btn__icon\" cdsIcon=\"add\" size=\"16\"></svg>\n </button>\n </div>\n </div>\n\n @for (property of propertyList; track property) {\n <div class=\"property-row\">\n <div class=\"property-input-col\">\n @switch (property) {\n @case (CASE_GEOMETRY_TYPE) {\n <v-input\n [name]=\"CASE_GEOMETRY_TYPE\"\n [title]=\"\n translationKeyFor(CASE_GEOMETRY_TYPE) | pluginTranslate: pluginId | async\n \"\n [defaultValue]=\"prefillValueFor(CASE_GEOMETRY_TYPE, obs.prefill)\"\n (valueChange)=\"onPropertyChanged(CASE_GEOMETRY_TYPE, $event)\"\n [required]=\"true\"\n [margin]=\"true\"\n [presetOptions]=\"geometryTypes\"\n />\n }\n @case (CASE_GEOMETRY_COORDINATES) {\n <v-input\n [name]=\"CASE_GEOMETRY_COORDINATES\"\n [title]=\"\n translationKeyFor(CASE_GEOMETRY_COORDINATES) | pluginTranslate: pluginId | async\n \"\n [tooltip]=\"translationKeyFor(`${CASE_GEOMETRY_COORDINATES}Tooltip`) | pluginTranslate: pluginId | async\"\n [defaultValue]=\"prefillValueFor(CASE_GEOMETRY_COORDINATES, obs.prefill)\"\n (valueChange)=\"onPropertyChanged(CASE_GEOMETRY_COORDINATES, $event)\"\n [required]=\"true\"\n [margin]=\"true\"\n />\n }\n @default {\n <v-input\n [name]=\"property\"\n [title]=\"translationKeyFor(property) | pluginTranslate: pluginId | async\"\n [tooltip]=\"\n property.includes('Date')\n ? ('dateformatTooltip' | pluginTranslate: pluginId | async)\n : null\n \"\n [defaultValue]=\"prefillValueFor(property, obs.prefill)\"\n (valueChange)=\"onPropertyChanged(property, $event)\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [presetOptions]=\"\n property === PAYMENT_INDICATION_TYPE ? paymentIndicationTypes : []\n \"\n />\n }\n }\n </div>\n\n <div class=\"property-delete-col\">\n @if (property !== CASE_GEOMETRY_COORDINATES) {\n <button class=\"btn btn-space delete-button\" (click)=\"removeProperty(property)\">\n <svg class=\"cds--btn__icon\" cdsIcon=\"trash-can\" size=\"16\"></svg>\n </button>\n }\n </div>\n </div>\n }\n </v-form>\n }\n</ng-container>\n\n<ng-template #addCasePropertyList>\n @for (propertyOption of propertyOptions; track propertyOption) {\n @if (propertyOption !== CASE_GEOMETRY_COORDINATES && !hasPropertyBeenAdded(propertyOption)) {\n <cds-overflow-menu-option (click)=\"addProperty(propertyOption)\">\n {{ translationKeyForPropertyList(propertyOption) | pluginTranslate: pluginId | async }}\n </cds-overflow-menu-option>\n }\n }\n</ng-template>\n", styles: [".loading-container{display:flex;flex-direction:row;justify-content:center;height:100%;width:100%;align-items:center}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}.property-input{display:flex}.property-input v-input,.property-input cds-date-picker-input{flex-grow:1}.property-input button{height:46px;width:46px;margin:16px}div.property-row{width:100%;display:grid;grid-template-columns:92% 8%}div.property-row>*{box-sizing:border-box;min-width:0}div.property-delete-col{margin-left:auto}\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", "dataTestId"], outputs: ["selectedChange"] }, { kind: "component", type: i2$2.ParagraphComponent, selector: "v-paragraph", inputs: ["center", "fullWidth", "margin", "italic", "loading", "dataTestId"] }, { 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: "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" }] }); }
4171
4178
  }
4172
4179
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakConfigurationComponent, decorators: [{
4173
4180
  type: Component,
4174
4181
  args: [{ standalone: false, selector: 'valtimo-create-zaak-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<ng-container\n *ngIf=\"{\n context: context$ | async,\n disabled: disabled$ | async,\n loading: loading$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n selectedInputOption: selectedInputOption$ | async,\n zaakTypeSelectItems: zaakTypeItems$ | async,\n } as obs\"\n>\n @if (obs.loading) {\n <cds-loading></cds-loading>\n } @else {\n <v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'createZaakInformation' | pluginTranslate: pluginId | async }}\n </v-paragraph>\n\n <v-form (valueChange)=\"onFormValueChanged($event)\">\n <v-input\n name=\"rsin\"\n [title]=\"'rsin' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'rsinTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.rsin\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [margin]=\"true\"\n [widthPx]=\"350\"\n >\n </v-input>\n\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeZaakTypeToggle\"\n [title]=\"'inputTypeZaakTypeToggle' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"selectedInputOption$ | async\"\n [radioValues]=\"inputTypeOptions$ | async\"\n [disabled]=\"obs.disabled\"\n [margin]=\"true\"\n >\n </v-radio>\n\n <v-input\n *ngIf=\"obs.selectedInputOption === 'text'\"\n name=\"zaaktypeUrl\"\n [title]=\"'zaakTypeUrl' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'zaakTypeTooltip' | pluginTranslate: pluginId | async\"\n [defaultValue]=\"obs.prefill?.zaaktypeUrl\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'selection'\"\n [required]=\"true\"\n [trim]=\"true\"\n [margin]=\"true\"\n [widthPx]=\"700\"\n >\n </v-input>\n\n <v-select\n *ngIf=\"obs.selectedInputOption === 'selection'\"\n name=\"zaaktypeUrl\"\n [title]=\"'zaakType' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'zaakTypeSelectTooltip' | pluginTranslate: pluginId | async\"\n [required]=\"true\"\n [items]=\"obs.zaakTypeSelectItems\"\n [loading]=\"!obs.zaakTypeSelectItems\"\n [disabled]=\"\n obs.disabled ||\n obs.selectedInputOption === 'text' ||\n oneSelectItem(obs.zaakTypeSelectItems)\n \"\n [margin]=\"true\"\n [defaultSelectionId]=\"\n (selectItemsIncludeId(obs.zaakTypeSelectItems, obs.prefill?.zaaktypeUrl) &&\n obs.prefill?.zaaktypeUrl) ||\n (oneSelectItem(obs.zaakTypeSelectItems) && obs.zaakTypeSelectItems[0].id)\n \"\n [widthInPx]=\"350\"\n ></v-select>\n\n <div class=\"property-row\">\n <div class=\"property-input-col\">\n <button\n cdsButton=\"primary\"\n class=\"add-button\"\n [size]=\"'md'\"\n [cdsOverflowMenu]=\"addCasePropertyList\"\n [customPane]=\"true\"\n placement=\"bottom,top\"\n >\n {{ 'addZaakProperty' | pluginTranslate: pluginId | async }}\n\n <svg class=\"cds--btn__icon\" cdsIcon=\"add\" size=\"16\"></svg>\n </button>\n </div>\n </div>\n\n @for (property of propertyList; track property) {\n <div class=\"property-row\">\n <div class=\"property-input-col\">\n @switch (property) {\n @case (CASE_GEOMETRY_TYPE) {\n <v-input\n [name]=\"CASE_GEOMETRY_TYPE\"\n [title]=\"\n translationKeyFor(CASE_GEOMETRY_TYPE) | pluginTranslate: pluginId | async\n \"\n [defaultValue]=\"prefillValueFor(CASE_GEOMETRY_TYPE, obs.prefill)\"\n (valueChange)=\"onPropertyChanged(CASE_GEOMETRY_TYPE, $event)\"\n [required]=\"true\"\n [margin]=\"true\"\n [presetOptions]=\"geometryTypes\"\n />\n }\n @case (CASE_GEOMETRY_COORDINATES) {\n <v-input\n [name]=\"CASE_GEOMETRY_COORDINATES\"\n [title]=\"\n translationKeyFor(CASE_GEOMETRY_COORDINATES) | pluginTranslate: pluginId | async\n \"\n [tooltip]=\"translationKeyFor(`${CASE_GEOMETRY_COORDINATES}Tooltip`) | pluginTranslate: pluginId | async\"\n [defaultValue]=\"prefillValueFor(CASE_GEOMETRY_COORDINATES, obs.prefill)\"\n (valueChange)=\"onPropertyChanged(CASE_GEOMETRY_COORDINATES, $event)\"\n [required]=\"true\"\n [margin]=\"true\"\n />\n }\n @default {\n <v-input\n [name]=\"property\"\n [title]=\"translationKeyFor(property) | pluginTranslate: pluginId | async\"\n [tooltip]=\"\n property.includes('Date')\n ? ('dateformatTooltip' | pluginTranslate: pluginId | async)\n : null\n \"\n [defaultValue]=\"prefillValueFor(property, obs.prefill)\"\n (valueChange)=\"onPropertyChanged(property, $event)\"\n [required]=\"true\"\n [margin]=\"true\"\n [trim]=\"true\"\n [presetOptions]=\"\n property === PAYMENT_INDICATION_TYPE ? paymentIndicationTypes : []\n \"\n />\n }\n }\n </div>\n\n <div class=\"property-delete-col\">\n @if (property !== CASE_GEOMETRY_COORDINATES) {\n <button class=\"btn btn-space delete-button\" (click)=\"removeProperty(property)\">\n <svg class=\"cds--btn__icon\" cdsIcon=\"trash-can\" size=\"16\"></svg>\n </button>\n }\n </div>\n </div>\n }\n </v-form>\n }\n</ng-container>\n\n<ng-template #addCasePropertyList>\n @for (propertyOption of propertyOptions; track propertyOption) {\n @if (propertyOption !== CASE_GEOMETRY_COORDINATES && !hasPropertyBeenAdded(propertyOption)) {\n <cds-overflow-menu-option (click)=\"addProperty(propertyOption)\">\n {{ translationKeyForPropertyList(propertyOption) | pluginTranslate: pluginId | async }}\n </cds-overflow-menu-option>\n }\n }\n</ng-template>\n", styles: [".loading-container{display:flex;flex-direction:row;justify-content:center;height:100%;width:100%;align-items:center}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}.property-input{display:flex}.property-input v-input,.property-input cds-date-picker-input{flex-grow:1}.property-input button{height:46px;width:46px;margin:16px}div.property-row{width:100%;display:grid;grid-template-columns:92% 8%}div.property-row>*{box-sizing:border-box;min-width:0}div.property-delete-col{margin-left:auto}\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"] }]
4175
- }], ctorParameters: () => [{ type: i1$3.OpenZaakService }, { type: i2$2.ModalService }, { type: PluginTranslatePipe }, { type: i4.IconService }], propDecorators: { context$: [{
4182
+ }], ctorParameters: () => [{ type: i1$4.OpenZaakService }, { type: i2$2.ModalService }, { type: PluginTranslatePipe }, { type: i1$3.IconService }], propDecorators: { context$: [{
4176
4183
  type: Input
4177
4184
  }], disabled$: [{
4178
4185
  type: Input
@@ -4482,13 +4489,13 @@ class CreateZaakeigenschapComponent {
4482
4489
  this.valid$.next(valid);
4483
4490
  this.valid.emit(valid);
4484
4491
  }
4485
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakeigenschapComponent, deps: [{ token: i1$4.DocumentService }, { token: ZakenApiService }, { token: PluginTranslatePipe }], target: i0.ɵɵFactoryTarget.Component }); }
4486
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: CreateZaakeigenschapComponent, isStandalone: false, selector: "valtimo-create-zaakeigenschap", 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 eigenschapItems: eigenschapSelectItems$ | async,\n context: context$ | async,\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeEigenschapToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeEigenschapToggle' | 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=\"eigenschapUrl\"\n [title]=\"'eigenschapUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.eigenschapUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'eigenschapUrlTooltip' | 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.eigenschapItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"eigenschapUrl\"\n [title]=\"'eigenschapUrlSelect' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'text' || !obs.eigenschapItem\"\n [defaultSelectionId]=\"obs.prefill?.eigenschapUrl\"\n [required]=\"true\"\n [loading]=\"!obs.eigenschapItems\"\n [tooltip]=\"'eigenschapUrlSelectTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-select>\n </ng-container>\n\n <v-input\n name=\"eigenschapValue\"\n [title]=\"'eigenschapValue' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.eigenschapValue\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'eigenschapValueTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\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", 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", "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: i4.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" }] }); }
4492
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakeigenschapComponent, deps: [{ token: i1$5.DocumentService }, { token: ZakenApiService }, { token: PluginTranslatePipe }], target: i0.ɵɵFactoryTarget.Component }); }
4493
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: CreateZaakeigenschapComponent, isStandalone: false, selector: "valtimo-create-zaakeigenschap", 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 eigenschapItems: eigenschapSelectItems$ | async,\n context: context$ | async,\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeEigenschapToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeEigenschapToggle' | 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=\"eigenschapUrl\"\n [title]=\"'eigenschapUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.eigenschapUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'eigenschapUrlTooltip' | 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.eigenschapItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"eigenschapUrl\"\n [title]=\"'eigenschapUrlSelect' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'text' || !obs.eigenschapItem\"\n [defaultSelectionId]=\"obs.prefill?.eigenschapUrl\"\n [required]=\"true\"\n [loading]=\"!obs.eigenschapItems\"\n [tooltip]=\"'eigenschapUrlSelectTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-select>\n </ng-container>\n\n <v-input\n name=\"eigenschapValue\"\n [title]=\"'eigenschapValue' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.eigenschapValue\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'eigenschapValueTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\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", 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", "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" }] }); }
4487
4494
  }
4488
4495
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakeigenschapComponent, decorators: [{
4489
4496
  type: Component,
4490
4497
  args: [{ standalone: false, selector: 'valtimo-create-zaakeigenschap', 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 eigenschapItems: eigenschapSelectItems$ | async,\n context: context$ | async,\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeEigenschapToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeEigenschapToggle' | 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=\"eigenschapUrl\"\n [title]=\"'eigenschapUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.eigenschapUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'eigenschapUrlTooltip' | 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.eigenschapItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"eigenschapUrl\"\n [title]=\"'eigenschapUrlSelect' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'text' || !obs.eigenschapItem\"\n [defaultSelectionId]=\"obs.prefill?.eigenschapUrl\"\n [required]=\"true\"\n [loading]=\"!obs.eigenschapItems\"\n [tooltip]=\"'eigenschapUrlSelectTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-select>\n </ng-container>\n\n <v-input\n name=\"eigenschapValue\"\n [title]=\"'eigenschapValue' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.eigenschapValue\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'eigenschapValueTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\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" }]
4491
- }], ctorParameters: () => [{ type: i1$4.DocumentService }, { type: ZakenApiService }, { type: PluginTranslatePipe }], propDecorators: { save$: [{
4498
+ }], ctorParameters: () => [{ type: i1$5.DocumentService }, { type: ZakenApiService }, { type: PluginTranslatePipe }], propDecorators: { save$: [{
4492
4499
  type: Input
4493
4500
  }], disabled$: [{
4494
4501
  type: Input
@@ -4603,7 +4610,7 @@ class UpdateZaakeigenschapComponent {
4603
4610
  this.valid.emit(valid);
4604
4611
  }
4605
4612
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UpdateZaakeigenschapComponent, deps: [{ token: ZakenApiService }, { token: PluginTranslatePipe }], target: i0.ɵɵFactoryTarget.Component }); }
4606
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: UpdateZaakeigenschapComponent, isStandalone: false, selector: "valtimo-update-zaakeigenschap", 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 eigenschapItems: eigenschapSelectItems$ | async,\n context: context$ | async,\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeEigenschapToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeEigenschapToggle' | 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=\"eigenschapUrl\"\n [title]=\"'eigenschapUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.eigenschapUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'eigenschapUrlTooltip' | 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.eigenschapItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"eigenschapUrl\"\n [title]=\"'eigenschapUrlSelect' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'text' || !obs.eigenschapItems\"\n [defaultSelectionId]=\"obs.prefill?.eigenschapUrl\"\n [required]=\"true\"\n [loading]=\"!obs.eigenschapItems\"\n [tooltip]=\"'eigenschapUrlSelectTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-select>\n </ng-container>\n\n <v-input\n name=\"eigenschapValue\"\n [title]=\"'eigenschapValue' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.eigenschapValue\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'eigenschapValueTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\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", 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", "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: i4.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" }] }); }
4613
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: UpdateZaakeigenschapComponent, isStandalone: false, selector: "valtimo-update-zaakeigenschap", 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 eigenschapItems: eigenschapSelectItems$ | async,\n context: context$ | async,\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeEigenschapToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeEigenschapToggle' | 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=\"eigenschapUrl\"\n [title]=\"'eigenschapUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.eigenschapUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'eigenschapUrlTooltip' | 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.eigenschapItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"eigenschapUrl\"\n [title]=\"'eigenschapUrlSelect' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'text' || !obs.eigenschapItems\"\n [defaultSelectionId]=\"obs.prefill?.eigenschapUrl\"\n [required]=\"true\"\n [loading]=\"!obs.eigenschapItems\"\n [tooltip]=\"'eigenschapUrlSelectTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-select>\n </ng-container>\n\n <v-input\n name=\"eigenschapValue\"\n [title]=\"'eigenschapValue' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.eigenschapValue\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'eigenschapValueTooltip' | pluginTranslate: obs.pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\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", 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", "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" }] }); }
4607
4614
  }
4608
4615
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UpdateZaakeigenschapComponent, decorators: [{
4609
4616
  type: Component,
@@ -4722,7 +4729,7 @@ class DeleteZaakeigenschapComponent {
4722
4729
  this.valid.emit(valid);
4723
4730
  }
4724
4731
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DeleteZaakeigenschapComponent, deps: [{ token: ZakenApiService }, { token: PluginTranslatePipe }], target: i0.ɵɵFactoryTarget.Component }); }
4725
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: DeleteZaakeigenschapComponent, isStandalone: false, selector: "valtimo-delete-zaakeigenschap", 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 eigenschapItems: eigenschapSelectItems$ | async,\n context: context$ | async,\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeEigenschapToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeEigenschapToggle' | 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=\"eigenschapUrl\"\n [title]=\"'eigenschapUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.eigenschapUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'eigenschapUrlTooltip' | 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.eigenschapItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"eigenschapUrl\"\n [title]=\"'eigenschapUrlSelect' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'text' || !obs.eigenschapItems\"\n [defaultSelectionId]=\"obs.prefill?.eigenschapUrl\"\n [required]=\"true\"\n [loading]=\"!obs.eigenschapItems\"\n [tooltip]=\"'eigenschapUrlSelectTooltip' | pluginTranslate: obs.pluginId | async\"\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", 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", "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: i4.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" }] }); }
4732
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: DeleteZaakeigenschapComponent, isStandalone: false, selector: "valtimo-delete-zaakeigenschap", 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 eigenschapItems: eigenschapSelectItems$ | async,\n context: context$ | async,\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-radio\n *ngIf=\"obs?.context?.[0] === 'case'\"\n name=\"inputTypeEigenschapToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeEigenschapToggle' | 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=\"eigenschapUrl\"\n [title]=\"'eigenschapUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.eigenschapUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'eigenschapUrlTooltip' | 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.eigenschapItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"eigenschapUrl\"\n [title]=\"'eigenschapUrlSelect' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'text' || !obs.eigenschapItems\"\n [defaultSelectionId]=\"obs.prefill?.eigenschapUrl\"\n [required]=\"true\"\n [loading]=\"!obs.eigenschapItems\"\n [tooltip]=\"'eigenschapUrlSelectTooltip' | pluginTranslate: obs.pluginId | async\"\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", 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", "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" }] }); }
4726
4733
  }
4727
4734
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DeleteZaakeigenschapComponent, decorators: [{
4728
4735
  type: Component,
@@ -4797,7 +4804,7 @@ class CreateZaakObjectConfigurationComponent {
4797
4804
  { id: 'woz_object', text: 'woz_object' },
4798
4805
  { id: 'woz_waarde', text: 'woz_waarde' },
4799
4806
  { id: 'zakelijk_recht', text: 'zakelijk_recht' },
4800
- { id: 'overige', text: 'overige' }
4807
+ { id: 'overige', text: 'overige' },
4801
4808
  ];
4802
4809
  this.formValue$ = new BehaviorSubject(null);
4803
4810
  this.valid$ = new BehaviorSubject(false);
@@ -4814,15 +4821,16 @@ class CreateZaakObjectConfigurationComponent {
4814
4821
  object: input.object,
4815
4822
  objectType: input.objectType,
4816
4823
  relatieomschrijving: input.relatieomschrijving,
4817
- }
4824
+ },
4818
4825
  };
4819
4826
  if (input.objectType === 'zakelijk_recht') {
4820
4827
  // Keep track of include flag for template condition
4821
- formValue.includeZakelijkRechtObjectIdentificatie = !!input.includeZakelijkRechtObjectIdentificatie;
4828
+ formValue.includeZakelijkRechtObjectIdentificatie =
4829
+ !!input.includeZakelijkRechtObjectIdentificatie;
4822
4830
  if (formValue.includeZakelijkRechtObjectIdentificatie) {
4823
4831
  formValue.zaakObjectRequest.objectIdentificatie = {
4824
4832
  identificatie: input.zakelijkRechtIdentificatie,
4825
- avgAard: input.zakelijkRechtAvgAard
4833
+ avgAard: input.zakelijkRechtAvgAard,
4826
4834
  };
4827
4835
  }
4828
4836
  }
@@ -4834,7 +4842,7 @@ class CreateZaakObjectConfigurationComponent {
4834
4842
  formValue.zaakObjectRequest.objectTypeOverigeDefinitie = {
4835
4843
  url: input.objectTypeOverigeDefinitieUrl,
4836
4844
  schema: input.objectTypeOverigeDefinitieSchema,
4837
- objectData: input.objectTypeOverigeDefinitieObjectData
4845
+ objectData: input.objectTypeOverigeDefinitieObjectData,
4838
4846
  };
4839
4847
  }
4840
4848
  }
@@ -4874,11 +4882,11 @@ class CreateZaakObjectConfigurationComponent {
4874
4882
  });
4875
4883
  }
4876
4884
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakObjectConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
4877
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.15", type: CreateZaakObjectConfigurationComponent, isStandalone: false, selector: "valtimo-create-zaak-object-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-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n pluginId: pluginId$ | async,\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n formValue: formValue$ | async,\n } as obs\"\n>\n <v-input\n name=\"object\"\n [title]=\"'zaakObjectObjectUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.object\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'zaakObjectObjectUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-select\n [items]=\"objectTypeOptions\"\n name=\"objectType\"\n [title]=\"'objectType' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.zaakObjectRequest?.objectType\"\n [required]=\"true\"\n [tooltip]=\"'objectTypeTooltip' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n ></v-select>\n\n <v-input\n name=\"relatieomschrijving\"\n [title]=\"'relatieomschrijving' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.relatieomschrijving\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'relatieomschrijvingTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n @if (obs.formValue?.zaakObjectRequest?.objectType === 'zakelijk_recht') {\n <v-input\n type=\"checkbox\"\n name=\"includeZakelijkRechtObjectIdentificatie\"\n [title]=\"'objectIdentificatie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"!!(obs.prefill?.zaakObjectRequest?.objectIdentificatie?.identificatie || obs.prefill?.zaakObjectRequest?.objectIdentificatie?.avgAard)\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n ></v-input>\n\n @if (obs.formValue?.includeZakelijkRechtObjectIdentificatie) {\n <v-input\n name=\"zakelijkRechtIdentificatie\"\n [title]=\"'zakelijkRechtIdentificatie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectIdentificatie?.identificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeZakelijkRechtObjectIdentificatie\"\n [tooltip]=\"'zakelijkRechtIdentificatieTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n name=\"zakelijkRechtAvgAard\"\n [title]=\"'zakelijkRechtAvgAard' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectIdentificatie?.avgAard\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeZakelijkRechtObjectIdentificatie\"\n [tooltip]=\"'zakelijkRechtAvgAardTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n }\n }\n\n @if (obs.formValue?.zaakObjectRequest?.objectType === 'overige') {\n <v-input\n name=\"objectTypeOverige\"\n [title]=\"'objectTypeOverige' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverige\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.zaakObjectRequest?.objectType === 'overige'\"\n [tooltip]=\"'objectTypeOverigeTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n type=\"checkbox\"\n name=\"includeObjectTypeOverigeDefinitie\"\n [title]=\"'objectTypeOverigeDefinitie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"!!(obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.url || obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.schema || obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.objectData)\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n ></v-input>\n\n @if (obs.formValue?.includeObjectTypeOverigeDefinitie) {\n <v-input\n name=\"objectTypeOverigeDefinitieUrl\"\n [title]=\"'objectTypeOverigeDefinitieUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.url\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"'objectTypeOverigeDefinitieUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n name=\"objectTypeOverigeDefinitieSchema\"\n [title]=\"'objectTypeOverigeDefinitieSchema' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.schema\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"'objectTypeOverigeDefinitieSchemaTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n name=\"objectTypeOverigeDefinitieObjectData\"\n [title]=\"'objectTypeOverigeDefinitieObjectData' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.objectData\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"'objectTypeOverigeDefinitieObjectDataTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n }\n }\n\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", "dataTestId"], outputs: ["selectedChange"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
4885
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.15", type: CreateZaakObjectConfigurationComponent, isStandalone: false, selector: "valtimo-create-zaak-object-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-form\n (valueChange)=\"formValueChange($event)\"\n *ngIf=\"{\n pluginId: pluginId$ | async,\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n formValue: formValue$ | async,\n } as obs\"\n>\n <v-input\n name=\"object\"\n [title]=\"'zaakObjectObjectUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.object\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'zaakObjectObjectUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-select\n [items]=\"objectTypeOptions\"\n name=\"objectType\"\n [title]=\"'objectType' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.zaakObjectRequest?.objectType\"\n [required]=\"true\"\n [tooltip]=\"'objectTypeTooltip' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n ></v-select>\n\n <v-input\n name=\"relatieomschrijving\"\n [title]=\"'relatieomschrijving' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.relatieomschrijving\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'relatieomschrijvingTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n @if (obs.formValue?.zaakObjectRequest?.objectType === 'zakelijk_recht') {\n <v-input\n type=\"checkbox\"\n name=\"includeZakelijkRechtObjectIdentificatie\"\n [title]=\"'objectIdentificatie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"\n !!(\n obs.prefill?.zaakObjectRequest?.objectIdentificatie?.identificatie ||\n obs.prefill?.zaakObjectRequest?.objectIdentificatie?.avgAard\n )\n \"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n ></v-input>\n\n @if (obs.formValue?.includeZakelijkRechtObjectIdentificatie) {\n <v-input\n name=\"zakelijkRechtIdentificatie\"\n [title]=\"'zakelijkRechtIdentificatie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectIdentificatie?.identificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeZakelijkRechtObjectIdentificatie\"\n [tooltip]=\"'zakelijkRechtIdentificatieTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n name=\"zakelijkRechtAvgAard\"\n [title]=\"'zakelijkRechtAvgAard' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectIdentificatie?.avgAard\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeZakelijkRechtObjectIdentificatie\"\n [tooltip]=\"'zakelijkRechtAvgAardTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n }\n }\n\n @if (obs.formValue?.zaakObjectRequest?.objectType === 'overige') {\n <v-input\n name=\"objectTypeOverige\"\n [title]=\"'objectTypeOverige' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverige\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.zaakObjectRequest?.objectType === 'overige'\"\n [tooltip]=\"'objectTypeOverigeTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n type=\"checkbox\"\n name=\"includeObjectTypeOverigeDefinitie\"\n [title]=\"'objectTypeOverigeDefinitie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"\n !!(\n obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.url ||\n obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.schema ||\n obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.objectData\n )\n \"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n ></v-input>\n\n @if (obs.formValue?.includeObjectTypeOverigeDefinitie) {\n <v-input\n name=\"objectTypeOverigeDefinitieUrl\"\n [title]=\"'objectTypeOverigeDefinitieUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.url\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"'objectTypeOverigeDefinitieUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n name=\"objectTypeOverigeDefinitieSchema\"\n [title]=\"'objectTypeOverigeDefinitieSchema' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.schema\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"\n 'objectTypeOverigeDefinitieSchemaTooltip' | pluginTranslate: obs.pluginId | async\n \"\n ></v-input>\n\n <v-input\n name=\"objectTypeOverigeDefinitieObjectData\"\n [title]=\"'objectTypeOverigeDefinitieObjectData' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.objectData\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"\n 'objectTypeOverigeDefinitieObjectDataTooltip' | pluginTranslate: obs.pluginId | async\n \"\n ></v-input>\n }\n }\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", "dataTestId"], outputs: ["selectedChange"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
4878
4886
  }
4879
4887
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakObjectConfigurationComponent, decorators: [{
4880
4888
  type: Component,
4881
- args: [{ selector: 'valtimo-create-zaak-object-configuration', providers: [PluginTranslatePipe], 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 pluginId: pluginId$ | async,\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n formValue: formValue$ | async,\n } as obs\"\n>\n <v-input\n name=\"object\"\n [title]=\"'zaakObjectObjectUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.object\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'zaakObjectObjectUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-select\n [items]=\"objectTypeOptions\"\n name=\"objectType\"\n [title]=\"'objectType' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.zaakObjectRequest?.objectType\"\n [required]=\"true\"\n [tooltip]=\"'objectTypeTooltip' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n ></v-select>\n\n <v-input\n name=\"relatieomschrijving\"\n [title]=\"'relatieomschrijving' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.relatieomschrijving\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'relatieomschrijvingTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n @if (obs.formValue?.zaakObjectRequest?.objectType === 'zakelijk_recht') {\n <v-input\n type=\"checkbox\"\n name=\"includeZakelijkRechtObjectIdentificatie\"\n [title]=\"'objectIdentificatie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"!!(obs.prefill?.zaakObjectRequest?.objectIdentificatie?.identificatie || obs.prefill?.zaakObjectRequest?.objectIdentificatie?.avgAard)\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n ></v-input>\n\n @if (obs.formValue?.includeZakelijkRechtObjectIdentificatie) {\n <v-input\n name=\"zakelijkRechtIdentificatie\"\n [title]=\"'zakelijkRechtIdentificatie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectIdentificatie?.identificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeZakelijkRechtObjectIdentificatie\"\n [tooltip]=\"'zakelijkRechtIdentificatieTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n name=\"zakelijkRechtAvgAard\"\n [title]=\"'zakelijkRechtAvgAard' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectIdentificatie?.avgAard\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeZakelijkRechtObjectIdentificatie\"\n [tooltip]=\"'zakelijkRechtAvgAardTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n }\n }\n\n @if (obs.formValue?.zaakObjectRequest?.objectType === 'overige') {\n <v-input\n name=\"objectTypeOverige\"\n [title]=\"'objectTypeOverige' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverige\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.zaakObjectRequest?.objectType === 'overige'\"\n [tooltip]=\"'objectTypeOverigeTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n type=\"checkbox\"\n name=\"includeObjectTypeOverigeDefinitie\"\n [title]=\"'objectTypeOverigeDefinitie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"!!(obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.url || obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.schema || obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.objectData)\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n ></v-input>\n\n @if (obs.formValue?.includeObjectTypeOverigeDefinitie) {\n <v-input\n name=\"objectTypeOverigeDefinitieUrl\"\n [title]=\"'objectTypeOverigeDefinitieUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.url\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"'objectTypeOverigeDefinitieUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n name=\"objectTypeOverigeDefinitieSchema\"\n [title]=\"'objectTypeOverigeDefinitieSchema' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.schema\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"'objectTypeOverigeDefinitieSchemaTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n name=\"objectTypeOverigeDefinitieObjectData\"\n [title]=\"'objectTypeOverigeDefinitieObjectData' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.objectData\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"'objectTypeOverigeDefinitieObjectDataTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n }\n }\n\n</v-form>\n" }]
4889
+ args: [{ selector: 'valtimo-create-zaak-object-configuration', providers: [PluginTranslatePipe], 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 pluginId: pluginId$ | async,\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n formValue: formValue$ | async,\n } as obs\"\n>\n <v-input\n name=\"object\"\n [title]=\"'zaakObjectObjectUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.object\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'zaakObjectObjectUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-select\n [items]=\"objectTypeOptions\"\n name=\"objectType\"\n [title]=\"'objectType' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.zaakObjectRequest?.objectType\"\n [required]=\"true\"\n [tooltip]=\"'objectTypeTooltip' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n ></v-select>\n\n <v-input\n name=\"relatieomschrijving\"\n [title]=\"'relatieomschrijving' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.relatieomschrijving\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'relatieomschrijvingTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n @if (obs.formValue?.zaakObjectRequest?.objectType === 'zakelijk_recht') {\n <v-input\n type=\"checkbox\"\n name=\"includeZakelijkRechtObjectIdentificatie\"\n [title]=\"'objectIdentificatie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"\n !!(\n obs.prefill?.zaakObjectRequest?.objectIdentificatie?.identificatie ||\n obs.prefill?.zaakObjectRequest?.objectIdentificatie?.avgAard\n )\n \"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n ></v-input>\n\n @if (obs.formValue?.includeZakelijkRechtObjectIdentificatie) {\n <v-input\n name=\"zakelijkRechtIdentificatie\"\n [title]=\"'zakelijkRechtIdentificatie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectIdentificatie?.identificatie\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeZakelijkRechtObjectIdentificatie\"\n [tooltip]=\"'zakelijkRechtIdentificatieTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n name=\"zakelijkRechtAvgAard\"\n [title]=\"'zakelijkRechtAvgAard' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectIdentificatie?.avgAard\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeZakelijkRechtObjectIdentificatie\"\n [tooltip]=\"'zakelijkRechtAvgAardTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n }\n }\n\n @if (obs.formValue?.zaakObjectRequest?.objectType === 'overige') {\n <v-input\n name=\"objectTypeOverige\"\n [title]=\"'objectTypeOverige' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverige\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.zaakObjectRequest?.objectType === 'overige'\"\n [tooltip]=\"'objectTypeOverigeTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n type=\"checkbox\"\n name=\"includeObjectTypeOverigeDefinitie\"\n [title]=\"'objectTypeOverigeDefinitie' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"\n !!(\n obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.url ||\n obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.schema ||\n obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.objectData\n )\n \"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n ></v-input>\n\n @if (obs.formValue?.includeObjectTypeOverigeDefinitie) {\n <v-input\n name=\"objectTypeOverigeDefinitieUrl\"\n [title]=\"'objectTypeOverigeDefinitieUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.url\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"'objectTypeOverigeDefinitieUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n ></v-input>\n\n <v-input\n name=\"objectTypeOverigeDefinitieSchema\"\n [title]=\"'objectTypeOverigeDefinitieSchema' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.schema\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"\n 'objectTypeOverigeDefinitieSchemaTooltip' | pluginTranslate: obs.pluginId | async\n \"\n ></v-input>\n\n <v-input\n name=\"objectTypeOverigeDefinitieObjectData\"\n [title]=\"'objectTypeOverigeDefinitieObjectData' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakObjectRequest?.objectTypeOverigeDefinitie?.objectData\"\n [disabled]=\"obs.disabled\"\n [required]=\"obs.formValue?.includeObjectTypeOverigeDefinitie\"\n [tooltip]=\"\n 'objectTypeOverigeDefinitieObjectDataTooltip' | pluginTranslate: obs.pluginId | async\n \"\n ></v-input>\n }\n }\n</v-form>\n" }]
4882
4890
  }], ctorParameters: () => [], propDecorators: { save$: [{
4883
4891
  type: Input
4884
4892
  }], disabled$: [{
@@ -5115,13 +5123,13 @@ class PatchZaakConfigurationComponent {
5115
5123
  });
5116
5124
  });
5117
5125
  }
5118
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PatchZaakConfigurationComponent, deps: [{ token: i4.IconService }], target: i0.ɵɵFactoryTarget.Component }); }
5119
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.15", 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 <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 @if (property === CASE_GEOMETRY_TYPE) {\n <v-input\n [name]=\"CASE_GEOMETRY_TYPE\"\n [title]=\"translationKeyFor(CASE_GEOMETRY_TYPE) | pluginTranslate: pluginId | async\"\n [required]=\"true\"\n [defaultValue]=\"prefillValueFor(CASE_GEOMETRY_TYPE, obs.prefill)\"\n [margin]=\"true\"\n [presetOptions]=\"geometryTypes\"\n (valueChange)=\"onPropertyChanged(CASE_GEOMETRY_TYPE, $event)\"\n />\n } @else if (property === CASE_GEOMETRY_COORDINATES) {\n <v-input\n [name]=\"CASE_GEOMETRY_COORDINATES\"\n [title]=\"\n translationKeyFor(CASE_GEOMETRY_COORDINATES) | pluginTranslate: pluginId | async\n \"\n [tooltip]=\"translationKeyFor(`${CASE_GEOMETRY_COORDINATES}Tooltip`) | pluginTranslate: pluginId | async\"\n [required]=\"true\"\n [defaultValue]=\"prefillValueFor(CASE_GEOMETRY_COORDINATES, obs.prefill)\"\n [margin]=\"true\"\n (valueChange)=\"onPropertyChanged(CASE_GEOMETRY_COORDINATES, $event)\"\n />\n } @else if (property.includes('Date')) {\n <v-input\n [name]=\"property\"\n [title]=\"translationKeyFor(property) | pluginTranslate: pluginId | async\"\n [tooltip]=\"'dateformatTooltip' | pluginTranslate: pluginId | async\"\n [required]=\"true\"\n [defaultValue]=\"prefillValueFor(property, obs.prefill)\"\n [margin]=\"true\"\n [trim]=\"true\"\n (valueChange)=\"onPropertyChanged(property, $event)\"\n ></v-input>\n } @else {\n <v-input\n [name]=\"property\"\n [title]=\"translationKeyFor(property) | pluginTranslate: pluginId | async\"\n [required]=\"true\"\n [defaultValue]=\"prefillValueFor(property, obs.prefill)\"\n [margin]=\"true\"\n [trim]=\"true\"\n [presetOptions]=\"property === PAYMENT_INDICATION_TYPE ? paymentIndicationTypes : []\"\n (valueChange)=\"onPropertyChanged(property, $event)\"\n />\n }\n </div>\n <div class=\"col-1\">\n @if (property !== CASE_GEOMETRY_COORDINATES) {\n <button class=\"btn btn-space delete-button\" (click)=\"removeProperty(property)\">\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: i4.Button, selector: "[cdsButton], [ibmButton]", inputs: ["ibmButton", "cdsButton", "size", "skeleton", "iconOnly", "isExpressive"] }, { kind: "directive", type: i4.OverflowMenuDirective, selector: "[cdsOverflowMenu], [ibmOverflowMenu]", inputs: ["ibmOverflowMenu", "cdsOverflowMenu", "flip", "offset", "wrapperClass", "customPane"], exportAs: ["overflowMenu"] }, { kind: "component", type: i4.OverflowMenuOption, selector: "cds-overflow-menu-option, ibm-overflow-menu-option", inputs: ["divider", "type", "disabled", "href", "target", "innerClass"], outputs: ["selected"] }, { kind: "directive", type: i4.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" }] }); }
5126
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PatchZaakConfigurationComponent, deps: [{ token: i1$3.IconService }], target: i0.ɵɵFactoryTarget.Component }); }
5127
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.15", 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 <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 @if (property === CASE_GEOMETRY_TYPE) {\n <v-input\n [name]=\"CASE_GEOMETRY_TYPE\"\n [title]=\"translationKeyFor(CASE_GEOMETRY_TYPE) | pluginTranslate: pluginId | async\"\n [required]=\"true\"\n [defaultValue]=\"prefillValueFor(CASE_GEOMETRY_TYPE, obs.prefill)\"\n [margin]=\"true\"\n [presetOptions]=\"geometryTypes\"\n (valueChange)=\"onPropertyChanged(CASE_GEOMETRY_TYPE, $event)\"\n />\n } @else if (property === CASE_GEOMETRY_COORDINATES) {\n <v-input\n [name]=\"CASE_GEOMETRY_COORDINATES\"\n [title]=\"\n translationKeyFor(CASE_GEOMETRY_COORDINATES) | pluginTranslate: pluginId | async\n \"\n [tooltip]=\"translationKeyFor(`${CASE_GEOMETRY_COORDINATES}Tooltip`) | pluginTranslate: pluginId | async\"\n [required]=\"true\"\n [defaultValue]=\"prefillValueFor(CASE_GEOMETRY_COORDINATES, obs.prefill)\"\n [margin]=\"true\"\n (valueChange)=\"onPropertyChanged(CASE_GEOMETRY_COORDINATES, $event)\"\n />\n } @else if (property.includes('Date')) {\n <v-input\n [name]=\"property\"\n [title]=\"translationKeyFor(property) | pluginTranslate: pluginId | async\"\n [tooltip]=\"'dateformatTooltip' | pluginTranslate: pluginId | async\"\n [required]=\"true\"\n [defaultValue]=\"prefillValueFor(property, obs.prefill)\"\n [margin]=\"true\"\n [trim]=\"true\"\n (valueChange)=\"onPropertyChanged(property, $event)\"\n ></v-input>\n } @else {\n <v-input\n [name]=\"property\"\n [title]=\"translationKeyFor(property) | pluginTranslate: pluginId | async\"\n [required]=\"true\"\n [defaultValue]=\"prefillValueFor(property, obs.prefill)\"\n [margin]=\"true\"\n [trim]=\"true\"\n [presetOptions]=\"property === PAYMENT_INDICATION_TYPE ? paymentIndicationTypes : []\"\n (valueChange)=\"onPropertyChanged(property, $event)\"\n />\n }\n </div>\n <div class=\"col-1\">\n @if (property !== CASE_GEOMETRY_COORDINATES) {\n <button class=\"btn btn-space delete-button\" (click)=\"removeProperty(property)\">\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" }] }); }
5120
5128
  }
5121
5129
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PatchZaakConfigurationComponent, decorators: [{
5122
5130
  type: Component,
5123
5131
  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 <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 @if (property === CASE_GEOMETRY_TYPE) {\n <v-input\n [name]=\"CASE_GEOMETRY_TYPE\"\n [title]=\"translationKeyFor(CASE_GEOMETRY_TYPE) | pluginTranslate: pluginId | async\"\n [required]=\"true\"\n [defaultValue]=\"prefillValueFor(CASE_GEOMETRY_TYPE, obs.prefill)\"\n [margin]=\"true\"\n [presetOptions]=\"geometryTypes\"\n (valueChange)=\"onPropertyChanged(CASE_GEOMETRY_TYPE, $event)\"\n />\n } @else if (property === CASE_GEOMETRY_COORDINATES) {\n <v-input\n [name]=\"CASE_GEOMETRY_COORDINATES\"\n [title]=\"\n translationKeyFor(CASE_GEOMETRY_COORDINATES) | pluginTranslate: pluginId | async\n \"\n [tooltip]=\"translationKeyFor(`${CASE_GEOMETRY_COORDINATES}Tooltip`) | pluginTranslate: pluginId | async\"\n [required]=\"true\"\n [defaultValue]=\"prefillValueFor(CASE_GEOMETRY_COORDINATES, obs.prefill)\"\n [margin]=\"true\"\n (valueChange)=\"onPropertyChanged(CASE_GEOMETRY_COORDINATES, $event)\"\n />\n } @else if (property.includes('Date')) {\n <v-input\n [name]=\"property\"\n [title]=\"translationKeyFor(property) | pluginTranslate: pluginId | async\"\n [tooltip]=\"'dateformatTooltip' | pluginTranslate: pluginId | async\"\n [required]=\"true\"\n [defaultValue]=\"prefillValueFor(property, obs.prefill)\"\n [margin]=\"true\"\n [trim]=\"true\"\n (valueChange)=\"onPropertyChanged(property, $event)\"\n ></v-input>\n } @else {\n <v-input\n [name]=\"property\"\n [title]=\"translationKeyFor(property) | pluginTranslate: pluginId | async\"\n [required]=\"true\"\n [defaultValue]=\"prefillValueFor(property, obs.prefill)\"\n [margin]=\"true\"\n [trim]=\"true\"\n [presetOptions]=\"property === PAYMENT_INDICATION_TYPE ? paymentIndicationTypes : []\"\n (valueChange)=\"onPropertyChanged(property, $event)\"\n />\n }\n </div>\n <div class=\"col-1\">\n @if (property !== CASE_GEOMETRY_COORDINATES) {\n <button class=\"btn btn-space delete-button\" (click)=\"removeProperty(property)\">\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"] }]
5124
- }], ctorParameters: () => [{ type: i4.IconService }], propDecorators: { disabled$: [{
5132
+ }], ctorParameters: () => [{ type: i1$3.IconService }], propDecorators: { disabled$: [{
5125
5133
  type: Input
5126
5134
  }], pluginId: [{
5127
5135
  type: Input
@@ -5135,6 +5143,150 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
5135
5143
  type: Output
5136
5144
  }] } });
5137
5145
 
5146
+ /*
5147
+ * Copyright 2015-2025 Ritense BV, the Netherlands.
5148
+ *
5149
+ * Licensed under EUPL, Version 1.2 (the "License");
5150
+ * you may not use this file except in compliance with the License.
5151
+ * You may obtain a copy of the License at
5152
+ *
5153
+ * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
5154
+ *
5155
+ * Unless required by applicable law or agreed to in writing, software
5156
+ * distributed under the License is distributed on an "AS IS" basis,
5157
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
5158
+ * See the License for the specific language governing permissions and
5159
+ * limitations under the License.
5160
+ */
5161
+ class GetZaakInformatieobjectenComponent {
5162
+ constructor(pluginManagementService, translateService, pluginTranslationService) {
5163
+ this.pluginManagementService = pluginManagementService;
5164
+ this.translateService = translateService;
5165
+ this.pluginTranslationService = pluginTranslationService;
5166
+ this.valid = new EventEmitter();
5167
+ this.configuration = new EventEmitter();
5168
+ this.formValue$ = new BehaviorSubject(null);
5169
+ this.valid$ = new BehaviorSubject(false);
5170
+ this.authenticationPluginSelectItems$ = combineLatest([
5171
+ this.pluginManagementService.getPluginConfigurationsByCategory('get-zaak-informatieobjecten'),
5172
+ this.translateService.stream('key'),
5173
+ ]).pipe(map$1(([configurations]) => configurations.map(configuration => ({
5174
+ id: configuration.id,
5175
+ text: `${configuration.title} - ${this.pluginTranslationService.instant('title', configuration.pluginDefinition.key)}`,
5176
+ }))));
5177
+ }
5178
+ ngOnInit() {
5179
+ this.openSaveSubscription();
5180
+ }
5181
+ ngOnDestroy() {
5182
+ this.saveSubscription?.unsubscribe();
5183
+ }
5184
+ formValueChange(formValue) {
5185
+ this.formValue$.next(formValue);
5186
+ this.handleValid(formValue);
5187
+ }
5188
+ handleValid(formValue) {
5189
+ const valid = !!formValue.resultProcessVariable;
5190
+ this.valid$.next(valid);
5191
+ this.valid.emit(valid);
5192
+ }
5193
+ openSaveSubscription() {
5194
+ this.saveSubscription = this.save$
5195
+ .pipe(withLatestFrom(this.formValue$, this.valid$), map$1(([_, formValue, valid]) => valid ? formValue : null), tap$1(formValue => {
5196
+ if (formValue)
5197
+ this.configuration.emit(formValue);
5198
+ }))
5199
+ .subscribe();
5200
+ }
5201
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetZaakInformatieobjectenComponent, deps: [{ token: PluginManagementService }, { token: i2.TranslateService }, { token: PluginTranslationService }], target: i0.ɵɵFactoryTarget.Component }); }
5202
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: GetZaakInformatieobjectenComponent, isStandalone: false, selector: "valtimo-get-zaak-informatieobjecten-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=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'resultProcessVariableTooltip' | 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: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
5203
+ }
5204
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetZaakInformatieobjectenComponent, decorators: [{
5205
+ type: Component,
5206
+ args: [{ standalone: false, selector: 'valtimo-get-zaak-informatieobjecten-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 } as obs\"\n>\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'resultProcessVariableTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n</v-form>\n" }]
5207
+ }], ctorParameters: () => [{ type: PluginManagementService }, { type: i2.TranslateService }, { type: PluginTranslationService }], propDecorators: { save$: [{
5208
+ type: Input
5209
+ }], disabled$: [{
5210
+ type: Input
5211
+ }], pluginId: [{
5212
+ type: Input
5213
+ }], prefillConfiguration$: [{
5214
+ type: Input
5215
+ }], valid: [{
5216
+ type: Output
5217
+ }], configuration: [{
5218
+ type: Output
5219
+ }] } });
5220
+
5221
+ /*
5222
+ * Copyright 2015-2025 Ritense BV, the Netherlands.
5223
+ *
5224
+ * Licensed under EUPL, Version 1.2 (the "License");
5225
+ * you may not use this file except in compliance with the License.
5226
+ * You may obtain a copy of the License at
5227
+ *
5228
+ * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
5229
+ *
5230
+ * Unless required by applicable law or agreed to in writing, software
5231
+ * distributed under the License is distributed on an "AS IS" basis,
5232
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
5233
+ * See the License for the specific language governing permissions and
5234
+ * limitations under the License.
5235
+ */
5236
+ class GetZaakbesluitenConfigurationComponent {
5237
+ constructor() {
5238
+ this.valid = new EventEmitter();
5239
+ this.configuration = new EventEmitter();
5240
+ this.formValue$ = new BehaviorSubject(null);
5241
+ this.valid$ = new BehaviorSubject(false);
5242
+ }
5243
+ ngOnInit() {
5244
+ this.openSaveSubscription();
5245
+ this.valid.emit(true);
5246
+ }
5247
+ ngOnDestroy() {
5248
+ this.saveSubscription?.unsubscribe();
5249
+ }
5250
+ openSaveSubscription() {
5251
+ this.saveSubscription = this.save$?.subscribe(save => {
5252
+ combineLatest([this.formValue$, this.valid$])
5253
+ .pipe(take(1))
5254
+ .subscribe(([formValue, valid]) => {
5255
+ if (valid) {
5256
+ this.configuration.emit(formValue);
5257
+ }
5258
+ });
5259
+ });
5260
+ }
5261
+ formValueChange(formValue) {
5262
+ this.formValue$.next(formValue);
5263
+ this.handleValid(formValue);
5264
+ }
5265
+ handleValid(formValue) {
5266
+ const valid = !!formValue.resultProcessVariable;
5267
+ this.valid$.next(valid);
5268
+ this.valid.emit(valid);
5269
+ }
5270
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetZaakbesluitenConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5271
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: GetZaakbesluitenConfigurationComponent, isStandalone: false, selector: "valtimo-get-zaakbesluiten-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=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'resultProcessVariableTooltip' | 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" }] }); }
5272
+ }
5273
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetZaakbesluitenConfigurationComponent, decorators: [{
5274
+ type: Component,
5275
+ args: [{ selector: 'valtimo-get-zaakbesluiten-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=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'resultProcessVariableTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n</v-form>\n" }]
5276
+ }], propDecorators: { save$: [{
5277
+ type: Input
5278
+ }], disabled$: [{
5279
+ type: Input
5280
+ }], pluginId: [{
5281
+ type: Input
5282
+ }], prefillConfiguration$: [{
5283
+ type: Input
5284
+ }], valid: [{
5285
+ type: Output
5286
+ }], configuration: [{
5287
+ type: Output
5288
+ }] } });
5289
+
5138
5290
  /*
5139
5291
  * Copyright 2015-2025 Ritense BV, the Netherlands.
5140
5292
  *
@@ -5155,6 +5307,7 @@ class ZakenApiPluginModule {
5155
5307
  static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: ZakenApiPluginModule, declarations: [ZakenApiConfigurationComponent,
5156
5308
  LinkDocumentToZaakConfigurationComponent,
5157
5309
  LinkUploadedDocumentToZaakConfigurationComponent,
5310
+ GetZaakInformatieobjectenComponent,
5158
5311
  SetZaakStatusConfigurationComponent,
5159
5312
  CreateZaakResultaatConfigurationComponent,
5160
5313
  DeleteZaakRolComponent,
@@ -5172,7 +5325,8 @@ class ZakenApiPluginModule {
5172
5325
  DeleteZaakeigenschapComponent,
5173
5326
  CreateZaakObjectConfigurationComponent,
5174
5327
  RelateerZakenComponent,
5175
- PatchZaakConfigurationComponent], imports: [CommonModule,
5328
+ PatchZaakConfigurationComponent,
5329
+ GetZaakbesluitenConfigurationComponent], imports: [CommonModule,
5176
5330
  PluginTranslatePipeModule,
5177
5331
  FormModule,
5178
5332
  InputModule,
@@ -5186,9 +5340,15 @@ class ZakenApiPluginModule {
5186
5340
  DialogModule,
5187
5341
  IconModule,
5188
5342
  TranslateModule,
5189
- DatePickerInputModule], exports: [ZakenApiConfigurationComponent,
5343
+ DatePickerInputModule,
5344
+ DatePickerModule,
5345
+ FormsModule,
5346
+ NotificationModule,
5347
+ ReactiveFormsModule,
5348
+ TimePickerModule], exports: [ZakenApiConfigurationComponent,
5190
5349
  LinkDocumentToZaakConfigurationComponent,
5191
5350
  LinkUploadedDocumentToZaakConfigurationComponent,
5351
+ GetZaakInformatieobjectenComponent,
5192
5352
  SetZaakStatusConfigurationComponent,
5193
5353
  CreateZaakResultaatConfigurationComponent,
5194
5354
  CreateZaakConfigurationComponent,
@@ -5205,7 +5365,8 @@ class ZakenApiPluginModule {
5205
5365
  UpdateZaakeigenschapComponent,
5206
5366
  DeleteZaakeigenschapComponent,
5207
5367
  CreateZaakObjectConfigurationComponent,
5208
- RelateerZakenComponent] }); }
5368
+ RelateerZakenComponent,
5369
+ GetZaakbesluitenConfigurationComponent] }); }
5209
5370
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ZakenApiPluginModule, imports: [CommonModule,
5210
5371
  PluginTranslatePipeModule,
5211
5372
  FormModule,
@@ -5220,7 +5381,12 @@ class ZakenApiPluginModule {
5220
5381
  DialogModule,
5221
5382
  IconModule,
5222
5383
  TranslateModule,
5223
- DatePickerInputModule] }); }
5384
+ DatePickerInputModule,
5385
+ DatePickerModule,
5386
+ FormsModule,
5387
+ NotificationModule,
5388
+ ReactiveFormsModule,
5389
+ TimePickerModule] }); }
5224
5390
  }
5225
5391
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ZakenApiPluginModule, decorators: [{
5226
5392
  type: NgModule,
@@ -5229,6 +5395,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
5229
5395
  ZakenApiConfigurationComponent,
5230
5396
  LinkDocumentToZaakConfigurationComponent,
5231
5397
  LinkUploadedDocumentToZaakConfigurationComponent,
5398
+ GetZaakInformatieobjectenComponent,
5232
5399
  SetZaakStatusConfigurationComponent,
5233
5400
  CreateZaakResultaatConfigurationComponent,
5234
5401
  DeleteZaakRolComponent,
@@ -5247,6 +5414,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
5247
5414
  CreateZaakObjectConfigurationComponent,
5248
5415
  RelateerZakenComponent,
5249
5416
  PatchZaakConfigurationComponent,
5417
+ GetZaakbesluitenConfigurationComponent,
5250
5418
  ],
5251
5419
  imports: [
5252
5420
  CommonModule,
@@ -5264,11 +5432,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
5264
5432
  IconModule,
5265
5433
  TranslateModule,
5266
5434
  DatePickerInputModule,
5435
+ DatePickerModule,
5436
+ FormsModule,
5437
+ NotificationModule,
5438
+ ReactiveFormsModule,
5439
+ TimePickerModule,
5267
5440
  ],
5268
5441
  exports: [
5269
5442
  ZakenApiConfigurationComponent,
5270
5443
  LinkDocumentToZaakConfigurationComponent,
5271
5444
  LinkUploadedDocumentToZaakConfigurationComponent,
5445
+ GetZaakInformatieobjectenComponent,
5272
5446
  SetZaakStatusConfigurationComponent,
5273
5447
  CreateZaakResultaatConfigurationComponent,
5274
5448
  CreateZaakConfigurationComponent,
@@ -5286,6 +5460,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
5286
5460
  DeleteZaakeigenschapComponent,
5287
5461
  CreateZaakObjectConfigurationComponent,
5288
5462
  RelateerZakenComponent,
5463
+ GetZaakbesluitenConfigurationComponent,
5289
5464
  ],
5290
5465
  }]
5291
5466
  }] });
@@ -5345,6 +5520,7 @@ const zakenApiPluginSpecification = {
5345
5520
  functionConfigurationComponents: {
5346
5521
  'link-document-to-zaak': LinkDocumentToZaakConfigurationComponent,
5347
5522
  'link-uploaded-document-to-zaak': LinkUploadedDocumentToZaakConfigurationComponent,
5523
+ 'get-zaak-informatieobjecten': GetZaakInformatieobjectenComponent,
5348
5524
  'set-zaakstatus': SetZaakStatusConfigurationComponent,
5349
5525
  'create-zaakresultaat': CreateZaakResultaatConfigurationComponent,
5350
5526
  'delete-zaak-rol': DeleteZaakRolComponent,
@@ -5363,6 +5539,7 @@ const zakenApiPluginSpecification = {
5363
5539
  'create-zaak-object': CreateZaakObjectConfigurationComponent,
5364
5540
  'relateer-zaken': RelateerZakenComponent,
5365
5541
  'patch-zaak': PatchZaakConfigurationComponent,
5542
+ 'get-zaakbesluiten': GetZaakbesluitenConfigurationComponent,
5366
5543
  },
5367
5544
  pluginTranslations: {
5368
5545
  nl: {
@@ -5397,6 +5574,7 @@ const zakenApiPluginSpecification = {
5397
5574
  zaakTypeTooltip: 'In dit veld moet de verwijzing komen naar de type zaak.',
5398
5575
  zaakTypeSelectTooltip: 'In dit veld moet de verwijzing komen naar de type zaak. Als er slechts één zaaktype beschikbaar is, wordt deze standaard geselecteerd.',
5399
5576
  inputTypeZaakTypeToggle: 'Invoertype Zaaktype-URL',
5577
+ now: 'Gebruik huidige datum/tijd',
5400
5578
  text: 'Tekst',
5401
5579
  selection: 'Selectie',
5402
5580
  'create-natuurlijk-persoon-zaak-rol': 'Zaakrol aanmaken - Natuurlijk persoon',
@@ -5440,6 +5618,9 @@ const zakenApiPluginSpecification = {
5440
5618
  'set-zaakstatus': 'Zaakstatus aanmaken',
5441
5619
  statustypeUrl: 'Zaakstatus type URL',
5442
5620
  statustypeUrlTooltip: 'URL-referentie naar het statustype.',
5621
+ datumStatusGezet: 'Datum status gezet.',
5622
+ datumStatusGezetTooltip: 'Datum/tijd waarde van het zaakstatus.',
5623
+ datumStatusGezetInvalidText: 'Datum en tijd mogen niet in de toekomst liggen.',
5443
5624
  statustoelichting: 'Zaakstatus toelichting',
5444
5625
  statustoelichtingTooltip: 'Een, voor de initiator van de zaak relevante, toelichting op de status van een zaak.',
5445
5626
  'create-zaakresultaat': 'Zaakresultaat aanmaken',
@@ -5455,6 +5636,7 @@ const zakenApiPluginSpecification = {
5455
5636
  resultaattypeUrlSelect: 'Zaakresultaat',
5456
5637
  resultaattypeUrlSelectTooltip: 'Selecteer het resultaattype.',
5457
5638
  inputTypeZaakStatusToggle: 'Invoertype Zaakstatus-URL',
5639
+ inputDatumStatusGezetToggle: 'Invoertype datum status gezet',
5458
5640
  inputTypeZaakResultaatToggle: 'Invoertype Zaakresultaat-URL',
5459
5641
  addZaakProperty: 'Voeg nieuwe parameter toe',
5460
5642
  'relateer-zaken': 'Relateer zaken',
@@ -5489,6 +5671,7 @@ const zakenApiPluginSpecification = {
5489
5671
  kvkNummerTooltip: 'Een uniek nummer toegekend door de Kamer van Koophandel. (Max. 8 tekens)',
5490
5672
  vestigingsNummer: 'Vestigingsnummer',
5491
5673
  vestigingsNummerTooltip: 'Een korte unieke aanduiding van de Vestiging. (Max. 24 tekens)',
5674
+ 'get-zaakbesluiten': 'Ophalen zaakbesluiten',
5492
5675
  'patch-zaak': 'Zaak bijwerken',
5493
5676
  patchZaakInformation: 'Deze actie maakt het mogelijk eigenschappen van de Zaak in de Zaken API gekoppeld aan het dossier bij te werken.',
5494
5677
  addPatchZaakProperty: 'Voeg parameter toe',
@@ -5529,9 +5712,12 @@ const zakenApiPluginSpecification = {
5529
5712
  objectTypeOverigeDefinitieObjectData: 'Object data',
5530
5713
  objectTypeOverigeDefinitieObjectDataTooltip: 'Een geldige jq expressie. Dit wordt gecombineerd met de JSON data uit de OBJECT url om de objectgegevens uit te lezen en de vorm van de gegevens tegen het schema te valideren. Bijvoorbeeld: .record.data.',
5531
5714
  objectIdentificatie: 'Object identificatie',
5715
+ 'get-zaak-informatieobjecten': 'Zaakinformatieobjecten ophalen',
5532
5716
  resultProcessVariable: 'Resultaat process variable',
5717
+ resultProcessVariableTooltip: 'De naam van de procesvariabele waarin het resultaat wordt opgeslagen.',
5533
5718
  rolUuid: 'Rol UUID',
5534
- rolUuidTooltip: 'De UUID van de rol'
5719
+ rolUuidTooltip: 'De UUID van de rol',
5720
+ createZaakrolNietNatuurlijkPersoonIdentifierFieldsInformation: 'Minimaal &eacute;&eacute;n van de volgende velden moet worden ingevuld als identificatie voor de niet natuurlijke persoon:<br/>- Niet natuurlijk persoonsnummer<br/>- Ander niet natuurlijk persoon identificatie<br/>- KVK-nummer<br/>- Vestigingsnummer',
5535
5721
  },
5536
5722
  en: {
5537
5723
  title: 'Zaken API',
@@ -5565,6 +5751,7 @@ const zakenApiPluginSpecification = {
5565
5751
  zaakTypeTooltip: 'In this field the reference must be made to the type of the zaak.',
5566
5752
  zaakTypeSelectTooltip: 'In this field the reference must be made to the type of the zaak. If only one zaaktype is available, it will be selected by default.',
5567
5753
  inputTypeZaakTypeToggle: 'Input type Zaaktype-URL',
5754
+ now: 'Use current date/time',
5568
5755
  text: 'Text',
5569
5756
  selection: 'Selection',
5570
5757
  'create-natuurlijk-persoon-zaak-rol': 'Create Zaakrol - natural person',
@@ -5608,6 +5795,9 @@ const zakenApiPluginSpecification = {
5608
5795
  'set-zaakstatus': 'Create zaakstatus',
5609
5796
  statustypeUrl: 'Zaakstatus type URL',
5610
5797
  statustypeUrlTooltip: 'URL reference to the status type.',
5798
+ datumStatusGezet: 'Date status set.',
5799
+ datumStatusGezetTooltip: 'Date/time value of the zaakstatus.',
5800
+ datumStatusGezetInvalidText: 'Date and time may not be in the future.',
5611
5801
  statustoelichting: 'Zaakstatus explanation',
5612
5802
  statustoelichtingTooltip: 'An explanation of the status of a zaak that is relevant to the initiator of the zaak.',
5613
5803
  'create-zaakresultaat': 'Create Zaakresultaat',
@@ -5623,6 +5813,7 @@ const zakenApiPluginSpecification = {
5623
5813
  resultaattypeUrlSelect: 'Zaakresultaat',
5624
5814
  resultaattypeUrlSelectTooltip: 'Select the resultaat type.',
5625
5815
  inputTypeZaakStatusToggle: 'Input type Zaakstatus-URL',
5816
+ inputDatumStatusGezetToggle: 'Input type datum status gezet',
5626
5817
  inputTypeZaakResultaatToggle: 'Input type Zaakresultaat-URL',
5627
5818
  addZaakProperty: 'Add new case property',
5628
5819
  'relateer-zaken': 'Add relation between two Zaken',
@@ -5657,6 +5848,7 @@ const zakenApiPluginSpecification = {
5657
5848
  kvkNummerTooltip: 'A unique number assigned by the Chamber of Commerce. (Max. 8 characters)',
5658
5849
  vestigingsNummer: 'Branch number',
5659
5850
  vestigingsNummerTooltip: 'A short unique designation of the branch. (Max. 24 characters)',
5851
+ 'get-zaakbesluiten': 'Retrieve zaakbesluiten',
5660
5852
  'patch-zaak': 'Update zaak',
5661
5853
  patchZaakInformation: 'This action allows you to update properties of a Zaak in the Zaken API which is linked to the case.',
5662
5854
  dateformatTooltip: 'A date in the format of yyyy-mm-dd. Can also be a reference to the document or process, for example doc:customer/startDate or pv:startDate',
@@ -5699,7 +5891,9 @@ const zakenApiPluginSpecification = {
5699
5891
  objectIdentificatie: 'Object identification',
5700
5892
  resultProcessVariable: 'Result process variable',
5701
5893
  rolUuid: 'Rol UUID',
5702
- rolUuidTooltip: 'The UUID of the rol'
5894
+ rolUuidTooltip: 'The UUID of the rol',
5895
+ 'get-zaak-informatieobjecten': 'Get zaak informatieobjecten',
5896
+ resultProcessVariableTooltip: 'The name of the process variable in which the result is stored.'
5703
5897
  },
5704
5898
  de: {
5705
5899
  title: 'Zaken API',
@@ -5733,6 +5927,7 @@ const zakenApiPluginSpecification = {
5733
5927
  zaakTypeTooltip: 'In diesem Feld muss auf die zaaktype verwiesen werden.',
5734
5928
  zaakTypeSelectTooltip: 'In diesem Feld muss auf die zaaktype verwiesen werden. Wenn nur ein Zaaktyp verfügbar ist, wird dieser standardmäßig ausgewählt.',
5735
5929
  inputTypeZaakTypeToggle: 'Eingabetyp Zaaktype-URL',
5930
+ now: 'Aktuelles Datum/Uhrzeit verwenden',
5736
5931
  text: 'Text',
5737
5932
  selection: 'Auswahl',
5738
5933
  'create-natuurlijk-persoon-zaak-rol': 'Zaakrol erstellen – natürliche Person',
@@ -5740,7 +5935,6 @@ const zakenApiPluginSpecification = {
5740
5935
  'create-medewerker-zaak-rol': 'Zaakrol erstellen – Mitarbeiter',
5741
5936
  'create-organisatorische-eenheid-zaak-rol': 'Zaakrol erstellen – Organisationseinheit',
5742
5937
  'create-vestiging-zaak-rol': 'Zaakrol erstellen – Niederlassung',
5743
- 'delete-zaak-rol': 'Zum Löschen Zaakrol',
5744
5938
  'set-zaakopschorting': 'Einen Fall aussetzen',
5745
5939
  'start-hersteltermijn': 'Beginnen Sie mit der Erholungsphase',
5746
5940
  startHersteltermijnInformation: 'Diese Aktion startet eine Erholungszeit für den Fall, der mit diesem Prozess verknüpft ist.',
@@ -5776,6 +5970,9 @@ const zakenApiPluginSpecification = {
5776
5970
  'set-zaakstatus': 'Fallstatus erstellen',
5777
5971
  statustypeUrl: 'URL des Zaakstatustyps',
5778
5972
  statustypeUrlTooltip: 'URL-Referenz zum Statustyp.',
5973
+ datumStatusGezet: 'Datumsstatus festgelegt.',
5974
+ datumStatusGezetTooltip: 'Datums-/Uhrzeitwert des zaakstatus.',
5975
+ datumStatusGezetInvalidText: 'Datum und Uhrzeit dürfen nicht in der Zukunft liegen.',
5779
5976
  statustoelichting: 'Erklärung des Zaakstatus',
5780
5977
  statustoelichtingTooltip: 'Eine Erklärung des Status eines zaak, die für den Initiator des Zaak relevant ist.',
5781
5978
  'create-zaakresultaat': 'Zaakgebnis erstellen',
@@ -5791,6 +5988,7 @@ const zakenApiPluginSpecification = {
5791
5988
  resultaattypeUrlSelect: 'Zaakresultaat',
5792
5989
  resultaattypeUrlSelectTooltip: 'Wählen Sie den Resultaattype aus.',
5793
5990
  inputTypeZaakStatusToggle: 'Eingabetyp Zaakstatus-URL',
5991
+ inputDatumStatusGezetToggle: 'Eingabetyp datum status gezet',
5794
5992
  inputTypeZaakResultaatToggle: 'Eingabetyp Zaakresultaat-URL',
5795
5993
  addZaakProperty: 'Neue Case-Eigenschaft hinzufügen',
5796
5994
  'relateer-zaken': 'Beziehung zwischen Zaken herstellen',
@@ -5825,6 +6023,7 @@ const zakenApiPluginSpecification = {
5825
6023
  kvkNummerTooltip: 'Eine eindeutige Nummer, die von der Handelskammer vergeben wird. (Max. 8 Zeichen)',
5826
6024
  vestigingsNummer: 'Niederlassungsnummer',
5827
6025
  vestigingsNummerTooltip: 'Eine kurze eindeutige Bezeichnung der Niederlassung. (Max. 24 Zeichen)',
6026
+ 'get-zaakbesluiten': 'Zaakbesluiten abrufen',
5828
6027
  'patch-zaak': 'Zaak aktualisieren',
5829
6028
  patchZaakInformation: 'Mit dieser Aktion können Sie die Eigenschaften des Falls in der mit der Datei verknüpften Zaken-API aktualisieren.',
5830
6029
  addPatchZaakProperty: 'Parameter hinzufügen',
@@ -5865,9 +6064,12 @@ const zakenApiPluginSpecification = {
5865
6064
  objectTypeOverigeDefinitieObjectData: 'Objektdaten',
5866
6065
  objectTypeOverigeDefinitieObjectDataTooltip: 'Ein gültiger jq-Ausdruck. Dies wird mit den JSON-Daten aus der OBJEKT-URL kombiniert, um die Objektdaten auszulesen und die Struktur der Daten gegen das Schema zu validieren. Beispiel: .record.data.',
5867
6066
  objectIdentificatie: 'Objektidentifikation',
5868
- resultProcessVariable: 'Ergebnis process variable',
6067
+ 'get-zaak-informatieobjecten': 'Informatieobjecten zum Fall abrufen',
6068
+ resultProcessVariable: 'Ergebnis Prozessvariable',
6069
+ resultProcessVariableTooltip: 'Der Name der Prozessvariable, in der das Ergebnis gespeichert wird.',
5869
6070
  rolUuid: 'Rolle UUID',
5870
- rolUuidTooltip: 'Die UUID der Rolle'
6071
+ rolUuidTooltip: 'Die UUID der Rolle',
6072
+ createZaakrolNietNatuurlijkPersoonIdentifierFieldsInformation: 'At least one of the following fields must be completed to identify the non-natural person:<br/>- Not a natural person identification<br/>- Other not natural person number<br/>- Chamber of Commerce number<br/>- Branch number',
5871
6073
  },
5872
6074
  },
5873
6075
  };
@@ -6148,19 +6350,6 @@ const objectenApiPluginSpecification = {
6148
6350
  objectUrl: 'Object URL',
6149
6351
  objectUrlTooltip: "The URL of the object to be removed from the Objecten API. The value entered may be a process variable, for example: 'pv:object'.",
6150
6352
  },
6151
- de: {
6152
- title: 'Objecten API',
6153
- url: 'Objecten API URL',
6154
- urlTooltip: 'Die URL zur REST API von Objecten',
6155
- description: 'Mit den Spezifikationen der Other Objects Registration API (Objecten) können Kommunen Objecten eindeutig registrieren, speichern und darauf zugreifen.',
6156
- configurationTitle: 'Konfigurationsname',
6157
- configurationTitleTooltip: 'An diesem Namen wird das Plugin im Rest der Anwendung erkennbar sein',
6158
- authenticationPluginConfiguration: 'Authentifizierungs-Plugin-Konfiguration',
6159
- 'delete-object': 'Objekt löschen',
6160
- deleteObjectWarning: 'Achtung: Die Objekte, die mit dieser Aktion gelöscht werden, dürfen nicht mit einem Zaak verknüpft werden.',
6161
- objectUrl: 'Objekt URL',
6162
- objectUrlTooltip: "Die URL des Objekts, das aus der Objecten API entfernt werden soll. Der eingegebene Wert kann eine Prozessvariable sein, zum Beispiel: 'pv:object'.",
6163
- },
6164
6353
  },
6165
6354
  };
6166
6355
 
@@ -6277,7 +6466,7 @@ class GetStatustypenConfigurationComponent {
6277
6466
  this.handleValid(formValue);
6278
6467
  }
6279
6468
  handleValid(formValue) {
6280
- const valid = !!(formValue.processVariable);
6469
+ const valid = !!formValue.processVariable;
6281
6470
  this._valid$.next(valid);
6282
6471
  this.valid.emit(valid);
6283
6472
  }
@@ -6293,11 +6482,11 @@ class GetStatustypenConfigurationComponent {
6293
6482
  });
6294
6483
  }
6295
6484
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetStatustypenConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6296
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: GetStatustypenConfigurationComponent, isStandalone: false, selector: "valtimo-get-statustypen-configuration", inputs: { disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$", save$: "save$" }, outputs: { configuration: "configuration", valid: "valid" }, 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<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 {{ 'getStatustypenInformation' | pluginTranslate: pluginId | async }}\n </v-paragraph>\n\n <v-form (valueChange)=\"formValueChange($event)\">\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]=\"'processVariableTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"zaakTypeUrl\"\n [title]=\"'zaakTypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakTypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'zaakTypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n </v-form>\n</ng-container>\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" }] }); }
6485
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: GetStatustypenConfigurationComponent, isStandalone: false, selector: "valtimo-get-statustypen-configuration", inputs: { disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$", save$: "save$" }, outputs: { configuration: "configuration", valid: "valid" }, 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<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 {{ 'getStatustypenInformation' | pluginTranslate: pluginId | async }}\n </v-paragraph>\n\n <v-form (valueChange)=\"formValueChange($event)\">\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]=\"'processVariableTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"zaakTypeUrl\"\n [title]=\"'zaakTypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakTypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'zaakTypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n </v-form>\n</ng-container>\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" }] }); }
6297
6486
  }
6298
6487
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetStatustypenConfigurationComponent, decorators: [{
6299
6488
  type: Component,
6300
- args: [{ standalone: false, selector: 'valtimo-get-statustypen-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<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 {{ 'getStatustypenInformation' | pluginTranslate: pluginId | async }}\n </v-paragraph>\n\n <v-form (valueChange)=\"formValueChange($event)\">\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]=\"'processVariableTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"zaakTypeUrl\"\n [title]=\"'zaakTypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakTypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'zaakTypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n </v-form>\n</ng-container>\n" }]
6489
+ args: [{ standalone: false, selector: 'valtimo-get-statustypen-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<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 {{ 'getStatustypenInformation' | pluginTranslate: pluginId | async }}\n </v-paragraph>\n\n <v-form (valueChange)=\"formValueChange($event)\">\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]=\"'processVariableTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"zaakTypeUrl\"\n [title]=\"'zaakTypeUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakTypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'zaakTypeUrlTooltip' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n >\n </v-input>\n </v-form>\n</ng-container>\n" }]
6301
6490
  }], propDecorators: { disabled$: [{
6302
6491
  type: Input
6303
6492
  }], pluginId: [{
@@ -6481,7 +6670,7 @@ class GetResultaattypenConfigurationComponent {
6481
6670
  this.handleValid(formValue);
6482
6671
  }
6483
6672
  handleValid(formValue) {
6484
- const valid = !!(formValue.processVariable);
6673
+ const valid = !!formValue.processVariable;
6485
6674
  this._valid$.next(valid);
6486
6675
  this.valid.emit(valid);
6487
6676
  }
@@ -6497,11 +6686,11 @@ class GetResultaattypenConfigurationComponent {
6497
6686
  });
6498
6687
  }
6499
6688
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetResultaattypenConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6500
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: GetResultaattypenConfigurationComponent, isStandalone: false, selector: "valtimo-get-resultaattypen-configuration", inputs: { disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$", save$: "save$" }, outputs: { configuration: "configuration", valid: "valid" }, 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<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 {{ 'getResultaattypenInformation' | pluginTranslate: pluginId }}\n </v-paragraph>\n\n <v-form (valueChange)=\"formValueChange($event)\">\n <v-input\n name=\"processVariable\"\n [title]=\"'processVariable' | pluginTranslate: pluginId\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'processVariableTooltip' | pluginTranslate: pluginId\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"zaakTypeUrl\"\n [title]=\"'zaakTypeUrl' | pluginTranslate: pluginId\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakTypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'zaakTypeUrlTooltip' | pluginTranslate: pluginId\"\n [fullWidth]=\"true\"\n >\n </v-input>\n </v-form>\n</ng-container>\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" }] }); }
6689
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: GetResultaattypenConfigurationComponent, isStandalone: false, selector: "valtimo-get-resultaattypen-configuration", inputs: { disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$", save$: "save$" }, outputs: { configuration: "configuration", valid: "valid" }, 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<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 {{ 'getResultaattypenInformation' | pluginTranslate: pluginId }}\n </v-paragraph>\n\n <v-form (valueChange)=\"formValueChange($event)\">\n <v-input\n name=\"processVariable\"\n [title]=\"'processVariable' | pluginTranslate: pluginId\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'processVariableTooltip' | pluginTranslate: pluginId\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"zaakTypeUrl\"\n [title]=\"'zaakTypeUrl' | pluginTranslate: pluginId\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakTypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'zaakTypeUrlTooltip' | pluginTranslate: pluginId\"\n [fullWidth]=\"true\"\n >\n </v-input>\n </v-form>\n</ng-container>\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" }] }); }
6501
6690
  }
6502
6691
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetResultaattypenConfigurationComponent, decorators: [{
6503
6692
  type: Component,
6504
- args: [{ standalone: false, selector: 'valtimo-get-resultaattypen-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<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 {{ 'getResultaattypenInformation' | pluginTranslate: pluginId }}\n </v-paragraph>\n\n <v-form (valueChange)=\"formValueChange($event)\">\n <v-input\n name=\"processVariable\"\n [title]=\"'processVariable' | pluginTranslate: pluginId\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'processVariableTooltip' | pluginTranslate: pluginId\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"zaakTypeUrl\"\n [title]=\"'zaakTypeUrl' | pluginTranslate: pluginId\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakTypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'zaakTypeUrlTooltip' | pluginTranslate: pluginId\"\n [fullWidth]=\"true\"\n >\n </v-input>\n </v-form>\n</ng-container>\n" }]
6693
+ args: [{ standalone: false, selector: 'valtimo-get-resultaattypen-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<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 {{ 'getResultaattypenInformation' | pluginTranslate: pluginId }}\n </v-paragraph>\n\n <v-form (valueChange)=\"formValueChange($event)\">\n <v-input\n name=\"processVariable\"\n [title]=\"'processVariable' | pluginTranslate: pluginId\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.processVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'processVariableTooltip' | pluginTranslate: pluginId\"\n [fullWidth]=\"true\"\n >\n </v-input>\n\n <v-input\n name=\"zaakTypeUrl\"\n [title]=\"'zaakTypeUrl' | pluginTranslate: pluginId\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.zaakTypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'zaakTypeUrlTooltip' | pluginTranslate: pluginId\"\n [fullWidth]=\"true\"\n >\n </v-input>\n </v-form>\n</ng-container>\n" }]
6505
6694
  }], propDecorators: { disabled$: [{
6506
6695
  type: Input
6507
6696
  }], pluginId: [{
@@ -6859,42 +7048,6 @@ const catalogiApiPluginSpecification = {
6859
7048
  zaakTypeUrl: 'Zaaktype URL',
6860
7049
  zaakTypeUrlTooltip: 'Specify the URL of the relevant Zaaktype here if it differs from the Zaak linked to the Case',
6861
7050
  },
6862
- de: {
6863
- title: 'Catalogi API',
6864
- url: 'Catalogi API URL',
6865
- urlTooltip: 'Die URL zur REST API von Catalogi',
6866
- description: 'API zum Speichern und Abrufen von Zaaktype katalogen, Zaaktypen und untergeordneten Typen.',
6867
- configurationTitle: 'Konfigurationsname',
6868
- configurationTitleTooltip: 'Der Name der aktuellen Plugin-Konfiguration. Unter diesem Namen ist die Konfiguration im Rest der Anwendung zu finden.',
6869
- authenticationPluginConfiguration: 'Authentifizierungs-Plugin-Konfiguration',
6870
- 'get-statustypen': 'Statustypen anfordern',
6871
- getStatustypenInformation: 'Der Statustypen wird abgerufen und dann in einer Prozessvariablen gespeichert.',
6872
- 'get-statustype': 'Statustype anfordern',
6873
- getStatustypeInformation: 'Die zum Zaaktype gehörenden Statustypen werden abgerufen und anschließend in einer Prozessvariablen gespeichert.',
6874
- statustype: 'Statustype',
6875
- statustypeTooltip: 'Generische Angabe der Art eines Status.',
6876
- processVariable: 'Prozessvariablenname',
6877
- processVariableTooltip: 'Sobald der Statustype abgerufen wurde, wird er in einer Prozessvariablen mit diesem Namen gespeichert.',
6878
- 'get-besluittype': 'Besluittype anfordern',
6879
- getBesluittypeInformation: 'Der besluittype wird abgerufen und dann in einer Prozessvariablen gespeichert.',
6880
- besluittype: 'Besluittype',
6881
- besluittypeTooltip: 'Beschreibung der Art der besluit.',
6882
- besluitProcessVariableTooltip: 'Sobald der besluittype abgerufen wurde, wird er in einer Prozessvariablen mit diesem Namen gespeichert.',
6883
- 'get-resultaattypen': 'Resultaattypen anfordern',
6884
- getResultaattypenInformation: 'Die zum Zaaktype gehörenden Ergebnistypen werden abgerufen und anschließend in einer Prozessvariablen gespeichert.',
6885
- 'get-resultaattype': 'Resultaattype anfordern',
6886
- getResultaattypeInformation: 'Der resultaattype wird abgerufen und dann in einer Prozessvariablen gespeichert.',
6887
- resultaattype: 'Resultaattype',
6888
- resultaattypeTooltip: 'Beschreibung der Art der resultaat.',
6889
- reslutaatProcessVariableTooltip: 'Sobald der resultaattype abgerufen wurde, wird er in einer Prozessvariablen mit diesem Namen gespeichert.',
6890
- 'get-eigenschap': 'Eigenschap anfordern',
6891
- getEigenschapInformation: 'Der eigenschap wird abgerufen und dann in einer Prozessvariablen gespeichert.',
6892
- eigenschap: 'Eigenschap',
6893
- eigenschapTooltip: 'Name der Art der eigenschap.',
6894
- eigenschapProcessVariableTooltip: 'Sobald der eigenschap abgerufen wurde, wird er in einer Prozessvariablen mit diesem Namen gespeichert.',
6895
- zaakTypeUrl: 'Zaaktype URL',
6896
- zaakTypeUrlTooltip: 'Geben Sie hier die URL des jeweiligen Zaaktype an, falls diese von der mit dem Fall verknüpften Zaak abweicht.',
6897
- },
6898
7051
  },
6899
7052
  };
6900
7053
 
@@ -7081,17 +7234,6 @@ const notificatiesApiPluginSpecification = {
7081
7234
  configurationTitleTooltip: 'The name of the current plugin configuration. Under this name, the configuration can be found in the rest of the application.',
7082
7235
  authenticationPluginConfiguration: 'Authentication plugin configuration',
7083
7236
  },
7084
- de: {
7085
- title: 'Notificaties API',
7086
- url: 'Notificaties API URL',
7087
- urlTooltip: 'Die URL zur REST API von Notificaties',
7088
- callbackUrl: 'Callback URL',
7089
- callbackUrlTooltip: 'Der GZAC-API-endpoint, an den Benachrichtigungen gesendet werden sollen.',
7090
- description: 'Eine API für den Zugriff auf eine Komponente für das Benachrichtigungsrouting.',
7091
- configurationTitle: 'Konfigurationsname',
7092
- configurationTitleTooltip: 'Der Name der aktuellen Plugin-Konfiguration. Unter diesem Namen ist die Konfiguration im Rest der Anwendung zu finden.',
7093
- authenticationPluginConfiguration: 'Authentifizierungs-Plugin-Konfiguration',
7094
- },
7095
7237
  },
7096
7238
  };
7097
7239
 
@@ -7265,16 +7407,6 @@ const openNotificatiesPluginSpecification = {
7265
7407
  clientSecret: 'Secret',
7266
7408
  clientSecretTooltip: 'Enter the secret associated with the clientId above',
7267
7409
  },
7268
- de: {
7269
- title: 'OpenNotificaties',
7270
- description: 'OpenNotificaties ist eine produktionstaugliche API-Plattform, die den API-Standard für fallorientiertes Arbeiten (die ZGW-APIs) implementiert.',
7271
- configurationTitle: 'Konfigurationsname',
7272
- configurationTitleTooltip: 'Unter diesem Namen wird das Plugin im Rest der Anwendung erkennbar sein',
7273
- clientId: 'Client ID',
7274
- clientIdTooltip: 'Geben Sie hier die clientId ein, die unter OpenNotificaties-Verwaltung konfiguriert ist (siehe API-Berechtigungen > Anwendungen). Diese clientId muss die richtigen Berechtigungen für die erforderliche Funktionalität haben',
7275
- clientSecret: 'Secret',
7276
- clientSecretTooltip: 'Geben Sie das mit der obigen clientId verknüpfte Geheimnis ein',
7277
- },
7278
7410
  },
7279
7411
  };
7280
7412
 
@@ -7402,13 +7534,13 @@ class PortaaltaakConfigurationComponent {
7402
7534
  });
7403
7535
  });
7404
7536
  }
7405
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PortaaltaakConfigurationComponent, deps: [{ token: PluginManagementService }, { token: ObjectService }, { token: i2.TranslateService }, { token: PluginTranslationService }, { token: i4$1.ProcessService }], target: i0.ɵɵFactoryTarget.Component }); }
7537
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PortaaltaakConfigurationComponent, deps: [{ token: PluginManagementService }, { token: ObjectService }, { token: i2.TranslateService }, { token: PluginTranslationService }, { token: i4.ProcessService }], target: i0.ɵɵFactoryTarget.Component }); }
7406
7538
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: PortaaltaakConfigurationComponent, isStandalone: false, selector: "valtimo-portaaltaak-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=\"configurationTitle\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"Portaaltaak Plugin\"\n >\n </v-input>\n <ng-container\n *ngIf=\"notificatiesApiPluginSelectItems$ | async as notificatiesApiPluginSelectItems\"\n >\n <v-select\n [items]=\"notificatiesApiPluginSelectItems\"\n [margin]=\"true\"\n name=\"notificatiesApiPluginConfiguration\"\n [title]=\"'notificatiesApiPluginConfiguration' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.notificatiesApiPluginConfiguration\"\n [required]=\"true\"\n [loading]=\"!notificatiesApiPluginSelectItems\"\n [tooltip]=\"'notificatiesApiPluginConfigurationTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <ng-container\n *ngIf=\"objectManagementConfigurationItems$ | async as objectManagementConfigurationItems\"\n >\n <v-select\n [items]=\"objectManagementConfigurationItems\"\n [margin]=\"true\"\n name=\"objectManagementConfigurationId\"\n [title]=\"'objectManagementConfiguration' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.objectManagementConfigurationId\"\n [required]=\"true\"\n [loading]=\"!objectManagementConfigurationItems\"\n [tooltip]=\"'objectManagementConfigurationTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <ng-container *ngIf=\"{processSelectItems: processSelectItems$ | async} as vars\">\n <v-select\n [items]=\"vars.processSelectItems\"\n [margin]=\"true\"\n name=\"completeTaakProcess\"\n [title]=\"'completeTaakProcess' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.completeTaakProcess\"\n [required]=\"true\"\n [loading]=\"!vars.processSelectItems\"\n [tooltip]=\"'completeTaakProcessTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n</v-form>\n", styles: ["/*!\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", "dataTestId"], outputs: ["selectedChange"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: PluginTranslatePipe, name: "pluginTranslate" }] }); }
7407
7539
  }
7408
7540
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PortaaltaakConfigurationComponent, decorators: [{
7409
7541
  type: Component,
7410
7542
  args: [{ standalone: false, selector: 'valtimo-portaaltaak-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 } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"Portaaltaak Plugin\"\n >\n </v-input>\n <ng-container\n *ngIf=\"notificatiesApiPluginSelectItems$ | async as notificatiesApiPluginSelectItems\"\n >\n <v-select\n [items]=\"notificatiesApiPluginSelectItems\"\n [margin]=\"true\"\n name=\"notificatiesApiPluginConfiguration\"\n [title]=\"'notificatiesApiPluginConfiguration' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.notificatiesApiPluginConfiguration\"\n [required]=\"true\"\n [loading]=\"!notificatiesApiPluginSelectItems\"\n [tooltip]=\"'notificatiesApiPluginConfigurationTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <ng-container\n *ngIf=\"objectManagementConfigurationItems$ | async as objectManagementConfigurationItems\"\n >\n <v-select\n [items]=\"objectManagementConfigurationItems\"\n [margin]=\"true\"\n name=\"objectManagementConfigurationId\"\n [title]=\"'objectManagementConfiguration' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.objectManagementConfigurationId\"\n [required]=\"true\"\n [loading]=\"!objectManagementConfigurationItems\"\n [tooltip]=\"'objectManagementConfigurationTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <ng-container *ngIf=\"{processSelectItems: processSelectItems$ | async} as vars\">\n <v-select\n [items]=\"vars.processSelectItems\"\n [margin]=\"true\"\n name=\"completeTaakProcess\"\n [title]=\"'completeTaakProcess' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.completeTaakProcess\"\n [required]=\"true\"\n [loading]=\"!vars.processSelectItems\"\n [tooltip]=\"'completeTaakProcessTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n</v-form>\n", styles: ["/*!\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"] }]
7411
- }], ctorParameters: () => [{ type: PluginManagementService }, { type: ObjectService }, { type: i2.TranslateService }, { type: PluginTranslationService }, { type: i4$1.ProcessService }], propDecorators: { save$: [{
7543
+ }], ctorParameters: () => [{ type: PluginManagementService }, { type: ObjectService }, { type: i2.TranslateService }, { type: PluginTranslationService }, { type: i4.ProcessService }], propDecorators: { save$: [{
7412
7544
  type: Input
7413
7545
  }], disabled$: [{
7414
7546
  type: Input
@@ -7759,48 +7891,6 @@ const portaaltaakPluginSpecification = {
7759
7891
  destination: 'Destination',
7760
7892
  source: 'Source',
7761
7893
  },
7762
- de: {
7763
- title: 'Portalaufgabe',
7764
- description: 'Eine Komponente für den Zugriff auf eine Portal-Aufgabenweiterleitungskomponente.',
7765
- configurationTitle: 'Konfigurationsname',
7766
- configurationTitleTooltip: 'Der Name der aktuellen Plugin-Konfiguration. Unter diesem Namen ist die Konfiguration im Rest der Anwendung zu finden.',
7767
- notificatiesApiPluginConfiguration: 'Benachrichtigungs-API plugin',
7768
- notificatiesApiPluginConfigurationTooltip: 'Wählen Sie das Benachrichtigungs-API-Plugin aus. Bleibt das Auswahlfeld leer, muss das Benachrichtigungs-API-Plugin erst erstellt werden.',
7769
- objectManagementConfiguration: 'Objektverwaltungskonfiguration',
7770
- objectManagementConfigurationTooltip: 'Wählen Sie die Objektverwaltungskonfiguration aus. Bleibt das Auswahlfeld leer, muss zunächst die Objektverwaltungskonfiguration erstellt werden.',
7771
- 'create-portaaltaak': 'Portalaufgabe erstellen',
7772
- 'complete-portaaltaak': 'Portalaufgabe abschließen',
7773
- formType: 'Formulartyp',
7774
- formTypeTooltip: 'Wählen Sie hier aus, ob das anzuzeigende Formular aus einer Set-Definition oder von einer externen URL stammen soll.',
7775
- id: 'Formulardefinition',
7776
- url: 'URL',
7777
- sendData: 'Auftragsdaten für den Empfänger',
7778
- sendDataTooltip: "Geben Sie hier Schlüssel und Werte für Daten ein, die an die Objecten API gesendet werden sollen. Der Schlüssel ist hier der Pfad im Objekt, das gefüllt werden soll (z. B. 'firstName'). Der Wert zeigt auf die Daten, mit denen dieses Feld gefüllt werden muss (z. B. 'doc:/customer/firstName').",
7779
- receiveData: 'Vom Empfänger eingegebene Informationen',
7780
- receiveDataTooltip: "Geben Sie hier Schlüssel und Werte für Daten ein, die von der Objecten API empfangen werden sollen. Der Schlüssel ist hier der Ort, an dem die Daten gespeichert werden sollen (z. B. 'doc:/customer/signedAgreement'). Der Wert zeigt auf den Pfad im Objekt, aus dem die Daten stammen sollen (z. B. '/signedAgreement').",
7781
- receiver: 'Empfänger',
7782
- receiverTooltip: 'Bestimmen Sie hier, wer die Daten der abgeschlossenen Aufgabe erhalten soll.',
7783
- zaakInitiator: 'Initiator des Falles',
7784
- other: 'Andere',
7785
- otherReceiver: 'Anderer Empfänger',
7786
- otherReceiverTooltip: 'Sie haben die Option für einen anderen Empfänger gewählt. Wählen Sie hier aus, welcher Typ das sein soll.',
7787
- kvk: 'KVK-Nummer',
7788
- bsn: 'Bürgerservicenummer (BSN)',
7789
- kvkTooltip: 'Die KVK-Nummer des gewünschten Empfängers.',
7790
- bsnTooltip: 'Die Bürgerservicenummer (BSN) des gewünschten Empfängers.',
7791
- completeTaakProcess: 'Handhabungsprozess für hochgeladene Dokumente',
7792
- completeTaakProcessTooltip: 'Der Prozess, der die hochgeladenen Dokumente im Portal handhaben soll.',
7793
- identificationKey: 'Identifikationsschlüssel',
7794
- identificationKeyTooltip: "Der eingegebene Schlüssel bestimmt, wie der Empfänger identifiziert wird. Gültige Beispiele sind 'bsn' oder 'kvk'.",
7795
- identificationValue: 'Identifikationswert',
7796
- identificationValueTooltip: "Der Wert, der den Empfänger identifiziert. Wird beispielsweise im Feld 'Identifikationsschlüssel' der Wert 'bsn' eingetragen, kann in diesem Feld eine Sozialversicherungsnummer eingetragen werden (z. B. 558099476).",
7797
- verloopDurationInDays: 'Ablaufzeit der Aufgabe in Tagen',
7798
- verloopDurationInDaysTooltip: 'Die Anzahl der Tage vom Erstellungszeitpunkt bis zum Ablauf der Aufgabe. Dies wird nur in der Portalaufgabe verwendet. Das BPMN-Fälligkeitsdatum muss separat konfiguriert werden.',
7799
- destinationInObject: 'Pfad im Objekt',
7800
- value: 'Wert',
7801
- destination: 'Ziel',
7802
- source: 'Quelle',
7803
- },
7804
7894
  },
7805
7895
  };
7806
7896
 
@@ -8088,13 +8178,13 @@ class VerzoekConfigurationComponent {
8088
8178
  }, 250);
8089
8179
  }));
8090
8180
  }
8091
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: VerzoekConfigurationComponent, deps: [{ token: PluginManagementService }, { token: i2.TranslateService }, { token: PluginTranslationService }, { token: VerzoekPluginService }, { token: i4$1.ProcessService }, { token: i2$2.ModalService }, { token: i4.IconService }], target: i0.ɵɵFactoryTarget.Component }); }
8092
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: VerzoekConfigurationComponent, isStandalone: false, selector: "valtimo-verzoek-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, viewQueries: [{ propertyName: "mappingModals", predicate: VModalComponent, descendants: true }], 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: mappedPrefill$ ? (mappedPrefill$ | async) : null,\n } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"Verzoek Plugin\"\n >\n </v-input>\n <ng-container\n *ngIf=\"{notificatiePluginSelectItems: notificatiePluginSelectItems$ | async} as vars\"\n >\n <v-select\n [items]=\"vars.notificatiePluginSelectItems\"\n [margin]=\"true\"\n name=\"notificatiesApiPluginConfiguration\"\n [title]=\"'notificatiesApiPluginConfiguration' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.notificatiesApiPluginConfiguration\"\n [required]=\"true\"\n [loading]=\"!vars.notificatiePluginSelectItems\"\n [tooltip]=\"'notificatiesApiPluginConfigurationTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <ng-container *ngIf=\"{processSelectItems: processSelectItems$ | async} as vars\">\n <v-select\n [items]=\"vars.processSelectItems\"\n [margin]=\"true\"\n name=\"processToStart\"\n [title]=\"'processToStart' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.processToStart\"\n [required]=\"true\"\n [loading]=\"!vars.processSelectItems\"\n [tooltip]=\"'processToStartTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <v-input\n name=\"rsin\"\n [title]=\"'rsin' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.rsin\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'rsinTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"\"\n >\n </v-input>\n <v-multi-input-form\n name=\"verzoekProperties\"\n [title]=\"'verzoekProperties' | pluginTranslate: pluginId | async\"\n [formTemplate]=\"mappingForm\"\n [addRowText]=\"'addVerzoekType' | pluginTranslate: pluginId | async\"\n [required]=\"false\"\n [tooltip]=\"'verzoekPropertiesTooltip' | pluginTranslate: pluginId | async\"\n (deleteRowEvent)=\"deleteRow($event)\"\n [initialAmountOfRows]=\"0\"\n [minimumAmountOfRows]=\"0\"\n [defaultValues]=\"obs.prefill?.verzoekProperties\"\n >\n </v-multi-input-form>\n</v-form>\n\n<ng-template\n #mappingForm\n let-index=\"index\"\n let-uuid=\"uuid\"\n let-changeFunction=\"changeFunction\"\n let-prefill=\"prefill\"\n>\n <ng-container\n *ngIf=\"{\n disabled: disabled$ | async,\n } as obs\"\n >\n <v-form (valueChange)=\"changeFunction($event, uuid); verzoekTypeFormChange($event, uuid)\">\n <v-input\n name=\"type\"\n [title]=\"'type' | pluginTranslate: pluginId | async\"\n [margin]=\"false\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"prefill?.type\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'typeTooltip' | pluginTranslate: pluginId | async\"\n [smallMargin]=\"true\"\n placeholder=\"\"\n >\n </v-input>\n <ng-container *ngIf=\"{caseSelectItems: caseSelectItems$ | async} as vars\">\n <v-select\n [items]=\"vars.caseSelectItems\"\n [smallMargin]=\"true\"\n name=\"caseDefinitionKey\"\n [title]=\"'caseDefinitionKey' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"prefill?.caseDefinitionKey\"\n [required]=\"true\"\n [loading]=\"!vars.caseSelectItems\"\n [tooltip]=\"'caseDefinitionKeyTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <ng-container>\n <v-select\n [items]=\"\n caseVersionTagSelectItemsObservables[uuid]?.caseDefinitionKey &&\n (caseVersionTagSelectItemsObservables[uuid].items | async)\n \"\n [smallMargin]=\"true\"\n name=\"caseDefinitionVersionTag\"\n [title]=\"'caseDefinitionVersionTag' | pluginTranslate: pluginId | async\"\n [disabled]=\"\n obs.disabled || !caseVersionTagSelectItemsObservables[uuid]?.caseDefinitionKey\n \"\n [defaultSelectionId]=\"prefill?.caseDefinitionVersionTag\"\n [required]=\"true\"\n [tooltip]=\"'caseDefinitionVersionTagTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <ng-container\n *ngIf=\"{objectManagementSelectItems: objectManagementSelectItems$ | async} as vars\"\n >\n <v-select\n [items]=\"vars.objectManagementSelectItems\"\n [smallMargin]=\"true\"\n name=\"objectManagementId\"\n [title]=\"'objectManagementId' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"prefill?.objectManagementId\"\n [required]=\"true\"\n [loading]=\"!vars.objectManagementSelectItems\"\n [tooltip]=\"'objectManagementIdTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <v-select\n [items]=\"\n rolTypeSelectItemsObservables[uuid]?.caseDefinitionId &&\n (rolTypeSelectItemsObservables[uuid].items | async)\n \"\n [smallMargin]=\"true\"\n name=\"initiatorRoltypeUrl\"\n [title]=\"'initiatorRoltypeUrl' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled || !rolTypeSelectItemsObservables[uuid]?.caseDefinitionId\"\n [defaultSelectionId]=\"prefill?.initiatorRoltypeUrl\"\n [required]=\"true\"\n [tooltip]=\"'initiatorRoltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n <v-input\n name=\"initiatorRolDescription\"\n [title]=\"'initiatorRolDescription' | pluginTranslate: pluginId | async\"\n [margin]=\"false\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"prefill?.initiatorRolDescription || 'Initiator'\"\n [required]=\"true\"\n [tooltip]=\"'initiatorRolDescriptionTooltip' | pluginTranslate: pluginId | async\"\n [smallMargin]=\"true\"\n placeholder=\"\"\n >\n </v-input>\n <ng-container *ngIf=\"{processSelectItems: processSelectItems$ | async} as vars\">\n <v-select\n [items]=\"vars.processSelectItems\"\n [smallMargin]=\"true\"\n name=\"processDefinitionKey\"\n [title]=\"'processDefinitionKey' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"prefill?.processDefinitionKey\"\n [required]=\"true\"\n [loading]=\"!vars.processSelectItems\"\n [tooltip]=\"'processDefinitionKeyTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <v-radio\n name=\"copyStrategy\"\n [disabled]=\"obs.disabled\"\n [title]=\"'copyStrategy' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'copyStrategyTooltip' | pluginTranslate: pluginId | async\"\n [radioValues]=\"radioItems$ | async\"\n [smallMargin]=\"true\"\n [defaultValue]=\"prefill?.copyStrategy || 'full'\"\n >\n </v-radio>\n <ng-container *ngIf=\"showMappingButtons[uuid]\">\n <v-input-label\n [title]=\"'mapping' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'mappingTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input-label>\n\n <button cdsButton (click)=\"openMappingModal(uuid)\" mdiIcon=\"table\">\n <svg cdsIcon=\"data-table\" size=\"16\"></svg>\n {{ 'setMapping' | pluginTranslate: pluginId | async }}\n </button>\n </ng-container>\n <v-input class=\"hidden-input\" name=\"uuid\" [defaultValue]=\"uuid\"> </v-input>\n </v-form>\n <v-modal [parentId]=\"uuid\" (closeEvent)=\"closeMappingModal(uuid)\" [maxWidthPx]=\"960\">\n <div role=\"header\">\n <h3 cdsModalHeaderHeading>{{ 'setMapping' | pluginTranslate: pluginId | async }}</h3>\n </div>\n\n <div role=\"content\">\n <div class=\"cds--text-input__field-wrapper\">\n <cds-label [disabled]=\"obs.disabled\">\n <span class=\"label-with-tooltip select-label\">\n {{ 'mapping' | pluginTranslate: pluginId | async }}\n <v-tooltip-icon\n [tooltip]=\"'mappingTooltip' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n ></v-tooltip-icon>\n </span>\n </cds-label>\n <valtimo-carbon-multi-input\n *ngIf=\"showMappingModalsDelay[uuid]\"\n type=\"keyValuePathSelector\"\n (valueChange)=\"mappingValueChange($event, uuid)\"\n [defaultValues]=\"mappings[uuid] || prefill?.mapping\"\n [valueColumnTitle]=\"'target' | pluginTranslate: pluginId | async\"\n [keyColumnTitle]=\"'source' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n valuePathSelectorNotation=\"slashes\"\n [valuePathSelectorCaseDefinitionKey]=\"\n getSelectedCaseDefinitionKeyForIndex(index) | async\n \"\n [valuePathSelectorPrefixes]=\"[ValuePathSelectorPrefix.DOC]\"\n [keyColumnFlex]=\"1\"\n [valueColumnFlex]=\"2\"\n ></valtimo-carbon-multi-input>\n </div>\n </div>\n\n <div role=\"footer\" class=\"modal-buttons-container\">\n <button\n cdsButton=\"secondary\"\n [attr.modal-primary-focus]=\"true\"\n (click)=\"closeMappingModal(uuid)\"\n [disabled]=\"obs.disabled\"\n >\n {{ 'close' | pluginTranslate: pluginId | async }}\n </button>\n\n <button\n cdsButton=\"primary\"\n [attr.modal-primary-focus]=\"true\"\n [disabled]=\"obs.disabled\"\n (click)=\"saveMapping(uuid)\"\n [disabled]=\"obs.disabled\"\n >\n {{ 'save' | pluginTranslate: pluginId | async }}\n </button>\n </div>\n </v-modal>\n </ng-container>\n</ng-template>\n", styles: [".label-with-tooltip{display:flex;align-items:center}.select-label{padding-bottom:.5rem;width:250px}.hidden-input{display:none}.cds--text-input__field-wrapper{flex-direction:column}.modal-buttons-container{width:100%;display:flex;justify-content:flex-end}\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", "dataTestId"], outputs: ["selectedChange"] }, { kind: "component", type: i2$2.MultiInputFormComponent, selector: "v-multi-input-form", inputs: ["name", "title", "titleTranslationKey", "type", "initialAmountOfRows", "minimumAmountOfRows", "maxRows", "addRowText", "addRowTranslationKey", "deleteRowText", "deleteRowTranslationKey", "disabled", "defaultValues", "margin", "tooltip", "required", "formTemplate"], outputs: ["valueChange", "deleteRowEvent"] }, { 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: i2$2.InputLabelComponent, selector: "v-input-label", inputs: ["name", "tooltip", "tooltipTranslationKey", "largeMargin", "small", "noMargin", "title", "titleTranslationKey", "required", "disabled", "carbonTheme"] }, { kind: "directive", type: i4.ModalHeaderHeading, selector: "[cdsModalHeaderHeading], [ibmModalHeaderHeading]" }, { kind: "component", type: i4.Label, selector: "cds-label, ibm-label", inputs: ["labelInputID", "disabled", "skeleton", "helperText", "invalidText", "invalid", "warn", "warnText", "ariaLabel"] }, { kind: "component", type: i2$2.TooltipIconComponent, selector: "v-tooltip-icon", inputs: ["tooltip", "disabled"] }, { kind: "component", type: i2$2.CarbonMultiInputComponent, selector: "valtimo-carbon-multi-input", inputs: ["addRowText", "addButtonType", "addRowTranslationKey", "arbitraryAmountTitles", "arbitraryValueAmount", "defaultValues", "deleteRowText", "deleteRowTranslationKey", "disabled", "dropdownColumnTitle", "dropdownItems", "dropdownWidth", "fullWidth", "hideAddButton", "hideDeleteButton", "initialAmountOfRows", "keyColumnTitle", "margin", "maxRows", "minimumAmountOfRows", "name", "required", "title", "titleTranslationKey", "tooltip", "type", "valueColumnTitle", "valuePathSelectorCaseDefinitionKey", "valuePathSelectorPrefixes", "valuePathSelectorShowCaseDefinitionSelector", "valuePathSelectorNotation", "keyColumnFlex", "dropdownColumnFlex", "valueColumnFlex"], outputs: ["valueChange", "allValuesValidEvent"] }, { kind: "directive", type: i4.Button, selector: "[cdsButton], [ibmButton]", inputs: ["ibmButton", "cdsButton", "size", "skeleton", "iconOnly", "isExpressive"] }, { kind: "component", type: i2$2.VModalComponent, selector: "v-modal", inputs: ["appearingDelayMs", "maxWidthPx", "hideFooter", "parentId"], outputs: ["closeEvent"] }, { kind: "directive", type: i4.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" }] }); }
8181
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: VerzoekConfigurationComponent, deps: [{ token: PluginManagementService }, { token: i2.TranslateService }, { token: PluginTranslationService }, { token: VerzoekPluginService }, { token: i4.ProcessService }, { token: i2$2.ModalService }, { token: i1$3.IconService }], target: i0.ɵɵFactoryTarget.Component }); }
8182
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: VerzoekConfigurationComponent, isStandalone: false, selector: "valtimo-verzoek-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", prefillConfiguration$: "prefillConfiguration$" }, outputs: { valid: "valid", configuration: "configuration" }, viewQueries: [{ propertyName: "mappingModals", predicate: VModalComponent, descendants: true }], 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: mappedPrefill$ ? (mappedPrefill$ | async) : null,\n } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"Verzoek Plugin\"\n >\n </v-input>\n <ng-container\n *ngIf=\"{notificatiePluginSelectItems: notificatiePluginSelectItems$ | async} as vars\"\n >\n <v-select\n [items]=\"vars.notificatiePluginSelectItems\"\n [margin]=\"true\"\n name=\"notificatiesApiPluginConfiguration\"\n [title]=\"'notificatiesApiPluginConfiguration' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.notificatiesApiPluginConfiguration\"\n [required]=\"true\"\n [loading]=\"!vars.notificatiePluginSelectItems\"\n [tooltip]=\"'notificatiesApiPluginConfigurationTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <ng-container *ngIf=\"{processSelectItems: processSelectItems$ | async} as vars\">\n <v-select\n [items]=\"vars.processSelectItems\"\n [margin]=\"true\"\n name=\"processToStart\"\n [title]=\"'processToStart' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.processToStart\"\n [required]=\"true\"\n [loading]=\"!vars.processSelectItems\"\n [tooltip]=\"'processToStartTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <v-input\n name=\"rsin\"\n [title]=\"'rsin' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.rsin\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'rsinTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"\"\n >\n </v-input>\n <v-multi-input-form\n name=\"verzoekProperties\"\n [title]=\"'verzoekProperties' | pluginTranslate: pluginId | async\"\n [formTemplate]=\"mappingForm\"\n [addRowText]=\"'addVerzoekType' | pluginTranslate: pluginId | async\"\n [required]=\"false\"\n [tooltip]=\"'verzoekPropertiesTooltip' | pluginTranslate: pluginId | async\"\n (deleteRowEvent)=\"deleteRow($event)\"\n [initialAmountOfRows]=\"0\"\n [minimumAmountOfRows]=\"0\"\n [defaultValues]=\"obs.prefill?.verzoekProperties\"\n >\n </v-multi-input-form>\n</v-form>\n\n<ng-template\n #mappingForm\n let-index=\"index\"\n let-uuid=\"uuid\"\n let-changeFunction=\"changeFunction\"\n let-prefill=\"prefill\"\n>\n <ng-container\n *ngIf=\"{\n disabled: disabled$ | async,\n } as obs\"\n >\n <v-form (valueChange)=\"changeFunction($event, uuid); verzoekTypeFormChange($event, uuid)\">\n <v-input\n name=\"type\"\n [title]=\"'type' | pluginTranslate: pluginId | async\"\n [margin]=\"false\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"prefill?.type\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'typeTooltip' | pluginTranslate: pluginId | async\"\n [smallMargin]=\"true\"\n placeholder=\"\"\n >\n </v-input>\n <ng-container *ngIf=\"{caseSelectItems: caseSelectItems$ | async} as vars\">\n <v-select\n [items]=\"vars.caseSelectItems\"\n [smallMargin]=\"true\"\n name=\"caseDefinitionKey\"\n [title]=\"'caseDefinitionKey' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"prefill?.caseDefinitionKey\"\n [required]=\"true\"\n [loading]=\"!vars.caseSelectItems\"\n [tooltip]=\"'caseDefinitionKeyTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <ng-container>\n <v-select\n [items]=\"\n caseVersionTagSelectItemsObservables[uuid]?.caseDefinitionKey &&\n (caseVersionTagSelectItemsObservables[uuid].items | async)\n \"\n [smallMargin]=\"true\"\n name=\"caseDefinitionVersionTag\"\n [title]=\"'caseDefinitionVersionTag' | pluginTranslate: pluginId | async\"\n [disabled]=\"\n obs.disabled || !caseVersionTagSelectItemsObservables[uuid]?.caseDefinitionKey\n \"\n [defaultSelectionId]=\"prefill?.caseDefinitionVersionTag\"\n [required]=\"true\"\n [tooltip]=\"'caseDefinitionVersionTagTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <ng-container\n *ngIf=\"{objectManagementSelectItems: objectManagementSelectItems$ | async} as vars\"\n >\n <v-select\n [items]=\"vars.objectManagementSelectItems\"\n [smallMargin]=\"true\"\n name=\"objectManagementId\"\n [title]=\"'objectManagementId' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"prefill?.objectManagementId\"\n [required]=\"true\"\n [loading]=\"!vars.objectManagementSelectItems\"\n [tooltip]=\"'objectManagementIdTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <v-select\n [items]=\"\n rolTypeSelectItemsObservables[uuid]?.caseDefinitionId &&\n (rolTypeSelectItemsObservables[uuid].items | async)\n \"\n [smallMargin]=\"true\"\n name=\"initiatorRoltypeUrl\"\n [title]=\"'initiatorRoltypeUrl' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled || !rolTypeSelectItemsObservables[uuid]?.caseDefinitionId\"\n [defaultSelectionId]=\"prefill?.initiatorRoltypeUrl\"\n [required]=\"true\"\n [tooltip]=\"'initiatorRoltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n <v-input\n name=\"initiatorRolDescription\"\n [title]=\"'initiatorRolDescription' | pluginTranslate: pluginId | async\"\n [margin]=\"false\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"prefill?.initiatorRolDescription || 'Initiator'\"\n [required]=\"true\"\n [tooltip]=\"'initiatorRolDescriptionTooltip' | pluginTranslate: pluginId | async\"\n [smallMargin]=\"true\"\n placeholder=\"\"\n >\n </v-input>\n <ng-container *ngIf=\"{processSelectItems: processSelectItems$ | async} as vars\">\n <v-select\n [items]=\"vars.processSelectItems\"\n [smallMargin]=\"true\"\n name=\"processDefinitionKey\"\n [title]=\"'processDefinitionKey' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"prefill?.processDefinitionKey\"\n [required]=\"true\"\n [loading]=\"!vars.processSelectItems\"\n [tooltip]=\"'processDefinitionKeyTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <v-radio\n name=\"copyStrategy\"\n [disabled]=\"obs.disabled\"\n [title]=\"'copyStrategy' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'copyStrategyTooltip' | pluginTranslate: pluginId | async\"\n [radioValues]=\"radioItems$ | async\"\n [smallMargin]=\"true\"\n [defaultValue]=\"prefill?.copyStrategy || 'full'\"\n >\n </v-radio>\n <ng-container *ngIf=\"showMappingButtons[uuid]\">\n <v-input-label\n [title]=\"'mapping' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'mappingTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input-label>\n\n <button cdsButton (click)=\"openMappingModal(uuid)\" mdiIcon=\"table\">\n <svg cdsIcon=\"data-table\" size=\"16\"></svg>\n {{ 'setMapping' | pluginTranslate: pluginId | async }}\n </button>\n </ng-container>\n <v-input class=\"hidden-input\" name=\"uuid\" [defaultValue]=\"uuid\"> </v-input>\n </v-form>\n <v-modal [parentId]=\"uuid\" (closeEvent)=\"closeMappingModal(uuid)\" [maxWidthPx]=\"960\">\n <div role=\"header\">\n <h3 cdsModalHeaderHeading>{{ 'setMapping' | pluginTranslate: pluginId | async }}</h3>\n </div>\n\n <div role=\"content\">\n <div class=\"cds--text-input__field-wrapper\">\n <cds-label [disabled]=\"obs.disabled\">\n <span class=\"label-with-tooltip select-label\">\n {{ 'mapping' | pluginTranslate: pluginId | async }}\n <v-tooltip-icon\n [tooltip]=\"'mappingTooltip' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n ></v-tooltip-icon>\n </span>\n </cds-label>\n <valtimo-carbon-multi-input\n *ngIf=\"showMappingModalsDelay[uuid]\"\n type=\"keyValuePathSelector\"\n (valueChange)=\"mappingValueChange($event, uuid)\"\n [defaultValues]=\"mappings[uuid] || prefill?.mapping\"\n [valueColumnTitle]=\"'target' | pluginTranslate: pluginId | async\"\n [keyColumnTitle]=\"'source' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n valuePathSelectorNotation=\"slashes\"\n [valuePathSelectorCaseDefinitionKey]=\"\n getSelectedCaseDefinitionKeyForIndex(index) | async\n \"\n [valuePathSelectorPrefixes]=\"[ValuePathSelectorPrefix.DOC]\"\n [keyColumnFlex]=\"1\"\n [valueColumnFlex]=\"2\"\n ></valtimo-carbon-multi-input>\n </div>\n </div>\n\n <div role=\"footer\" class=\"modal-buttons-container\">\n <button\n cdsButton=\"secondary\"\n [attr.modal-primary-focus]=\"true\"\n (click)=\"closeMappingModal(uuid)\"\n [disabled]=\"obs.disabled\"\n >\n {{ 'close' | pluginTranslate: pluginId | async }}\n </button>\n\n <button\n cdsButton=\"primary\"\n [attr.modal-primary-focus]=\"true\"\n [disabled]=\"obs.disabled\"\n (click)=\"saveMapping(uuid)\"\n [disabled]=\"obs.disabled\"\n >\n {{ 'save' | pluginTranslate: pluginId | async }}\n </button>\n </div>\n </v-modal>\n </ng-container>\n</ng-template>\n", styles: [".label-with-tooltip{display:flex;align-items:center}.select-label{padding-bottom:.5rem;width:250px}.hidden-input{display:none}.cds--text-input__field-wrapper{flex-direction:column}.modal-buttons-container{width:100%;display:flex;justify-content:flex-end}\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", "dataTestId"], outputs: ["selectedChange"] }, { kind: "component", type: i2$2.MultiInputFormComponent, selector: "v-multi-input-form", inputs: ["name", "title", "titleTranslationKey", "type", "initialAmountOfRows", "minimumAmountOfRows", "maxRows", "addRowText", "addRowTranslationKey", "deleteRowText", "deleteRowTranslationKey", "disabled", "defaultValues", "margin", "tooltip", "required", "formTemplate"], outputs: ["valueChange", "deleteRowEvent"] }, { 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: i2$2.InputLabelComponent, selector: "v-input-label", inputs: ["name", "tooltip", "tooltipTranslationKey", "largeMargin", "small", "noMargin", "title", "titleTranslationKey", "required", "disabled", "carbonTheme"] }, { kind: "directive", type: i1$3.ModalHeaderHeading, selector: "[cdsModalHeaderHeading], [ibmModalHeaderHeading]" }, { kind: "component", type: i1$3.Label, selector: "cds-label, ibm-label", inputs: ["labelInputID", "disabled", "skeleton", "helperText", "invalidText", "invalid", "warn", "warnText", "ariaLabel"] }, { kind: "component", type: i2$2.TooltipIconComponent, selector: "v-tooltip-icon", inputs: ["tooltip", "disabled"] }, { kind: "component", type: i2$2.CarbonMultiInputComponent, selector: "valtimo-carbon-multi-input", inputs: ["addRowText", "addButtonType", "addRowTranslationKey", "arbitraryAmountTitles", "arbitraryValueAmount", "defaultValues", "deleteRowText", "deleteRowTranslationKey", "disabled", "dropdownColumnTitle", "dropdownItems", "dropdownWidth", "fullWidth", "hideAddButton", "hideDeleteButton", "initialAmountOfRows", "keyColumnTitle", "margin", "maxRows", "minimumAmountOfRows", "name", "required", "title", "titleTranslationKey", "tooltip", "type", "valueColumnTitle", "valuePathSelectorCaseDefinitionKey", "valuePathSelectorPrefixes", "valuePathSelectorShowCaseDefinitionSelector", "valuePathSelectorNotation", "keyColumnFlex", "dropdownColumnFlex", "valueColumnFlex"], outputs: ["valueChange", "allValuesValidEvent"] }, { kind: "directive", type: i1$3.Button, selector: "[cdsButton], [ibmButton]", inputs: ["ibmButton", "cdsButton", "size", "skeleton", "iconOnly", "isExpressive"] }, { kind: "component", type: i2$2.VModalComponent, selector: "v-modal", inputs: ["appearingDelayMs", "maxWidthPx", "hideFooter", "parentId"], outputs: ["closeEvent"] }, { 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" }] }); }
8093
8183
  }
8094
8184
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: VerzoekConfigurationComponent, decorators: [{
8095
8185
  type: Component,
8096
8186
  args: [{ standalone: false, selector: 'valtimo-verzoek-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: mappedPrefill$ ? (mappedPrefill$ | async) : null,\n } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"Verzoek Plugin\"\n >\n </v-input>\n <ng-container\n *ngIf=\"{notificatiePluginSelectItems: notificatiePluginSelectItems$ | async} as vars\"\n >\n <v-select\n [items]=\"vars.notificatiePluginSelectItems\"\n [margin]=\"true\"\n name=\"notificatiesApiPluginConfiguration\"\n [title]=\"'notificatiesApiPluginConfiguration' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.notificatiesApiPluginConfiguration\"\n [required]=\"true\"\n [loading]=\"!vars.notificatiePluginSelectItems\"\n [tooltip]=\"'notificatiesApiPluginConfigurationTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <ng-container *ngIf=\"{processSelectItems: processSelectItems$ | async} as vars\">\n <v-select\n [items]=\"vars.processSelectItems\"\n [margin]=\"true\"\n name=\"processToStart\"\n [title]=\"'processToStart' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"obs.prefill?.processToStart\"\n [required]=\"true\"\n [loading]=\"!vars.processSelectItems\"\n [tooltip]=\"'processToStartTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <v-input\n name=\"rsin\"\n [title]=\"'rsin' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.rsin\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'rsinTooltip' | pluginTranslate: pluginId | async\"\n placeholder=\"\"\n >\n </v-input>\n <v-multi-input-form\n name=\"verzoekProperties\"\n [title]=\"'verzoekProperties' | pluginTranslate: pluginId | async\"\n [formTemplate]=\"mappingForm\"\n [addRowText]=\"'addVerzoekType' | pluginTranslate: pluginId | async\"\n [required]=\"false\"\n [tooltip]=\"'verzoekPropertiesTooltip' | pluginTranslate: pluginId | async\"\n (deleteRowEvent)=\"deleteRow($event)\"\n [initialAmountOfRows]=\"0\"\n [minimumAmountOfRows]=\"0\"\n [defaultValues]=\"obs.prefill?.verzoekProperties\"\n >\n </v-multi-input-form>\n</v-form>\n\n<ng-template\n #mappingForm\n let-index=\"index\"\n let-uuid=\"uuid\"\n let-changeFunction=\"changeFunction\"\n let-prefill=\"prefill\"\n>\n <ng-container\n *ngIf=\"{\n disabled: disabled$ | async,\n } as obs\"\n >\n <v-form (valueChange)=\"changeFunction($event, uuid); verzoekTypeFormChange($event, uuid)\">\n <v-input\n name=\"type\"\n [title]=\"'type' | pluginTranslate: pluginId | async\"\n [margin]=\"false\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"prefill?.type\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'typeTooltip' | pluginTranslate: pluginId | async\"\n [smallMargin]=\"true\"\n placeholder=\"\"\n >\n </v-input>\n <ng-container *ngIf=\"{caseSelectItems: caseSelectItems$ | async} as vars\">\n <v-select\n [items]=\"vars.caseSelectItems\"\n [smallMargin]=\"true\"\n name=\"caseDefinitionKey\"\n [title]=\"'caseDefinitionKey' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"prefill?.caseDefinitionKey\"\n [required]=\"true\"\n [loading]=\"!vars.caseSelectItems\"\n [tooltip]=\"'caseDefinitionKeyTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <ng-container>\n <v-select\n [items]=\"\n caseVersionTagSelectItemsObservables[uuid]?.caseDefinitionKey &&\n (caseVersionTagSelectItemsObservables[uuid].items | async)\n \"\n [smallMargin]=\"true\"\n name=\"caseDefinitionVersionTag\"\n [title]=\"'caseDefinitionVersionTag' | pluginTranslate: pluginId | async\"\n [disabled]=\"\n obs.disabled || !caseVersionTagSelectItemsObservables[uuid]?.caseDefinitionKey\n \"\n [defaultSelectionId]=\"prefill?.caseDefinitionVersionTag\"\n [required]=\"true\"\n [tooltip]=\"'caseDefinitionVersionTagTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <ng-container\n *ngIf=\"{objectManagementSelectItems: objectManagementSelectItems$ | async} as vars\"\n >\n <v-select\n [items]=\"vars.objectManagementSelectItems\"\n [smallMargin]=\"true\"\n name=\"objectManagementId\"\n [title]=\"'objectManagementId' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"prefill?.objectManagementId\"\n [required]=\"true\"\n [loading]=\"!vars.objectManagementSelectItems\"\n [tooltip]=\"'objectManagementIdTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <v-select\n [items]=\"\n rolTypeSelectItemsObservables[uuid]?.caseDefinitionId &&\n (rolTypeSelectItemsObservables[uuid].items | async)\n \"\n [smallMargin]=\"true\"\n name=\"initiatorRoltypeUrl\"\n [title]=\"'initiatorRoltypeUrl' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled || !rolTypeSelectItemsObservables[uuid]?.caseDefinitionId\"\n [defaultSelectionId]=\"prefill?.initiatorRoltypeUrl\"\n [required]=\"true\"\n [tooltip]=\"'initiatorRoltypeUrlTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n <v-input\n name=\"initiatorRolDescription\"\n [title]=\"'initiatorRolDescription' | pluginTranslate: pluginId | async\"\n [margin]=\"false\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"prefill?.initiatorRolDescription || 'Initiator'\"\n [required]=\"true\"\n [tooltip]=\"'initiatorRolDescriptionTooltip' | pluginTranslate: pluginId | async\"\n [smallMargin]=\"true\"\n placeholder=\"\"\n >\n </v-input>\n <ng-container *ngIf=\"{processSelectItems: processSelectItems$ | async} as vars\">\n <v-select\n [items]=\"vars.processSelectItems\"\n [smallMargin]=\"true\"\n name=\"processDefinitionKey\"\n [title]=\"'processDefinitionKey' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n [defaultSelectionId]=\"prefill?.processDefinitionKey\"\n [required]=\"true\"\n [loading]=\"!vars.processSelectItems\"\n [tooltip]=\"'processDefinitionKeyTooltip' | pluginTranslate: pluginId | async\"\n ></v-select>\n </ng-container>\n <v-radio\n name=\"copyStrategy\"\n [disabled]=\"obs.disabled\"\n [title]=\"'copyStrategy' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'copyStrategyTooltip' | pluginTranslate: pluginId | async\"\n [radioValues]=\"radioItems$ | async\"\n [smallMargin]=\"true\"\n [defaultValue]=\"prefill?.copyStrategy || 'full'\"\n >\n </v-radio>\n <ng-container *ngIf=\"showMappingButtons[uuid]\">\n <v-input-label\n [title]=\"'mapping' | pluginTranslate: pluginId | async\"\n [tooltip]=\"'mappingTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input-label>\n\n <button cdsButton (click)=\"openMappingModal(uuid)\" mdiIcon=\"table\">\n <svg cdsIcon=\"data-table\" size=\"16\"></svg>\n {{ 'setMapping' | pluginTranslate: pluginId | async }}\n </button>\n </ng-container>\n <v-input class=\"hidden-input\" name=\"uuid\" [defaultValue]=\"uuid\"> </v-input>\n </v-form>\n <v-modal [parentId]=\"uuid\" (closeEvent)=\"closeMappingModal(uuid)\" [maxWidthPx]=\"960\">\n <div role=\"header\">\n <h3 cdsModalHeaderHeading>{{ 'setMapping' | pluginTranslate: pluginId | async }}</h3>\n </div>\n\n <div role=\"content\">\n <div class=\"cds--text-input__field-wrapper\">\n <cds-label [disabled]=\"obs.disabled\">\n <span class=\"label-with-tooltip select-label\">\n {{ 'mapping' | pluginTranslate: pluginId | async }}\n <v-tooltip-icon\n [tooltip]=\"'mappingTooltip' | pluginTranslate: pluginId | async\"\n [disabled]=\"obs.disabled\"\n ></v-tooltip-icon>\n </span>\n </cds-label>\n <valtimo-carbon-multi-input\n *ngIf=\"showMappingModalsDelay[uuid]\"\n type=\"keyValuePathSelector\"\n (valueChange)=\"mappingValueChange($event, uuid)\"\n [defaultValues]=\"mappings[uuid] || prefill?.mapping\"\n [valueColumnTitle]=\"'target' | pluginTranslate: pluginId | async\"\n [keyColumnTitle]=\"'source' | pluginTranslate: pluginId | async\"\n [fullWidth]=\"true\"\n valuePathSelectorNotation=\"slashes\"\n [valuePathSelectorCaseDefinitionKey]=\"\n getSelectedCaseDefinitionKeyForIndex(index) | async\n \"\n [valuePathSelectorPrefixes]=\"[ValuePathSelectorPrefix.DOC]\"\n [keyColumnFlex]=\"1\"\n [valueColumnFlex]=\"2\"\n ></valtimo-carbon-multi-input>\n </div>\n </div>\n\n <div role=\"footer\" class=\"modal-buttons-container\">\n <button\n cdsButton=\"secondary\"\n [attr.modal-primary-focus]=\"true\"\n (click)=\"closeMappingModal(uuid)\"\n [disabled]=\"obs.disabled\"\n >\n {{ 'close' | pluginTranslate: pluginId | async }}\n </button>\n\n <button\n cdsButton=\"primary\"\n [attr.modal-primary-focus]=\"true\"\n [disabled]=\"obs.disabled\"\n (click)=\"saveMapping(uuid)\"\n [disabled]=\"obs.disabled\"\n >\n {{ 'save' | pluginTranslate: pluginId | async }}\n </button>\n </div>\n </v-modal>\n </ng-container>\n</ng-template>\n", styles: [".label-with-tooltip{display:flex;align-items:center}.select-label{padding-bottom:.5rem;width:250px}.hidden-input{display:none}.cds--text-input__field-wrapper{flex-direction:column}.modal-buttons-container{width:100%;display:flex;justify-content:flex-end}\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"] }]
8097
- }], ctorParameters: () => [{ type: PluginManagementService }, { type: i2.TranslateService }, { type: PluginTranslationService }, { type: VerzoekPluginService }, { type: i4$1.ProcessService }, { type: i2$2.ModalService }, { type: i4.IconService }], propDecorators: { mappingModals: [{
8187
+ }], ctorParameters: () => [{ type: PluginManagementService }, { type: i2.TranslateService }, { type: PluginTranslationService }, { type: VerzoekPluginService }, { type: i4.ProcessService }, { type: i2$2.ModalService }, { type: i1$3.IconService }], propDecorators: { mappingModals: [{
8098
8188
  type: ViewChildren,
8099
8189
  args: [VModalComponent]
8100
8190
  }], save$: [{
@@ -8306,46 +8396,6 @@ const verzoekPluginSpecification = {
8306
8396
  target: 'Target',
8307
8397
  source: 'Source',
8308
8398
  },
8309
- de: {
8310
- title: 'Verzoek',
8311
- description: 'Das Verzoek-Plugin verarbeitet Anfragen und erstellt eine Zaakdossier. Eine Verzoek ist ein Object in der Objecten API und wird normalerweise mithilfe eines Portals erstellt.',
8312
- configurationTitle: 'Konfigurationsname',
8313
- configurationTitleTooltip: 'Der Name der aktuellen Plugin-Konfiguration. Unter diesem Namen ist die Konfiguration im Rest der Anwendung zu finden.',
8314
- notificatiesApiPluginConfiguration: 'Notificaties API-Konfiguration',
8315
- objectManagementId: 'Object management-Konfiguration',
8316
- processToStart: 'Prozess',
8317
- rsin: 'RSIN',
8318
- verzoekProperties: 'Verzoektypen',
8319
- type: 'Typ',
8320
- caseDefinitionKey: 'Dateidefinition',
8321
- caseDefinitionVersionTag: 'Falldefinitionsversion',
8322
- initiatorRoltypeUrl: 'Rollentyp',
8323
- processDefinitionKey: 'Prozessdefinition',
8324
- initiatorRolDescription: 'Rollenbeschreibung',
8325
- addVerzoekType: 'Verzoektyp hinzufügen',
8326
- verzoekPropertiesTooltip: 'Die Verzoektypen die erstellt werden wenn eine Benachrichtigung eintrifft.',
8327
- notificatiesApiPluginConfigurationTooltip: 'Konfiguration der Notificaties API, die für die Kommunikation zwischen GZAC und anderen Anwendungen verwendet wird.',
8328
- objectManagementIdTooltip: 'Konfiguration des Objects, das zum Speichern einer Verzoek verwendet wird.',
8329
- processToStartTooltip: 'Der Prozess, der einen Fall erstellt, wenn eine Benachrichtigung eintrifft.',
8330
- rsinTooltip: 'Diese Nummer muss die gleichen Spezifikationen wie eine BSN-Nummer erfüllen.',
8331
- typeTooltip: "Der Verzoektyp, der zum Identifizieren des Objects verwendet wird. Z.B. 'verzoek'.",
8332
- caseDefinitionKeyTooltip: 'Wählen Sie hier den Falltyp aus, von dem eine Instanz gestartet werden soll, wenn eine Verzoek eintrifft.',
8333
- caseDefinitionVersionTagTooltip: 'Die Version des Falltyps, dessen Instanz bei eingehender Verzoek gestartet werden soll.',
8334
- initiatorRoltypeUrlTooltip: 'Der Rollentyp des Anforderers, der gespeichert wird, wenn eine Verzoek eingeht.',
8335
- initiatorRolDescriptionTooltip: 'Eine Beschreibung des Rollentyps des Anforderers, die gespeichert wird, wenn eine Verzoek eingeht.',
8336
- processDefinitionKeyTooltip: 'Wählen Sie hier den Prozess aus, der gestartet werden soll, wenn der zuvor ausgewählte Systemprozess beendet ist.',
8337
- copyStrategy: 'Kopierstrategie',
8338
- copyStrategyTooltip: 'Diese Option legt fest, ob das gesamte Verzoek-Objekt in das Dokument aufgenommen wird oder nur die definierten Felder.',
8339
- full: 'Vollständig',
8340
- specified: 'Angegebene Felder',
8341
- mapping: 'Mapping',
8342
- setMapping: 'Mapping festlegen',
8343
- mappingTooltip: "Legen Sie hier die Felder fest, die vom Verzoek-Objekt in das Dokument kopiert werden sollen. Zum Beispiel: '/voorletters' -> 'doc:/voorletters-machtiginggever'.",
8344
- close: 'Schließen',
8345
- save: 'Speichern',
8346
- target: 'Ziel',
8347
- source: 'Ursprung',
8348
- },
8349
8399
  },
8350
8400
  };
8351
8401
 
@@ -8596,13 +8646,13 @@ class CreateZaakBesluitConfigurationComponent {
8596
8646
  this.valid$.next(valid);
8597
8647
  this.valid.emit(valid);
8598
8648
  }
8599
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakBesluitConfigurationComponent, deps: [{ token: i2.TranslateService }, { token: PluginTranslationService }, { token: i2$2.ModalService }, { token: i1$4.DocumentService }, { token: BesluitenApiService }, { token: PluginTranslatePipe }], target: i0.ɵɵFactoryTarget.Component }); }
8600
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: CreateZaakBesluitConfigurationComponent, isStandalone: false, selector: "valtimo-create-zaak-besluit-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<ng-container\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n besluitTypeItems: besluitTypeSelectItems$ | async,\n selectedInputOption: selectedInputOption$ | async,\n selectedStartDateInputOption: selectedStartDateInputOption$ | async,\n selectedExpirationDateInputOption: selectedExpirationDateInputOption$ | async,\n pluginId: pluginId$ | async,\n loading: loading$ | async,\n context: context$ | async,\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'createZaakBesluitInformation' | pluginTranslate: obs.pluginId | async }}\n </v-paragraph>\n\n <v-form (valueChange)=\"formValueChange($event)\">\n <v-radio\n *ngIf=\"obs.context && obs.context[0] && obs.context[0] === 'case'\"\n name=\"inputTypeBesluitToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeBesluitToggle' | 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=\"besluittypeUrl\"\n [title]=\"'besluittypeUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.besluittypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'besluittypeUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n >\n </v-input>\n\n <ng-container *ngIf=\"obs.selectedInputOption === 'selection'\">\n <v-select\n [items]=\"obs.besluitTypeItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"besluittypeUrl\"\n [title]=\"'besluittypeUrlSelect' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'text' || !obs.besluitTypeItems\"\n [defaultSelectionId]=\"obs.prefill?.besluittypeUrl\"\n [required]=\"true\"\n [loading]=\"!obs.besluitTypeItems\"\n [tooltip]=\"'besluittypeUrlSelectTooltip' | pluginTranslate: obs.pluginId | async\"\n [clearSelectionSubject$]=\"clearBesluitSelection$\"\n ></v-select>\n </ng-container>\n\n <v-input\n name=\"toelichting\"\n [title]=\"'toelichting' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.toelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'toelichtingTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n >\n </v-input>\n\n <v-input\n name=\"bestuursorgaan\"\n [title]=\"'bestuursorgaan' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.bestuursorgaan\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'bestuursorgaanTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n >\n </v-input>\n\n <v-radio\n name=\"inputTypeStartingDateToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeStartingDateToggle' | pluginTranslate: obs.pluginId | async\"\n [radioValues]=\"startDateInputTypeOptions$ | async\"\n [defaultValue]=\"obs.prefill?.inputTypeStartingDateToggle || 'selection'\"\n [margin]=\"true\"\n >\n </v-radio>\n\n <v-input\n *ngIf=\"obs.selectedStartDateInputOption === 'text'\"\n name=\"ingangsdatum\"\n [title]=\"'ingangsdatum' | pluginTranslate: obs.pluginId | async\"\n [defaultValue]=\"obs.prefill?.ingangsdatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'ingangsdatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n [margin]=\"true\"\n >\n </v-input>\n\n <v-date-picker\n *ngIf=\"obs.selectedStartDateInputOption === 'selection'\"\n name=\"ingangsdatum\"\n [title]=\"'ingangsdatum' | pluginTranslate: obs.pluginId | async\"\n [defaultDate]=\"obs.prefill?.ingangsdatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'ingangsdatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"100\"\n [margin]=\"true\"\n ></v-date-picker>\n\n <v-radio\n name=\"inputTypeExpirationDateToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeExpirationDateToggle' | pluginTranslate: obs.pluginId | async\"\n [radioValues]=\"expirationDateInputTypeOptions$ | async\"\n [defaultValue]=\"obs.prefill?.inputTypeExpirationDateToggle || 'selection'\"\n [margin]=\"true\"\n >\n </v-radio>\n\n <v-input\n *ngIf=\"obs.selectedExpirationDateInputOption === 'text'\"\n name=\"vervaldatum\"\n [title]=\"'vervaldatum' | pluginTranslate: obs.pluginId | async\"\n [defaultValue]=\"obs.prefill?.vervaldatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'vervaldatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n [margin]=\"true\"\n >\n </v-input>\n\n <v-date-picker\n *ngIf=\"obs.selectedExpirationDateInputOption === 'selection'\"\n name=\"vervaldatum\"\n [title]=\"'vervaldatum' | pluginTranslate: obs.pluginId | async\"\n [defaultDate]=\"obs.prefill?.vervaldatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'vervaldatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"100\"\n [margin]=\"true\"\n ></v-date-picker>\n\n <v-select\n name=\"vervalreden\"\n [title]=\"'vervalreden' | pluginTranslate: obs.pluginId | async\"\n [items]=\"vervalredenenSelectItems$ | async\"\n [defaultSelectionId]=\"obs.prefill?.vervalreden\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'vervalredenTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthInPx]=\"350\"\n [margin]=\"true\"\n ></v-select>\n\n <v-date-picker\n name=\"publicatiedatum\"\n [title]=\"'publicatiedatum' | pluginTranslate: obs.pluginId | async\"\n [defaultDate]=\"obs.prefill?.publicatiedatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'publicatiedatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"100\"\n [margin]=\"true\"\n ></v-date-picker>\n\n <v-date-picker\n name=\"verzenddatum\"\n [title]=\"'verzenddatum' | pluginTranslate: obs.pluginId | async\"\n [defaultDate]=\"obs.prefill?.verzenddatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'verzenddatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"100\"\n [margin]=\"true\"\n ></v-date-picker>\n\n <v-date-picker\n name=\"uiterlijkeReactieDatum\"\n [title]=\"'uiterlijkeReactieDatum' | pluginTranslate: obs.pluginId | async\"\n [defaultDate]=\"obs.prefill?.uiterlijkeReactieDatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'uiterlijkeReactieDatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"100\"\n [margin]=\"true\"\n ></v-date-picker>\n\n <v-input\n name=\"createdBesluitUrl\"\n [title]=\"'besluitUrlProcessVariable' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.createdBesluitUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'besluitUrlProcessVariableTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n >\n </v-input>\n </v-form>\n </ng-container>\n</ng-container>\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", "dataTestId"], outputs: ["selectedChange"] }, { kind: "component", type: i2$2.DatePickerComponent, selector: "v-date-picker", inputs: ["name", "title", "titleTranslationKey", "widthPx", "fullWidth", "margin", "disabled", "tooltip", "required", "defaultDate", "defaultDateIsToday", "smallLabel", "clear$", "enableTime", "carbonTheme"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.ParagraphComponent, selector: "v-paragraph", inputs: ["center", "fullWidth", "margin", "italic", "loading", "dataTestId"] }, { 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: i4.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" }] }); }
8649
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakBesluitConfigurationComponent, deps: [{ token: i2.TranslateService }, { token: PluginTranslationService }, { token: i2$2.ModalService }, { token: i1$5.DocumentService }, { token: BesluitenApiService }, { token: PluginTranslatePipe }], target: i0.ɵɵFactoryTarget.Component }); }
8650
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: CreateZaakBesluitConfigurationComponent, isStandalone: false, selector: "valtimo-create-zaak-besluit-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<ng-container\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n besluitTypeItems: besluitTypeSelectItems$ | async,\n selectedInputOption: selectedInputOption$ | async,\n selectedStartDateInputOption: selectedStartDateInputOption$ | async,\n selectedExpirationDateInputOption: selectedExpirationDateInputOption$ | async,\n pluginId: pluginId$ | async,\n loading: loading$ | async,\n context: context$ | async,\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'createZaakBesluitInformation' | pluginTranslate: obs.pluginId | async }}\n </v-paragraph>\n\n <v-form (valueChange)=\"formValueChange($event)\">\n <v-radio\n *ngIf=\"obs.context && obs.context[0] && obs.context[0] === 'case'\"\n name=\"inputTypeBesluitToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeBesluitToggle' | 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=\"besluittypeUrl\"\n [title]=\"'besluittypeUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.besluittypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'besluittypeUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n >\n </v-input>\n\n <ng-container *ngIf=\"obs.selectedInputOption === 'selection'\">\n <v-select\n [items]=\"obs.besluitTypeItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"besluittypeUrl\"\n [title]=\"'besluittypeUrlSelect' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'text' || !obs.besluitTypeItems\"\n [defaultSelectionId]=\"obs.prefill?.besluittypeUrl\"\n [required]=\"true\"\n [loading]=\"!obs.besluitTypeItems\"\n [tooltip]=\"'besluittypeUrlSelectTooltip' | pluginTranslate: obs.pluginId | async\"\n [clearSelectionSubject$]=\"clearBesluitSelection$\"\n ></v-select>\n </ng-container>\n\n <v-input\n name=\"toelichting\"\n [title]=\"'toelichting' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.toelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'toelichtingTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n >\n </v-input>\n\n <v-input\n name=\"bestuursorgaan\"\n [title]=\"'bestuursorgaan' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.bestuursorgaan\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'bestuursorgaanTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n >\n </v-input>\n\n <v-radio\n name=\"inputTypeStartingDateToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeStartingDateToggle' | pluginTranslate: obs.pluginId | async\"\n [radioValues]=\"startDateInputTypeOptions$ | async\"\n [defaultValue]=\"obs.prefill?.inputTypeStartingDateToggle || 'selection'\"\n [margin]=\"true\"\n >\n </v-radio>\n\n <v-input\n *ngIf=\"obs.selectedStartDateInputOption === 'text'\"\n name=\"ingangsdatum\"\n [title]=\"'ingangsdatum' | pluginTranslate: obs.pluginId | async\"\n [defaultValue]=\"obs.prefill?.ingangsdatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'ingangsdatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n [margin]=\"true\"\n >\n </v-input>\n\n <v-date-picker\n *ngIf=\"obs.selectedStartDateInputOption === 'selection'\"\n name=\"ingangsdatum\"\n [title]=\"'ingangsdatum' | pluginTranslate: obs.pluginId | async\"\n [defaultDate]=\"obs.prefill?.ingangsdatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'ingangsdatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"100\"\n [margin]=\"true\"\n ></v-date-picker>\n\n <v-radio\n name=\"inputTypeExpirationDateToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeExpirationDateToggle' | pluginTranslate: obs.pluginId | async\"\n [radioValues]=\"expirationDateInputTypeOptions$ | async\"\n [defaultValue]=\"obs.prefill?.inputTypeExpirationDateToggle || 'selection'\"\n [margin]=\"true\"\n >\n </v-radio>\n\n <v-input\n *ngIf=\"obs.selectedExpirationDateInputOption === 'text'\"\n name=\"vervaldatum\"\n [title]=\"'vervaldatum' | pluginTranslate: obs.pluginId | async\"\n [defaultValue]=\"obs.prefill?.vervaldatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'vervaldatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n [margin]=\"true\"\n >\n </v-input>\n\n <v-date-picker\n *ngIf=\"obs.selectedExpirationDateInputOption === 'selection'\"\n name=\"vervaldatum\"\n [title]=\"'vervaldatum' | pluginTranslate: obs.pluginId | async\"\n [defaultDate]=\"obs.prefill?.vervaldatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'vervaldatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"100\"\n [margin]=\"true\"\n ></v-date-picker>\n\n <v-select\n name=\"vervalreden\"\n [title]=\"'vervalreden' | pluginTranslate: obs.pluginId | async\"\n [items]=\"vervalredenenSelectItems$ | async\"\n [defaultSelectionId]=\"obs.prefill?.vervalreden\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'vervalredenTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthInPx]=\"350\"\n [margin]=\"true\"\n ></v-select>\n\n <v-date-picker\n name=\"publicatiedatum\"\n [title]=\"'publicatiedatum' | pluginTranslate: obs.pluginId | async\"\n [defaultDate]=\"obs.prefill?.publicatiedatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'publicatiedatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"100\"\n [margin]=\"true\"\n ></v-date-picker>\n\n <v-date-picker\n name=\"verzenddatum\"\n [title]=\"'verzenddatum' | pluginTranslate: obs.pluginId | async\"\n [defaultDate]=\"obs.prefill?.verzenddatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'verzenddatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"100\"\n [margin]=\"true\"\n ></v-date-picker>\n\n <v-date-picker\n name=\"uiterlijkeReactieDatum\"\n [title]=\"'uiterlijkeReactieDatum' | pluginTranslate: obs.pluginId | async\"\n [defaultDate]=\"obs.prefill?.uiterlijkeReactieDatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'uiterlijkeReactieDatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"100\"\n [margin]=\"true\"\n ></v-date-picker>\n\n <v-input\n name=\"createdBesluitUrl\"\n [title]=\"'besluitUrlProcessVariable' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.createdBesluitUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'besluitUrlProcessVariableTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n >\n </v-input>\n </v-form>\n </ng-container>\n</ng-container>\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", "dataTestId"], outputs: ["selectedChange"] }, { kind: "component", type: i2$2.DatePickerComponent, selector: "v-date-picker", inputs: ["name", "title", "titleTranslationKey", "widthPx", "fullWidth", "margin", "disabled", "tooltip", "required", "defaultDate", "defaultDateIsToday", "smallLabel", "clear$", "enableTime", "carbonTheme"], outputs: ["valueChange"] }, { kind: "component", type: i2$2.ParagraphComponent, selector: "v-paragraph", inputs: ["center", "fullWidth", "margin", "italic", "loading", "dataTestId"] }, { 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" }] }); }
8601
8651
  }
8602
8652
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakBesluitConfigurationComponent, decorators: [{
8603
8653
  type: Component,
8604
8654
  args: [{ standalone: false, selector: 'valtimo-create-zaak-besluit-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<ng-container\n *ngIf=\"{\n disabled: disabled$ | async,\n prefill: prefillConfiguration$ ? (prefillConfiguration$ | async) : null,\n besluitTypeItems: besluitTypeSelectItems$ | async,\n selectedInputOption: selectedInputOption$ | async,\n selectedStartDateInputOption: selectedStartDateInputOption$ | async,\n selectedExpirationDateInputOption: selectedExpirationDateInputOption$ | async,\n pluginId: pluginId$ | async,\n loading: loading$ | async,\n context: context$ | async,\n } as obs\"\n>\n <ng-container *ngIf=\"obs.loading === false; else loading\">\n <v-paragraph [margin]=\"true\" [italic]=\"true\">\n {{ 'createZaakBesluitInformation' | pluginTranslate: obs.pluginId | async }}\n </v-paragraph>\n\n <v-form (valueChange)=\"formValueChange($event)\">\n <v-radio\n *ngIf=\"obs.context && obs.context[0] && obs.context[0] === 'case'\"\n name=\"inputTypeBesluitToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeBesluitToggle' | 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=\"besluittypeUrl\"\n [title]=\"'besluittypeUrl' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.besluittypeUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'besluittypeUrlTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n >\n </v-input>\n\n <ng-container *ngIf=\"obs.selectedInputOption === 'selection'\">\n <v-select\n [items]=\"obs.besluitTypeItems\"\n [margin]=\"true\"\n [widthInPx]=\"350\"\n name=\"besluittypeUrl\"\n [title]=\"'besluittypeUrlSelect' | pluginTranslate: obs.pluginId | async\"\n [disabled]=\"obs.disabled || obs.selectedInputOption === 'text' || !obs.besluitTypeItems\"\n [defaultSelectionId]=\"obs.prefill?.besluittypeUrl\"\n [required]=\"true\"\n [loading]=\"!obs.besluitTypeItems\"\n [tooltip]=\"'besluittypeUrlSelectTooltip' | pluginTranslate: obs.pluginId | async\"\n [clearSelectionSubject$]=\"clearBesluitSelection$\"\n ></v-select>\n </ng-container>\n\n <v-input\n name=\"toelichting\"\n [title]=\"'toelichting' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.toelichting\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'toelichtingTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n >\n </v-input>\n\n <v-input\n name=\"bestuursorgaan\"\n [title]=\"'bestuursorgaan' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.bestuursorgaan\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'bestuursorgaanTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n >\n </v-input>\n\n <v-radio\n name=\"inputTypeStartingDateToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeStartingDateToggle' | pluginTranslate: obs.pluginId | async\"\n [radioValues]=\"startDateInputTypeOptions$ | async\"\n [defaultValue]=\"obs.prefill?.inputTypeStartingDateToggle || 'selection'\"\n [margin]=\"true\"\n >\n </v-radio>\n\n <v-input\n *ngIf=\"obs.selectedStartDateInputOption === 'text'\"\n name=\"ingangsdatum\"\n [title]=\"'ingangsdatum' | pluginTranslate: obs.pluginId | async\"\n [defaultValue]=\"obs.prefill?.ingangsdatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'ingangsdatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n [margin]=\"true\"\n >\n </v-input>\n\n <v-date-picker\n *ngIf=\"obs.selectedStartDateInputOption === 'selection'\"\n name=\"ingangsdatum\"\n [title]=\"'ingangsdatum' | pluginTranslate: obs.pluginId | async\"\n [defaultDate]=\"obs.prefill?.ingangsdatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [tooltip]=\"'ingangsdatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"100\"\n [margin]=\"true\"\n ></v-date-picker>\n\n <v-radio\n name=\"inputTypeExpirationDateToggle\"\n [disabled]=\"obs.disabled\"\n [title]=\"'inputTypeExpirationDateToggle' | pluginTranslate: obs.pluginId | async\"\n [radioValues]=\"expirationDateInputTypeOptions$ | async\"\n [defaultValue]=\"obs.prefill?.inputTypeExpirationDateToggle || 'selection'\"\n [margin]=\"true\"\n >\n </v-radio>\n\n <v-input\n *ngIf=\"obs.selectedExpirationDateInputOption === 'text'\"\n name=\"vervaldatum\"\n [title]=\"'vervaldatum' | pluginTranslate: obs.pluginId | async\"\n [defaultValue]=\"obs.prefill?.vervaldatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [trim]=\"true\"\n [tooltip]=\"'vervaldatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n [margin]=\"true\"\n >\n </v-input>\n\n <v-date-picker\n *ngIf=\"obs.selectedExpirationDateInputOption === 'selection'\"\n name=\"vervaldatum\"\n [title]=\"'vervaldatum' | pluginTranslate: obs.pluginId | async\"\n [defaultDate]=\"obs.prefill?.vervaldatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'vervaldatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"100\"\n [margin]=\"true\"\n ></v-date-picker>\n\n <v-select\n name=\"vervalreden\"\n [title]=\"'vervalreden' | pluginTranslate: obs.pluginId | async\"\n [items]=\"vervalredenenSelectItems$ | async\"\n [defaultSelectionId]=\"obs.prefill?.vervalreden\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'vervalredenTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthInPx]=\"350\"\n [margin]=\"true\"\n ></v-select>\n\n <v-date-picker\n name=\"publicatiedatum\"\n [title]=\"'publicatiedatum' | pluginTranslate: obs.pluginId | async\"\n [defaultDate]=\"obs.prefill?.publicatiedatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'publicatiedatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"100\"\n [margin]=\"true\"\n ></v-date-picker>\n\n <v-date-picker\n name=\"verzenddatum\"\n [title]=\"'verzenddatum' | pluginTranslate: obs.pluginId | async\"\n [defaultDate]=\"obs.prefill?.verzenddatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'verzenddatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"100\"\n [margin]=\"true\"\n ></v-date-picker>\n\n <v-date-picker\n name=\"uiterlijkeReactieDatum\"\n [title]=\"'uiterlijkeReactieDatum' | pluginTranslate: obs.pluginId | async\"\n [defaultDate]=\"obs.prefill?.uiterlijkeReactieDatum\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'uiterlijkeReactieDatumTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"100\"\n [margin]=\"true\"\n ></v-date-picker>\n\n <v-input\n name=\"createdBesluitUrl\"\n [title]=\"'besluitUrlProcessVariable' | pluginTranslate: obs.pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.createdBesluitUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"false\"\n [tooltip]=\"'besluitUrlProcessVariableTooltip' | pluginTranslate: obs.pluginId | async\"\n [widthPx]=\"350\"\n >\n </v-input>\n </v-form>\n </ng-container>\n</ng-container>\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"] }]
8605
- }], ctorParameters: () => [{ type: i2.TranslateService }, { type: PluginTranslationService }, { type: i2$2.ModalService }, { type: i1$4.DocumentService }, { type: BesluitenApiService }, { type: PluginTranslatePipe }], propDecorators: { save$: [{
8655
+ }], ctorParameters: () => [{ type: i2.TranslateService }, { type: PluginTranslationService }, { type: i2$2.ModalService }, { type: i1$5.DocumentService }, { type: BesluitenApiService }, { type: PluginTranslatePipe }], propDecorators: { save$: [{
8606
8656
  type: Input
8607
8657
  }], disabled$: [{
8608
8658
  type: Input
@@ -8618,6 +8668,156 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
8618
8668
  type: Output
8619
8669
  }] } });
8620
8670
 
8671
+ /*
8672
+ * Copyright 2015-2025 Ritense BV, the Netherlands.
8673
+ *
8674
+ * Licensed under EUPL, Version 1.2 (the "License");
8675
+ * you may not use this file except in compliance with the License.
8676
+ * You may obtain a copy of the License at
8677
+ *
8678
+ * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
8679
+ *
8680
+ * Unless required by applicable law or agreed to in writing, software
8681
+ * distributed under the License is distributed on an "AS IS" basis,
8682
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
8683
+ * See the License for the specific language governing permissions and
8684
+ * limitations under the License.
8685
+ */
8686
+ const PatchBesluitPropertyOptions = [
8687
+ 'beslisdatum',
8688
+ 'toelichting',
8689
+ 'bestuursorgaan',
8690
+ 'ingangsdatum',
8691
+ 'vervaldatum',
8692
+ 'vervalreden',
8693
+ 'publicatiedatum',
8694
+ 'verzenddatum',
8695
+ 'uiterlijkeReactieDatum',
8696
+ ];
8697
+
8698
+ class PatchZaakBesluitConfigurationComponent {
8699
+ constructor(iconService) {
8700
+ this.iconService = iconService;
8701
+ this.valid = new EventEmitter();
8702
+ this.configuration = new EventEmitter();
8703
+ this.propertyOptions = [...PatchBesluitPropertyOptions];
8704
+ this.propertyList = [];
8705
+ this._formValue$ = new BehaviorSubject(null);
8706
+ this._properties = new Map();
8707
+ this._valid$ = new BehaviorSubject(false);
8708
+ this._prefillConfig = null;
8709
+ this.iconService.registerAll([Add16, TrashCan16]);
8710
+ }
8711
+ ngOnInit() {
8712
+ this.openSaveSubscription();
8713
+ this.prefillConfiguration$.pipe(take(1)).subscribe(prefill => {
8714
+ if (!prefill)
8715
+ return;
8716
+ this._prefillConfig = prefill;
8717
+ const prefilledProperties = this.propertyOptions.filter(property => !!this.prefillValueFor(property, prefill));
8718
+ this.propertyList = [...prefilledProperties];
8719
+ });
8720
+ }
8721
+ ngOnDestroy() {
8722
+ this._saveSubscription?.unsubscribe();
8723
+ }
8724
+ onFormValueChanged(formValue) {
8725
+ this._formValue$.next(formValue);
8726
+ this.handleValid(formValue);
8727
+ }
8728
+ onPropertyChanged(property, value) {
8729
+ this._properties.set(property, value);
8730
+ const formValue = this._formValue$.value;
8731
+ if (!formValue)
8732
+ return;
8733
+ this._properties.forEach((propValue, key) => {
8734
+ formValue[key] = propValue;
8735
+ });
8736
+ this.onFormValueChanged(formValue);
8737
+ }
8738
+ prefillValueFor(property, prefill) {
8739
+ return prefill ? (prefill[property] ?? null) : null;
8740
+ }
8741
+ translationKeyFor(property) {
8742
+ return property === 'description' ? 'omschrijving' : property;
8743
+ }
8744
+ translationKeyForPropertyList(property) {
8745
+ return this.translationKeyFor(property);
8746
+ }
8747
+ addProperty(property) {
8748
+ if (!this.propertyList.includes(property)) {
8749
+ this.propertyList = [...this.propertyList, property];
8750
+ const formValue = this._formValue$.value;
8751
+ if (formValue)
8752
+ this.handleValid(formValue);
8753
+ }
8754
+ }
8755
+ removeProperty(property) {
8756
+ if (this.propertyList.includes(property)) {
8757
+ this.propertyList = this.propertyList.filter(p => p !== property);
8758
+ this._properties.delete(property);
8759
+ const formValue = this._formValue$.value;
8760
+ if (formValue) {
8761
+ formValue[property] = undefined;
8762
+ this.handleValid(formValue);
8763
+ }
8764
+ }
8765
+ }
8766
+ hasPropertyBeenAdded(property) {
8767
+ return this.propertyList.includes(property);
8768
+ }
8769
+ handleValid(formValue) {
8770
+ const combined = {
8771
+ ...(this._prefillConfig || {}),
8772
+ ...formValue,
8773
+ };
8774
+ const besluitUrlValid = !!combined.besluitUrl;
8775
+ const dynamicValid = this.propertyList.every(p => !!combined[p]);
8776
+ const valid = besluitUrlValid && dynamicValid;
8777
+ this._valid$.next(valid);
8778
+ this.valid.emit(valid);
8779
+ }
8780
+ openSaveSubscription() {
8781
+ this._saveSubscription = this.save$?.subscribe(() => {
8782
+ combineLatest([this._formValue$, this._valid$])
8783
+ .pipe(take(1))
8784
+ .subscribe(([formValue, valid]) => {
8785
+ if (!valid || !formValue)
8786
+ return;
8787
+ const combined = {
8788
+ ...(this._prefillConfig || {}),
8789
+ ...formValue,
8790
+ };
8791
+ const payload = {
8792
+ besluitUrl: combined.besluitUrl,
8793
+ };
8794
+ this.propertyList.forEach(property => {
8795
+ payload[property] = combined[property];
8796
+ });
8797
+ this.configuration.emit(payload);
8798
+ });
8799
+ });
8800
+ }
8801
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PatchZaakBesluitConfigurationComponent, deps: [{ token: i1$3.IconService }], target: i0.ɵɵFactoryTarget.Component }); }
8802
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.15", type: PatchZaakBesluitConfigurationComponent, isStandalone: false, selector: "valtimo-patch-zaak-besluit-configuration", inputs: { save$: "save$", disabled$: "disabled$", pluginId: "pluginId", 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 {{ 'patchZaakBesluitInformation' | pluginTranslate: pluginId | async }}\n </v-paragraph>\n\n <v-form (valueChange)=\"onFormValueChanged($event)\">\n <v-input\n name=\"besluitUrl\"\n [title]=\"'besluitUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.besluitUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'besluitUrlTooltip' | pluginTranslate: pluginId | async\"\n [widthPx]=\"350\"\n ></v-input>\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 {{ 'addPatchBesluitProperty' | pluginTranslate: pluginId | async }}\n <svg class=\"cds--btn__icon\" cdsIcon=\"add\" size=\"16\"></svg>\n </button>\n </div>\n </div>\n\n @for (property of propertyList; track property) {\n <div class=\"row\">\n <div class=\"col-11\">\n <v-input\n [name]=\"property\"\n [title]=\"translationKeyFor(property) | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"prefillValueFor(property, obs.prefill)\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"translationKeyFor(property + 'Tooltip') | pluginTranslate: pluginId | async\"\n [widthPx]=\"350\"\n (valueChange)=\"onPropertyChanged(property, $event)\"\n ></v-input>\n </div>\n\n <div class=\"col-1\">\n <button class=\"btn btn-space delete-button\" (click)=\"removeProperty(property)\">\n <svg class=\"cds--btn__icon\" cdsIcon=\"trash-can\" size=\"16\"></svg>\n </button>\n </div>\n </div>\n }\n </v-form>\n</ng-container>\n\n<ng-template #addPropertyList>\n @for (propertyOption of propertyOptions; track propertyOption) {\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</ng-template>\n", styles: [".delete-button{height:46px;width:46px;margin-top:20px}.delete-button:hover{background-color:#e12717}.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" }] }); }
8803
+ }
8804
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PatchZaakBesluitConfigurationComponent, decorators: [{
8805
+ type: Component,
8806
+ args: [{ standalone: false, selector: 'valtimo-patch-zaak-besluit-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 {{ 'patchZaakBesluitInformation' | pluginTranslate: pluginId | async }}\n </v-paragraph>\n\n <v-form (valueChange)=\"onFormValueChanged($event)\">\n <v-input\n name=\"besluitUrl\"\n [title]=\"'besluitUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.besluitUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'besluitUrlTooltip' | pluginTranslate: pluginId | async\"\n [widthPx]=\"350\"\n ></v-input>\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 {{ 'addPatchBesluitProperty' | pluginTranslate: pluginId | async }}\n <svg class=\"cds--btn__icon\" cdsIcon=\"add\" size=\"16\"></svg>\n </button>\n </div>\n </div>\n\n @for (property of propertyList; track property) {\n <div class=\"row\">\n <div class=\"col-11\">\n <v-input\n [name]=\"property\"\n [title]=\"translationKeyFor(property) | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"prefillValueFor(property, obs.prefill)\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"translationKeyFor(property + 'Tooltip') | pluginTranslate: pluginId | async\"\n [widthPx]=\"350\"\n (valueChange)=\"onPropertyChanged(property, $event)\"\n ></v-input>\n </div>\n\n <div class=\"col-1\">\n <button class=\"btn btn-space delete-button\" (click)=\"removeProperty(property)\">\n <svg class=\"cds--btn__icon\" cdsIcon=\"trash-can\" size=\"16\"></svg>\n </button>\n </div>\n </div>\n }\n </v-form>\n</ng-container>\n\n<ng-template #addPropertyList>\n @for (propertyOption of propertyOptions; track propertyOption) {\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</ng-template>\n", styles: [".delete-button{height:46px;width:46px;margin-top:20px}.delete-button:hover{background-color:#e12717}.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"] }]
8807
+ }], ctorParameters: () => [{ type: i1$3.IconService }], propDecorators: { save$: [{
8808
+ type: Input
8809
+ }], disabled$: [{
8810
+ type: Input
8811
+ }], pluginId: [{
8812
+ type: Input
8813
+ }], prefillConfiguration$: [{
8814
+ type: Input
8815
+ }], valid: [{
8816
+ type: Output
8817
+ }], configuration: [{
8818
+ type: Output
8819
+ }] } });
8820
+
8621
8821
  /*
8622
8822
  * Copyright 2015-2025 Ritense BV, the Netherlands.
8623
8823
  *
@@ -8686,6 +8886,75 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
8686
8886
  type: Output
8687
8887
  }] } });
8688
8888
 
8889
+ /*
8890
+ * Copyright 2015-2025 Ritense BV, the Netherlands.
8891
+ *
8892
+ * Licensed under EUPL, Version 1.2 (the "License");
8893
+ * you may not use this file except in compliance with the License.
8894
+ * You may obtain a copy of the License at
8895
+ *
8896
+ * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
8897
+ *
8898
+ * Unless required by applicable law or agreed to in writing, software
8899
+ * distributed under the License is distributed on an "AS IS" basis,
8900
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
8901
+ * See the License for the specific language governing permissions and
8902
+ * limitations under the License.
8903
+ */
8904
+ class GetBesluitConfigurationComponent {
8905
+ constructor() {
8906
+ this.valid = new EventEmitter();
8907
+ this.configuration = new EventEmitter();
8908
+ this.formValue$ = new BehaviorSubject(null);
8909
+ this.valid$ = new BehaviorSubject(false);
8910
+ }
8911
+ ngOnInit() {
8912
+ this.openSaveSubscription();
8913
+ this.valid.emit(false);
8914
+ }
8915
+ ngOnDestroy() {
8916
+ this.saveSubscription?.unsubscribe();
8917
+ }
8918
+ openSaveSubscription() {
8919
+ this.saveSubscription = this.save$?.subscribe(() => {
8920
+ combineLatest([this.formValue$, this.valid$])
8921
+ .pipe(take(1))
8922
+ .subscribe(([formValue, valid]) => {
8923
+ if (valid) {
8924
+ this.configuration.emit(formValue);
8925
+ }
8926
+ });
8927
+ });
8928
+ }
8929
+ formValueChange(formValue) {
8930
+ this.formValue$.next(formValue);
8931
+ this.handleValid(formValue);
8932
+ }
8933
+ handleValid(formValue) {
8934
+ const valid = !!formValue?.besluitUrl && !!formValue?.resultProcessVariable;
8935
+ this.valid$.next(valid);
8936
+ this.valid.emit(valid);
8937
+ }
8938
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetBesluitConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
8939
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: GetBesluitConfigurationComponent, isStandalone: false, selector: "valtimo-get-besluit-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=\"besluitUrl\"\n [title]=\"'besluitUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.besluitUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'besluitUrlTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'resultProcessVariableTooltip' | 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" }] }); }
8940
+ }
8941
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetBesluitConfigurationComponent, decorators: [{
8942
+ type: Component,
8943
+ args: [{ selector: 'valtimo-get-besluit-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=\"besluitUrl\"\n [title]=\"'besluitUrl' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.besluitUrl\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'besluitUrlTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n <v-input\n name=\"resultProcessVariable\"\n [title]=\"'resultProcessVariable' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.resultProcessVariable\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'resultProcessVariableTooltip' | pluginTranslate: pluginId | async\"\n ></v-input>\n</v-form>\n" }]
8944
+ }], propDecorators: { save$: [{
8945
+ type: Input
8946
+ }], disabled$: [{
8947
+ type: Input
8948
+ }], pluginId: [{
8949
+ type: Input
8950
+ }], prefillConfiguration$: [{
8951
+ type: Input
8952
+ }], valid: [{
8953
+ type: Output
8954
+ }], configuration: [{
8955
+ type: Output
8956
+ }] } });
8957
+
8689
8958
  /*
8690
8959
  * Copyright 2015-2025 Ritense BV, the Netherlands.
8691
8960
  *
@@ -8705,26 +8974,36 @@ class BesluitenApiPluginModule {
8705
8974
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: BesluitenApiPluginModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
8706
8975
  static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: BesluitenApiPluginModule, declarations: [BesluitenApiConfigurationComponent,
8707
8976
  CreateZaakBesluitConfigurationComponent,
8708
- LinkDocumentToBesluitConfigurationComponent], imports: [CommonModule,
8977
+ PatchZaakBesluitConfigurationComponent,
8978
+ LinkDocumentToBesluitConfigurationComponent,
8979
+ GetBesluitConfigurationComponent], imports: [CommonModule,
8709
8980
  PluginTranslatePipeModule,
8710
8981
  FormModule,
8711
8982
  InputModule,
8712
8983
  SelectModule,
8713
- DatePickerModule,
8984
+ DatePickerModule$1,
8714
8985
  ParagraphModule,
8715
8986
  RadioModule,
8716
- LoadingModule], exports: [BesluitenApiConfigurationComponent,
8987
+ LoadingModule,
8988
+ ButtonModule,
8989
+ DialogModule,
8990
+ IconModule], exports: [BesluitenApiConfigurationComponent,
8717
8991
  CreateZaakBesluitConfigurationComponent,
8718
- LinkDocumentToBesluitConfigurationComponent] }); }
8992
+ PatchZaakBesluitConfigurationComponent,
8993
+ LinkDocumentToBesluitConfigurationComponent,
8994
+ GetBesluitConfigurationComponent] }); }
8719
8995
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: BesluitenApiPluginModule, imports: [CommonModule,
8720
8996
  PluginTranslatePipeModule,
8721
8997
  FormModule,
8722
8998
  InputModule,
8723
8999
  SelectModule,
8724
- DatePickerModule,
9000
+ DatePickerModule$1,
8725
9001
  ParagraphModule,
8726
9002
  RadioModule,
8727
- LoadingModule] }); }
9003
+ LoadingModule,
9004
+ ButtonModule,
9005
+ DialogModule,
9006
+ IconModule] }); }
8728
9007
  }
8729
9008
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: BesluitenApiPluginModule, decorators: [{
8730
9009
  type: NgModule,
@@ -8732,7 +9011,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
8732
9011
  declarations: [
8733
9012
  BesluitenApiConfigurationComponent,
8734
9013
  CreateZaakBesluitConfigurationComponent,
9014
+ PatchZaakBesluitConfigurationComponent,
8735
9015
  LinkDocumentToBesluitConfigurationComponent,
9016
+ GetBesluitConfigurationComponent,
8736
9017
  ],
8737
9018
  imports: [
8738
9019
  CommonModule,
@@ -8740,15 +9021,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
8740
9021
  FormModule,
8741
9022
  InputModule,
8742
9023
  SelectModule,
8743
- DatePickerModule,
9024
+ DatePickerModule$1,
8744
9025
  ParagraphModule,
8745
9026
  RadioModule,
8746
9027
  LoadingModule,
9028
+ ButtonModule,
9029
+ DialogModule,
9030
+ IconModule,
8747
9031
  ],
8748
9032
  exports: [
8749
9033
  BesluitenApiConfigurationComponent,
8750
9034
  CreateZaakBesluitConfigurationComponent,
9035
+ PatchZaakBesluitConfigurationComponent,
8751
9036
  LinkDocumentToBesluitConfigurationComponent,
9037
+ GetBesluitConfigurationComponent,
8752
9038
  ],
8753
9039
  }]
8754
9040
  }] });
@@ -8807,7 +9093,9 @@ const besluitenApiPluginSpecification = {
8807
9093
  pluginLogoBase64: BESLUITEN_API_PLUGIN_LOGO_BASE64,
8808
9094
  functionConfigurationComponents: {
8809
9095
  'create-besluit': CreateZaakBesluitConfigurationComponent,
9096
+ 'patch-besluit': PatchZaakBesluitConfigurationComponent,
8810
9097
  'link-document-to-besluit': LinkDocumentToBesluitConfigurationComponent,
9098
+ 'get-besluit': GetBesluitConfigurationComponent,
8811
9099
  },
8812
9100
  pluginTranslations: {
8813
9101
  nl: {
@@ -8829,11 +9117,11 @@ const besluitenApiPluginSpecification = {
8829
9117
  bestuursorgaan: 'Bestuursorgaan',
8830
9118
  bestuursorgaanTooltip: 'Een orgaan van een rechtspersoon krachtens publiekrecht ingesteld of een persoon of college, met enig openbaar gezag bekleed onder wiens verantwoordelijkheid het besluit vastgesteld is.',
8831
9119
  ingangsdatum: 'Ingangsdatum',
8832
- ingangsdatumTooltip: 'Ingangsdatum van de werkingsperiode van het besluit. Ondersteunt de value resolver, bijv: pv:ingangsdatum of doc:/besluit/ingangsdatum. Ondersteunende datum voorbeelden: 2024-04-01, 2024-04-01T12:10:00, 2024-04-01T12:10:06.069Z. Selecteer Tekst om de document of proces variabel property te gebruiken en Selectie om een datum uit een kalender te selecteren',
9120
+ ingangsdatumTooltip: 'Ingangsdatum van de werkingsperiode van het besluit. Ondersteunt de value resolver, bijv: pv:ingangsdatum of doc:/besluit/ingangsdatum. Ondersteunende datum voorbeelden: 2024-04-01, 2024-04-01T12:10:00, 2024-04-01T12:10:06.069Z',
8833
9121
  vervaldatum: 'Vervaldatum',
8834
- vervaldatumTooltip: 'Datum waarop de werkingsperiode van het besluit eindigt. Ondersteunt de value resolver, bijv: pv:vervaldatum of doc:/besluit/vervaldatum. Ondersteunende datum voorbeelden: 2024-04-01, 2024-04-01T12:10:00, 2024-04-01T12:10:06.069Z. Selecteer Tekst om de document of proces variabel property te gebruiken en Selectie om een datum uit een kalender te selecteren',
9122
+ vervaldatumTooltip: 'Datum waarop de werkingsperiode van het besluit eindigt. Ondersteunt de value resolver, bijv: pv:vervaldatum of doc:/besluit/vervaldatum. Ondersteunende datum voorbeelden: 2024-04-01, 2024-04-01T12:10:00, 2024-04-01T12:10:06.069Z.',
8835
9123
  vervalreden: 'Vervalreden',
8836
- vervalredenTooltip: 'De omschrijving die aangeeft op grond waarvan het besluit is of komt te vervallen.',
9124
+ vervalredenTooltip: 'De omschrijving die aangeeft op grond waarvan het besluit is of komt te vervallen. Mogelijke waarden: tijdelijk, ingetrokken_overheid, ingetrokken_belanghebbende',
8837
9125
  tijdelijk: 'Tijdelijk',
8838
9126
  ingetrokken_overheid: 'Ingetrokken door overheid',
8839
9127
  ingetrokken_belanghebbende: 'Ingetrokken door belanghebbende',
@@ -8860,6 +9148,14 @@ const besluitenApiPluginSpecification = {
8860
9148
  caseDefinitionTooltip: 'Selecteer de dossierdefinitie waarvan u een Besluit-type wilt selecteren. Als er slechts één besluittype beschikbaar is, wordt deze standaard geselecteerd.',
8861
9149
  besluittypeUrlSelect: 'Besluittype',
8862
9150
  besluittypeUrlSelectTooltip: 'Selecteer het besluittype.',
9151
+ 'patch-besluit': 'Zaakbesluit bijwerken',
9152
+ patchZaakBesluitInformation: 'Deze actie wijzigt een zaakbesluit in de Besluiten API.',
9153
+ beslisdatum: 'Beslisdatum',
9154
+ beslisdatumTooltip: 'De beslisdatum (AWB) van het besluit. Ondersteunt value resolver. Ondersteunende datum voorbeelden: 2024-04-01, 2024-04-01T12:10:00, 2024-04-01T12:10:06.069Z',
9155
+ addPatchBesluitProperty: 'Voeg nieuwe parameter toe',
9156
+ 'get-besluit': 'Besluit ophalen',
9157
+ resultProcessVariable: 'Resultaat process variable',
9158
+ resultProcessVariableTooltip: 'De naam van de procesvariabele waarin het resultaat moet worden opgeslagen.',
8863
9159
  },
8864
9160
  en: {
8865
9161
  title: 'Besluiten API',
@@ -8880,11 +9176,11 @@ const besluitenApiPluginSpecification = {
8880
9176
  bestuursorgaan: 'Governing body',
8881
9177
  bestuursorgaanTooltip: 'A body of a legal person established under public law or a person or body with any public authority under whose responsibility the decision has been adopted.',
8882
9178
  ingangsdatum: 'Starting date',
8883
- ingangsdatumTooltip: 'Commencement date of the effective period of the besluit. Supports the value resolver eg: pv:ingangsdatum or doc:/besluit/ingangsdatum. Supporting date format examples: 2024-04-01, 2024-04-01T12:10:00, 2024-04-01T12:10:06.069Z. Select Text to use document or process variable property and Selection to select a date from a calendar.',
9179
+ ingangsdatumTooltip: 'Commencement date of the effective period of the besluit. Supports the value resolver eg: pv:ingangsdatum or doc:/besluit/ingangsdatum. Supporting date format examples: 2024-04-01, 2024-04-01T12:10:00, 2024-04-01T12:10:06.069Z.',
8884
9180
  vervaldatum: 'Expiration date',
8885
- vervaldatumTooltip: 'Date on which the period of operation of the besluit ends. Supports the value resolver eg: pv:vervaldatum or doc:/besluit/vervaldatum. Supporting date format examples: 2024-04-01, 2024-04-01T12:10:00, 2024-04-01T12:10:06.069Z. Select Text to use document or process variable property and Selection to select a date from a calendar.',
9181
+ vervaldatumTooltip: 'Date on which the period of operation of the besluit ends. Supports the value resolver eg: pv:vervaldatum or doc:/besluit/vervaldatum. Supporting date format examples: 2024-04-01, 2024-04-01T12:10:00, 2024-04-01T12:10:06.069Z.',
8886
9182
  vervalreden: 'Reason for expiry',
8887
- vervalredenTooltip: 'The description that indicates on the basis of which the decision has been or will be cancelled.',
9183
+ vervalredenTooltip: 'The description that indicates on the basis of which the decision has been or will be cancelled. Possible value: tijdelijk, ingetrokken_overheid, ingetrokken_belanghebbende',
8888
9184
  tijdelijk: 'Temporary',
8889
9185
  ingetrokken_overheid: 'Withdrawn by government',
8890
9186
  ingetrokken_belanghebbende: 'Withdrawn by interested party',
@@ -8911,57 +9207,14 @@ const besluitenApiPluginSpecification = {
8911
9207
  caseDefinitionTooltip: 'Select the case definition from which you want to select a Besluit type. If only one Besluit type is available, it will be selected by default.',
8912
9208
  besluittypeUrlSelect: 'Besluittype',
8913
9209
  besluittypeUrlSelectTooltip: 'Select the Besluit type.',
8914
- },
8915
- de: {
8916
- title: 'Besluiten API',
8917
- rsin: 'RSIN',
8918
- rsinTooltip: 'Informationsnummer für juristische Personen und Partnerschaften.',
8919
- url: 'Besluiten API URL',
8920
- urlTooltip: 'Die URL zur REST API von Besluiten',
8921
- description: 'API für die Speicherung und den Zugriff auf Entscheidungen und zugehörige Metadaten.',
8922
- configurationTitle: 'Konfigurationsname',
8923
- configurationTitleTooltip: 'Der Name der aktuellen Plugin-Konfiguration. Unter diesem Namen ist die Konfiguration im Rest der Anwendung zu finden.',
8924
- authenticationPluginConfiguration: 'Authentifizierungs-Plugin-Konfiguration',
8925
- 'create-besluit': 'Zaakbesluit erstellen',
8926
- createZaakBesluitInformation: 'Diese Aktion erstellt eine Zaakbesluit in der Besluiten-API.',
8927
- besluittypeUrl: 'Entscheidungstyp-URL',
8928
- besluittypeUrlTooltip: 'URL-Referenz zum Entscheidungstyp',
8929
- toelichting: 'Erläuterung',
8930
- toelichtingTooltip: 'Begründung der Entscheidung.',
8931
- bestuursorgaan: 'Leitungsgremium',
8932
- bestuursorgaanTooltip: 'Eine Körperschaft einer juristischen Person des öffentlichen Rechts oder eine Person oder Körperschaft einer öffentlichen Behörde, unter deren Verantwortung die Entscheidung getroffen wurde.',
8933
- ingangsdatum: 'Anfangsdatum',
8934
- ingangsdatumTooltip: 'Datum des Beginns der Geltungsdauer der Entscheidung. Unterstützt den Werteauflöser, z. B.: pv:ingangsdatum oder doc:/besluit/ingangdatum. Beispiele für unterstützende Datumsformate: 2024-04-01, 2024-04-01T12:10:00, 2024-04-01T12:10:06.069Z. Wählen Sie Text, um die Dokument- oder Prozessvariableneigenschaft zu verwenden, und Auswahl, um ein Datum aus einem Kalender auszuwählen',
8935
- vervaldatum: 'Verfallsdatum',
8936
- vervaldatumTooltip: 'Datum, an dem die Geltungsdauer der Entscheidung endet. Unterstützt den Werteauflöser, z. B.: pv:vervaldatum oder doc:/besluit/vervaldatum. Beispiele für unterstützende Datumsformate: 2024-04-01, 2024-04-01T12:10:00, 2024-04-01T12:10:06.069Z. Wählen Sie Text, um die Dokument- oder Prozessvariableneigenschaft zu verwenden, und Auswahl, um ein Datum aus einem Kalender auszuwählen',
8937
- vervalreden: 'Ablaufgrund',
8938
- vervalredenTooltip: 'Die Beschreibung, auf deren Grundlage die Entscheidung aufgehoben wurde oder wird.',
8939
- tijdelijk: 'Temporär',
8940
- ingetrokken_overheid: 'Von der Regierung zurückgezogen',
8941
- ingetrokken_belanghebbende: 'Von interessierter Partei zurückgezogen',
8942
- publicatiedatum: 'Veröffentlichungsdatum',
8943
- publicatiedatumTooltip: 'Datum, an dem die Entscheidung veröffentlicht wird.',
8944
- verzenddatum: 'Versanddatum',
8945
- verzenddatumTooltip: 'Datum, an dem die Entscheidung gesendet wurde.',
8946
- uiterlijkeReactieDatum: 'Antwortfrist',
8947
- uiterlijkeReactieDatumTooltip: 'Das Datum, bis zu dem eine Verteidigung gegen die Entscheidung möglich ist.',
8948
- besluitUrlProcessVariable: 'Prozessvariablenname mit Entscheidungs-URL',
8949
- besluitUrlProcessVariableTooltip: 'Hier muss der Name der Prozessvariable eingetragen werden, in der die Entscheidungs-URL lokal gespeichert wird',
8950
- 'link-document-to-besluit': 'Verknüpf Document zum Besluit',
8951
- linkDocumentToBesluitInformation: 'Diese Aktion verknüpft ein Dokument mit einer Fallentscheidung in der Besluiten API.',
8952
- besluitUrl: 'Besluit URL',
8953
- besluitUrlTooltip: 'URL-Referenz zum besluit',
8954
- documentUrl: 'Document URL',
8955
- documentUrlTooltip: 'URL-Referenz zum document',
8956
- inputTypeBesluitToggle: 'Eingabetyp Besluit-URL',
8957
- inputTypeStartingDateToggle: 'Eingabetyp Begindatum',
8958
- inputTypeExpirationDateToggle: 'Eingabetyp Einddatum',
8959
- text: 'Text',
8960
- selection: 'Auswahl',
8961
- caseDefinition: 'Falltyp',
8962
- caseDefinitionTooltip: 'Wählen Sie die Falltyp aus, aus der Sie einen Besluit-typ auswählen möchten. Wenn nur ein Besluit-typ verfügbar ist, wird dieser standardmäßig ausgewählt.',
8963
- besluittypeUrlSelect: 'Besluittype',
8964
- besluittypeUrlSelectTooltip: 'Wählen Sie den Besluit-typ aus.',
9210
+ 'patch-besluit': 'Patch Zaakbesluit',
9211
+ patchZaakBesluitInformation: 'This action patches a Zaakbesluit in the Besluiten API.',
9212
+ beslisdatum: 'Decision date',
9213
+ beslisdatumTooltip: 'The decision date (AWB) of the decision. Supports value resolver. Supported date examples: 2024-04-01, 2024-04-01T12:10:00, 2024-04-01T12:10:06.069Z',
9214
+ addPatchBesluitProperty: 'Add besluit property',
9215
+ 'get-besluit': 'Retrieve besluit',
9216
+ resultProcessVariable: 'Result process variable',
9217
+ resultProcessVariableTooltip: 'The name of the process variable in which the result must be stored.',
8965
9218
  },
8966
9219
  },
8967
9220
  };
@@ -9090,13 +9343,13 @@ class ExactPluginConfigurationComponent {
9090
9343
  });
9091
9344
  });
9092
9345
  }
9093
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ExactPluginConfigurationComponent, deps: [{ token: ExactPluginService }, { token: i4.IconService }], target: i0.ɵɵFactoryTarget.Component }); }
9094
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: ExactPluginConfigurationComponent, isStandalone: false, selector: "valtimo-exact-plugin-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=\"configurationTitle\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n <v-input\n name=\"clientId\"\n [title]=\"'clientId' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.clientId\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n ></v-input>\n <v-input\n name=\"clientSecret\"\n [title]=\"'clientSecret' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.clientSecret\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n >\n </v-input>\n\n <button cdsButton=\"secondary\" (click)=\"openAuthenticationWindow()\">\n <svg cdsIcon=\"close\" size=\"16\"></svg>\n Give authorization\n </button>\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: "directive", type: i4.Button, selector: "[cdsButton], [ibmButton]", inputs: ["ibmButton", "cdsButton", "size", "skeleton", "iconOnly", "isExpressive"] }, { kind: "directive", type: i4.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" }] }); }
9346
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ExactPluginConfigurationComponent, deps: [{ token: ExactPluginService }, { token: i1$3.IconService }], target: i0.ɵɵFactoryTarget.Component }); }
9347
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: ExactPluginConfigurationComponent, isStandalone: false, selector: "valtimo-exact-plugin-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=\"configurationTitle\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n <v-input\n name=\"clientId\"\n [title]=\"'clientId' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.clientId\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n ></v-input>\n <v-input\n name=\"clientSecret\"\n [title]=\"'clientSecret' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.clientSecret\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n >\n </v-input>\n\n <button cdsButton=\"secondary\" (click)=\"openAuthenticationWindow()\">\n <svg cdsIcon=\"close\" size=\"16\"></svg>\n Give authorization\n </button>\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: "directive", type: i1$3.Button, selector: "[cdsButton], [ibmButton]", inputs: ["ibmButton", "cdsButton", "size", "skeleton", "iconOnly", "isExpressive"] }, { 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" }] }); }
9095
9348
  }
9096
9349
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ExactPluginConfigurationComponent, decorators: [{
9097
9350
  type: Component,
9098
9351
  args: [{ standalone: false, selector: 'valtimo-exact-plugin-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 } as obs\"\n>\n <v-input\n name=\"configurationTitle\"\n [title]=\"'configurationTitle' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [disabled]=\"obs.disabled\"\n [defaultValue]=\"obs.prefill?.configurationTitle\"\n [required]=\"true\"\n [trim]=\"true\"\n [tooltip]=\"'configurationTitleTooltip' | pluginTranslate: pluginId | async\"\n >\n </v-input>\n <v-input\n name=\"clientId\"\n [title]=\"'clientId' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.clientId\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n [trim]=\"true\"\n ></v-input>\n <v-input\n name=\"clientSecret\"\n [title]=\"'clientSecret' | pluginTranslate: pluginId | async\"\n [margin]=\"true\"\n [defaultValue]=\"obs.prefill?.clientSecret\"\n [disabled]=\"obs.disabled\"\n [required]=\"true\"\n >\n </v-input>\n\n <button cdsButton=\"secondary\" (click)=\"openAuthenticationWindow()\">\n <svg cdsIcon=\"close\" size=\"16\"></svg>\n Give authorization\n </button>\n</v-form>\n" }]
9099
- }], ctorParameters: () => [{ type: ExactPluginService }, { type: i4.IconService }], propDecorators: { save$: [{
9352
+ }], ctorParameters: () => [{ type: ExactPluginService }, { type: i1$3.IconService }], propDecorators: { save$: [{
9100
9353
  type: Input
9101
9354
  }], disabled$: [{
9102
9355
  type: Input
@@ -9393,19 +9646,6 @@ const exactPluginSpecification = {
9393
9646
  bean: 'Service class',
9394
9647
  content: 'Content',
9395
9648
  },
9396
- de: {
9397
- title: 'Exact Plugin',
9398
- description: 'Plugin zum Einrichten einer Exact-API-Verbindung',
9399
- configurationTitle: 'Konfigurationsname',
9400
- clientId: 'Kunden ID',
9401
- clientSecret: 'Client-Geheimnis',
9402
- 'exact-get-request': 'Exakte GET-Anfrage',
9403
- 'exact-post-request': 'Exakte POST-Anfrage',
9404
- 'exact-put-request': 'Exakte PUT-Anfrage',
9405
- uri: 'URI',
9406
- bean: 'Serviceklasse',
9407
- content: 'Inhalt',
9408
- },
9409
9649
  },
9410
9650
  };
9411
9651
 
@@ -9564,5 +9804,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
9564
9804
  * Generated bundle index. Do not edit.
9565
9805
  */
9566
9806
 
9567
- export { BesluitenApiConfigurationComponent, BesluitenApiPluginModule, CatalogiApiConfigurationComponent, CatalogiApiPluginModule, CompletePortalTaskComponent, CreateMedewerkerZaakRolComponent, CreateNatuurlijkPersoonZaakRolComponent, CreateNietNatuurlijkPersoonZaakRolComponent, CreateOrganisatorischeEenheidZaakRolComponent, CreatePersoonComponent, CreatePortalTaskComponent, CreateVestigingZaakRolComponent, CreateZaakBesluitConfigurationComponent, CreateZaakConfigurationComponent, CreateZaakObjectConfigurationComponent, CreateZaakResultaatConfigurationComponent, CreateZaakeigenschapComponent, DeleteObjectComponent, DeleteZaakRolComponent, DeleteZaakeigenschapComponent, DocumentenApiConfigurationComponent, DocumentenApiPluginModule, DownloadDocumentConfigurationComponent, EndHersteltermijnComponent, ExactPluginModule, GenerateDocumentConfigurationComponent, GetBesluittypeConfigurationComponent, GetEigenschapConfigurationComponent, GetResultaattypeConfigurationComponent, GetResultaattypenConfigurationComponent, GetStatustypeConfigurationComponent, GetStatustypenConfigurationComponent, GetTemplateNamesComponent, IkoConfigurationComponent, IkoPluginModule, KlantinteractiesApiConfigurationComponent, KlantinteractiesApiPluginModule, LinkDocumentToBesluitConfigurationComponent, LinkDocumentToZaakConfigurationComponent, LinkUploadedDocumentToZaakConfigurationComponent, NotificatiesApiConfigurationComponent, NotificatiesApiPluginModule, ObjectTokenAuthencationConfigurationComponent, ObjectTokenAuthenticationPluginModule, ObjectenApiConfigurationComponent, ObjectenApiPluginModule, ObjecttypenApiConfigurationComponent, ObjecttypenApiPluginModule, OpenKlantTokenAuthenticationConfigurationComponent, OpenKlantTokenAuthenticationPluginModule, OpenNotificatiesConfigurationComponent, OpenNotificatiesPluginModule, OpenZaakConfigurationComponent, OpenZaakPluginModule, PLUGINS_TOKEN, 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, ikoPluginSpecification, klantinteractiesApiPluginSpecification, notificatiesApiPluginSpecification, objectTokenAuthenticationPluginSpecification, objectenApiPluginSpecification, objecttypenApiPluginSpecification, openKlantTokenAuthenticationPluginSpecification, openNotificatiesPluginSpecification, openZaakPluginSpecification, portaaltaakPluginSpecification, smartDocumentsPluginSpecification, verzoekPluginSpecification, zakenApiPluginSpecification };
9807
+ export { BesluitenApiConfigurationComponent, BesluitenApiPluginModule, CatalogiApiConfigurationComponent, CatalogiApiPluginModule, CompletePortalTaskComponent, CreateMedewerkerZaakRolComponent, CreateNatuurlijkPersoonZaakRolComponent, CreateNietNatuurlijkPersoonZaakRolComponent, CreateOrganisatorischeEenheidZaakRolComponent, CreatePersoonComponent, CreatePortalTaskComponent, CreateVestigingZaakRolComponent, CreateZaakBesluitConfigurationComponent, CreateZaakConfigurationComponent, CreateZaakObjectConfigurationComponent, CreateZaakResultaatConfigurationComponent, CreateZaakeigenschapComponent, DeleteObjectComponent, DeleteZaakRolComponent, DeleteZaakeigenschapComponent, DocumentenApiConfigurationComponent, DocumentenApiPluginModule, DownloadDocumentConfigurationComponent, EndHersteltermijnComponent, ExactPluginModule, GenerateDocumentConfigurationComponent, GetBesluitConfigurationComponent, GetBesluittypeConfigurationComponent, GetEigenschapConfigurationComponent, GetResultaattypeConfigurationComponent, GetResultaattypenConfigurationComponent, GetStatustypeConfigurationComponent, GetStatustypenConfigurationComponent, GetTemplateNamesComponent, GetZaakInformatieobjectenComponent, GetZaakbesluitenConfigurationComponent, IkoConfigurationComponent, IkoPluginModule, KlantinteractiesApiConfigurationComponent, KlantinteractiesApiPluginModule, LinkDocumentToBesluitConfigurationComponent, LinkDocumentToZaakConfigurationComponent, LinkUploadedDocumentToZaakConfigurationComponent, NotificatiesApiConfigurationComponent, NotificatiesApiPluginModule, ObjectTokenAuthencationConfigurationComponent, ObjectTokenAuthenticationPluginModule, ObjectenApiConfigurationComponent, ObjectenApiPluginModule, ObjecttypenApiConfigurationComponent, ObjecttypenApiPluginModule, OpenKlantTokenAuthenticationConfigurationComponent, OpenKlantTokenAuthenticationPluginModule, OpenNotificatiesConfigurationComponent, OpenNotificatiesPluginModule, OpenZaakConfigurationComponent, OpenZaakPluginModule, PLUGINS_TOKEN, PatchZaakBesluitConfigurationComponent, 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, ikoPluginSpecification, klantinteractiesApiPluginSpecification, notificatiesApiPluginSpecification, objectTokenAuthenticationPluginSpecification, objectenApiPluginSpecification, objecttypenApiPluginSpecification, openKlantTokenAuthenticationPluginSpecification, openNotificatiesPluginSpecification, openZaakPluginSpecification, portaaltaakPluginSpecification, smartDocumentsPluginSpecification, verzoekPluginSpecification, zakenApiPluginSpecification };
9568
9808
  //# sourceMappingURL=valtimo-plugin.mjs.map