Migration
This page describes how to update Valtimo from the previous version to the current.
FormFieldDataResolver
getmethod is deprecatedScope: backend
Implement the new
getmethodAdd method
get(DataResolvingContext dataResolvingContext, String... varNames)to your class and move the logic from the deprecatedgetto this new method. The parametersString documentDefinitionNameandUUID documentIdare moved to theDataResolvingContextobject.
New datepicker component flatpickr
Scope: frontend
If this component is included anywhere in an implementation:
Install flatpickr dependency
Run
npm install flatpickrto install the dependency.When upgrading to Valtimo frontend libraries 5.12.0 this is no longer necessary as the dependency is included in the libraries.
Add style to angular.json
Add
"node_modules/flatpickr/dist/flatpickr.css"to the styles array inangular.jsonto avoid issues.
Last updated