@valtimo/shared 13.43.0 → 13.45.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.
@@ -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",
@@ -1752,7 +1755,8 @@
1752
1755
  "rowLocked": "You don't have access to this task",
1753
1756
  "allCases": "All cases",
1754
1757
  "noSearchResultsTitle": "No tasks found",
1755
- "noSearchResultsDescription": "There are no tasks that match your search criteria."
1758
+ "noSearchResultsDescription": "There are no tasks that match your search criteria.",
1759
+ "refreshTasks": "Refresh tasks"
1756
1760
  },
1757
1761
  "Task": "Task",
1758
1762
  "Tasks": "Tasks",
@@ -1784,12 +1788,23 @@
1784
1788
  "Translations": "Translations",
1785
1789
  "uploadFormDefinition": "Upload form definition",
1786
1790
  "Process migration": "Process migration",
1787
- "Process migration warning": "<b>Warning:</b> When migrating a process, the candidate groups of running instances will not be updated. This can be done in the database if necessary. (For example if a specific user task is open for ROLE_USER and the candidate group for the user task is updated in the process to ROLE_ADMIN, this user task is still accessible for ROLE_USER. Only newly started processes will use the updated candidate group)",
1788
- "Source Definition": "Source Definition",
1789
- "Source Version": "Source Version",
1790
- "Target Definition": "Target Definition",
1791
- "Target Version": "Target Version",
1792
- "Choose Target": "Choose Target",
1791
+ "processMigration": {
1792
+ "warning": {
1793
+ "title": "Candidate groups are not migrated",
1794
+ "message": "When migrating a process, the candidate groups of running instances are not updated. This can be done in the database if necessary. For example, if a specific user task is open for ROLE_USER and the candidate group for that user task is changed to ROLE_ADMIN in the process, the task stays accessible for ROLE_USER. Only newly started processes use the updated candidate group."
1795
+ },
1796
+ "sourceDefinition": "Source process",
1797
+ "sourceVersion": "Source version",
1798
+ "targetDefinition": "Target process",
1799
+ "targetVersion": "Target version",
1800
+ "sourceActivity": "Activity in the source version",
1801
+ "targetActivity": "Activity in the target version",
1802
+ "selectPlaceholder": "Select...",
1803
+ "migrate": "Migrate",
1804
+ "instanceCount": "{{count}} running process instance(s)",
1805
+ "success": "The process was migrated.",
1806
+ "failure": "The process could not be migrated."
1807
+ },
1793
1808
  "Case": "Case",
1794
1809
  "Cases": "Cases",
1795
1810
  "Deployment": "Version management",
@@ -2051,6 +2066,7 @@
2051
2066
  "noResults": "No results",
2052
2067
  "loading": "Loading...",
2053
2068
  "edit": "Edit",
2069
+ "view": "View",
2054
2070
  "noItemsFound": "No items found",
2055
2071
  "clearAll": "Clear all",
2056
2072
  "clear": "Clear",
