redux-form
Advanced tools
Comparing version 1.2.0 to 1.2.1
{ | ||
"name": "redux-form", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "A higher order component generator for forms using Redux and React", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
@@ -40,3 +40,6 @@ #redux-form | ||
* [`reducer.normalize(Object<String, Function>)`](#reducerpluginobjectstring-function) | ||
* [`props`](#props) - The props passed in to your form component by `redux-form` | ||
* [`props` passed into your decorated component](#props-passed-into-your-decorated-component) - props provided by | ||
`redux-form` | ||
* [`props` you can pass into your decorated component](#props-you-can-pass-into-your-decorated-component) - extra | ||
functionality! | ||
* [Action Creators](#action-creators) - Advanced | ||
@@ -129,3 +132,3 @@ * [Working Demo](#working-demo) | ||
<input type="text" {...address}/> // will pass value, onBlur and onChange | ||
{address.error && addresss.touched ? <div>{address.error}</div>} | ||
{address.error && address.touched ? <div>{address.error}</div>} | ||
@@ -268,3 +271,3 @@ <label>Phone</label> | ||
```javascript | ||
import React, {Component, PropTypes} from 'redux-form'; | ||
import React, {Component, PropTypes} from 'react'; | ||
import {connect} from 'redux'; | ||
@@ -639,3 +642,3 @@ import {initialize} from 'redux-form'; | ||
### `props` passed in to your decorated component | ||
### `props` passed into your decorated component | ||
@@ -803,3 +806,3 @@ The props passed into your decorated component by `react-form` will be: | ||
> the name of your form and the key to where your form's state will be mounted, under the `redux-form` reducer, in the | ||
Redux store. Will overwrite any [`config.form`](#configform-string-optional) value that was passed to | ||
Redux store. Will overwrite any [`config.form`](#-configform--string-optional) value that was passed to | ||
[`connectReduxForm(config)`](#connectreduxformconfigobject). | ||
@@ -806,0 +809,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
242047
870