Skip to content

0.12.0

Compare
Choose a tag to compare
@christianalfoni christianalfoni released this 14 Apr 17:02
· 209 commits to master since this release
  • Important! From version 0.12.0 Formsy only supports React 0.13.1 and up
  • Fixed warning of overrided props. Formsy now uses a cloning method (Thanks for tip @jmartin84) to handle passing Formsy props, but this will change to parent-child context in React 0.14.0, which gives better performance
  • Validations "isEmail", "isAlpha", "isWords" and "isSpecialWords" now validates to true when not having a value. Use "required" to invalidate a "non-value" (Thanks for pointing this out @dprentis)
  • Cleaned up some code
  • By default "novalidate" is added to form to avoid native validation. You can change this with <Formsy.Form novalidate={false}/> (Thanks for suggestion @dprentis)