@valtimo/shared 13.43.0 → 13.44.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/assets/core/en.json +101 -0
- package/assets/core/nl.json +104 -1
- package/fesm2022/valtimo-shared.mjs +2 -2
- package/fesm2022/valtimo-shared.mjs.map +1 -1
- package/lib/generated/generated-backend-types.d.ts +455 -48
- package/lib/generated/generated-backend-types.d.ts.map +1 -1
- package/package.json +1 -1
package/assets/core/en.json
CHANGED
|
@@ -737,6 +737,9 @@
|
|
|
737
737
|
"cta": {"close": "Close", "moreDetails": "More details"},
|
|
738
738
|
"carousel": {"previous": "Previous", "next": "Next", "goToSlide": "Go to slide"},
|
|
739
739
|
"formManagement": {
|
|
740
|
+
"edit": {
|
|
741
|
+
"title": "Edit form"
|
|
742
|
+
},
|
|
740
743
|
"noFormDefinitionFoundAdmin": "There is no form connected to the start event/user task. To configure this, click on the button below.",
|
|
741
744
|
"noFormDefinitionFoundUser": "There is no form connected to the start event/user task. Ask an admin user for assistance.",
|
|
742
745
|
"gotoProcessLinksButton": "Configure now",
|
|
@@ -2051,6 +2054,7 @@
|
|
|
2051
2054
|
"noResults": "No results",
|
|
2052
2055
|
"loading": "Loading...",
|
|
2053
2056
|
"edit": "Edit",
|
|
2057
|
+
"view": "View",
|
|
2054
2058
|
"noItemsFound": "No items found",
|
|
2055
2059
|
"clearAll": "Clear all",
|
|
2056
2060
|
"clear": "Clear",
|
|
@@ -3076,6 +3080,103 @@
|
|
|
3076
3080
|
"noResults": {
|
|
3077
3081
|
"description": "Click <strong>Add new form flow</strong> to start designing your form flow",
|
|
3078
3082
|
"title": "No form flows added"
|
|
3083
|
+
},
|
|
3084
|
+
"tabs": {
|
|
3085
|
+
"editor": "Editor (beta)",
|
|
3086
|
+
"jsonEditor": "JSON editor"
|
|
3087
|
+
},
|
|
3088
|
+
"uiEditor": {
|
|
3089
|
+
"stepsTitle": "Steps",
|
|
3090
|
+
"startStep": "Start step",
|
|
3091
|
+
"stepType": "Type",
|
|
3092
|
+
"addStep": "Add step",
|
|
3093
|
+
"deleteStep": "Delete step",
|
|
3094
|
+
"makeStartStep": "Make start step",
|
|
3095
|
+
"selectForm": "Select a form",
|
|
3096
|
+
"selectComponent": "Select a component",
|
|
3097
|
+
"fieldTooltips": {
|
|
3098
|
+
"key": "Identifies this step. It is referenced by the start step and by transitions, so renaming it updates those references automatically.",
|
|
3099
|
+
"title": "Optional. Shown in the breadcrumb trail while a user walks through the form flow.",
|
|
3100
|
+
"type": "What this step shows: \"form\" renders a Form.io form, \"custom-component\" renders an Angular component registered by this implementation. Other values are handled by a matching step type handler in the backend.",
|
|
3101
|
+
"typeNoComponents": "\"custom-component\" is unavailable because this implementation has not registered any custom components.",
|
|
3102
|
+
"definition": "The form of this case definition or building block that is shown for this step.",
|
|
3103
|
+
"componentId": "The registered Angular component that is shown for this step.",
|
|
3104
|
+
"targetStep": "The step the user goes to when this transition is taken.",
|
|
3105
|
+
"condition": "Optional SpEL expression between ${ and }. Transitions are evaluated from top to bottom; leave empty to make this the default route."
|
|
3106
|
+
},
|
|
3107
|
+
"stepDetails": "Step details",
|
|
3108
|
+
"title": "Title",
|
|
3109
|
+
"titlePlaceholder": "Shown in the breadcrumb trail",
|
|
3110
|
+
"keyPlaceholder": "For example personalDetailsStep",
|
|
3111
|
+
"duplicateKey": "This key is already used by another step",
|
|
3112
|
+
"required": "This field is required",
|
|
3113
|
+
"navigation": "Navigation",
|
|
3114
|
+
"navigationDescription": "Where the user can go after completing this step. Transitions are evaluated from top to bottom; the first one whose condition holds is taken and a transition without a condition is the default.",
|
|
3115
|
+
"targetStep": "Next step",
|
|
3116
|
+
"selectStep": "Select a step",
|
|
3117
|
+
"condition": "Condition",
|
|
3118
|
+
"conditionPlaceholder": "${step.submissionData.age >= 21} (leave empty for default)",
|
|
3119
|
+
"moveUp": "Move up",
|
|
3120
|
+
"moveDown": "Move down",
|
|
3121
|
+
"addTransition": "Add transition",
|
|
3122
|
+
"noTransitions": "No transitions — the form flow ends after this step.",
|
|
3123
|
+
"multipleDefaultTransitions": "Only one transition may omit its condition; that transition is the default.",
|
|
3124
|
+
"conditionExamplesTitle": "Conditions are Spring Expression Language (SpEL) expressions between ${ and }. They can use:",
|
|
3125
|
+
"conditionExampleSubmission": "values the user submitted in this step, via step.submissionData",
|
|
3126
|
+
"conditionExampleContext": "case and process context, via additionalProperties (the exact entries are listed below)",
|
|
3127
|
+
"conditionExampleDefault": "Comparison operators like ==, !=, >, >= and boolean operators like && and || are supported. A transition without a condition is the default route.",
|
|
3128
|
+
"additionalPropertiesTitle": "Available in additionalProperties:",
|
|
3129
|
+
"additionalPropertiesUserTask": "When the form flow is linked to a user task:",
|
|
3130
|
+
"additionalPropertiesStartEvent": "When the form flow is linked to a start event:",
|
|
3131
|
+
"additionalPropertiesOptional": "(if available)",
|
|
3132
|
+
"additionalProperties": {
|
|
3133
|
+
"processInstanceId": "the id of the process instance the task belongs to",
|
|
3134
|
+
"processInstanceBusinessKey": "the business key of that process instance",
|
|
3135
|
+
"taskInstanceId": "the id of the user task that opened this form flow",
|
|
3136
|
+
"documentId": "the id of the case, when the process belongs to one",
|
|
3137
|
+
"processDefinitionKey": "the key of the process definition being started",
|
|
3138
|
+
"documentDefinitionName": "the document definition of the new case, when starting a new case"
|
|
3139
|
+
},
|
|
3140
|
+
"actions": "Actions",
|
|
3141
|
+
"actionsDescription": "Actions run on the server at specific moments in the step's lifecycle, for example to prefill forms, store submissions, complete tasks or start processes.",
|
|
3142
|
+
"help": {
|
|
3143
|
+
"title": "How expressions work",
|
|
3144
|
+
"button": "How do expressions work?",
|
|
3145
|
+
"intro": "Conditions and actions are Spring Expression Language (SpEL) expressions written between ${ and }. They are evaluated on the server while the form flow runs.",
|
|
3146
|
+
"conditionsHeading": "Conditions",
|
|
3147
|
+
"actionsHeading": "Actions",
|
|
3148
|
+
"actionsBody": "Actions run at specific moments in a step's lifecycle: when it opens, when it is completed and when the user navigates back. They can call the registered form flow functions listed under \"Add action\", and can read the submitted data via step.submissionData and the case and process context via additionalProperties. Use them to prefill forms, store submissions, complete tasks or start processes.",
|
|
3149
|
+
"dataHeading": "Available data",
|
|
3150
|
+
"conditionsInlineTitle": "Conditions are expressions.",
|
|
3151
|
+
"conditionsInlineMessage": "For example ${step.submissionData.age >= 21}. Leave the condition empty for the default route.",
|
|
3152
|
+
"actionsInlineTitle": "Actions are expressions.",
|
|
3153
|
+
"actionsInlineMessage": "They can call registered functions and read submitted data and case context."
|
|
3154
|
+
},
|
|
3155
|
+
"onOpen": "When the step opens",
|
|
3156
|
+
"onOpenDescription": "Runs when the user opens this step, for example to prefill the form.",
|
|
3157
|
+
"onComplete": "When the step is completed",
|
|
3158
|
+
"onCompleteDescription": "Runs when the user submits this step, for example to store data or complete a task.",
|
|
3159
|
+
"onBack": "When the user navigates back",
|
|
3160
|
+
"onBackDescription": "Runs when the user goes back to the previous step, for example to clean up data.",
|
|
3161
|
+
"addExpression": "Add action",
|
|
3162
|
+
"blankExpression": "Blank expression",
|
|
3163
|
+
"noExpressions": "No actions configured.",
|
|
3164
|
+
"stepInvalid": "This step has configuration errors",
|
|
3165
|
+
"noStepsTitle": "No steps yet",
|
|
3166
|
+
"noStepsDescription": "Add a step to start designing this form flow.",
|
|
3167
|
+
"parseFailedTitle": "Cannot open the visual editor",
|
|
3168
|
+
"parseFailedMessage": "The definition contains invalid JSON. Fix it in the JSON editor first.",
|
|
3169
|
+
"properties": {
|
|
3170
|
+
"definition": "Form",
|
|
3171
|
+
"componentId": "Component ID"
|
|
3172
|
+
},
|
|
3173
|
+
"errors": {
|
|
3174
|
+
"title": "The definition contains errors",
|
|
3175
|
+
"duplicateKeys": "Duplicate step keys: {{keys}}.",
|
|
3176
|
+
"startStepMissing": "The start step \"{{startStep}}\" does not exist.",
|
|
3177
|
+
"unknownTargets": "Transitions point to unknown steps: {{targets}}.",
|
|
3178
|
+
"stepIncomplete": "Step \"{{step}}\" has missing or invalid fields."
|
|
3179
|
+
}
|
|
3079
3180
|
}
|
|
3080
3181
|
},
|
|
3081
3182
|
"taskManagement": {
|
package/assets/core/nl.json
CHANGED
|
@@ -740,6 +740,9 @@
|
|
|
740
740
|
"cta": {"close": "Sluiten", "moreDetails": "Meer details"},
|
|
741
741
|
"carousel": {"previous": "Vorige", "next": "Volgende", "goToSlide": "Ga naar dia"},
|
|
742
742
|
"formManagement": {
|
|
743
|
+
"edit": {
|
|
744
|
+
"title": "Formulier bewerken"
|
|
745
|
+
},
|
|
743
746
|
"noFormDefinitionFoundAdmin": "Er is geen formulier gekoppeld aan de start event/user task. Druk op de knop om deze te configureren.",
|
|
744
747
|
"noFormDefinitionFoundUser": "Er is geen formulier gekoppeld aan de start event/user task. Vraag een beheerder om hulp.",
|
|
745
748
|
"gotoProcessLinksButton": "Configureer nu",
|
|
@@ -1217,7 +1220,9 @@
|
|
|
1217
1220
|
"title": "Er zijn geen statussen geconfigureerd",
|
|
1218
1221
|
"description": "Klik hier om een status voor dit dossiertype te configureren"
|
|
1219
1222
|
},
|
|
1220
|
-
"noResultsFinalVersion": {
|
|
1223
|
+
"noResultsFinalVersion": {
|
|
1224
|
+
"description": "Er zijn geen status aangemaakt voor dit dossiertype."
|
|
1225
|
+
}
|
|
1221
1226
|
},
|
|
1222
1227
|
"caseTags": {
|
|
1223
1228
|
"searchFieldTitle": "Tags",
|
|
@@ -2079,6 +2084,7 @@
|
|
|
2079
2084
|
"noResults": "Geen resultaten",
|
|
2080
2085
|
"loading": "Aan het laden...",
|
|
2081
2086
|
"edit": "Aanpassen",
|
|
2087
|
+
"view": "Bekijken",
|
|
2082
2088
|
"noItemsFound": "Geen items gevonden",
|
|
2083
2089
|
"clearAll": "Alles wissen",
|
|
2084
2090
|
"clear": "Wissen",
|
|
@@ -3109,6 +3115,103 @@
|
|
|
3109
3115
|
"noResults": {
|
|
3110
3116
|
"description": "Klik op <strong>Nieuwe form flow toevoegen</strong> om te beginnen met het ontwerpen van je form flow",
|
|
3111
3117
|
"title": "Geen form flows toegevoegd"
|
|
3118
|
+
},
|
|
3119
|
+
"tabs": {
|
|
3120
|
+
"editor": "Editor (bèta)",
|
|
3121
|
+
"jsonEditor": "JSON-editor"
|
|
3122
|
+
},
|
|
3123
|
+
"uiEditor": {
|
|
3124
|
+
"stepsTitle": "Stappen",
|
|
3125
|
+
"startStep": "Startstap",
|
|
3126
|
+
"stepType": "Type",
|
|
3127
|
+
"addStep": "Stap toevoegen",
|
|
3128
|
+
"deleteStep": "Stap verwijderen",
|
|
3129
|
+
"makeStartStep": "Maak startstap",
|
|
3130
|
+
"selectForm": "Kies een formulier",
|
|
3131
|
+
"selectComponent": "Kies een component",
|
|
3132
|
+
"fieldTooltips": {
|
|
3133
|
+
"key": "Identificeert deze stap. De startstap en overgangen verwijzen ernaar; bij hernoemen worden die verwijzingen automatisch bijgewerkt.",
|
|
3134
|
+
"title": "Optioneel. Wordt getoond in het kruimelpad terwijl een gebruiker de form flow doorloopt.",
|
|
3135
|
+
"type": "Wat deze stap toont: \"form\" toont een Form.io-formulier, \"custom-component\" toont een Angular-component die door deze implementatie is geregistreerd. Andere waarden worden afgehandeld door een bijpassende staptype-handler in de backend.",
|
|
3136
|
+
"typeNoComponents": "\"custom-component\" is niet beschikbaar omdat deze implementatie geen custom componenten heeft geregistreerd.",
|
|
3137
|
+
"definition": "Het formulier van deze zaakdefinitie of building block dat voor deze stap wordt getoond.",
|
|
3138
|
+
"componentId": "De geregistreerde Angular-component die voor deze stap wordt getoond.",
|
|
3139
|
+
"targetStep": "De stap waar de gebruiker naartoe gaat wanneer deze overgang wordt gekozen.",
|
|
3140
|
+
"condition": "Optionele SpEL-expressie tussen ${ en }. Overgangen worden van boven naar beneden geëvalueerd; laat leeg om dit de standaardroute te maken."
|
|
3141
|
+
},
|
|
3142
|
+
"stepDetails": "Stapdetails",
|
|
3143
|
+
"title": "Titel",
|
|
3144
|
+
"titlePlaceholder": "Wordt getoond in het kruimelpad",
|
|
3145
|
+
"keyPlaceholder": "Bijvoorbeeld persoonsgegevensStap",
|
|
3146
|
+
"duplicateKey": "Deze key wordt al gebruikt door een andere stap",
|
|
3147
|
+
"required": "Dit veld is verplicht",
|
|
3148
|
+
"navigation": "Navigatie",
|
|
3149
|
+
"navigationDescription": "Waar de gebruiker naartoe kan na het afronden van deze stap. Overgangen worden van boven naar beneden geëvalueerd; de eerste waarvan de conditie waar is wordt gekozen en een overgang zonder conditie is de standaard.",
|
|
3150
|
+
"targetStep": "Volgende stap",
|
|
3151
|
+
"selectStep": "Kies een stap",
|
|
3152
|
+
"condition": "Conditie",
|
|
3153
|
+
"conditionPlaceholder": "${step.submissionData.leeftijd >= 21} (leeg = standaard)",
|
|
3154
|
+
"moveUp": "Omhoog",
|
|
3155
|
+
"moveDown": "Omlaag",
|
|
3156
|
+
"addTransition": "Overgang toevoegen",
|
|
3157
|
+
"noTransitions": "Geen overgangen — de form flow eindigt na deze stap.",
|
|
3158
|
+
"multipleDefaultTransitions": "Slechts één overgang mag zonder conditie zijn; die overgang is de standaard.",
|
|
3159
|
+
"conditionExamplesTitle": "Condities zijn Spring Expression Language (SpEL)-expressies tussen ${ en }. Ze kunnen gebruikmaken van:",
|
|
3160
|
+
"conditionExampleSubmission": "waarden die de gebruiker in deze stap heeft ingevuld, via step.submissionData",
|
|
3161
|
+
"conditionExampleContext": "zaak- en procescontext, via additionalProperties (de exacte waarden staan hieronder)",
|
|
3162
|
+
"conditionExampleDefault": "Vergelijkingsoperatoren zoals ==, !=, >, >= en booleaanse operatoren zoals && en || worden ondersteund. Een overgang zonder conditie is de standaardroute.",
|
|
3163
|
+
"additionalPropertiesTitle": "Beschikbaar in additionalProperties:",
|
|
3164
|
+
"additionalPropertiesUserTask": "Wanneer de form flow gekoppeld is aan een gebruikerstaak:",
|
|
3165
|
+
"additionalPropertiesStartEvent": "Wanneer de form flow gekoppeld is aan een startgebeurtenis:",
|
|
3166
|
+
"additionalPropertiesOptional": "(indien beschikbaar)",
|
|
3167
|
+
"additionalProperties": {
|
|
3168
|
+
"processInstanceId": "het id van de procesinstantie waar de taak bij hoort",
|
|
3169
|
+
"processInstanceBusinessKey": "de business key van die procesinstantie",
|
|
3170
|
+
"taskInstanceId": "het id van de gebruikerstaak die deze form flow heeft geopend",
|
|
3171
|
+
"documentId": "het id van de zaak, wanneer het proces bij een zaak hoort",
|
|
3172
|
+
"processDefinitionKey": "de key van de procesdefinitie die gestart wordt",
|
|
3173
|
+
"documentDefinitionName": "de documentdefinitie van de nieuwe zaak, bij het starten van een nieuwe zaak"
|
|
3174
|
+
},
|
|
3175
|
+
"actions": "Acties",
|
|
3176
|
+
"actionsDescription": "Acties worden op de server uitgevoerd op vaste momenten in de levenscyclus van de stap, bijvoorbeeld om formulieren vooraf in te vullen, inzendingen op te slaan, taken af te ronden of processen te starten.",
|
|
3177
|
+
"help": {
|
|
3178
|
+
"title": "Hoe expressies werken",
|
|
3179
|
+
"button": "Hoe werken expressies?",
|
|
3180
|
+
"intro": "Condities en acties zijn Spring Expression Language (SpEL)-expressies tussen ${ en }. Ze worden op de server geëvalueerd terwijl de form flow draait.",
|
|
3181
|
+
"conditionsHeading": "Condities",
|
|
3182
|
+
"actionsHeading": "Acties",
|
|
3183
|
+
"actionsBody": "Acties worden uitgevoerd op vaste momenten in de levenscyclus van een stap: bij het openen, bij het afronden en wanneer de gebruiker teruggaat. Ze kunnen de geregistreerde form flow-functies aanroepen uit het menu \"Actie toevoegen\", en kunnen de ingevulde gegevens lezen via step.submissionData en de zaak- en procescontext via additionalProperties. Gebruik ze om formulieren vooraf in te vullen, inzendingen op te slaan, taken af te ronden of processen te starten.",
|
|
3184
|
+
"dataHeading": "Beschikbare gegevens",
|
|
3185
|
+
"conditionsInlineTitle": "Condities zijn expressies.",
|
|
3186
|
+
"conditionsInlineMessage": "Bijvoorbeeld ${step.submissionData.leeftijd >= 21}. Laat de conditie leeg voor de standaardroute.",
|
|
3187
|
+
"actionsInlineTitle": "Acties zijn expressies.",
|
|
3188
|
+
"actionsInlineMessage": "Ze kunnen geregistreerde functies aanroepen en ingevulde gegevens en zaakcontext lezen."
|
|
3189
|
+
},
|
|
3190
|
+
"onOpen": "Bij openen van de stap",
|
|
3191
|
+
"onOpenDescription": "Wordt uitgevoerd wanneer de gebruiker deze stap opent, bijvoorbeeld om het formulier vooraf in te vullen.",
|
|
3192
|
+
"onComplete": "Bij afronden van de stap",
|
|
3193
|
+
"onCompleteDescription": "Wordt uitgevoerd wanneer de gebruiker deze stap indient, bijvoorbeeld om gegevens op te slaan of een taak af te ronden.",
|
|
3194
|
+
"onBack": "Bij teruggaan",
|
|
3195
|
+
"onBackDescription": "Wordt uitgevoerd wanneer de gebruiker teruggaat naar de vorige stap, bijvoorbeeld om gegevens op te schonen.",
|
|
3196
|
+
"addExpression": "Actie toevoegen",
|
|
3197
|
+
"blankExpression": "Lege expressie",
|
|
3198
|
+
"noExpressions": "Geen acties geconfigureerd.",
|
|
3199
|
+
"stepInvalid": "Deze stap bevat configuratiefouten",
|
|
3200
|
+
"noStepsTitle": "Nog geen stappen",
|
|
3201
|
+
"noStepsDescription": "Voeg een stap toe om deze form flow te ontwerpen.",
|
|
3202
|
+
"parseFailedTitle": "De visuele editor kan niet worden geopend",
|
|
3203
|
+
"parseFailedMessage": "De definitie bevat ongeldige JSON. Herstel dit eerst in de JSON-editor.",
|
|
3204
|
+
"properties": {
|
|
3205
|
+
"definition": "Formulier",
|
|
3206
|
+
"componentId": "Component-ID"
|
|
3207
|
+
},
|
|
3208
|
+
"errors": {
|
|
3209
|
+
"title": "De definitie bevat fouten",
|
|
3210
|
+
"duplicateKeys": "Dubbele stap-keys: {{keys}}.",
|
|
3211
|
+
"startStepMissing": "De startstap \"{{startStep}}\" bestaat niet.",
|
|
3212
|
+
"unknownTargets": "Overgangen verwijzen naar onbekende stappen: {{targets}}.",
|
|
3213
|
+
"stepIncomplete": "Stap \"{{step}}\" heeft ontbrekende of ongeldige velden."
|
|
3214
|
+
}
|
|
3112
3215
|
}
|
|
3113
3216
|
},
|
|
3114
3217
|
"taskManagement": {
|
|
@@ -1253,7 +1253,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
1253
1253
|
* limitations under the License.
|
|
1254
1254
|
*/
|
|
1255
1255
|
const VERSIONS = {
|
|
1256
|
-
frontendLibraries: '13.
|
|
1256
|
+
frontendLibraries: '13.44.0',
|
|
1257
1257
|
};
|
|
1258
1258
|
|
|
1259
1259
|
/*
|
|
@@ -2050,7 +2050,7 @@ const zgwFeaturesGuard = () => {
|
|
|
2050
2050
|
|
|
2051
2051
|
/* tslint:disable */
|
|
2052
2052
|
/* eslint-disable */
|
|
2053
|
-
// Generated using typescript-generator version 3.2.1263 on 2026-
|
|
2053
|
+
// Generated using typescript-generator version 3.2.1263 on 2026-08-26 15:15:30.
|
|
2054
2054
|
|
|
2055
2055
|
/*
|
|
2056
2056
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|