@@ -3076,6 +3092,103 @@
3076
3092
  "noResults": {
3077
3093
  "description": "Click <strong>Add new form flow</strong> to start designing your form flow",
3078
3094
  "title": "No form flows added"
3095
+ },
3096
+ "tabs": {
3097
+ "editor": "Editor (beta)",
3098
+ "jsonEditor": "JSON editor"
3099
+ },
3100
+ "uiEditor": {
3101
+ "stepsTitle": "Steps",
3102
+ "startStep": "Start step",
3103
+ "stepType": "Type",
3104
+ "addStep": "Add step",
3105
+ "deleteStep": "Delete step",
3106
+ "makeStartStep": "Make start step",
3107
+ "selectForm": "Select a form",
3108
+ "selectComponent": "Select a component",
3109
+ "fieldTooltips": {
3110
+ "key": "Identifies this step. It is referenced by the start step and by transitions, so renaming it updates those references automatically.",
3111
+ "title": "Optional. Shown in the breadcrumb trail while a user walks through the form flow.",
3112
+ "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.",
3113
+ "typeNoComponents": "\"custom-component\" is unavailable because this implementation has not registered any custom components.",
3114
+ "definition": "The form of this case definition or building block that is shown for this step.",
3115
+ "componentId": "The registered Angular component that is shown for this step.",
3116
+ "targetStep": "The step the user goes to when this transition is taken.",
3117
+ "condition": "Optional SpEL expression between ${ and }. Transitions are evaluated from top to bottom; leave empty to make this the default route."
3118
+ },
3119
+ "stepDetails": "Step details",
3120
+ "title": "Title",
3121
+ "titlePlaceholder": "Shown in the breadcrumb trail",
3122
+ "keyPlaceholder": "For example personalDetailsStep",
3123
+ "duplicateKey": "This key is already used by another step",
3124
+ "required": "This field is required",
3125
+ "navigation": "Navigation",
3126
+ "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.",
3127
+ "targetStep": "Next step",
3128
+ "selectStep": "Select a step",
3129
+ "condition": "Condition",
3130
+ "conditionPlaceholder": "${step.submissionData.age >= 21} (leave empty for default)",
3131
+ "moveUp": "Move up",
3132
+ "moveDown": "Move down",
3133
+ "addTransition": "Add transition",
3134
+ "noTransitions": "No transitions — the form flow ends after this step.",
3135
+ "multipleDefaultTransitions": "Only one transition may omit its condition; that transition is the default.",
3136
+ "conditionExamplesTitle": "Conditions are Spring Expression Language (SpEL) expressions between ${ and }. They can use:",
3137
+ "conditionExampleSubmission": "values the user submitted in this step, via step.submissionData",
3138
+ "conditionExampleContext": "case and process context, via additionalProperties (the exact entries are listed below)",
3139
+ "conditionExampleDefault": "Comparison operators like ==, !=, >, >= and boolean operators like && and || are supported. A transition without a condition is the default route.",
3140
+ "additionalPropertiesTitle": "Available in additionalProperties:",
3141
+ "additionalPropertiesUserTask": "When the form flow is linked to a user task:",
3142
+ "additionalPropertiesStartEvent": "When the form flow is linked to a start event:",
3143
+ "additionalPropertiesOptional": "(if available)",
3144
+ "additionalProperties": {
3145
+ "processInstanceId": "the id of the process instance the task belongs to",
3146
+ "processInstanceBusinessKey": "the business key of that process instance",
3147
+ "taskInstanceId": "the id of the user task that opened this form flow",
3148
+ "documentId": "the id of the case, when the process belongs to one",
3149
+ "processDefinitionKey": "the key of the process definition being started",
3150
+ "documentDefinitionName": "the document definition of the new case, when starting a new case"
3151
+ },
3152
+ "actions": "Actions",
3153
+ "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.",
3154
+ "help": {
3155
+ "title": "How expressions work",
3156
+ "button": "How do expressions work?",
3157
+ "intro": "Conditions and actions are Spring Expression Language (SpEL) expressions written between ${ and }. They are evaluated on the server while the form flow runs.",
3158
+ "conditionsHeading": "Conditions",
3159
+ "actionsHeading": "Actions",
3160
+ "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.",
3161
+ "dataHeading": "Available data",
3162
+ "conditionsInlineTitle": "Conditions are expressions.",
3163
+ "conditionsInlineMessage": "For example ${step.submissionData.age >= 21}. Leave the condition empty for the default route.",
3164
+ "actionsInlineTitle": "Actions are expressions.",
3165
+ "actionsInlineMessage": "They can call registered functions and read submitted data and case context."
3166
+ },
3167
+ "onOpen": "When the step opens",
3168
+ "onOpenDescription": "Runs when the user opens this step, for example to prefill the form.",
3169
+ "onComplete": "When the step is completed",
3170
+ "onCompleteDescription": "Runs when the user submits this step, for example to store data or complete a task.",
3171
+ "onBack": "When the user navigates back",
3172
+ "onBackDescription": "Runs when the user goes back to the previous step, for example to clean up data.",
3173
+ "addExpression": "Add action",
3174
+ "blankExpression": "Blank expression",
3175
+ "noExpressions": "No actions configured.",
3176
+ "stepInvalid": "This step has configuration errors",
3177
+ "noStepsTitle": "No steps yet",
3178
+ "noStepsDescription": "Add a step to start designing this form flow.",
3179
+ "parseFailedTitle": "Cannot open the visual editor",
3180
+ "parseFailedMessage": "The definition contains invalid JSON. Fix it in the JSON editor first.",
3181
+ "properties": {
3182
+ "definition": "Form",
3183
+ "componentId": "Component ID"
3184
+ },
3185
+ "errors": {
3186
+ "title": "The definition contains errors",
3187
+ "duplicateKeys": "Duplicate step keys: {{keys}}.",
3188
+ "startStepMissing": "The start step \"{{startStep}}\" does not exist.",
3189
+ "unknownTargets": "Transitions point to unknown steps: {{targets}}.",
3190
+ "stepIncomplete": "Step \"{{step}}\" has missing or invalid fields."
3191
+ }
3079
3192
  }
