You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Formerly, to guarantee data immutability, form used lodash's cloneDeep method to clone attrs and then update value under potentially deep location. This was very inefficient, since usually lots of not related to update operation values were cloned. In v1.3.1 code is refactored to shallow copy only those collections that contain deeply nested value.
Code was refactored to depend only on lodash.get and lodash.set packages to minimize package.
If React's PureComponent is not defined, Form extends Component class instead. This should allow to support older versions of React.