@valtimo/plugin 13.4.1 → 13.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/valtimo-plugin.mjs +636 -432
- package/fesm2022/valtimo-plugin.mjs.map +1 -1
- package/lib/plugins/besluiten-api/besluiten-api-plugin.module.d.ts +7 -6
- package/lib/plugins/besluiten-api/besluiten-api-plugin.module.d.ts.map +1 -1
- package/lib/plugins/besluiten-api/besluiten-api-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/besluiten-api/components/patch-zaak-besluit/patch-zaak-besluit-configuration.component.d.ts +39 -0
- package/lib/plugins/besluiten-api/components/patch-zaak-besluit/patch-zaak-besluit-configuration.component.d.ts.map +1 -0
- package/lib/plugins/besluiten-api/models/config.d.ts +13 -1
- package/lib/plugins/besluiten-api/models/config.d.ts.map +1 -1
- package/lib/plugins/besluiten-api/models/patch-besluit-properties.d.ts +3 -0
- package/lib/plugins/besluiten-api/models/patch-besluit-properties.d.ts.map +1 -0
- package/lib/plugins/catalogi-api/catalogi-api-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/catalogi-api/components/get-resultaattypen/get-resultaattypen-configuration.component.d.ts.map +1 -1
- package/lib/plugins/catalogi-api/components/get-statustypen/get-statustypen-configuration.component.d.ts.map +1 -1
- package/lib/plugins/documenten-api/documenten-api-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/exact/exact.plugin.specification.d.ts.map +1 -1
- package/lib/plugins/iko/iko-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/klantinteracties-api/klantinteracties-api-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/notificaties-api/notificaties-api-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/notificaties-api-authentication/open-notificaties-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/object-token-authentication/object-token-authentication-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/objecten-api/objecten-api-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/objecttypen-api/objecttypen-api-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/open-klant-token-authentication/open-klant-token-authentication-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/open-zaak/open-zaak-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/portaaltaak/portaaltaak-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/smart-documents/smart-documents-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/verzoek/verzoek-plugin.specification.d.ts.map +1 -1
- package/lib/plugins/zaken-api/components/create-natuurlijk-persoon-zaak-rol/create-natuurlijk-persoon-zaak-rol.component.d.ts.map +1 -1
- package/lib/plugins/zaken-api/components/create-niet-natuurlijk-persoon-zaak-rol/create-niet-natuurlijk-persoon-zaak-rol.component.d.ts.map +1 -1
- package/lib/plugins/zaken-api/components/create-zaak-object/create-zaak-object-configuration.component.d.ts.map +1 -1
- package/lib/plugins/zaken-api/components/delete-zaak-rol/delete-zaak-rol.component.d.ts +24 -0
- package/lib/plugins/zaken-api/components/delete-zaak-rol/delete-zaak-rol.component.d.ts.map +1 -0
- package/lib/plugins/zaken-api/components/get-zaak-informatieobjecten/get-zaak-informatieobjecten.component.d.ts +34 -0
- package/lib/plugins/zaken-api/components/get-zaak-informatieobjecten/get-zaak-informatieobjecten.component.d.ts.map +1 -0
- package/lib/plugins/zaken-api/components/get-zaakbesluiten/get-zaakbesluiten-configuration.component.d.ts +24 -0
- package/lib/plugins/zaken-api/components/get-zaakbesluiten/get-zaakbesluiten-configuration.component.d.ts.map +1 -0
- package/lib/plugins/zaken-api/components/set-zaak-status/set-zaak-status-configuration.component.d.ts +15 -2
- package/lib/plugins/zaken-api/components/set-zaak-status/set-zaak-status-configuration.component.d.ts.map +1 -1
- package/lib/plugins/zaken-api/models/config.d.ts +17 -1
- package/lib/plugins/zaken-api/models/config.d.ts.map +1 -1
- package/lib/plugins/zaken-api/zaken-api-plugin.module.d.ts +27 -23
- package/lib/plugins/zaken-api/zaken-api-plugin.module.d.ts.map +1 -1
- package/lib/plugins/zaken-api/zaken-api-plugin.specification.d.ts.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +5 -0
- package/public-api.d.ts.map +1 -1
|
@@ -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
|
|
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$
|
|
23
|
-
import * as i1$
|
|
24
|
-
import
|
|
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('selection');
|
|
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,21 +3179,83 @@ class SetZaakStatusConfigurationComponent {
|
|
|
3309
3179
|
{ value: 'selection', title: selectionTranslation },
|
|
3310
3180
|
{ value: 'text', title: textTranslation },
|
|
3311
3181
|
]));
|
|
3182
|
+
this.theme$ = this.cdsThemeService.currentTheme$.pipe(map((theme) => theme === CurrentCarbonTheme.G10 ? CARBON_THEME.WHITE : CARBON_THEME.G100));
|
|
3312
3183
|
this._subscriptions = new Subscription();
|
|
3184
|
+
this.selectedDate = null;
|
|
3185
|
+
this.selectedTime = null;
|
|
3313
3186
|
}
|
|
3314
3187
|
ngOnInit() {
|
|
3315
3188
|
this.initContextHandling();
|
|
3316
3189
|
this.initSaveHandling();
|
|
3190
|
+
this.prefillToday();
|
|
3317
3191
|
}
|
|
3318
3192
|
ngOnDestroy() {
|
|
3319
3193
|
this._subscriptions.unsubscribe();
|
|
3320
3194
|
}
|
|
3321
3195
|
formValueChange(formValue) {
|
|
3322
|
-
this.formValue$.
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3196
|
+
const currentFormValue = this.formValue$.value ?? {};
|
|
3197
|
+
const updatedFormValue = {
|
|
3198
|
+
...currentFormValue,
|
|
3199
|
+
...formValue,
|
|
3200
|
+
};
|
|
3201
|
+
this.formValue$.next(updatedFormValue);
|
|
3202
|
+
this.handleValid(updatedFormValue);
|
|
3203
|
+
if (updatedFormValue.inputTypeZaakStatusToggle) {
|
|
3204
|
+
this.selectedInputOption$.next(updatedFormValue.inputTypeZaakStatusToggle);
|
|
3205
|
+
}
|
|
3206
|
+
if (updatedFormValue.inputDatumStatusGezetToggle) {
|
|
3207
|
+
this.datumStatusGezetSelectedInputOption$.next(updatedFormValue.inputDatumStatusGezetToggle);
|
|
3208
|
+
}
|
|
3209
|
+
}
|
|
3210
|
+
onDateSelected(event) {
|
|
3211
|
+
const date = Array.isArray(event) && event[0];
|
|
3212
|
+
if (!date)
|
|
3213
|
+
return;
|
|
3214
|
+
this.selectedDate = date.toISOString();
|
|
3215
|
+
this.updateDatumStatusGezet();
|
|
3216
|
+
}
|
|
3217
|
+
onTimeSelected(event) {
|
|
3218
|
+
this.selectedTime = event;
|
|
3219
|
+
this.updateDatumStatusGezet();
|
|
3220
|
+
}
|
|
3221
|
+
updateDatumStatusGezet() {
|
|
3222
|
+
if (!this.selectedDate || !this.selectedTime) {
|
|
3223
|
+
return;
|
|
3326
3224
|
}
|
|
3225
|
+
const [hoursStr, minutesStr = '00', secondsStr = '00'] = this.selectedTime.split(':');
|
|
3226
|
+
const date = new Date(this.selectedDate);
|
|
3227
|
+
const year = date.getFullYear();
|
|
3228
|
+
const month = String(date.getMonth() + 1).padStart(2, '0');
|
|
3229
|
+
const day = String(date.getDate()).padStart(2, '0');
|
|
3230
|
+
const hh = hoursStr.padStart(2, '0');
|
|
3231
|
+
const mm = minutesStr.padStart(2, '0');
|
|
3232
|
+
const ss = secondsStr.padStart(2, '0');
|
|
3233
|
+
const isoWithoutMs = `${year}-${month}-${day}T${hh}:${mm}:${ss}Z`;
|
|
3234
|
+
const currentFormValue = this.formValue$.value ?? {};
|
|
3235
|
+
const updatedFormValue = {
|
|
3236
|
+
...currentFormValue,
|
|
3237
|
+
datumStatusGezet: isoWithoutMs,
|
|
3238
|
+
};
|
|
3239
|
+
this.formValueChange(updatedFormValue);
|
|
3240
|
+
}
|
|
3241
|
+
prefillToday() {
|
|
3242
|
+
this._subscriptions.add(this.prefillConfiguration$.subscribe(config => {
|
|
3243
|
+
let baseDate;
|
|
3244
|
+
try {
|
|
3245
|
+
baseDate = flatpickr.formatDate(!!config?.datumStatusGezet ? new Date(config.datumStatusGezet) : new Date(), 'Z');
|
|
3246
|
+
}
|
|
3247
|
+
catch (error) {
|
|
3248
|
+
baseDate = config.datumStatusGezet;
|
|
3249
|
+
this.datumStatusGezetSelectedInputOption$.next('text');
|
|
3250
|
+
}
|
|
3251
|
+
this.selectedDate = baseDate;
|
|
3252
|
+
this.selectedTime = this.formatTime(baseDate);
|
|
3253
|
+
}));
|
|
3254
|
+
this.updateDatumStatusGezet();
|
|
3255
|
+
}
|
|
3256
|
+
formatTime(date) {
|
|
3257
|
+
const [hours, minutes, seconds] = date.split('T')[1].split(':');
|
|
3258
|
+
return `${hours}:${minutes}:${seconds.split('.')[0]}`;
|
|
3327
3259
|
}
|
|
3328
3260
|
oneSelectItem(selectItems) {
|
|
3329
3261
|
return Array.isArray(selectItems) && selectItems.length === 1;
|
|
@@ -3362,24 +3294,57 @@ class SetZaakStatusConfigurationComponent {
|
|
|
3362
3294
|
this.configuration.emit({
|
|
3363
3295
|
statustoelichting: formValue.statustoelichting,
|
|
3364
3296
|
statustypeUrl: formValue.statustypeUrl,
|
|
3297
|
+
datumStatusGezet: formValue.datumStatusGezet,
|
|
3365
3298
|
});
|
|
3366
3299
|
}
|
|
3367
3300
|
});
|
|
3368
3301
|
});
|
|
3369
3302
|
this._subscriptions.add(saveSub);
|
|
3370
3303
|
}
|
|
3304
|
+
isValidDatumStatusGezet(value) {
|
|
3305
|
+
if (!value) {
|
|
3306
|
+
return false;
|
|
3307
|
+
}
|
|
3308
|
+
if (this.datumStatusGezetSelectedInputOption$.getValue() === 'text') {
|
|
3309
|
+
return true;
|
|
3310
|
+
}
|
|
3311
|
+
const trimmed = value.trim();
|
|
3312
|
+
// Required format: YYYY-MM-DDTHH:mm:ssZ
|
|
3313
|
+
const regex = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z$/;
|
|
3314
|
+
if (!regex.test(trimmed)) {
|
|
3315
|
+
return false;
|
|
3316
|
+
}
|
|
3317
|
+
const date = new Date(trimmed);
|
|
3318
|
+
return !isNaN(date.getTime());
|
|
3319
|
+
}
|
|
3320
|
+
isDateNotInFuture(value) {
|
|
3321
|
+
if (!value) {
|
|
3322
|
+
return false;
|
|
3323
|
+
}
|
|
3324
|
+
if (this.datumStatusGezetSelectedInputOption$.getValue() === 'text') {
|
|
3325
|
+
return true;
|
|
3326
|
+
}
|
|
3327
|
+
const date = new Date(value);
|
|
3328
|
+
const now = new Date();
|
|
3329
|
+
const isDateNotInFuture = date.getTime() <= now.getTime();
|
|
3330
|
+
this.datePickerInvalid$.next(!isDateNotInFuture);
|
|
3331
|
+
return isDateNotInFuture;
|
|
3332
|
+
}
|
|
3371
3333
|
handleValid(formValue) {
|
|
3372
|
-
const
|
|
3334
|
+
const hasStatusType = !!formValue.statustypeUrl;
|
|
3335
|
+
const hasValidDatumStatusGezet = this.isValidDatumStatusGezet(formValue.datumStatusGezet);
|
|
3336
|
+
const dateIsNotInFuture = this.isDateNotInFuture(formValue.datumStatusGezet);
|
|
3337
|
+
const valid = hasStatusType && hasValidDatumStatusGezet && dateIsNotInFuture;
|
|
3373
3338
|
this.valid$.next(valid);
|
|
3374
3339
|
this.valid.emit(valid);
|
|
3375
3340
|
}
|
|
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:
|
|
3341
|
+
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 }); }
|
|
3342
|
+
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]=\"inputTypeOptions$ | 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
3343
|
}
|
|
3379
3344
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SetZaakStatusConfigurationComponent, decorators: [{
|
|
3380
3345
|
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$: [{
|
|
3346
|
+
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]=\"inputTypeOptions$ | 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"] }]
|
|
3347
|
+
}], ctorParameters: () => [{ type: ZakenApiService }, { type: PluginTranslatePipe }, { type: i2$2.CdsThemeService }], propDecorators: { save$: [{
|
|
3383
3348
|
type: Input
|
|
3384
3349
|
}], disabled$: [{
|
|
3385
3350
|
type: Input
|
|
@@ -3498,7 +3463,7 @@ class CreateZaakResultaatConfigurationComponent {
|
|
|
3498
3463
|
}));
|
|
3499
3464
|
}
|
|
3500
3465
|
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:
|
|
3466
|
+
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
3467
|
}
|
|
3503
3468
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakResultaatConfigurationComponent, decorators: [{
|
|
3504
3469
|
type: Component,
|
|
@@ -3591,11 +3556,11 @@ class CreateMedewerkerZaakRolComponent {
|
|
|
3591
3556
|
});
|
|
3592
3557
|
}
|
|
3593
3558
|
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 [
|
|
3559
|
+
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
3560
|
}
|
|
3596
3561
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateMedewerkerZaakRolComponent, decorators: [{
|
|
3597
3562
|
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 [
|
|
3563
|
+
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
3564
|
}], propDecorators: { save$: [{
|
|
3600
3565
|
type: Input
|
|
3601
3566
|
}], disabled$: [{
|
|
@@ -3659,11 +3624,11 @@ class CreateNatuurlijkPersoonZaakRolComponent {
|
|
|
3659
3624
|
});
|
|
3660
3625
|
}
|
|
3661
3626
|
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 [
|
|
3627
|
+
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
3628
|
}
|
|
3664
3629
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateNatuurlijkPersoonZaakRolComponent, decorators: [{
|
|
3665
3630
|
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 [
|
|
3631
|
+
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
3632
|
}], propDecorators: { save$: [{
|
|
3668
3633
|
type: Input
|
|
3669
3634
|
}], disabled$: [{
|
|
@@ -3711,7 +3676,11 @@ class CreateNietNatuurlijkPersoonZaakRolComponent {
|
|
|
3711
3676
|
this.handleValid(formValue);
|
|
3712
3677
|
}
|
|
3713
3678
|
handleValid(formValue) {
|
|
3714
|
-
const valid = !!(formValue.rolToelichting &&
|
|
3679
|
+
const valid = !!(formValue.rolToelichting &&
|
|
3680
|
+
formValue.roltypeUrl && (formValue.innNnpId ||
|
|
3681
|
+
formValue.annIdentificatie ||
|
|
3682
|
+
formValue.kvkNummer ||
|
|
3683
|
+
formValue.vestigingsNummer));
|
|
3715
3684
|
this._valid$.next(valid);
|
|
3716
3685
|
this.valid.emit(valid);
|
|
3717
3686
|
}
|
|
@@ -3727,11 +3696,11 @@ class CreateNietNatuurlijkPersoonZaakRolComponent {
|
|
|
3727
3696
|
});
|
|
3728
3697
|
}
|
|
3729
3698
|
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<
|
|
3699
|
+
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
3700
|
}
|
|
3732
3701
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateNietNatuurlijkPersoonZaakRolComponent, decorators: [{
|
|
3733
3702
|
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<
|
|
3703
|
+
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
3704
|
}], propDecorators: { save$: [{
|
|
3736
3705
|
type: Input
|
|
3737
3706
|
}], disabled$: [{
|
|
@@ -3800,11 +3769,11 @@ class CreateOrganisatorischeEenheidZaakRolComponent {
|
|
|
3800
3769
|
});
|
|
3801
3770
|
}
|
|
3802
3771
|
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 [
|
|
3772
|
+
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
3773
|
}
|
|
3805
3774
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateOrganisatorischeEenheidZaakRolComponent, decorators: [{
|
|
3806
3775
|
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 [
|
|
3776
|
+
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
3777
|
}], propDecorators: { save$: [{
|
|
3809
3778
|
type: Input
|
|
3810
3779
|
}], disabled$: [{
|
|
@@ -3872,11 +3841,79 @@ class CreateVestigingZaakRolComponent {
|
|
|
3872
3841
|
});
|
|
3873
3842
|
}
|
|
3874
3843
|
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 [
|
|
3844
|
+
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
3845
|
}
|
|
3877
3846
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateVestigingZaakRolComponent, decorators: [{
|
|
3878
3847
|
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 [
|
|
3848
|
+
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" }]
|
|
3849
|
+
}], propDecorators: { save$: [{
|
|
3850
|
+
type: Input
|
|
3851
|
+
}], disabled$: [{
|
|
3852
|
+
type: Input
|
|
3853
|
+
}], pluginId: [{
|
|
3854
|
+
type: Input
|
|
3855
|
+
}], prefillConfiguration$: [{
|
|
3856
|
+
type: Input
|
|
3857
|
+
}], valid: [{
|
|
3858
|
+
type: Output
|
|
3859
|
+
}], configuration: [{
|
|
3860
|
+
type: Output
|
|
3861
|
+
}] } });
|
|
3862
|
+
|
|
3863
|
+
/*
|
|
3864
|
+
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
3865
|
+
*
|
|
3866
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
3867
|
+
* you may not use this file except in compliance with the License.
|
|
3868
|
+
* You may obtain a copy of the License at
|
|
3869
|
+
*
|
|
3870
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
3871
|
+
*
|
|
3872
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
3873
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
3874
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
3875
|
+
* See the License for the specific language governing permissions and
|
|
3876
|
+
* limitations under the License.
|
|
3877
|
+
*/
|
|
3878
|
+
class DeleteZaakRolComponent {
|
|
3879
|
+
constructor() {
|
|
3880
|
+
this.valid = new EventEmitter();
|
|
3881
|
+
this.configuration = new EventEmitter();
|
|
3882
|
+
this._formValue$ = new BehaviorSubject(null);
|
|
3883
|
+
this._valid$ = new BehaviorSubject(false);
|
|
3884
|
+
}
|
|
3885
|
+
ngOnInit() {
|
|
3886
|
+
this.openSaveSubscription();
|
|
3887
|
+
}
|
|
3888
|
+
ngOnDestroy() {
|
|
3889
|
+
this._saveSubscription?.unsubscribe();
|
|
3890
|
+
}
|
|
3891
|
+
formValueChange(formValue) {
|
|
3892
|
+
this._formValue$.next(formValue);
|
|
3893
|
+
this.handleValid(formValue);
|
|
3894
|
+
}
|
|
3895
|
+
handleValid(formValue) {
|
|
3896
|
+
const valid = !!formValue.rolUuid;
|
|
3897
|
+
this._valid$.next(valid);
|
|
3898
|
+
this.valid.emit(valid);
|
|
3899
|
+
}
|
|
3900
|
+
openSaveSubscription() {
|
|
3901
|
+
this._saveSubscription = this.save$?.subscribe(save => {
|
|
3902
|
+
combineLatest([this._formValue$, this._valid$])
|
|
3903
|
+
.pipe(take(1))
|
|
3904
|
+
.subscribe(([formValue, valid]) => {
|
|
3905
|
+
if (valid) {
|
|
3906
|
+
this.configuration.emit(formValue);
|
|
3907
|
+
}
|
|
3908
|
+
});
|
|
3909
|
+
});
|
|
3910
|
+
}
|
|
3911
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DeleteZaakRolComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3912
|
+
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" }] }); }
|
|
3913
|
+
}
|
|
3914
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DeleteZaakRolComponent, decorators: [{
|
|
3915
|
+
type: Component,
|
|
3916
|
+
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" }]
|
|
3880
3917
|
}], propDecorators: { save$: [{
|
|
3881
3918
|
type: Input
|
|
3882
3919
|
}], disabled$: [{
|
|
@@ -3915,7 +3952,7 @@ const CreateZaakExtraPropertyOptions = [
|
|
|
3915
3952
|
'paymentIndication',
|
|
3916
3953
|
'caseGeometryType',
|
|
3917
3954
|
'caseGeometryCoordinates',
|
|
3918
|
-
'mainCase'
|
|
3955
|
+
'mainCase',
|
|
3919
3956
|
];
|
|
3920
3957
|
|
|
3921
3958
|
const GEOMETRY_TYPES = [
|
|
@@ -4098,13 +4135,13 @@ class CreateZaakConfigurationComponent {
|
|
|
4098
4135
|
});
|
|
4099
4136
|
});
|
|
4100
4137
|
}
|
|
4101
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakConfigurationComponent, deps: [{ token: i1$
|
|
4102
|
-
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" }] }); }
|
|
4138
|
+
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 }); }
|
|
4139
|
+
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" }] }); }
|
|
4103
4140
|
}
|
|
4104
4141
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakConfigurationComponent, decorators: [{
|
|
4105
4142
|
type: Component,
|
|
4106
4143
|
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"] }]
|
|
4107
|
-
}], ctorParameters: () => [{ type: i1$
|
|
4144
|
+
}], ctorParameters: () => [{ type: i1$4.OpenZaakService }, { type: i2$2.ModalService }, { type: PluginTranslatePipe }, { type: i1$3.IconService }], propDecorators: { context$: [{
|
|
4108
4145
|
type: Input
|
|
4109
4146
|
}], disabled$: [{
|
|
4110
4147
|
type: Input
|
|
@@ -4414,13 +4451,13 @@ class CreateZaakeigenschapComponent {
|
|
|
4414
4451
|
this.valid$.next(valid);
|
|
4415
4452
|
this.valid.emit(valid);
|
|
4416
4453
|
}
|
|
4417
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakeigenschapComponent, deps: [{ token: i1$
|
|
4418
|
-
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:
|
|
4454
|
+
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 }); }
|
|
4455
|
+
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" }] }); }
|
|
4419
4456
|
}
|
|
4420
4457
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakeigenschapComponent, decorators: [{
|
|
4421
4458
|
type: Component,
|
|
4422
4459
|
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" }]
|
|
4423
|
-
}], ctorParameters: () => [{ type: i1$
|
|
4460
|
+
}], ctorParameters: () => [{ type: i1$5.DocumentService }, { type: ZakenApiService }, { type: PluginTranslatePipe }], propDecorators: { save$: [{
|
|
4424
4461
|
type: Input
|
|
4425
4462
|
}], disabled$: [{
|
|
4426
4463
|
type: Input
|
|
@@ -4535,7 +4572,7 @@ class UpdateZaakeigenschapComponent {
|
|
|
4535
4572
|
this.valid.emit(valid);
|
|
4536
4573
|
}
|
|
4537
4574
|
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 }); }
|
|
4538
|
-
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:
|
|
4575
|
+
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" }] }); }
|
|
4539
4576
|
}
|
|
4540
4577
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UpdateZaakeigenschapComponent, decorators: [{
|
|
4541
4578
|
type: Component,
|
|
@@ -4654,7 +4691,7 @@ class DeleteZaakeigenschapComponent {
|
|
|
4654
4691
|
this.valid.emit(valid);
|
|
4655
4692
|
}
|
|
4656
4693
|
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 }); }
|
|
4657
|
-
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:
|
|
4694
|
+
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" }] }); }
|
|
4658
4695
|
}
|
|
4659
4696
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DeleteZaakeigenschapComponent, decorators: [{
|
|
4660
4697
|
type: Component,
|
|
@@ -4729,7 +4766,7 @@ class CreateZaakObjectConfigurationComponent {
|
|
|
4729
4766
|
{ id: 'woz_object', text: 'woz_object' },
|
|
4730
4767
|
{ id: 'woz_waarde', text: 'woz_waarde' },
|
|
4731
4768
|
{ id: 'zakelijk_recht', text: 'zakelijk_recht' },
|
|
4732
|
-
{ id: 'overige', text: 'overige' }
|
|
4769
|
+
{ id: 'overige', text: 'overige' },
|
|
4733
4770
|
];
|
|
4734
4771
|
this.formValue$ = new BehaviorSubject(null);
|
|
4735
4772
|
this.valid$ = new BehaviorSubject(false);
|
|
@@ -4746,15 +4783,16 @@ class CreateZaakObjectConfigurationComponent {
|
|
|
4746
4783
|
object: input.object,
|
|
4747
4784
|
objectType: input.objectType,
|
|
4748
4785
|
relatieomschrijving: input.relatieomschrijving,
|
|
4749
|
-
}
|
|
4786
|
+
},
|
|
4750
4787
|
};
|
|
4751
4788
|
if (input.objectType === 'zakelijk_recht') {
|
|
4752
4789
|
// Keep track of include flag for template condition
|
|
4753
|
-
formValue.includeZakelijkRechtObjectIdentificatie =
|
|
4790
|
+
formValue.includeZakelijkRechtObjectIdentificatie =
|
|
4791
|
+
!!input.includeZakelijkRechtObjectIdentificatie;
|
|
4754
4792
|
if (formValue.includeZakelijkRechtObjectIdentificatie) {
|
|
4755
4793
|
formValue.zaakObjectRequest.objectIdentificatie = {
|
|
4756
4794
|
identificatie: input.zakelijkRechtIdentificatie,
|
|
4757
|
-
avgAard: input.zakelijkRechtAvgAard
|
|
4795
|
+
avgAard: input.zakelijkRechtAvgAard,
|
|
4758
4796
|
};
|
|
4759
4797
|
}
|
|
4760
4798
|
}
|
|
@@ -4766,7 +4804,7 @@ class CreateZaakObjectConfigurationComponent {
|
|
|
4766
4804
|
formValue.zaakObjectRequest.objectTypeOverigeDefinitie = {
|
|
4767
4805
|
url: input.objectTypeOverigeDefinitieUrl,
|
|
4768
4806
|
schema: input.objectTypeOverigeDefinitieSchema,
|
|
4769
|
-
objectData: input.objectTypeOverigeDefinitieObjectData
|
|
4807
|
+
objectData: input.objectTypeOverigeDefinitieObjectData,
|
|
4770
4808
|
};
|
|
4771
4809
|
}
|
|
4772
4810
|
}
|
|
@@ -4806,11 +4844,11 @@ class CreateZaakObjectConfigurationComponent {
|
|
|
4806
4844
|
});
|
|
4807
4845
|
}
|
|
4808
4846
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakObjectConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4809
|
-
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
|
|
4847
|
+
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" }] }); }
|
|
4810
4848
|
}
|
|
4811
4849
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakObjectConfigurationComponent, decorators: [{
|
|
4812
4850
|
type: Component,
|
|
4813
|
-
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
|
|
4851
|
+
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" }]
|
|
4814
4852
|
}], ctorParameters: () => [], propDecorators: { save$: [{
|
|
4815
4853
|
type: Input
|
|
4816
4854
|
}], disabled$: [{
|
|
@@ -5047,13 +5085,13 @@ class PatchZaakConfigurationComponent {
|
|
|
5047
5085
|
});
|
|
5048
5086
|
});
|
|
5049
5087
|
}
|
|
5050
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PatchZaakConfigurationComponent, deps: [{ token:
|
|
5051
|
-
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:
|
|
5088
|
+
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 }); }
|
|
5089
|
+
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" }] }); }
|
|
5052
5090
|
}
|
|
5053
5091
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PatchZaakConfigurationComponent, decorators: [{
|
|
5054
5092
|
type: Component,
|
|
5055
5093
|
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"] }]
|
|
5056
|
-
}], ctorParameters: () => [{ type:
|
|
5094
|
+
}], ctorParameters: () => [{ type: i1$3.IconService }], propDecorators: { disabled$: [{
|
|
5057
5095
|
type: Input
|
|
5058
5096
|
}], pluginId: [{
|
|
5059
5097
|
type: Input
|
|
@@ -5067,6 +5105,150 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
|
|
|
5067
5105
|
type: Output
|
|
5068
5106
|
}] } });
|
|
5069
5107
|
|
|
5108
|
+
/*
|
|
5109
|
+
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
5110
|
+
*
|
|
5111
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
5112
|
+
* you may not use this file except in compliance with the License.
|
|
5113
|
+
* You may obtain a copy of the License at
|
|
5114
|
+
*
|
|
5115
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
5116
|
+
*
|
|
5117
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
5118
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
5119
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5120
|
+
* See the License for the specific language governing permissions and
|
|
5121
|
+
* limitations under the License.
|
|
5122
|
+
*/
|
|
5123
|
+
class GetZaakInformatieobjectenComponent {
|
|
5124
|
+
constructor(pluginManagementService, translateService, pluginTranslationService) {
|
|
5125
|
+
this.pluginManagementService = pluginManagementService;
|
|
5126
|
+
this.translateService = translateService;
|
|
5127
|
+
this.pluginTranslationService = pluginTranslationService;
|
|
5128
|
+
this.valid = new EventEmitter();
|
|
5129
|
+
this.configuration = new EventEmitter();
|
|
5130
|
+
this.formValue$ = new BehaviorSubject(null);
|
|
5131
|
+
this.valid$ = new BehaviorSubject(false);
|
|
5132
|
+
this.authenticationPluginSelectItems$ = combineLatest([
|
|
5133
|
+
this.pluginManagementService.getPluginConfigurationsByCategory('get-zaak-informatieobjecten'),
|
|
5134
|
+
this.translateService.stream('key'),
|
|
5135
|
+
]).pipe(map$1(([configurations]) => configurations.map(configuration => ({
|
|
5136
|
+
id: configuration.id,
|
|
5137
|
+
text: `${configuration.title} - ${this.pluginTranslationService.instant('title', configuration.pluginDefinition.key)}`,
|
|
5138
|
+
}))));
|
|
5139
|
+
}
|
|
5140
|
+
ngOnInit() {
|
|
5141
|
+
this.openSaveSubscription();
|
|
5142
|
+
}
|
|
5143
|
+
ngOnDestroy() {
|
|
5144
|
+
this.saveSubscription?.unsubscribe();
|
|
5145
|
+
}
|
|
5146
|
+
formValueChange(formValue) {
|
|
5147
|
+
this.formValue$.next(formValue);
|
|
5148
|
+
this.handleValid(formValue);
|
|
5149
|
+
}
|
|
5150
|
+
handleValid(formValue) {
|
|
5151
|
+
const valid = !!formValue.resultProcessVariable;
|
|
5152
|
+
this.valid$.next(valid);
|
|
5153
|
+
this.valid.emit(valid);
|
|
5154
|
+
}
|
|
5155
|
+
openSaveSubscription() {
|
|
5156
|
+
this.saveSubscription = this.save$
|
|
5157
|
+
.pipe(withLatestFrom(this.formValue$, this.valid$), map$1(([_, formValue, valid]) => valid ? formValue : null), tap$1(formValue => {
|
|
5158
|
+
if (formValue)
|
|
5159
|
+
this.configuration.emit(formValue);
|
|
5160
|
+
}))
|
|
5161
|
+
.subscribe();
|
|
5162
|
+
}
|
|
5163
|
+
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 }); }
|
|
5164
|
+
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" }] }); }
|
|
5165
|
+
}
|
|
5166
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetZaakInformatieobjectenComponent, decorators: [{
|
|
5167
|
+
type: Component,
|
|
5168
|
+
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" }]
|
|
5169
|
+
}], ctorParameters: () => [{ type: PluginManagementService }, { type: i2.TranslateService }, { type: PluginTranslationService }], propDecorators: { save$: [{
|
|
5170
|
+
type: Input
|
|
5171
|
+
}], disabled$: [{
|
|
5172
|
+
type: Input
|
|
5173
|
+
}], pluginId: [{
|
|
5174
|
+
type: Input
|
|
5175
|
+
}], prefillConfiguration$: [{
|
|
5176
|
+
type: Input
|
|
5177
|
+
}], valid: [{
|
|
5178
|
+
type: Output
|
|
5179
|
+
}], configuration: [{
|
|
5180
|
+
type: Output
|
|
5181
|
+
}] } });
|
|
5182
|
+
|
|
5183
|
+
/*
|
|
5184
|
+
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
5185
|
+
*
|
|
5186
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
5187
|
+
* you may not use this file except in compliance with the License.
|
|
5188
|
+
* You may obtain a copy of the License at
|
|
5189
|
+
*
|
|
5190
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
5191
|
+
*
|
|
5192
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
5193
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
5194
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5195
|
+
* See the License for the specific language governing permissions and
|
|
5196
|
+
* limitations under the License.
|
|
5197
|
+
*/
|
|
5198
|
+
class GetZaakbesluitenConfigurationComponent {
|
|
5199
|
+
constructor() {
|
|
5200
|
+
this.valid = new EventEmitter();
|
|
5201
|
+
this.configuration = new EventEmitter();
|
|
5202
|
+
this.formValue$ = new BehaviorSubject(null);
|
|
5203
|
+
this.valid$ = new BehaviorSubject(false);
|
|
5204
|
+
}
|
|
5205
|
+
ngOnInit() {
|
|
5206
|
+
this.openSaveSubscription();
|
|
5207
|
+
this.valid.emit(true);
|
|
5208
|
+
}
|
|
5209
|
+
ngOnDestroy() {
|
|
5210
|
+
this.saveSubscription?.unsubscribe();
|
|
5211
|
+
}
|
|
5212
|
+
openSaveSubscription() {
|
|
5213
|
+
this.saveSubscription = this.save$?.subscribe(save => {
|
|
5214
|
+
combineLatest([this.formValue$, this.valid$])
|
|
5215
|
+
.pipe(take(1))
|
|
5216
|
+
.subscribe(([formValue, valid]) => {
|
|
5217
|
+
if (valid) {
|
|
5218
|
+
this.configuration.emit(formValue);
|
|
5219
|
+
}
|
|
5220
|
+
});
|
|
5221
|
+
});
|
|
5222
|
+
}
|
|
5223
|
+
formValueChange(formValue) {
|
|
5224
|
+
this.formValue$.next(formValue);
|
|
5225
|
+
this.handleValid(formValue);
|
|
5226
|
+
}
|
|
5227
|
+
handleValid(formValue) {
|
|
5228
|
+
const valid = !!formValue.resultProcessVariable;
|
|
5229
|
+
this.valid$.next(valid);
|
|
5230
|
+
this.valid.emit(valid);
|
|
5231
|
+
}
|
|
5232
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetZaakbesluitenConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5233
|
+
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" }] }); }
|
|
5234
|
+
}
|
|
5235
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetZaakbesluitenConfigurationComponent, decorators: [{
|
|
5236
|
+
type: Component,
|
|
5237
|
+
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" }]
|
|
5238
|
+
}], propDecorators: { save$: [{
|
|
5239
|
+
type: Input
|
|
5240
|
+
}], disabled$: [{
|
|
5241
|
+
type: Input
|
|
5242
|
+
}], pluginId: [{
|
|
5243
|
+
type: Input
|
|
5244
|
+
}], prefillConfiguration$: [{
|
|
5245
|
+
type: Input
|
|
5246
|
+
}], valid: [{
|
|
5247
|
+
type: Output
|
|
5248
|
+
}], configuration: [{
|
|
5249
|
+
type: Output
|
|
5250
|
+
}] } });
|
|
5251
|
+
|
|
5070
5252
|
/*
|
|
5071
5253
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
5072
5254
|
*
|
|
@@ -5087,8 +5269,10 @@ class ZakenApiPluginModule {
|
|
|
5087
5269
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: ZakenApiPluginModule, declarations: [ZakenApiConfigurationComponent,
|
|
5088
5270
|
LinkDocumentToZaakConfigurationComponent,
|
|
5089
5271
|
LinkUploadedDocumentToZaakConfigurationComponent,
|
|
5272
|
+
GetZaakInformatieobjectenComponent,
|
|
5090
5273
|
SetZaakStatusConfigurationComponent,
|
|
5091
5274
|
CreateZaakResultaatConfigurationComponent,
|
|
5275
|
+
DeleteZaakRolComponent,
|
|
5092
5276
|
CreateMedewerkerZaakRolComponent,
|
|
5093
5277
|
CreateNatuurlijkPersoonZaakRolComponent,
|
|
5094
5278
|
CreateNietNatuurlijkPersoonZaakRolComponent,
|
|
@@ -5103,7 +5287,8 @@ class ZakenApiPluginModule {
|
|
|
5103
5287
|
DeleteZaakeigenschapComponent,
|
|
5104
5288
|
CreateZaakObjectConfigurationComponent,
|
|
5105
5289
|
RelateerZakenComponent,
|
|
5106
|
-
PatchZaakConfigurationComponent
|
|
5290
|
+
PatchZaakConfigurationComponent,
|
|
5291
|
+
GetZaakbesluitenConfigurationComponent], imports: [CommonModule,
|
|
5107
5292
|
PluginTranslatePipeModule,
|
|
5108
5293
|
FormModule,
|
|
5109
5294
|
InputModule,
|
|
@@ -5117,12 +5302,19 @@ class ZakenApiPluginModule {
|
|
|
5117
5302
|
DialogModule,
|
|
5118
5303
|
IconModule,
|
|
5119
5304
|
TranslateModule,
|
|
5120
|
-
DatePickerInputModule
|
|
5305
|
+
DatePickerInputModule,
|
|
5306
|
+
DatePickerModule,
|
|
5307
|
+
FormsModule,
|
|
5308
|
+
NotificationModule,
|
|
5309
|
+
ReactiveFormsModule,
|
|
5310
|
+
TimePickerModule], exports: [ZakenApiConfigurationComponent,
|
|
5121
5311
|
LinkDocumentToZaakConfigurationComponent,
|
|
5122
5312
|
LinkUploadedDocumentToZaakConfigurationComponent,
|
|
5313
|
+
GetZaakInformatieobjectenComponent,
|
|
5123
5314
|
SetZaakStatusConfigurationComponent,
|
|
5124
5315
|
CreateZaakResultaatConfigurationComponent,
|
|
5125
5316
|
CreateZaakConfigurationComponent,
|
|
5317
|
+
DeleteZaakRolComponent,
|
|
5126
5318
|
CreateMedewerkerZaakRolComponent,
|
|
5127
5319
|
CreateNatuurlijkPersoonZaakRolComponent,
|
|
5128
5320
|
CreateNietNatuurlijkPersoonZaakRolComponent,
|
|
@@ -5135,7 +5327,8 @@ class ZakenApiPluginModule {
|
|
|
5135
5327
|
UpdateZaakeigenschapComponent,
|
|
5136
5328
|
DeleteZaakeigenschapComponent,
|
|
5137
5329
|
CreateZaakObjectConfigurationComponent,
|
|
5138
|
-
RelateerZakenComponent
|
|
5330
|
+
RelateerZakenComponent,
|
|
5331
|
+
GetZaakbesluitenConfigurationComponent] }); }
|
|
5139
5332
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ZakenApiPluginModule, imports: [CommonModule,
|
|
5140
5333
|
PluginTranslatePipeModule,
|
|
5141
5334
|
FormModule,
|
|
@@ -5150,7 +5343,12 @@ class ZakenApiPluginModule {
|
|
|
5150
5343
|
DialogModule,
|
|
5151
5344
|
IconModule,
|
|
5152
5345
|
TranslateModule,
|
|
5153
|
-
DatePickerInputModule
|
|
5346
|
+
DatePickerInputModule,
|
|
5347
|
+
DatePickerModule,
|
|
5348
|
+
FormsModule,
|
|
5349
|
+
NotificationModule,
|
|
5350
|
+
ReactiveFormsModule,
|
|
5351
|
+
TimePickerModule] }); }
|
|
5154
5352
|
}
|
|
5155
5353
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ZakenApiPluginModule, decorators: [{
|
|
5156
5354
|
type: NgModule,
|
|
@@ -5159,8 +5357,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
|
|
|
5159
5357
|
ZakenApiConfigurationComponent,
|
|
5160
5358
|
LinkDocumentToZaakConfigurationComponent,
|
|
5161
5359
|
LinkUploadedDocumentToZaakConfigurationComponent,
|
|
5360
|
+
GetZaakInformatieobjectenComponent,
|
|
5162
5361
|
SetZaakStatusConfigurationComponent,
|
|
5163
5362
|
CreateZaakResultaatConfigurationComponent,
|
|
5363
|
+
DeleteZaakRolComponent,
|
|
5164
5364
|
CreateMedewerkerZaakRolComponent,
|
|
5165
5365
|
CreateNatuurlijkPersoonZaakRolComponent,
|
|
5166
5366
|
CreateNietNatuurlijkPersoonZaakRolComponent,
|
|
@@ -5176,6 +5376,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
|
|
|
5176
5376
|
CreateZaakObjectConfigurationComponent,
|
|
5177
5377
|
RelateerZakenComponent,
|
|
5178
5378
|
PatchZaakConfigurationComponent,
|
|
5379
|
+
GetZaakbesluitenConfigurationComponent,
|
|
5179
5380
|
],
|
|
5180
5381
|
imports: [
|
|
5181
5382
|
CommonModule,
|
|
@@ -5193,14 +5394,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
|
|
|
5193
5394
|
IconModule,
|
|
5194
5395
|
TranslateModule,
|
|
5195
5396
|
DatePickerInputModule,
|
|
5397
|
+
DatePickerModule,
|
|
5398
|
+
FormsModule,
|
|
5399
|
+
NotificationModule,
|
|
5400
|
+
ReactiveFormsModule,
|
|
5401
|
+
TimePickerModule,
|
|
5196
5402
|
],
|
|
5197
5403
|
exports: [
|
|
5198
5404
|
ZakenApiConfigurationComponent,
|
|
5199
5405
|
LinkDocumentToZaakConfigurationComponent,
|
|
5200
5406
|
LinkUploadedDocumentToZaakConfigurationComponent,
|
|
5407
|
+
GetZaakInformatieobjectenComponent,
|
|
5201
5408
|
SetZaakStatusConfigurationComponent,
|
|
5202
5409
|
CreateZaakResultaatConfigurationComponent,
|
|
5203
5410
|
CreateZaakConfigurationComponent,
|
|
5411
|
+
DeleteZaakRolComponent,
|
|
5204
5412
|
CreateMedewerkerZaakRolComponent,
|
|
5205
5413
|
CreateNatuurlijkPersoonZaakRolComponent,
|
|
5206
5414
|
CreateNietNatuurlijkPersoonZaakRolComponent,
|
|
@@ -5214,6 +5422,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
|
|
|
5214
5422
|
DeleteZaakeigenschapComponent,
|
|
5215
5423
|
CreateZaakObjectConfigurationComponent,
|
|
5216
5424
|
RelateerZakenComponent,
|
|
5425
|
+
GetZaakbesluitenConfigurationComponent,
|
|
5217
5426
|
],
|
|
5218
5427
|
}]
|
|
5219
5428
|
}] });
|
|
@@ -5273,8 +5482,10 @@ const zakenApiPluginSpecification = {
|
|
|
5273
5482
|
functionConfigurationComponents: {
|
|
5274
5483
|
'link-document-to-zaak': LinkDocumentToZaakConfigurationComponent,
|
|
5275
5484
|
'link-uploaded-document-to-zaak': LinkUploadedDocumentToZaakConfigurationComponent,
|
|
5485
|
+
'get-zaak-informatieobjecten': GetZaakInformatieobjectenComponent,
|
|
5276
5486
|
'set-zaakstatus': SetZaakStatusConfigurationComponent,
|
|
5277
5487
|
'create-zaakresultaat': CreateZaakResultaatConfigurationComponent,
|
|
5488
|
+
'delete-zaak-rol': DeleteZaakRolComponent,
|
|
5278
5489
|
'create-zaak': CreateZaakConfigurationComponent,
|
|
5279
5490
|
'create-natuurlijk-persoon-zaak-rol': CreateNatuurlijkPersoonZaakRolComponent,
|
|
5280
5491
|
'create-niet-natuurlijk-persoon-zaak-rol': CreateNietNatuurlijkPersoonZaakRolComponent,
|
|
@@ -5290,6 +5501,7 @@ const zakenApiPluginSpecification = {
|
|
|
5290
5501
|
'create-zaak-object': CreateZaakObjectConfigurationComponent,
|
|
5291
5502
|
'relateer-zaken': RelateerZakenComponent,
|
|
5292
5503
|
'patch-zaak': PatchZaakConfigurationComponent,
|
|
5504
|
+
'get-zaakbesluiten': GetZaakbesluitenConfigurationComponent,
|
|
5293
5505
|
},
|
|
5294
5506
|
pluginTranslations: {
|
|
5295
5507
|
nl: {
|
|
@@ -5331,6 +5543,7 @@ const zakenApiPluginSpecification = {
|
|
|
5331
5543
|
'create-medewerker-zaak-rol': 'Zaakrol aanmaken - Medewerker',
|
|
5332
5544
|
'create-organisatorische-eenheid-zaak-rol': 'Zaakrol aanmaken - Organisatorische eenheid',
|
|
5333
5545
|
'create-vestiging-zaak-rol': 'Zaakrol aanmaken - Vestiging',
|
|
5546
|
+
'delete-zaak-rol': 'Verwijderen Zaakrol',
|
|
5334
5547
|
'set-zaakopschorting': 'Schort een zaak op',
|
|
5335
5548
|
'start-hersteltermijn': 'Start hersteltermijn',
|
|
5336
5549
|
startRecoveryPeriodInformation: 'Deze actie start een hersteltermijn voor de zaak die aan dit proces is gekoppeld.',
|
|
@@ -5366,6 +5579,9 @@ const zakenApiPluginSpecification = {
|
|
|
5366
5579
|
'set-zaakstatus': 'Zaakstatus aanmaken',
|
|
5367
5580
|
statustypeUrl: 'Zaakstatus type URL',
|
|
5368
5581
|
statustypeUrlTooltip: 'URL-referentie naar het statustype.',
|
|
5582
|
+
datumStatusGezet: 'Datum status gezet.',
|
|
5583
|
+
datumStatusGezetTooltip: 'Datum/tijd waarde van het zaakstatus.',
|
|
5584
|
+
datumStatusGezetInvalidText: 'Datum en tijd mogen niet in de toekomst liggen.',
|
|
5369
5585
|
statustoelichting: 'Zaakstatus toelichting',
|
|
5370
5586
|
statustoelichtingTooltip: 'Een, voor de initiator van de zaak relevante, toelichting op de status van een zaak.',
|
|
5371
5587
|
'create-zaakresultaat': 'Zaakresultaat aanmaken',
|
|
@@ -5381,6 +5597,7 @@ const zakenApiPluginSpecification = {
|
|
|
5381
5597
|
resultaattypeUrlSelect: 'Zaakresultaat',
|
|
5382
5598
|
resultaattypeUrlSelectTooltip: 'Selecteer het resultaattype.',
|
|
5383
5599
|
inputTypeZaakStatusToggle: 'Invoertype Zaakstatus-URL',
|
|
5600
|
+
inputDatumStatusGezetToggle: 'Invoertype datum status gezet',
|
|
5384
5601
|
inputTypeZaakResultaatToggle: 'Invoertype Zaakresultaat-URL',
|
|
5385
5602
|
addZaakProperty: 'Voeg nieuwe parameter toe',
|
|
5386
5603
|
'relateer-zaken': 'Relateer zaken',
|
|
@@ -5415,6 +5632,7 @@ const zakenApiPluginSpecification = {
|
|
|
5415
5632
|
kvkNummerTooltip: 'Een uniek nummer toegekend door de Kamer van Koophandel. (Max. 8 tekens)',
|
|
5416
5633
|
vestigingsNummer: 'Vestigingsnummer',
|
|
5417
5634
|
vestigingsNummerTooltip: 'Een korte unieke aanduiding van de Vestiging. (Max. 24 tekens)',
|
|
5635
|
+
'get-zaakbesluiten': 'Ophalen zaakbesluiten',
|
|
5418
5636
|
'patch-zaak': 'Zaak bijwerken',
|
|
5419
5637
|
patchZaakInformation: 'Deze actie maakt het mogelijk eigenschappen van de Zaak in de Zaken API gekoppeld aan het dossier bij te werken.',
|
|
5420
5638
|
addPatchZaakProperty: 'Voeg parameter toe',
|
|
@@ -5455,6 +5673,12 @@ const zakenApiPluginSpecification = {
|
|
|
5455
5673
|
objectTypeOverigeDefinitieObjectData: 'Object data',
|
|
5456
5674
|
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.',
|
|
5457
5675
|
objectIdentificatie: 'Object identificatie',
|
|
5676
|
+
'get-zaak-informatieobjecten': 'Zaakinformatieobjecten ophalen',
|
|
5677
|
+
resultProcessVariable: 'Resultaat process variable',
|
|
5678
|
+
resultProcessVariableTooltip: 'De naam van de procesvariabele waarin het resultaat wordt opgeslagen.',
|
|
5679
|
+
rolUuid: 'Rol UUID',
|
|
5680
|
+
rolUuidTooltip: 'De UUID van de rol',
|
|
5681
|
+
createZaakrolNietNatuurlijkPersoonIdentifierFieldsInformation: 'Minimaal éé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',
|
|
5458
5682
|
},
|
|
5459
5683
|
en: {
|
|
5460
5684
|
title: 'Zaken API',
|
|
@@ -5495,6 +5719,7 @@ const zakenApiPluginSpecification = {
|
|
|
5495
5719
|
'create-medewerker-zaak-rol': 'Create Zaakrol - Employee',
|
|
5496
5720
|
'create-organisatorische-eenheid-zaak-rol': 'Create Zaakrol - Organizational unit',
|
|
5497
5721
|
'create-vestiging-zaak-rol': 'Create Zaakrol - Branch',
|
|
5722
|
+
'delete-zaak-rol': 'Removing Zaakrol',
|
|
5498
5723
|
'set-zaakopschorting': 'Suspend case',
|
|
5499
5724
|
'start-hersteltermijn': 'Start recovery period',
|
|
5500
5725
|
startHersteltermijnInformation: 'This action initiates a recovery period for the case associated with this process.',
|
|
@@ -5530,6 +5755,9 @@ const zakenApiPluginSpecification = {
|
|
|
5530
5755
|
'set-zaakstatus': 'Create zaakstatus',
|
|
5531
5756
|
statustypeUrl: 'Zaakstatus type URL',
|
|
5532
5757
|
statustypeUrlTooltip: 'URL reference to the status type.',
|
|
5758
|
+
datumStatusGezet: 'Date status set.',
|
|
5759
|
+
datumStatusGezetTooltip: 'Date/time value of the zaakstatus.',
|
|
5760
|
+
datumStatusGezetInvalidText: 'Date and time may not be in the future.',
|
|
5533
5761
|
statustoelichting: 'Zaakstatus explanation',
|
|
5534
5762
|
statustoelichtingTooltip: 'An explanation of the status of a zaak that is relevant to the initiator of the zaak.',
|
|
5535
5763
|
'create-zaakresultaat': 'Create Zaakresultaat',
|
|
@@ -5545,6 +5773,7 @@ const zakenApiPluginSpecification = {
|
|
|
5545
5773
|
resultaattypeUrlSelect: 'Zaakresultaat',
|
|
5546
5774
|
resultaattypeUrlSelectTooltip: 'Select the resultaat type.',
|
|
5547
5775
|
inputTypeZaakStatusToggle: 'Input type Zaakstatus-URL',
|
|
5776
|
+
inputDatumStatusGezetToggle: 'Input type datum status gezet',
|
|
5548
5777
|
inputTypeZaakResultaatToggle: 'Input type Zaakresultaat-URL',
|
|
5549
5778
|
addZaakProperty: 'Add new case property',
|
|
5550
5779
|
'relateer-zaken': 'Add relation between two Zaken',
|
|
@@ -5579,6 +5808,7 @@ const zakenApiPluginSpecification = {
|
|
|
5579
5808
|
kvkNummerTooltip: 'A unique number assigned by the Chamber of Commerce. (Max. 8 characters)',
|
|
5580
5809
|
vestigingsNummer: 'Branch number',
|
|
5581
5810
|
vestigingsNummerTooltip: 'A short unique designation of the branch. (Max. 24 characters)',
|
|
5811
|
+
'get-zaakbesluiten': 'Retrieve zaakbesluiten',
|
|
5582
5812
|
'patch-zaak': 'Update zaak',
|
|
5583
5813
|
patchZaakInformation: 'This action allows you to update properties of a Zaak in the Zaken API which is linked to the case.',
|
|
5584
5814
|
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',
|
|
@@ -5619,6 +5849,11 @@ const zakenApiPluginSpecification = {
|
|
|
5619
5849
|
objectTypeOverigeDefinitieObjectData: 'Object data',
|
|
5620
5850
|
objectTypeOverigeDefinitieObjectDataTooltip: 'A valid jq expression. This is combined with the JSON data from the OBJECT url to read the object data and validate the data structure against the schema. Example: .record.data.',
|
|
5621
5851
|
objectIdentificatie: 'Object identification',
|
|
5852
|
+
resultProcessVariable: 'Result process variable',
|
|
5853
|
+
rolUuid: 'Rol UUID',
|
|
5854
|
+
rolUuidTooltip: 'The UUID of the rol',
|
|
5855
|
+
'get-zaak-informatieobjecten': 'Get zaak informatieobjecten',
|
|
5856
|
+
resultProcessVariableTooltip: 'The name of the process variable in which the result is stored.'
|
|
5622
5857
|
},
|
|
5623
5858
|
de: {
|
|
5624
5859
|
title: 'Zaken API',
|
|
@@ -5694,6 +5929,9 @@ const zakenApiPluginSpecification = {
|
|
|
5694
5929
|
'set-zaakstatus': 'Fallstatus erstellen',
|
|
5695
5930
|
statustypeUrl: 'URL des Zaakstatustyps',
|
|
5696
5931
|
statustypeUrlTooltip: 'URL-Referenz zum Statustyp.',
|
|
5932
|
+
datumStatusGezet: 'Datumsstatus festgelegt.',
|
|
5933
|
+
datumStatusGezetTooltip: 'Datums-/Uhrzeitwert des zaakstatus.',
|
|
5934
|
+
datumStatusGezetInvalidText: 'Datum und Uhrzeit dürfen nicht in der Zukunft liegen.',
|
|
5697
5935
|
statustoelichting: 'Erklärung des Zaakstatus',
|
|
5698
5936
|
statustoelichtingTooltip: 'Eine Erklärung des Status eines zaak, die für den Initiator des Zaak relevant ist.',
|
|
5699
5937
|
'create-zaakresultaat': 'Zaakgebnis erstellen',
|
|
@@ -5709,6 +5947,7 @@ const zakenApiPluginSpecification = {
|
|
|
5709
5947
|
resultaattypeUrlSelect: 'Zaakresultaat',
|
|
5710
5948
|
resultaattypeUrlSelectTooltip: 'Wählen Sie den Resultaattype aus.',
|
|
5711
5949
|
inputTypeZaakStatusToggle: 'Eingabetyp Zaakstatus-URL',
|
|
5950
|
+
inputDatumStatusGezetToggle: 'Eingabetyp datum status gezet',
|
|
5712
5951
|
inputTypeZaakResultaatToggle: 'Eingabetyp Zaakresultaat-URL',
|
|
5713
5952
|
addZaakProperty: 'Neue Case-Eigenschaft hinzufügen',
|
|
5714
5953
|
'relateer-zaken': 'Beziehung zwischen Zaken herstellen',
|
|
@@ -5743,6 +5982,7 @@ const zakenApiPluginSpecification = {
|
|
|
5743
5982
|
kvkNummerTooltip: 'Eine eindeutige Nummer, die von der Handelskammer vergeben wird. (Max. 8 Zeichen)',
|
|
5744
5983
|
vestigingsNummer: 'Niederlassungsnummer',
|
|
5745
5984
|
vestigingsNummerTooltip: 'Eine kurze eindeutige Bezeichnung der Niederlassung. (Max. 24 Zeichen)',
|
|
5985
|
+
'get-zaakbesluiten': 'Zaakbesluiten abrufen',
|
|
5746
5986
|
'patch-zaak': 'Zaak aktualisieren',
|
|
5747
5987
|
patchZaakInformation: 'Mit dieser Aktion können Sie die Eigenschaften des Falls in der mit der Datei verknüpften Zaken-API aktualisieren.',
|
|
5748
5988
|
addPatchZaakProperty: 'Parameter hinzufügen',
|
|
@@ -5783,6 +6023,12 @@ const zakenApiPluginSpecification = {
|
|
|
5783
6023
|
objectTypeOverigeDefinitieObjectData: 'Objektdaten',
|
|
5784
6024
|
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.',
|
|
5785
6025
|
objectIdentificatie: 'Objektidentifikation',
|
|
6026
|
+
'get-zaak-informatieobjecten': 'Informatieobjecten zum Fall abrufen',
|
|
6027
|
+
resultProcessVariable: 'Ergebnis Prozessvariable',
|
|
6028
|
+
resultProcessVariableTooltip: 'Der Name der Prozessvariable, in der das Ergebnis gespeichert wird.',
|
|
6029
|
+
rolUuid: 'Rolle UUID',
|
|
6030
|
+
rolUuidTooltip: 'Die UUID der Rolle',
|
|
6031
|
+
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',
|
|
5786
6032
|
},
|
|
5787
6033
|
},
|
|
5788
6034
|
};
|
|
@@ -6063,19 +6309,6 @@ const objectenApiPluginSpecification = {
|
|
|
6063
6309
|
objectUrl: 'Object URL',
|
|
6064
6310
|
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'.",
|
|
6065
6311
|
},
|
|
6066
|
-
de: {
|
|
6067
|
-
title: 'Objecten API',
|
|
6068
|
-
url: 'Objecten API URL',
|
|
6069
|
-
urlTooltip: 'Die URL zur REST API von Objecten',
|
|
6070
|
-
description: 'Mit den Spezifikationen der Other Objects Registration API (Objecten) können Kommunen Objecten eindeutig registrieren, speichern und darauf zugreifen.',
|
|
6071
|
-
configurationTitle: 'Konfigurationsname',
|
|
6072
|
-
configurationTitleTooltip: 'An diesem Namen wird das Plugin im Rest der Anwendung erkennbar sein',
|
|
6073
|
-
authenticationPluginConfiguration: 'Authentifizierungs-Plugin-Konfiguration',
|
|
6074
|
-
'delete-object': 'Objekt löschen',
|
|
6075
|
-
deleteObjectWarning: 'Achtung: Die Objekte, die mit dieser Aktion gelöscht werden, dürfen nicht mit einem Zaak verknüpft werden.',
|
|
6076
|
-
objectUrl: 'Objekt URL',
|
|
6077
|
-
objectUrlTooltip: "Die URL des Objekts, das aus der Objecten API entfernt werden soll. Der eingegebene Wert kann eine Prozessvariable sein, zum Beispiel: 'pv:object'.",
|
|
6078
|
-
},
|
|
6079
6312
|
},
|
|
6080
6313
|
};
|
|
6081
6314
|
|
|
@@ -6192,7 +6425,7 @@ class GetStatustypenConfigurationComponent {
|
|
|
6192
6425
|
this.handleValid(formValue);
|
|
6193
6426
|
}
|
|
6194
6427
|
handleValid(formValue) {
|
|
6195
|
-
const valid = !!
|
|
6428
|
+
const valid = !!formValue.processVariable;
|
|
6196
6429
|
this._valid$.next(valid);
|
|
6197
6430
|
this.valid.emit(valid);
|
|
6198
6431
|
}
|
|
@@ -6208,11 +6441,11 @@ class GetStatustypenConfigurationComponent {
|
|
|
6208
6441
|
});
|
|
6209
6442
|
}
|
|
6210
6443
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetStatustypenConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6211
|
-
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
|
|
6444
|
+
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" }] }); }
|
|
6212
6445
|
}
|
|
6213
6446
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetStatustypenConfigurationComponent, decorators: [{
|
|
6214
6447
|
type: Component,
|
|
6215
|
-
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
|
|
6448
|
+
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" }]
|
|
6216
6449
|
}], propDecorators: { disabled$: [{
|
|
6217
6450
|
type: Input
|
|
6218
6451
|
}], pluginId: [{
|
|
@@ -6396,7 +6629,7 @@ class GetResultaattypenConfigurationComponent {
|
|
|
6396
6629
|
this.handleValid(formValue);
|
|
6397
6630
|
}
|
|
6398
6631
|
handleValid(formValue) {
|
|
6399
|
-
const valid = !!
|
|
6632
|
+
const valid = !!formValue.processVariable;
|
|
6400
6633
|
this._valid$.next(valid);
|
|
6401
6634
|
this.valid.emit(valid);
|
|
6402
6635
|
}
|
|
@@ -6412,11 +6645,11 @@ class GetResultaattypenConfigurationComponent {
|
|
|
6412
6645
|
});
|
|
6413
6646
|
}
|
|
6414
6647
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetResultaattypenConfigurationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6415
|
-
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
|
|
6648
|
+
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" }] }); }
|
|
6416
6649
|
}
|
|
6417
6650
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GetResultaattypenConfigurationComponent, decorators: [{
|
|
6418
6651
|
type: Component,
|
|
6419
|
-
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
|
|
6652
|
+
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" }]
|
|
6420
6653
|
}], propDecorators: { disabled$: [{
|
|
6421
6654
|
type: Input
|
|
6422
6655
|
}], pluginId: [{
|
|
@@ -6774,42 +7007,6 @@ const catalogiApiPluginSpecification = {
|
|
|
6774
7007
|
zaakTypeUrl: 'Zaaktype URL',
|
|
6775
7008
|
zaakTypeUrlTooltip: 'Specify the URL of the relevant Zaaktype here if it differs from the Zaak linked to the Case',
|
|
6776
7009
|
},
|
|
6777
|
-
de: {
|
|
6778
|
-
title: 'Catalogi API',
|
|
6779
|
-
url: 'Catalogi API URL',
|
|
6780
|
-
urlTooltip: 'Die URL zur REST API von Catalogi',
|
|
6781
|
-
description: 'API zum Speichern und Abrufen von Zaaktype katalogen, Zaaktypen und untergeordneten Typen.',
|
|
6782
|
-
configurationTitle: 'Konfigurationsname',
|
|
6783
|
-
configurationTitleTooltip: 'Der Name der aktuellen Plugin-Konfiguration. Unter diesem Namen ist die Konfiguration im Rest der Anwendung zu finden.',
|
|
6784
|
-
authenticationPluginConfiguration: 'Authentifizierungs-Plugin-Konfiguration',
|
|
6785
|
-
'get-statustypen': 'Statustypen anfordern',
|
|
6786
|
-
getStatustypenInformation: 'Der Statustypen wird abgerufen und dann in einer Prozessvariablen gespeichert.',
|
|
6787
|
-
'get-statustype': 'Statustype anfordern',
|
|
6788
|
-
getStatustypeInformation: 'Die zum Zaaktype gehörenden Statustypen werden abgerufen und anschließend in einer Prozessvariablen gespeichert.',
|
|
6789
|
-
statustype: 'Statustype',
|
|
6790
|
-
statustypeTooltip: 'Generische Angabe der Art eines Status.',
|
|
6791
|
-
processVariable: 'Prozessvariablenname',
|
|
6792
|
-
processVariableTooltip: 'Sobald der Statustype abgerufen wurde, wird er in einer Prozessvariablen mit diesem Namen gespeichert.',
|
|
6793
|
-
'get-besluittype': 'Besluittype anfordern',
|
|
6794
|
-
getBesluittypeInformation: 'Der besluittype wird abgerufen und dann in einer Prozessvariablen gespeichert.',
|
|
6795
|
-
besluittype: 'Besluittype',
|
|
6796
|
-
besluittypeTooltip: 'Beschreibung der Art der besluit.',
|
|
6797
|
-
besluitProcessVariableTooltip: 'Sobald der besluittype abgerufen wurde, wird er in einer Prozessvariablen mit diesem Namen gespeichert.',
|
|
6798
|
-
'get-resultaattypen': 'Resultaattypen anfordern',
|
|
6799
|
-
getResultaattypenInformation: 'Die zum Zaaktype gehörenden Ergebnistypen werden abgerufen und anschließend in einer Prozessvariablen gespeichert.',
|
|
6800
|
-
'get-resultaattype': 'Resultaattype anfordern',
|
|
6801
|
-
getResultaattypeInformation: 'Der resultaattype wird abgerufen und dann in einer Prozessvariablen gespeichert.',
|
|
6802
|
-
resultaattype: 'Resultaattype',
|
|
6803
|
-
resultaattypeTooltip: 'Beschreibung der Art der resultaat.',
|
|
6804
|
-
reslutaatProcessVariableTooltip: 'Sobald der resultaattype abgerufen wurde, wird er in einer Prozessvariablen mit diesem Namen gespeichert.',
|
|
6805
|
-
'get-eigenschap': 'Eigenschap anfordern',
|
|
6806
|
-
getEigenschapInformation: 'Der eigenschap wird abgerufen und dann in einer Prozessvariablen gespeichert.',
|
|
6807
|
-
eigenschap: 'Eigenschap',
|
|
6808
|
-
eigenschapTooltip: 'Name der Art der eigenschap.',
|
|
6809
|
-
eigenschapProcessVariableTooltip: 'Sobald der eigenschap abgerufen wurde, wird er in einer Prozessvariablen mit diesem Namen gespeichert.',
|
|
6810
|
-
zaakTypeUrl: 'Zaaktype URL',
|
|
6811
|
-
zaakTypeUrlTooltip: 'Geben Sie hier die URL des jeweiligen Zaaktype an, falls diese von der mit dem Fall verknüpften Zaak abweicht.',
|
|
6812
|
-
},
|
|
6813
7010
|
},
|
|
6814
7011
|
};
|
|
6815
7012
|
|
|
@@ -6996,17 +7193,6 @@ const notificatiesApiPluginSpecification = {
|
|
|
6996
7193
|
configurationTitleTooltip: 'The name of the current plugin configuration. Under this name, the configuration can be found in the rest of the application.',
|
|
6997
7194
|
authenticationPluginConfiguration: 'Authentication plugin configuration',
|
|
6998
7195
|
},
|
|
6999
|
-
de: {
|
|
7000
|
-
title: 'Notificaties API',
|
|
7001
|
-
url: 'Notificaties API URL',
|
|
7002
|
-
urlTooltip: 'Die URL zur REST API von Notificaties',
|
|
7003
|
-
callbackUrl: 'Callback URL',
|
|
7004
|
-
callbackUrlTooltip: 'Der GZAC-API-endpoint, an den Benachrichtigungen gesendet werden sollen.',
|
|
7005
|
-
description: 'Eine API für den Zugriff auf eine Komponente für das Benachrichtigungsrouting.',
|
|
7006
|
-
configurationTitle: 'Konfigurationsname',
|
|
7007
|
-
configurationTitleTooltip: 'Der Name der aktuellen Plugin-Konfiguration. Unter diesem Namen ist die Konfiguration im Rest der Anwendung zu finden.',
|
|
7008
|
-
authenticationPluginConfiguration: 'Authentifizierungs-Plugin-Konfiguration',
|
|
7009
|
-
},
|
|
7010
7196
|
},
|
|
7011
7197
|
};
|
|
7012
7198
|
|
|
@@ -7180,16 +7366,6 @@ const openNotificatiesPluginSpecification = {
|
|
|
7180
7366
|
clientSecret: 'Secret',
|
|
7181
7367
|
clientSecretTooltip: 'Enter the secret associated with the clientId above',
|
|
7182
7368
|
},
|
|
7183
|
-
de: {
|
|
7184
|
-
title: 'OpenNotificaties',
|
|
7185
|
-
description: 'OpenNotificaties ist eine produktionstaugliche API-Plattform, die den API-Standard für fallorientiertes Arbeiten (die ZGW-APIs) implementiert.',
|
|
7186
|
-
configurationTitle: 'Konfigurationsname',
|
|
7187
|
-
configurationTitleTooltip: 'Unter diesem Namen wird das Plugin im Rest der Anwendung erkennbar sein',
|
|
7188
|
-
clientId: 'Client ID',
|
|
7189
|
-
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',
|
|
7190
|
-
clientSecret: 'Secret',
|
|
7191
|
-
clientSecretTooltip: 'Geben Sie das mit der obigen clientId verknüpfte Geheimnis ein',
|
|
7192
|
-
},
|
|
7193
7369
|
},
|
|
7194
7370
|
};
|
|
7195
7371
|
|
|
@@ -7317,13 +7493,13 @@ class PortaaltaakConfigurationComponent {
|
|
|
7317
7493
|
});
|
|
7318
7494
|
});
|
|
7319
7495
|
}
|
|
7320
|
-
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
|
|
7496
|
+
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 }); }
|
|
7321
7497
|
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" }] }); }
|
|
7322
7498
|
}
|
|
7323
7499
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PortaaltaakConfigurationComponent, decorators: [{
|
|
7324
7500
|
type: Component,
|
|
7325
7501
|
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"] }]
|
|
7326
|
-
}], ctorParameters: () => [{ type: PluginManagementService }, { type: ObjectService }, { type: i2.TranslateService }, { type: PluginTranslationService }, { type: i4
|
|
7502
|
+
}], ctorParameters: () => [{ type: PluginManagementService }, { type: ObjectService }, { type: i2.TranslateService }, { type: PluginTranslationService }, { type: i4.ProcessService }], propDecorators: { save$: [{
|
|
7327
7503
|
type: Input
|
|
7328
7504
|
}], disabled$: [{
|
|
7329
7505
|
type: Input
|
|
@@ -7674,48 +7850,6 @@ const portaaltaakPluginSpecification = {
|
|
|
7674
7850
|
destination: 'Destination',
|
|
7675
7851
|
source: 'Source',
|
|
7676
7852
|
},
|
|
7677
|
-
de: {
|
|
7678
|
-
title: 'Portalaufgabe',
|
|
7679
|
-
description: 'Eine Komponente für den Zugriff auf eine Portal-Aufgabenweiterleitungskomponente.',
|
|
7680
|
-
configurationTitle: 'Konfigurationsname',
|
|
7681
|
-
configurationTitleTooltip: 'Der Name der aktuellen Plugin-Konfiguration. Unter diesem Namen ist die Konfiguration im Rest der Anwendung zu finden.',
|
|
7682
|
-
notificatiesApiPluginConfiguration: 'Benachrichtigungs-API plugin',
|
|
7683
|
-
notificatiesApiPluginConfigurationTooltip: 'Wählen Sie das Benachrichtigungs-API-Plugin aus. Bleibt das Auswahlfeld leer, muss das Benachrichtigungs-API-Plugin erst erstellt werden.',
|
|
7684
|
-
objectManagementConfiguration: 'Objektverwaltungskonfiguration',
|
|
7685
|
-
objectManagementConfigurationTooltip: 'Wählen Sie die Objektverwaltungskonfiguration aus. Bleibt das Auswahlfeld leer, muss zunächst die Objektverwaltungskonfiguration erstellt werden.',
|
|
7686
|
-
'create-portaaltaak': 'Portalaufgabe erstellen',
|
|
7687
|
-
'complete-portaaltaak': 'Portalaufgabe abschließen',
|
|
7688
|
-
formType: 'Formulartyp',
|
|
7689
|
-
formTypeTooltip: 'Wählen Sie hier aus, ob das anzuzeigende Formular aus einer Set-Definition oder von einer externen URL stammen soll.',
|
|
7690
|
-
id: 'Formulardefinition',
|
|
7691
|
-
url: 'URL',
|
|
7692
|
-
sendData: 'Auftragsdaten für den Empfänger',
|
|
7693
|
-
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').",
|
|
7694
|
-
receiveData: 'Vom Empfänger eingegebene Informationen',
|
|
7695
|
-
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').",
|
|
7696
|
-
receiver: 'Empfänger',
|
|
7697
|
-
receiverTooltip: 'Bestimmen Sie hier, wer die Daten der abgeschlossenen Aufgabe erhalten soll.',
|
|
7698
|
-
zaakInitiator: 'Initiator des Falles',
|
|
7699
|
-
other: 'Andere',
|
|
7700
|
-
otherReceiver: 'Anderer Empfänger',
|
|
7701
|
-
otherReceiverTooltip: 'Sie haben die Option für einen anderen Empfänger gewählt. Wählen Sie hier aus, welcher Typ das sein soll.',
|
|
7702
|
-
kvk: 'KVK-Nummer',
|
|
7703
|
-
bsn: 'Bürgerservicenummer (BSN)',
|
|
7704
|
-
kvkTooltip: 'Die KVK-Nummer des gewünschten Empfängers.',
|
|
7705
|
-
bsnTooltip: 'Die Bürgerservicenummer (BSN) des gewünschten Empfängers.',
|
|
7706
|
-
completeTaakProcess: 'Handhabungsprozess für hochgeladene Dokumente',
|
|
7707
|
-
completeTaakProcessTooltip: 'Der Prozess, der die hochgeladenen Dokumente im Portal handhaben soll.',
|
|
7708
|
-
identificationKey: 'Identifikationsschlüssel',
|
|
7709
|
-
identificationKeyTooltip: "Der eingegebene Schlüssel bestimmt, wie der Empfänger identifiziert wird. Gültige Beispiele sind 'bsn' oder 'kvk'.",
|
|
7710
|
-
identificationValue: 'Identifikationswert',
|
|
7711
|
-
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).",
|
|
7712
|
-
verloopDurationInDays: 'Ablaufzeit der Aufgabe in Tagen',
|
|
7713
|
-
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.',
|
|
7714
|
-
destinationInObject: 'Pfad im Objekt',
|
|
7715
|
-
value: 'Wert',
|
|
7716
|
-
destination: 'Ziel',
|
|
7717
|
-
source: 'Quelle',
|
|
7718
|
-
},
|
|
7719
7853
|
},
|
|
7720
7854
|
};
|
|
7721
7855
|
|
|
@@ -8003,13 +8137,13 @@ class VerzoekConfigurationComponent {
|
|
|
8003
8137
|
}, 250);
|
|
8004
8138
|
}));
|
|
8005
8139
|
}
|
|
8006
|
-
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
|
|
8007
|
-
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" }] }); }
|
|
8140
|
+
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 }); }
|
|
8141
|
+
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" }] }); }
|
|
8008
8142
|
}
|
|
8009
8143
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: VerzoekConfigurationComponent, decorators: [{
|
|
8010
8144
|
type: Component,
|
|
8011
8145
|
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"] }]
|
|
8012
|
-
}], ctorParameters: () => [{ type: PluginManagementService }, { type: i2.TranslateService }, { type: PluginTranslationService }, { type: VerzoekPluginService }, { type: i4
|
|
8146
|
+
}], ctorParameters: () => [{ type: PluginManagementService }, { type: i2.TranslateService }, { type: PluginTranslationService }, { type: VerzoekPluginService }, { type: i4.ProcessService }, { type: i2$2.ModalService }, { type: i1$3.IconService }], propDecorators: { mappingModals: [{
|
|
8013
8147
|
type: ViewChildren,
|
|
8014
8148
|
args: [VModalComponent]
|
|
8015
8149
|
}], save$: [{
|
|
@@ -8221,46 +8355,6 @@ const verzoekPluginSpecification = {
|
|
|
8221
8355
|
target: 'Target',
|
|
8222
8356
|
source: 'Source',
|
|
8223
8357
|
},
|
|
8224
|
-
de: {
|
|
8225
|
-
title: 'Verzoek',
|
|
8226
|
-
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.',
|
|
8227
|
-
configurationTitle: 'Konfigurationsname',
|
|
8228
|
-
configurationTitleTooltip: 'Der Name der aktuellen Plugin-Konfiguration. Unter diesem Namen ist die Konfiguration im Rest der Anwendung zu finden.',
|
|
8229
|
-
notificatiesApiPluginConfiguration: 'Notificaties API-Konfiguration',
|
|
8230
|
-
objectManagementId: 'Object management-Konfiguration',
|
|
8231
|
-
processToStart: 'Prozess',
|
|
8232
|
-
rsin: 'RSIN',
|
|
8233
|
-
verzoekProperties: 'Verzoektypen',
|
|
8234
|
-
type: 'Typ',
|
|
8235
|
-
caseDefinitionKey: 'Dateidefinition',
|
|
8236
|
-
caseDefinitionVersionTag: 'Falldefinitionsversion',
|
|
8237
|
-
initiatorRoltypeUrl: 'Rollentyp',
|
|
8238
|
-
processDefinitionKey: 'Prozessdefinition',
|
|
8239
|
-
initiatorRolDescription: 'Rollenbeschreibung',
|
|
8240
|
-
addVerzoekType: 'Verzoektyp hinzufügen',
|
|
8241
|
-
verzoekPropertiesTooltip: 'Die Verzoektypen die erstellt werden wenn eine Benachrichtigung eintrifft.',
|
|
8242
|
-
notificatiesApiPluginConfigurationTooltip: 'Konfiguration der Notificaties API, die für die Kommunikation zwischen GZAC und anderen Anwendungen verwendet wird.',
|
|
8243
|
-
objectManagementIdTooltip: 'Konfiguration des Objects, das zum Speichern einer Verzoek verwendet wird.',
|
|
8244
|
-
processToStartTooltip: 'Der Prozess, der einen Fall erstellt, wenn eine Benachrichtigung eintrifft.',
|
|
8245
|
-
rsinTooltip: 'Diese Nummer muss die gleichen Spezifikationen wie eine BSN-Nummer erfüllen.',
|
|
8246
|
-
typeTooltip: "Der Verzoektyp, der zum Identifizieren des Objects verwendet wird. Z.B. 'verzoek'.",
|
|
8247
|
-
caseDefinitionKeyTooltip: 'Wählen Sie hier den Falltyp aus, von dem eine Instanz gestartet werden soll, wenn eine Verzoek eintrifft.',
|
|
8248
|
-
caseDefinitionVersionTagTooltip: 'Die Version des Falltyps, dessen Instanz bei eingehender Verzoek gestartet werden soll.',
|
|
8249
|
-
initiatorRoltypeUrlTooltip: 'Der Rollentyp des Anforderers, der gespeichert wird, wenn eine Verzoek eingeht.',
|
|
8250
|
-
initiatorRolDescriptionTooltip: 'Eine Beschreibung des Rollentyps des Anforderers, die gespeichert wird, wenn eine Verzoek eingeht.',
|
|
8251
|
-
processDefinitionKeyTooltip: 'Wählen Sie hier den Prozess aus, der gestartet werden soll, wenn der zuvor ausgewählte Systemprozess beendet ist.',
|
|
8252
|
-
copyStrategy: 'Kopierstrategie',
|
|
8253
|
-
copyStrategyTooltip: 'Diese Option legt fest, ob das gesamte Verzoek-Objekt in das Dokument aufgenommen wird oder nur die definierten Felder.',
|
|
8254
|
-
full: 'Vollständig',
|
|
8255
|
-
specified: 'Angegebene Felder',
|
|
8256
|
-
mapping: 'Mapping',
|
|
8257
|
-
setMapping: 'Mapping festlegen',
|
|
8258
|
-
mappingTooltip: "Legen Sie hier die Felder fest, die vom Verzoek-Objekt in das Dokument kopiert werden sollen. Zum Beispiel: '/voorletters' -> 'doc:/voorletters-machtiginggever'.",
|
|
8259
|
-
close: 'Schließen',
|
|
8260
|
-
save: 'Speichern',
|
|
8261
|
-
target: 'Ziel',
|
|
8262
|
-
source: 'Ursprung',
|
|
8263
|
-
},
|
|
8264
8358
|
},
|
|
8265
8359
|
};
|
|
8266
8360
|
|
|
@@ -8511,13 +8605,13 @@ class CreateZaakBesluitConfigurationComponent {
|
|
|
8511
8605
|
this.valid$.next(valid);
|
|
8512
8606
|
this.valid.emit(valid);
|
|
8513
8607
|
}
|
|
8514
|
-
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$
|
|
8515
|
-
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" }] }); }
|
|
8608
|
+
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 }); }
|
|
8609
|
+
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" }] }); }
|
|
8516
8610
|
}
|
|
8517
8611
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CreateZaakBesluitConfigurationComponent, decorators: [{
|
|
8518
8612
|
type: Component,
|
|
8519
8613
|
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"] }]
|
|
8520
|
-
}], ctorParameters: () => [{ type: i2.TranslateService }, { type: PluginTranslationService }, { type: i2$2.ModalService }, { type: i1$
|
|
8614
|
+
}], ctorParameters: () => [{ type: i2.TranslateService }, { type: PluginTranslationService }, { type: i2$2.ModalService }, { type: i1$5.DocumentService }, { type: BesluitenApiService }, { type: PluginTranslatePipe }], propDecorators: { save$: [{
|
|
8521
8615
|
type: Input
|
|
8522
8616
|
}], disabled$: [{
|
|
8523
8617
|
type: Input
|
|
@@ -8533,6 +8627,156 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
|
|
|
8533
8627
|
type: Output
|
|
8534
8628
|
}] } });
|
|
8535
8629
|
|
|
8630
|
+
/*
|
|
8631
|
+
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
8632
|
+
*
|
|
8633
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
8634
|
+
* you may not use this file except in compliance with the License.
|
|
8635
|
+
* You may obtain a copy of the License at
|
|
8636
|
+
*
|
|
8637
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
8638
|
+
*
|
|
8639
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
8640
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
8641
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
8642
|
+
* See the License for the specific language governing permissions and
|
|
8643
|
+
* limitations under the License.
|
|
8644
|
+
*/
|
|
8645
|
+
const PatchBesluitPropertyOptions = [
|
|
8646
|
+
'beslisdatum',
|
|
8647
|
+
'toelichting',
|
|
8648
|
+
'bestuursorgaan',
|
|
8649
|
+
'ingangsdatum',
|
|
8650
|
+
'vervaldatum',
|
|
8651
|
+
'vervalreden',
|
|
8652
|
+
'publicatiedatum',
|
|
8653
|
+
'verzenddatum',
|
|
8654
|
+
'uiterlijkeReactieDatum',
|
|
8655
|
+
];
|
|
8656
|
+
|
|
8657
|
+
class PatchZaakBesluitConfigurationComponent {
|
|
8658
|
+
constructor(iconService) {
|
|
8659
|
+
this.iconService = iconService;
|
|
8660
|
+
this.valid = new EventEmitter();
|
|
8661
|
+
this.configuration = new EventEmitter();
|
|
8662
|
+
this.propertyOptions = [...PatchBesluitPropertyOptions];
|
|
8663
|
+
this.propertyList = [];
|
|
8664
|
+
this._formValue$ = new BehaviorSubject(null);
|
|
8665
|
+
this._properties = new Map();
|
|
8666
|
+
this._valid$ = new BehaviorSubject(false);
|
|
8667
|
+
this._prefillConfig = null;
|
|
8668
|
+
this.iconService.registerAll([Add16, TrashCan16]);
|
|
8669
|
+
}
|
|
8670
|
+
ngOnInit() {
|
|
8671
|
+
this.openSaveSubscription();
|
|
8672
|
+
this.prefillConfiguration$.pipe(take(1)).subscribe(prefill => {
|
|
8673
|
+
if (!prefill)
|
|
8674
|
+
return;
|
|
8675
|
+
this._prefillConfig = prefill;
|
|
8676
|
+
const prefilledProperties = this.propertyOptions.filter(property => !!this.prefillValueFor(property, prefill));
|
|
8677
|
+
this.propertyList = [...prefilledProperties];
|
|
8678
|
+
});
|
|
8679
|
+
}
|
|
8680
|
+
ngOnDestroy() {
|
|
8681
|
+
this._saveSubscription?.unsubscribe();
|
|
8682
|
+
}
|
|
8683
|
+
onFormValueChanged(formValue) {
|
|
8684
|
+
this._formValue$.next(formValue);
|
|
8685
|
+
this.handleValid(formValue);
|
|
8686
|
+
}
|
|
8687
|
+
onPropertyChanged(property, value) {
|
|
8688
|
+
this._properties.set(property, value);
|
|
8689
|
+
const formValue = this._formValue$.value;
|
|
8690
|
+
if (!formValue)
|
|
8691
|
+
return;
|
|
8692
|
+
this._properties.forEach((propValue, key) => {
|
|
8693
|
+
formValue[key] = propValue;
|
|
8694
|
+
});
|
|
8695
|
+
this.onFormValueChanged(formValue);
|
|
8696
|
+
}
|
|
8697
|
+
prefillValueFor(property, prefill) {
|
|
8698
|
+
return prefill ? (prefill[property] ?? null) : null;
|
|
8699
|
+
}
|
|
8700
|
+
translationKeyFor(property) {
|
|
8701
|
+
return property === 'description' ? 'omschrijving' : property;
|
|
8702
|
+
}
|
|
8703
|
+
translationKeyForPropertyList(property) {
|
|
8704
|
+
return this.translationKeyFor(property);
|
|
8705
|
+
}
|
|
8706
|
+
addProperty(property) {
|
|
8707
|
+
if (!this.propertyList.includes(property)) {
|
|
8708
|
+
this.propertyList = [...this.propertyList, property];
|
|
8709
|
+
const formValue = this._formValue$.value;
|
|
8710
|
+
if (formValue)
|
|
8711
|
+
this.handleValid(formValue);
|
|
8712
|
+
}
|
|
8713
|
+
}
|
|
8714
|
+
removeProperty(property) {
|
|
8715
|
+
if (this.propertyList.includes(property)) {
|
|
8716
|
+
this.propertyList = this.propertyList.filter(p => p !== property);
|
|
8717
|
+
this._properties.delete(property);
|
|
8718
|
+
const formValue = this._formValue$.value;
|
|
8719
|
+
if (formValue) {
|
|
8720
|
+
formValue[property] = undefined;
|
|
8721
|
+
this.handleValid(formValue);
|
|
8722
|
+
}
|
|
8723
|
+
}
|
|
8724
|
+
}
|
|
8725
|
+
hasPropertyBeenAdded(property) {
|
|
8726
|
+
return this.propertyList.includes(property);
|
|
8727
|
+
}
|
|
8728
|
+
handleValid(formValue) {
|
|
8729
|
+
const combined = {
|
|
8730
|
+
...(this._prefillConfig || {}),
|
|
8731
|
+
...formValue,
|
|
8732
|
+
};
|
|
8733
|
+
const besluitUrlValid = !!combined.besluitUrl;
|
|
8734
|
+
const dynamicValid = this.propertyList.every(p => !!combined[p]);
|
|
8735
|
+
const valid = besluitUrlValid && dynamicValid;
|
|
8736
|
+
this._valid$.next(valid);
|
|
8737
|
+
this.valid.emit(valid);
|
|
8738
|
+
}
|
|
8739
|
+
openSaveSubscription() {
|
|
8740
|
+
this._saveSubscription = this.save$?.subscribe(() => {
|
|
8741
|
+
combineLatest([this._formValue$, this._valid$])
|
|
8742
|
+
.pipe(take(1))
|
|
8743
|
+
.subscribe(([formValue, valid]) => {
|
|
8744
|
+
if (!valid || !formValue)
|
|
8745
|
+
return;
|
|
8746
|
+
const combined = {
|
|
8747
|
+
...(this._prefillConfig || {}),
|
|
8748
|
+
...formValue,
|
|
8749
|
+
};
|
|
8750
|
+
const payload = {
|
|
8751
|
+
besluitUrl: combined.besluitUrl,
|
|
8752
|
+
};
|
|
8753
|
+
this.propertyList.forEach(property => {
|
|
8754
|
+
payload[property] = combined[property];
|
|
8755
|
+
});
|
|
8756
|
+
this.configuration.emit(payload);
|
|
8757
|
+
});
|
|
8758
|
+
});
|
|
8759
|
+
}
|
|
8760
|
+
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 }); }
|
|
8761
|
+
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" }] }); }
|
|
8762
|
+
}
|
|
8763
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PatchZaakBesluitConfigurationComponent, decorators: [{
|
|
8764
|
+
type: Component,
|
|
8765
|
+
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"] }]
|
|
8766
|
+
}], ctorParameters: () => [{ type: i1$3.IconService }], propDecorators: { save$: [{
|
|
8767
|
+
type: Input
|
|
8768
|
+
}], disabled$: [{
|
|
8769
|
+
type: Input
|
|
8770
|
+
}], pluginId: [{
|
|
8771
|
+
type: Input
|
|
8772
|
+
}], prefillConfiguration$: [{
|
|
8773
|
+
type: Input
|
|
8774
|
+
}], valid: [{
|
|
8775
|
+
type: Output
|
|
8776
|
+
}], configuration: [{
|
|
8777
|
+
type: Output
|
|
8778
|
+
}] } });
|
|
8779
|
+
|
|
8536
8780
|
/*
|
|
8537
8781
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
8538
8782
|
*
|
|
@@ -8620,26 +8864,34 @@ class BesluitenApiPluginModule {
|
|
|
8620
8864
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: BesluitenApiPluginModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
8621
8865
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: BesluitenApiPluginModule, declarations: [BesluitenApiConfigurationComponent,
|
|
8622
8866
|
CreateZaakBesluitConfigurationComponent,
|
|
8867
|
+
PatchZaakBesluitConfigurationComponent,
|
|
8623
8868
|
LinkDocumentToBesluitConfigurationComponent], imports: [CommonModule,
|
|
8624
8869
|
PluginTranslatePipeModule,
|
|
8625
8870
|
FormModule,
|
|
8626
8871
|
InputModule,
|
|
8627
8872
|
SelectModule,
|
|
8628
|
-
DatePickerModule,
|
|
8873
|
+
DatePickerModule$1,
|
|
8629
8874
|
ParagraphModule,
|
|
8630
8875
|
RadioModule,
|
|
8631
|
-
LoadingModule
|
|
8876
|
+
LoadingModule,
|
|
8877
|
+
ButtonModule,
|
|
8878
|
+
DialogModule,
|
|
8879
|
+
IconModule], exports: [BesluitenApiConfigurationComponent,
|
|
8632
8880
|
CreateZaakBesluitConfigurationComponent,
|
|
8881
|
+
PatchZaakBesluitConfigurationComponent,
|
|
8633
8882
|
LinkDocumentToBesluitConfigurationComponent] }); }
|
|
8634
8883
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: BesluitenApiPluginModule, imports: [CommonModule,
|
|
8635
8884
|
PluginTranslatePipeModule,
|
|
8636
8885
|
FormModule,
|
|
8637
8886
|
InputModule,
|
|
8638
8887
|
SelectModule,
|
|
8639
|
-
DatePickerModule,
|
|
8888
|
+
DatePickerModule$1,
|
|
8640
8889
|
ParagraphModule,
|
|
8641
8890
|
RadioModule,
|
|
8642
|
-
LoadingModule
|
|
8891
|
+
LoadingModule,
|
|
8892
|
+
ButtonModule,
|
|
8893
|
+
DialogModule,
|
|
8894
|
+
IconModule] }); }
|
|
8643
8895
|
}
|
|
8644
8896
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: BesluitenApiPluginModule, decorators: [{
|
|
8645
8897
|
type: NgModule,
|
|
@@ -8647,6 +8899,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
|
|
|
8647
8899
|
declarations: [
|
|
8648
8900
|
BesluitenApiConfigurationComponent,
|
|
8649
8901
|
CreateZaakBesluitConfigurationComponent,
|
|
8902
|
+
PatchZaakBesluitConfigurationComponent,
|
|
8650
8903
|
LinkDocumentToBesluitConfigurationComponent,
|
|
8651
8904
|
],
|
|
8652
8905
|
imports: [
|
|
@@ -8655,14 +8908,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
|
|
|
8655
8908
|
FormModule,
|
|
8656
8909
|
InputModule,
|
|
8657
8910
|
SelectModule,
|
|
8658
|
-
DatePickerModule,
|
|
8911
|
+
DatePickerModule$1,
|
|
8659
8912
|
ParagraphModule,
|
|
8660
8913
|
RadioModule,
|
|
8661
8914
|
LoadingModule,
|
|
8915
|
+
ButtonModule,
|
|
8916
|
+
DialogModule,
|
|
8917
|
+
IconModule,
|
|
8662
8918
|
],
|
|
8663
8919
|
exports: [
|
|
8664
8920
|
BesluitenApiConfigurationComponent,
|
|
8665
8921
|
CreateZaakBesluitConfigurationComponent,
|
|
8922
|
+
PatchZaakBesluitConfigurationComponent,
|
|
8666
8923
|
LinkDocumentToBesluitConfigurationComponent,
|
|
8667
8924
|
],
|
|
8668
8925
|
}]
|
|
@@ -8722,6 +8979,7 @@ const besluitenApiPluginSpecification = {
|
|
|
8722
8979
|
pluginLogoBase64: BESLUITEN_API_PLUGIN_LOGO_BASE64,
|
|
8723
8980
|
functionConfigurationComponents: {
|
|
8724
8981
|
'create-besluit': CreateZaakBesluitConfigurationComponent,
|
|
8982
|
+
'patch-besluit': PatchZaakBesluitConfigurationComponent,
|
|
8725
8983
|
'link-document-to-besluit': LinkDocumentToBesluitConfigurationComponent,
|
|
8726
8984
|
},
|
|
8727
8985
|
pluginTranslations: {
|
|
@@ -8744,11 +9002,11 @@ const besluitenApiPluginSpecification = {
|
|
|
8744
9002
|
bestuursorgaan: 'Bestuursorgaan',
|
|
8745
9003
|
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.',
|
|
8746
9004
|
ingangsdatum: 'Ingangsdatum',
|
|
8747
|
-
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
|
|
9005
|
+
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',
|
|
8748
9006
|
vervaldatum: 'Vervaldatum',
|
|
8749
|
-
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.
|
|
9007
|
+
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.',
|
|
8750
9008
|
vervalreden: 'Vervalreden',
|
|
8751
|
-
vervalredenTooltip: 'De omschrijving die aangeeft op grond waarvan het besluit is of komt te vervallen.',
|
|
9009
|
+
vervalredenTooltip: 'De omschrijving die aangeeft op grond waarvan het besluit is of komt te vervallen. Mogelijke waarden: tijdelijk, ingetrokken_overheid, ingetrokken_belanghebbende',
|
|
8752
9010
|
tijdelijk: 'Tijdelijk',
|
|
8753
9011
|
ingetrokken_overheid: 'Ingetrokken door overheid',
|
|
8754
9012
|
ingetrokken_belanghebbende: 'Ingetrokken door belanghebbende',
|
|
@@ -8775,6 +9033,11 @@ const besluitenApiPluginSpecification = {
|
|
|
8775
9033
|
caseDefinitionTooltip: 'Selecteer de dossierdefinitie waarvan u een Besluit-type wilt selecteren. Als er slechts één besluittype beschikbaar is, wordt deze standaard geselecteerd.',
|
|
8776
9034
|
besluittypeUrlSelect: 'Besluittype',
|
|
8777
9035
|
besluittypeUrlSelectTooltip: 'Selecteer het besluittype.',
|
|
9036
|
+
'patch-besluit': 'Zaakbesluit bijwerken',
|
|
9037
|
+
patchZaakBesluitInformation: 'Deze actie wijzigt een zaakbesluit in de Besluiten API.',
|
|
9038
|
+
beslisdatum: 'Beslisdatum',
|
|
9039
|
+
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',
|
|
9040
|
+
addPatchBesluitProperty: 'Voeg nieuwe parameter toe',
|
|
8778
9041
|
},
|
|
8779
9042
|
en: {
|
|
8780
9043
|
title: 'Besluiten API',
|
|
@@ -8795,11 +9058,11 @@ const besluitenApiPluginSpecification = {
|
|
|
8795
9058
|
bestuursorgaan: 'Governing body',
|
|
8796
9059
|
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.',
|
|
8797
9060
|
ingangsdatum: 'Starting date',
|
|
8798
|
-
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.
|
|
9061
|
+
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.',
|
|
8799
9062
|
vervaldatum: 'Expiration date',
|
|
8800
|
-
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.
|
|
9063
|
+
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.',
|
|
8801
9064
|
vervalreden: 'Reason for expiry',
|
|
8802
|
-
vervalredenTooltip: 'The description that indicates on the basis of which the decision has been or will be cancelled.',
|
|
9065
|
+
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',
|
|
8803
9066
|
tijdelijk: 'Temporary',
|
|
8804
9067
|
ingetrokken_overheid: 'Withdrawn by government',
|
|
8805
9068
|
ingetrokken_belanghebbende: 'Withdrawn by interested party',
|
|
@@ -8826,57 +9089,11 @@ const besluitenApiPluginSpecification = {
|
|
|
8826
9089
|
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.',
|
|
8827
9090
|
besluittypeUrlSelect: 'Besluittype',
|
|
8828
9091
|
besluittypeUrlSelectTooltip: 'Select the Besluit type.',
|
|
8829
|
-
|
|
8830
|
-
|
|
8831
|
-
|
|
8832
|
-
|
|
8833
|
-
|
|
8834
|
-
url: 'Besluiten API URL',
|
|
8835
|
-
urlTooltip: 'Die URL zur REST API von Besluiten',
|
|
8836
|
-
description: 'API für die Speicherung und den Zugriff auf Entscheidungen und zugehörige Metadaten.',
|
|
8837
|
-
configurationTitle: 'Konfigurationsname',
|
|
8838
|
-
configurationTitleTooltip: 'Der Name der aktuellen Plugin-Konfiguration. Unter diesem Namen ist die Konfiguration im Rest der Anwendung zu finden.',
|
|
8839
|
-
authenticationPluginConfiguration: 'Authentifizierungs-Plugin-Konfiguration',
|
|
8840
|
-
'create-besluit': 'Zaakbesluit erstellen',
|
|
8841
|
-
createZaakBesluitInformation: 'Diese Aktion erstellt eine Zaakbesluit in der Besluiten-API.',
|
|
8842
|
-
besluittypeUrl: 'Entscheidungstyp-URL',
|
|
8843
|
-
besluittypeUrlTooltip: 'URL-Referenz zum Entscheidungstyp',
|
|
8844
|
-
toelichting: 'Erläuterung',
|
|
8845
|
-
toelichtingTooltip: 'Begründung der Entscheidung.',
|
|
8846
|
-
bestuursorgaan: 'Leitungsgremium',
|
|
8847
|
-
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.',
|
|
8848
|
-
ingangsdatum: 'Anfangsdatum',
|
|
8849
|
-
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',
|
|
8850
|
-
vervaldatum: 'Verfallsdatum',
|
|
8851
|
-
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',
|
|
8852
|
-
vervalreden: 'Ablaufgrund',
|
|
8853
|
-
vervalredenTooltip: 'Die Beschreibung, auf deren Grundlage die Entscheidung aufgehoben wurde oder wird.',
|
|
8854
|
-
tijdelijk: 'Temporär',
|
|
8855
|
-
ingetrokken_overheid: 'Von der Regierung zurückgezogen',
|
|
8856
|
-
ingetrokken_belanghebbende: 'Von interessierter Partei zurückgezogen',
|
|
8857
|
-
publicatiedatum: 'Veröffentlichungsdatum',
|
|
8858
|
-
publicatiedatumTooltip: 'Datum, an dem die Entscheidung veröffentlicht wird.',
|
|
8859
|
-
verzenddatum: 'Versanddatum',
|
|
8860
|
-
verzenddatumTooltip: 'Datum, an dem die Entscheidung gesendet wurde.',
|
|
8861
|
-
uiterlijkeReactieDatum: 'Antwortfrist',
|
|
8862
|
-
uiterlijkeReactieDatumTooltip: 'Das Datum, bis zu dem eine Verteidigung gegen die Entscheidung möglich ist.',
|
|
8863
|
-
besluitUrlProcessVariable: 'Prozessvariablenname mit Entscheidungs-URL',
|
|
8864
|
-
besluitUrlProcessVariableTooltip: 'Hier muss der Name der Prozessvariable eingetragen werden, in der die Entscheidungs-URL lokal gespeichert wird',
|
|
8865
|
-
'link-document-to-besluit': 'Verknüpf Document zum Besluit',
|
|
8866
|
-
linkDocumentToBesluitInformation: 'Diese Aktion verknüpft ein Dokument mit einer Fallentscheidung in der Besluiten API.',
|
|
8867
|
-
besluitUrl: 'Besluit URL',
|
|
8868
|
-
besluitUrlTooltip: 'URL-Referenz zum besluit',
|
|
8869
|
-
documentUrl: 'Document URL',
|
|
8870
|
-
documentUrlTooltip: 'URL-Referenz zum document',
|
|
8871
|
-
inputTypeBesluitToggle: 'Eingabetyp Besluit-URL',
|
|
8872
|
-
inputTypeStartingDateToggle: 'Eingabetyp Begindatum',
|
|
8873
|
-
inputTypeExpirationDateToggle: 'Eingabetyp Einddatum',
|
|
8874
|
-
text: 'Text',
|
|
8875
|
-
selection: 'Auswahl',
|
|
8876
|
-
caseDefinition: 'Falltyp',
|
|
8877
|
-
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.',
|
|
8878
|
-
besluittypeUrlSelect: 'Besluittype',
|
|
8879
|
-
besluittypeUrlSelectTooltip: 'Wählen Sie den Besluit-typ aus.',
|
|
9092
|
+
'patch-besluit': 'Patch Zaakbesluit',
|
|
9093
|
+
patchZaakBesluitInformation: 'This action patches a Zaakbesluit in the Besluiten API.',
|
|
9094
|
+
beslisdatum: 'Decision date',
|
|
9095
|
+
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',
|
|
9096
|
+
addPatchBesluitProperty: 'Add besluit property',
|
|
8880
9097
|
},
|
|
8881
9098
|
},
|
|
8882
9099
|
};
|
|
@@ -9005,13 +9222,13 @@ class ExactPluginConfigurationComponent {
|
|
|
9005
9222
|
});
|
|
9006
9223
|
});
|
|
9007
9224
|
}
|
|
9008
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ExactPluginConfigurationComponent, deps: [{ token: ExactPluginService }, { token:
|
|
9009
|
-
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:
|
|
9225
|
+
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 }); }
|
|
9226
|
+
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" }] }); }
|
|
9010
9227
|
}
|
|
9011
9228
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ExactPluginConfigurationComponent, decorators: [{
|
|
9012
9229
|
type: Component,
|
|
9013
9230
|
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" }]
|
|
9014
|
-
}], ctorParameters: () => [{ type: ExactPluginService }, { type:
|
|
9231
|
+
}], ctorParameters: () => [{ type: ExactPluginService }, { type: i1$3.IconService }], propDecorators: { save$: [{
|
|
9015
9232
|
type: Input
|
|
9016
9233
|
}], disabled$: [{
|
|
9017
9234
|
type: Input
|
|
@@ -9308,19 +9525,6 @@ const exactPluginSpecification = {
|
|
|
9308
9525
|
bean: 'Service class',
|
|
9309
9526
|
content: 'Content',
|
|
9310
9527
|
},
|
|
9311
|
-
de: {
|
|
9312
|
-
title: 'Exact Plugin',
|
|
9313
|
-
description: 'Plugin zum Einrichten einer Exact-API-Verbindung',
|
|
9314
|
-
configurationTitle: 'Konfigurationsname',
|
|
9315
|
-
clientId: 'Kunden ID',
|
|
9316
|
-
clientSecret: 'Client-Geheimnis',
|
|
9317
|
-
'exact-get-request': 'Exakte GET-Anfrage',
|
|
9318
|
-
'exact-post-request': 'Exakte POST-Anfrage',
|
|
9319
|
-
'exact-put-request': 'Exakte PUT-Anfrage',
|
|
9320
|
-
uri: 'URI',
|
|
9321
|
-
bean: 'Serviceklasse',
|
|
9322
|
-
content: 'Inhalt',
|
|
9323
|
-
},
|
|
9324
9528
|
},
|
|
9325
9529
|
};
|
|
9326
9530
|
|
|
@@ -9479,5 +9683,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
|
|
|
9479
9683
|
* Generated bundle index. Do not edit.
|
|
9480
9684
|
*/
|
|
9481
9685
|
|
|
9482
|
-
export { BesluitenApiConfigurationComponent, BesluitenApiPluginModule, CatalogiApiConfigurationComponent, CatalogiApiPluginModule, CompletePortalTaskComponent, CreateMedewerkerZaakRolComponent, CreateNatuurlijkPersoonZaakRolComponent, CreateNietNatuurlijkPersoonZaakRolComponent, CreateOrganisatorischeEenheidZaakRolComponent, CreatePersoonComponent, CreatePortalTaskComponent, CreateVestigingZaakRolComponent, CreateZaakBesluitConfigurationComponent, CreateZaakConfigurationComponent, CreateZaakObjectConfigurationComponent, CreateZaakResultaatConfigurationComponent, CreateZaakeigenschapComponent, DeleteObjectComponent, 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 };
|
|
9686
|
+
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, 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 };
|
|
9483
9687
|
//# sourceMappingURL=valtimo-plugin.mjs.map
|