3080
3193
  },
3081
3194
  "taskManagement": {
@@ -3438,6 +3551,10 @@
3438
3551
  "enableGenericCaseList": {
3439
3552
  "title": "Enable generic case list",
3440
3553
  "description": "Show a single case list view with a dropdown to switch between case definitions."
3554
+ },
3555
+ "enableManualTaskListRefresh": {
3556
+ "title": "Enable manual task list refresh",
3557
+ "description": "Show a refresh button in the task list instead of refreshing it automatically when tasks change."
3441
3558
  }
3442
3559
  }
3443
3560
  },
@@ -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": {"description": "Er zijn geen status aangemaakt voor dit dossiertype."}
1223
+ "noResultsFinalVersion": {
1224
+ "description": "Er zijn geen status aangemaakt voor dit dossiertype."
1225
+ }
1221
1226
  },
1222
1227
  "caseTags": {
1223
1228
  "searchFieldTitle": "Tags",
@@ -1780,7 +1785,8 @@
1780
1785
  "rowLocked": "Je hebt geen toegang tot deze taak",
1781
1786
  "allCases": "Alle dossiers",
1782
1787
  "noSearchResultsTitle": "Geen taken gevonden",
1783
- "noSearchResultsDescription": "Er zijn geen taken die aan je zoekcriteria voldoen."
1788
+ "noSearchResultsDescription": "Er zijn geen taken die aan je zoekcriteria voldoen.",
1789
+ "refreshTasks": "Taken verversen"
1784
1790
  },
1785
1791
  "Task": "Taak",
1786
1792
  "Tasks": "Taken",
@@ -1812,12 +1818,23 @@
1812
1818
  "Translations": "Vertalingen",
1813
1819
  "uploadFormDefinition": "Upload formulier-definitie",
1814
1820
  "Process migration": "Procesmigratie",
1815
- "Process migration warning": "<b>Let op:</b> Bij het migreren van een proces worden de candidate groups van de lopende proces instanties niet meegenomen. Dit kan gedaan worden in de database indien nodig. (Voorbeeld: wanneer een specifieke gebruikerstaak op de ROLE_USER stond en de candidate group voor deze taak is veranderd in het proces naar ROLE_ADMIN blijft de taak beschikbaar voor ROLE_USER. Enkel nieuw gestarte processen krijgen de nieuwe candidate group)",
1816
- "Source Definition": "Bron definitie",
1817
- "Source Version": "Bron versie",
1818
- "Target Definition": "Doel definitie",
1819
- "Target Version": "Doel versie",
1820
- "Choose Target": "Kies doel",
1821
+ "processMigration": {
1822
+ "warning": {
1823
+ "title": "Candidate groups worden niet gemigreerd",
1824
+ "message": "Bij het migreren van een proces worden de candidate groups van lopende procesinstanties niet bijgewerkt. Dit kan indien nodig in de database gedaan worden. Voorbeeld: staat een gebruikerstaak open voor ROLE_USER en wordt de candidate group in het proces gewijzigd naar ROLE_ADMIN, dan blijft de taak beschikbaar voor ROLE_USER. Alleen nieuw gestarte processen gebruiken de nieuwe candidate group."
1825
+ },
1826
+ "sourceDefinition": "Bronproces",
1827
+ "sourceVersion": "Bronversie",
1828
+ "targetDefinition": "Doelproces",
1829
+ "targetVersion": "Doelversie",
1830
+ "sourceActivity": "Activiteit in de bronversie",
1831
+ "targetActivity": "Activiteit in de doelversie",
1832
+ "selectPlaceholder": "Selecteer...",
1833
+ "migrate": "Migreren",
1834
+ "instanceCount": "{{count}} lopende procesinstantie(s)",
1835
+ "success": "Het proces is gemigreerd.",
1836
+ "failure": "Het proces kon niet gemigreerd worden."
1837
+ },
1821
1838
  "Case": "Dossier",
1822
1839
  "Cases": "Dossiers",
1823
1840
  "Deployment": "Versiebeheer",
@@ -2079,6 +2096,7 @@
2079
2096
  "noResults": "Geen resultaten",
2080
2097
  "loading": "Aan het laden...",
