New Features
- Added support of inline forms. Now, to render small forms without writing dedicated Form class, you can do the following:
<Form {...bindState(this)} validations={{ email: ['presence', 'email'], fullName: 'presence' }}>
{$ => (
<div>
<TextField {...$('email')} label="Email" />
<TextField {...$('fullName')} label="FullName" />
<button onClick={this.registerUser}>Register</button>
</div>
)}
</Form>
Minor Updates
- Extracted most of README to project's Wiki to make former more light-weight and "user-friendly"