Migration
This page describes how to update Valtimo from the previous version to the current.
FormFieldDataResolver
get
method is deprecatedScope: backend
Implement the new
get
methodAdd method
get(DataResolvingContext dataResolvingContext, String... varNames)
to your class and move the logic from the deprecatedget
to this new method. The parametersString documentDefinitionName
andUUID documentId
are moved to theDataResolvingContext
object.
New datepicker component flatpickr
Scope: frontend
If this component is included anywhere in an implementation:
Install flatpickr dependency
Run
npm install flatpickr
to 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.json
to avoid issues.
Last updated