2081
2098
  "edit": "Aanpassen",
2099
+ "view": "Bekijken",
2082
2100
  "noItemsFound": "Geen items gevonden",
2083
2101
  "clearAll": "Alles wissen",
2084
2102
  "clear": "Wissen",
@@ -3109,6 +3127,103 @@
3109
3127
  "noResults": {
3110
3128
  "description": "Klik op <strong>Nieuwe form flow toevoegen</strong> om te beginnen met het ontwerpen van je form flow",
3111
3129
  "title": "Geen form flows toegevoegd"
3130
+ },
3131
+ "tabs": {
3132
+ "editor": "Editor (bèta)",
3133
+ "jsonEditor": "JSON-editor"
3134
+ },
3135
+ "uiEditor": {
3136
+ "stepsTitle": "Stappen",
3137
+ "startStep": "Startstap",
3138
+ "stepType": "Type",
3139
+ "addStep": "Stap toevoegen",
3140
+ "deleteStep": "Stap verwijderen",
3141
+ "makeStartStep": "Maak startstap",
3142
+ "selectForm": "Kies een formulier",
3143
+ "selectComponent": "Kies een component",
3144
+ "fieldTooltips": {
3145
+ "key": "Identificeert deze stap. De startstap en overgangen verwijzen ernaar; bij hernoemen worden die verwijzingen automatisch bijgewerkt.",
3146
+ "title": "Optioneel. Wordt getoond in het kruimelpad terwijl een gebruiker de form flow doorloopt.",
3147
+ "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.",
3148
+ "typeNoComponents": "\"custom-component\" is niet beschikbaar omdat deze implementatie geen custom componenten heeft geregistreerd.",
3149
+ "definition": "Het formulier van deze zaakdefinitie of building block dat voor deze stap wordt getoond.",
3150
+ "componentId": "De geregistreerde Angular-component die voor deze stap wordt getoond.",
3151
+ "targetStep": "De stap waar de gebruiker naartoe gaat wanneer deze overgang wordt gekozen.",
3152
+ "condition": "Optionele SpEL-expressie tussen ${ en }. Overgangen worden van boven naar beneden geëvalueerd; laat leeg om dit de standaardroute te maken."
3153
+ },
3154
+ "stepDetails": "Stapdetails",
3155
+ "title": "Titel",
3156
+ "titlePlaceholder": "Wordt getoond in het kruimelpad",
3157
+ "keyPlaceholder": "Bijvoorbeeld persoonsgegevensStap",
3158
+ "duplicateKey": "Deze key wordt al gebruikt door een andere stap",
3159
+ "required": "Dit veld is verplicht",
3160
+ "navigation": "Navigatie",
3161
+ "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.",
3162
+ "targetStep": "Volgende stap",
3163
+ "selectStep": "Kies een stap",
3164
+ "condition": "Conditie",
3165
+ "conditionPlaceholder": "${step.submissionData.leeftijd >= 21} (leeg = standaard)",
3166
+ "moveUp": "Omhoog",
3167
+ "moveDown": "Omlaag",
3168
+ "addTransition": "Overgang toevoegen",
3169
+ "noTransitions": "Geen overgangen — de form flow eindigt na deze stap.",
3170
+ "multipleDefaultTransitions": "Slechts één overgang mag zonder conditie zijn; die overgang is de standaard.",
3171
+ "conditionExamplesTitle": "Condities zijn Spring Expression Language (SpEL)-expressies tussen ${ en }. Ze kunnen gebruikmaken van:",
3172
+ "conditionExampleSubmission": "waarden die de gebruiker in deze stap heeft ingevuld, via step.submissionData",
3173
+ "conditionExampleContext": "zaak- en procescontext, via additionalProperties (de exacte waarden staan hieronder)",
3174
+ "conditionExampleDefault": "Vergelijkingsoperatoren zoals ==, !=, >, >= en booleaanse operatoren zoals && en || worden ondersteund. Een overgang zonder conditie is de standaardroute.",
3175
+ "additionalPropertiesTitle": "Beschikbaar in additionalProperties:",
3176
+ "additionalPropertiesUserTask": "Wanneer de form flow gekoppeld is aan een gebruikerstaak:",
3177
+ "additionalPropertiesStartEvent": "Wanneer de form flow gekoppeld is aan een startgebeurtenis:",
3178
+ "additionalPropertiesOptional": "(indien beschikbaar)",
3179
+ "additionalProperties": {
3180
+ "processInstanceId": "het id van de procesinstantie waar de taak bij hoort",
3181
+ "processInstanceBusinessKey": "de business key van die procesinstantie",
3182
+ "taskInstanceId": "het id van de gebruikerstaak die deze form flow heeft geopend",
3183
+ "documentId": "het id van de zaak, wanneer het proces bij een zaak hoort",
3184
+ "processDefinitionKey": "de key van de procesdefinitie die gestart wordt",
3185
+ "documentDefinitionName": "de documentdefinitie van de nieuwe zaak, bij het starten van een nieuwe zaak"
3186
+ },
3187
+ "actions": "Acties",
3188
+ "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.",
3189
+ "help": {
3190
+ "title": "Hoe expressies werken",
3191
+ "button": "Hoe werken expressies?",
3192
+ "intro": "Condities en acties zijn Spring Expression Language (SpEL)-expressies tussen ${ en }. Ze worden op de server geëvalueerd terwijl de form flow draait.",
3193
+ "conditionsHeading": "Condities",
3194
+ "actionsHeading": "Acties",
3195
+ "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.",
3196
+ "dataHeading": "Beschikbare gegevens",
3197
+ "conditionsInlineTitle": "Condities zijn expressies.",
3198
+ "conditionsInlineMessage": "Bijvoorbeeld ${step.submissionData.leeftijd >= 21}. Laat de conditie leeg voor de standaardroute.",
3199
+ "actionsInlineTitle": "Acties zijn expressies.",
3200
+ "actionsInlineMessage": "Ze kunnen geregistreerde functies aanroepen en ingevulde gegevens en zaakcontext lezen."
3201
+ },
3202
+ "onOpen": "Bij openen van de stap",
3203
+ "onOpenDescription": "Wordt uitgevoerd wanneer de gebruiker deze stap opent, bijvoorbeeld om het formulier vooraf in te vullen.",
3204
+ "onComplete": "Bij afronden van de stap",
3205
+ "onCompleteDescription": "Wordt uitgevoerd wanneer de gebruiker deze stap indient, bijvoorbeeld om gegevens op te slaan of een taak af te ronden.",
3206
+ "onBack": "Bij teruggaan",
3207
+ "onBackDescription": "Wordt uitgevoerd wanneer de gebruiker teruggaat naar de vorige stap, bijvoorbeeld om gegevens op te schonen.",
3208
+ "addExpression": "Actie toevoegen",
3209
+ "blankExpression": "Lege expressie",
3210
+ "noExpressions": "Geen acties geconfigureerd.",
3211
+ "stepInvalid": "Deze stap bevat configuratiefouten",
3212
+ "noStepsTitle": "Nog geen stappen",
3213
+ "noStepsDescription": "Voeg een stap toe om deze form flow te ontwerpen.",
3214
+ "parseFailedTitle": "De visuele editor kan niet worden geopend",
3215
+ "parseFailedMessage": "De definitie bevat ongeldige JSON. Herstel dit eerst in de JSON-editor.",
3216
+ "properties": {
3217
+ "definition": "Formulier",
3218
+ "componentId": "Component-ID"
3219
+ },
3220
+ "errors": {
3221
+ "title": "De definitie bevat fouten",
3222
+ "duplicateKeys": "Dubbele stap-keys: {{keys}}.",
3223
+ "startStepMissing": "De startstap \"{{startStep}}\" bestaat niet.",
3224
+ "unknownTargets": "Overgangen verwijzen naar onbekende stappen: {{targets}}.",
3225
+ "stepIncomplete": "Stap \"{{step}}\" heeft ontbrekende of ongeldige velden."
3226
+ }
3112
3227
  }
3113
3228
  },
3114
3229
  "taskManagement": {
@@ -3471,6 +3586,10 @@
3471
3586
  "enableGenericCaseList": {
3472
3587
  "title": "Generieke dossierlijst inschakelen",
3473
3588
  "description": "Toon één dossierlijstweergave met een dropdown om tussen dossierdefinities te wisselen."
3589
+ },
3590
+ "enableManualTaskListRefresh": {
3591
+ "title": "Handmatig verversen takenlijst inschakelen",
3592
+ "description": "Toon een verversknop in de takenlijst in plaats van de lijst automatisch te verversen bij wijzigingen."
3474
3593
  }
3475
3594
  }
3476
3595
  },
@@ -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.43.0',
1256
+ frontendLibraries: '13.45.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-04-28 11:17:58.
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.