changed version to 6.0.1

This commit is contained in:
Erik Rasmussen
2016-08-25 16:16:28 +02:00
parent 7f03469016
commit d664dc3e3d
23 changed files with 32 additions and 32 deletions

View File

@@ -4,7 +4,7 @@
<meta charSet="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Redux Form</title>
<link href="http://redux-form.com/6.0.0/bundle.css"
<link href="http://redux-form.com/6.0.1/bundle.css"
media="screen, projection"
rel="stylesheet" type="text/css"/>
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

View File

@@ -4,7 +4,7 @@
<meta charSet="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Redux Form</title>
<link href="http://redux-form.com/6.0.0/bundle.css"
<link href="http://redux-form.com/6.0.1/bundle.css"
media="screen, projection"
rel="stylesheet" type="text/css"/>
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

View File

@@ -6,7 +6,7 @@ hobbies. The following array manipulation actions are available, as raw action c
actions to your form under the `this.props.array` object, and as actions bound to both the form
and array on the object provided by the `FieldArray` component: `insert`, `pop`, `push`, `remove`,
`shift`, `swap`, and `unshift`. More detail can be found under the
[`FieldArray` docs](http://redux-form.com/6.0.0/docs/api/FieldArray.md).
[`FieldArray` docs](http://redux-form.com/6.0.1/docs/api/FieldArray.md).
Notice that array-specific errors are available if set on the array structure itself under the
`_error` key. (Hint: Add more than five hobbies to see an error.)

View File

@@ -4,7 +4,7 @@
<meta charSet="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Redux Form</title>
<link href="http://redux-form.com/6.0.0/bundle.css"
<link href="http://redux-form.com/6.0.1/bundle.css"
media="screen, projection"
rel="stylesheet" type="text/css"/>
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

View File

@@ -4,7 +4,7 @@
<meta charSet="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Redux Form</title>
<link href="http://redux-form.com/6.0.0/bundle.css"
<link href="http://redux-form.com/6.0.1/bundle.css"
media="screen, projection"
rel="stylesheet" type="text/css"/>
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

View File

@@ -4,7 +4,7 @@
<meta charSet="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Redux Form</title>
<link href="http://redux-form.com/6.0.0/bundle.css"
<link href="http://redux-form.com/6.0.1/bundle.css"
media="screen, projection"
rel="stylesheet" type="text/css"/>
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

View File

@@ -8,7 +8,7 @@ component as custom component.
For controls like `SelectField` we need to simulate the `onChange` manually. As props
have been exposed in `redux-form` you can fire `onChange` manually.
Read more [here](http://redux-form.com/6.0.0/docs/api/Field.md/#usage).
Read more [here](http://redux-form.com/6.0.1/docs/api/Field.md/#usage).
The delay between when you click "Submit" and when the alert dialog pops up is intentional,
to simulate server latency.

View File

@@ -4,7 +4,7 @@
<meta charSet="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Redux Form</title>
<link href="http://redux-form.com/6.0.0/bundle.css"
<link href="http://redux-form.com/6.0.1/bundle.css"
media="screen, projection"
rel="stylesheet" type="text/css"/>
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

View File

@@ -5,7 +5,7 @@
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Redux Form</title>
<link href="http://redux-form.com/6.0.0/bundle.css"
<link href="http://redux-form.com/6.0.1/bundle.css"
media="screen, projection"
rel="stylesheet" type="text/css"/>
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

View File

@@ -4,7 +4,7 @@
<meta charSet="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Redux Form</title>
<link href="http://redux-form.com/6.0.0/bundle.css"
<link href="http://redux-form.com/6.0.1/bundle.css"
media="screen, projection"
rel="stylesheet" type="text/css"/>
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

View File

@@ -4,7 +4,7 @@ There may be times when, in your form component, you would like to have access t
some of the fields in your form. To get them, you will need to `connect()` directly to the form
values in the Redux store. To facilitate this common use case, `redux-form` provides a convenient
selector via the
[`formValueSelector`](http://redux-form.com/6.0.0/docs/api/FormValueSelector.md/)
[`formValueSelector`](http://redux-form.com/6.0.1/docs/api/FormValueSelector.md/)
API.
**WARNING**: Use this method sparingly, as it will cause your _entire_ form to re-render every

View File

@@ -4,7 +4,7 @@
<meta charSet="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Redux Form</title>
<link href="http://redux-form.com/6.0.0/bundle.css"
<link href="http://redux-form.com/6.0.1/bundle.css"
media="screen, projection"
rel="stylesheet" type="text/css"/>
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

View File

@@ -4,7 +4,7 @@
<meta charSet="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Redux Form</title>
<link href="http://redux-form.com/6.0.0/bundle.css"
<link href="http://redux-form.com/6.0.1/bundle.css"
media="screen, projection"
rel="stylesheet" type="text/css"/>
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

View File

@@ -4,7 +4,7 @@
<meta charSet="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Redux Form</title>
<link href="http://redux-form.com/6.0.0/bundle.css"
<link href="http://redux-form.com/6.0.1/bundle.css"
media="screen, projection"
rel="stylesheet" type="text/css"/>
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

View File

@@ -4,7 +4,7 @@
<meta charSet="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Redux Form</title>
<link href="http://redux-form.com/6.0.0/bundle.css"
<link href="http://redux-form.com/6.0.1/bundle.css"
media="screen, projection"
rel="stylesheet" type="text/css"/>
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"