🎉 New Features 🎉
- The argument to
initialize
can now optionally be a function that takes the current values and returns the new initial values. #199 - Added
defaultValue
andinitialValue
values toFieldConfig
, thus allowing fields to be initialized at registration time. #200 final-form/react-final-form#387 - Added
modified
flag for all fields. A field becomesmodified
the first time its value changes. Previously, withdirty
, if the user returned the value to the initial value, the form state had no evidence that the value had ever changed. This is whatmodified
provides. #201