Releases: christianalfoni/formsy-react
Releases · christianalfoni/formsy-react
0.19.5
0.19.4
0.19.3
Release v0.19.0
- Feature: Expose inner element when using HOC (#399)
Release 0.18.1
- Using better names for components wrapped into HOC #357 (Thanks @wizardzloy)
- Fixed: Maximum call stack exception when recreating custom validate function #298 (Thanks @jamedranoa)
- Fixed: Unknown props
onValidSubmit
,onSubmitted
on tag #361 (Thanks @philwhln) - Fixed: Cannot reset value unless truthy #285 (Thanks @dsteinbach)
- Fixed: uncontrollable/controllable components warnings in examples
Release 0.18.0
- React 15.0.0 as peer dependency
- Added getModel()
- Added updateInputsWithError(errors)
- Fixed: multiple on change #258 (Thanks @sdemjanenko )
- Fixed: onValidationComplete sometimes errors when inputs are removed #267
- Fixed: Prevent multiple rendering with PureRenderMixin #252 (Thanks @neoziro )
- Fixed: Form.validationErrors disables input validation #239 (Thanks @easyrider)
- Removed babelify transform (Thanks @neoziro )
Release 0.17.0
- React 0.14 as dependency
- Fixed package.json pointing to wrong folder
- Fixed passing props on HOCs
Version 0.16.0
getErrorMessages()
gives all registered errorsrequired
and 'validations' can now be changed at runtime- You can now use application/x-www-form-urlencoded style on naming your elements (contacts[0][name]) and it will be converted to plain JS object (See readme for more details)
- Elements no longer needs to have the same owner as the form element, nest and wrap as much as you want
- Added Higher Order Component and Decorator to define Formsy Elements
- Other smaller fixes, thanks to our little community :-)
- Refactored and cleaned all tests to Nodeunit. No more tests sharing variables etc... I deserve lots of 🍺
Release 0.15.0
BETA RELEASE
Release 0.14.1
- Reverted passing of all props to form as it conflicted with some native props, still allows "autoComplete" to be passed though