Skip to content

Commit c3aa263

Browse files
committed
6.4.1
1 parent c408d07 commit c3aa263

File tree

43 files changed

+66
-65
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+66
-65
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020

2121
## Documentation
2222

23-
* [Getting Started](https://redux-form.com/6.4.0/docs/GettingStarted.md/)
24-
* [Examples](https://redux-form.com/6.4.0/examples/)
25-
* [API](https://redux-form.com/6.4.0/docs/api/)
26-
* [FAQ](https://redux-form.com/6.4.0/docs/faq/)
23+
* [Getting Started](https://redux-form.com/6.4.1/docs/GettingStarted.md/)
24+
* [Examples](https://redux-form.com/6.4.1/examples/)
25+
* [API](https://redux-form.com/6.4.1/docs/api/)
26+
* [FAQ](https://redux-form.com/6.4.1/docs/faq/)
2727
* [Release Notes](https://github.com/erikras/redux-form/releases)
28-
* [Older Documentation](https://redux-form.com/6.4.0/docs/DocumentationVersions.md/)
28+
* [Older Documentation](https://redux-form.com/6.4.1/docs/DocumentationVersions.md/)
2929

3030
## Videos
3131

docs/DocumentationVersions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Documentation Versions
22

3+
* [6.4.1](https://redux-form.com/6.4.1/)
34
* [6.4.0](https://redux-form.com/6.4.0/)
45
* [6.3.1](https://redux-form.com/6.3.1/)
56
* [6.3.0](https://redux-form.com/6.3.0/)

docs/GettingStarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,4 @@ class ContactPage extends React.Component {
9999

100100
If you're starting out with `redux-form`, a good place to continue learning about how to connect
101101
up the inputs to `redux-form` would be the
102-
[Simple Form Example](https://redux-form.com/6.4.0/examples/simple).
102+
[Simple Form Example](https://redux-form.com/6.4.1/examples/simple).

docs/MigrationGuide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,8 @@ const upper = value => value && value.toUpperCase()
306306
<Field name="myUppercaseField" component="input" normalize={upper}/>
307307
```
308308

309-
See the [Normalizing Example](https://redux-form.com/6.4.0/examples/normalizing/) and
310-
[Value Lifecycle](https://redux-form.com/6.4.0/docs/ValueLifecycle.md/) for
309+
See the [Normalizing Example](https://redux-form.com/6.4.1/examples/normalizing/) and
310+
[Value Lifecycle](https://redux-form.com/6.4.1/docs/ValueLifecycle.md/) for
311311
more details.
312312

313313
## Listening to other actions

docs/api/Fields.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ For example, if your `names` are `[ 'name.first', 'name.last', 'email' ]`, the `
148148
## Props
149149

150150
The props that `Fields` will pass to your component are [the same `input` and `meta` structures
151-
that `Field` generates](https://redux-form.com/6.4.0/docs/api/Field.md/#props), except that
151+
that `Field` generates](https://redux-form.com/6.4.1/docs/api/Field.md/#props), except that
152152
they are broken up into the structure of the fields you gave as `names`.
153153

154154
Any additional props that you pass to `Field` will be included at the root of the props structure

docs/api/Form.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ It is only useful if you are:
99
`onSubmit={this.props.handleSubmit(this.mySubmitFunction)}` to your `<form>`
1010
component
1111
- **AND EITHER:**
12-
- initiating your submission via the [`submit()` Instance API](http://redux-form.com/6.4.0/docs/api/ReduxForm.md/#-submit-promise-) (i.e. calling it directly on a reference to your decorated form component)
13-
- initiating your submission by [dispatching the `submit(form)` action](http://redux-form.com/6.4.0/examples/remoteSubmit/)
12+
- initiating your submission via the [`submit()` Instance API](http://redux-form.com/6.4.1/docs/api/ReduxForm.md/#-submit-promise-) (i.e. calling it directly on a reference to your decorated form component)
13+
- initiating your submission by [dispatching the `submit(form)` action](http://redux-form.com/6.4.1/examples/remoteSubmit/)
1414

1515
If you are passing in your `onSubmit` function as a config parameter or prop, this component will do nothing for you.
1616

docs/api/FormValueSelector.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { formValueSelector } from 'redux-form'; // ES6
1919
### `form : String` [required]
2020

2121
> The name of the form you are connecting to. Must be the same as the `form` config value you
22-
gave to [`reduxForm()`](https://redux-form.com/6.4.0/docs/api/ReduxForm.md/).
22+
gave to [`reduxForm()`](https://redux-form.com/6.4.1/docs/api/ReduxForm.md/).
2323

2424
### `getFormState : Function` [optional]
2525

@@ -105,4 +105,4 @@ connect(
105105
## Example
106106

107107
See the
108-
[Selecting Form Values](https://redux-form.com/6.4.0/examples/selectingFormValues/) example.
108+
[Selecting Form Values](https://redux-form.com/6.4.1/examples/selectingFormValues/) example.

docs/api/Props.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
> The `props` listed on this page are the `props` that `redux-form` generates to give
66
to your decorated form component. The `props` that _you pass into your wrapped component_ are
7-
listed [here](https://redux-form.com/6.4.0/docs/api/ReduxForm.md/).
7+
listed [here](https://redux-form.com/6.4.1/docs/api/ReduxForm.md/).
88

99
> If you are a strict `PropTypes` completionist, `redux-form` exports all of these
1010
[`propTypes`](https://github.com/erikras/redux-form/blob/master/src/propTypes.js),

docs/api/ReduxForm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ or passed in as props to your component at runtime.**
3333
> field names for which `onBlur` should trigger a call to the `asyncValidate` function.
3434
Defaults to `[]`.
3535

36-
> See [Asynchronous Blur Validation Example](https://redux-form.com/6.4.0/examples/asyncValidation/)
36+
> See [Asynchronous Blur Validation Example](https://redux-form.com/6.4.1/examples/asyncValidation/)
3737
for more details.
3838

3939
#### `asyncValidate : (values:Object, dispatch:Function, props:Object, blurredField:String) => Promise<undefined, errors:Object>` [optional]
@@ -44,7 +44,7 @@ returns a Promise that will resolve if the validation is passed, or will reject
4444
object of validation errors
4545
in the form `{ field1: <String>, field2: <String> }`.
4646

47-
> See [Asynchronous Blur Validation Example](https://redux-form.com/6.4.0/examples/asyncValidation/)
47+
> See [Asynchronous Blur Validation Example](https://redux-form.com/6.4.1/examples/asyncValidation/)
4848
for more details.
4949

5050
#### `destroyOnUnmount : boolean` [optional]
@@ -249,7 +249,7 @@ form has triggered it, respectively.
249249
If validation passes, it should return `{}`. If validation fails, it should return the validation errors in the
250250
form `{ field1: <String>, field2: <String> }`. Defaults to `(values, props) => ({})`.
251251

252-
> See [Synchronous Validation Example](https://redux-form.com/6.4.0/examples/syncValidation/)
252+
> See [Synchronous Validation Example](https://redux-form.com/6.4.1/examples/syncValidation/)
253253
for more details.
254254

255255
#### `warn : (values:Object, props:Object) => warnings:Object` [optional]

examples/asyncValidation/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charSet="utf-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
66
<title>Redux Form</title>
7-
<link href="https://redux-form.com/6.4.0/bundle.css"
7+
<link href="https://redux-form.com/6.4.1/bundle.css"
88
media="screen, projection"
99
rel="stylesheet" type="text/css"/>
1010
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

examples/asyncValidation/src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ let render = () => {
3333
* This <App/> component only provides the site wrapper.
3434
* Remove it on your dev server if you wish. It will not affect the functionality.
3535
*/
36-
version="6.4.0"
36+
version="6.4.1"
3737
path="/examples/asyncValidation"
38-
breadcrumbs={generateExampleBreadcrumbs('asyncValidation', 'Async Validation Example', '6.4.0')}>
38+
breadcrumbs={generateExampleBreadcrumbs('asyncValidation', 'Async Validation Example', '6.4.1')}>
3939

4040
<Markdown content={readme}/>
4141

examples/fieldArrays/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charSet="utf-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
66
<title>Redux Form</title>
7-
<link href="https://redux-form.com/6.4.0/bundle.css"
7+
<link href="https://redux-form.com/6.4.1/bundle.css"
88
media="screen, projection"
99
rel="stylesheet" type="text/css"/>
1010
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

examples/fieldArrays/src/FieldArrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ hobbies. The following array manipulation actions are available, as raw action c
66
actions to your form under the `this.props.array` object, and as actions bound to both the form
77
and array on the object provided by the `FieldArray` component: `insert`, `pop`, `push`, `remove`,
88
`shift`, `swap`, and `unshift`. More detail can be found under the
9-
[`FieldArray` docs](https://redux-form.com/6.4.0/docs/api/FieldArray.md).
9+
[`FieldArray` docs](https://redux-form.com/6.4.1/docs/api/FieldArray.md).
1010

1111
Notice that array-specific errors are available if set on the array structure itself under the
1212
`_error` key. (Hint: Add more than five hobbies to see an error.)

examples/fieldArrays/src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ let render = () => {
3232
* This <App/> component only provides the site wrapper.
3333
* Remove it on your dev server if you wish. It will not affect the functionality.
3434
*/
35-
version="6.4.0"
35+
version="6.4.1"
3636
path="/examples/fieldArrays"
3737
breadcrumbs={generateExampleBreadcrumbs('syncValidation',
38-
'Field Arrays Example', '6.4.0')}>
38+
'Field Arrays Example', '6.4.1')}>
3939

4040
<Markdown content={readme}/>
4141

examples/fieldLevelValidation/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charSet="utf-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
66
<title>Redux Form</title>
7-
<link href="https://redux-form.com/6.4.0/bundle.css"
7+
<link href="https://redux-form.com/6.4.1/bundle.css"
88
media="screen, projection"
99
rel="stylesheet" type="text/css"/>
1010
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

examples/fieldLevelValidation/src/FieldLevelValidation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Field-Level Validation Example
22

33
As well as allowing you to provide a validation function to validate all the values in your form
4-
at once, see [Synchronous Validation Example](http://redux-form.com/6.4.0/examples/syncValidation/),
4+
at once, see [Synchronous Validation Example](http://redux-form.com/6.4.1/examples/syncValidation/),
55
you may also provide individual value validation functions for each `Field` or `FieldArray`.
66

77
The parameters to the validation function are:

examples/fieldLevelValidation/src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ let render = () => {
3131
* This <App/> component only provides the site wrapper.
3232
* Remove it on your dev server if you wish. It will not affect the functionality.
3333
*/
34-
version="6.4.0"
34+
version="6.4.1"
3535
path="/examples/fieldLevelValidation"
3636
breadcrumbs={generateExampleBreadcrumbs('fieldLevelValidation',
37-
'Field-Level Validation Example', '6.4.0')}>
37+
'Field-Level Validation Example', '6.4.1')}>
3838

3939
<Markdown content={readme}/>
4040

examples/immutable/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charSet="utf-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
66
<title>Redux Form</title>
7-
<link href="https://redux-form.com/6.4.0/bundle.css"
7+
<link href="https://redux-form.com/6.4.1/bundle.css"
88
media="screen, projection"
99
rel="stylesheet" type="text/css"/>
1010
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

examples/immutable/src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ let render = () => {
3131
* This <App/> component only provides the site wrapper.
3232
* Remove it on your dev server if you wish. It will not affect the functionality.
3333
*/
34-
version="6.4.0"
34+
version="6.4.1"
3535
path="/examples/immutable"
36-
breadcrumbs={generateExampleBreadcrumbs('immutable', 'Immutable JS Example', '6.4.0')}>
36+
breadcrumbs={generateExampleBreadcrumbs('immutable', 'Immutable JS Example', '6.4.1')}>
3737

3838
<Markdown content={readme}/>
3939

examples/initializeFromState/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charSet="utf-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
66
<title>Redux Form</title>
7-
<link href="https://redux-form.com/6.4.0/bundle.css"
7+
<link href="https://redux-form.com/6.4.1/bundle.css"
88
media="screen, projection"
99
rel="stylesheet" type="text/css"/>
1010
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

examples/initializeFromState/src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ let render = () => {
3535
* This <App/> component only provides the site wrapper.
3636
* Remove it on your dev server if you wish. It will not affect the functionality.
3737
*/
38-
version="6.4.0"
38+
version="6.4.1"
3939
path="/examples/initializeFromState"
40-
breadcrumbs={generateExampleBreadcrumbs('initializeFromState', 'Initialize From State Example', '6.4.0')}>
40+
breadcrumbs={generateExampleBreadcrumbs('initializeFromState', 'Initialize From State Example', '6.4.1')}>
4141

4242
<Markdown content={readme}/>
4343

examples/material-ui/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charSet="utf-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
66
<title>Redux Form</title>
7-
<link href="https://redux-form.com/6.4.0/bundle.css"
7+
<link href="https://redux-form.com/6.4.1/bundle.css"
88
media="screen, projection"
99
rel="stylesheet" type="text/css"/>
1010
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

examples/material-ui/src/MaterialUi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ component as custom component.
88

99
For controls like `SelectField` we need to simulate the `onChange` manually. As props
1010
have been exposed in `redux-form` you can fire `onChange` manually.
11-
Read more [here](https://redux-form.com/6.4.0/docs/api/Field.md/#usage).
11+
Read more [here](https://redux-form.com/6.4.1/docs/api/Field.md/#usage).
1212

1313
The delay between when you click "Submit" and when the alert dialog pops up is intentional,
1414
to simulate server latency.

examples/material-ui/src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ let render = () => {
4242
* This <App/> component only provides the site wrapper.
4343
* Remove it on your dev server if you wish. It will not affect the functionality.
4444
*/
45-
version="6.4.0"
45+
version="6.4.1"
4646
path="/examples/material-ui/"
47-
breadcrumbs={generateExampleBreadcrumbs('material-ui', 'Material Ui Form Example', '6.4.0')}>
47+
breadcrumbs={generateExampleBreadcrumbs('material-ui', 'Material Ui Form Example', '6.4.1')}>
4848

4949
<Markdown content={readme}/>
5050

examples/normalizing/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charSet="utf-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
66
<title>Redux Form</title>
7-
<link href="https://redux-form.com/6.4.0/bundle.css"
7+
<link href="https://redux-form.com/6.4.1/bundle.css"
88
media="screen, projection"
99
rel="stylesheet" type="text/css"/>
1010
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

examples/normalizing/src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ let render = () => {
3232
* This <App/> component only provides the site wrapper.
3333
* Remove it on your dev server if you wish. It will not affect the functionality.
3434
*/
35-
version="6.4.0"
35+
version="6.4.1"
3636
path="/examples/normalizing"
3737
breadcrumbs={generateExampleBreadcrumbs('normalizing',
38-
'Field Normalizing Example', '6.4.0')}>
38+
'Field Normalizing Example', '6.4.1')}>
3939

4040
<Markdown content={readme}/>
4141

examples/react-widgets/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta name="viewport"
66
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
77
<title>Redux Form</title>
8-
<link href="https://redux-form.com/6.4.0/bundle.css"
8+
<link href="https://redux-form.com/6.4.1/bundle.css"
99
media="screen, projection"
1010
rel="stylesheet" type="text/css"/>
1111
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

examples/react-widgets/src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ let render = () => {
3838
* This <App/> component only provides the site wrapper.
3939
* Remove it on your dev server if you wish. It will not affect the functionality.
4040
*/
41-
version="6.4.0"
41+
version="6.4.1"
4242
path="/examples/react-widgets/"
43-
breadcrumbs={generateExampleBreadcrumbs('react-widgets', 'React Widgets Form Example', '6.4.0')}>
43+
breadcrumbs={generateExampleBreadcrumbs('react-widgets', 'React Widgets Form Example', '6.4.1')}>
4444

4545
<Markdown content={readme}/>
4646

examples/remoteSubmit/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charSet="utf-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
66
<title>Redux Form</title>
7-
<link href="https://redux-form.com/6.4.0/bundle.css"
7+
<link href="https://redux-form.com/6.4.1/bundle.css"
88
media="screen, projection"
99
rel="stylesheet" type="text/css"/>
1010
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

examples/remoteSubmit/src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ let render = () => {
2626
* This <App/> component only provides the site wrapper.
2727
* Remove it on your dev server if you wish. It will not affect the functionality.
2828
*/
29-
version="6.4.0"
29+
version="6.4.1"
3030
path="/examples/remoteSubmit"
31-
breadcrumbs={generateExampleBreadcrumbs('remoteSubmit', 'Remote Submit Example', '6.4.0')}>
31+
breadcrumbs={generateExampleBreadcrumbs('remoteSubmit', 'Remote Submit Example', '6.4.1')}>
3232

3333
<Markdown content={readme}/>
3434

examples/selectingFormValues/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charSet="utf-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
66
<title>Redux Form</title>
7-
<link href="https://redux-form.com/6.4.0/bundle.css"
7+
<link href="https://redux-form.com/6.4.1/bundle.css"
88
media="screen, projection"
99
rel="stylesheet" type="text/css"/>
1010
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

examples/selectingFormValues/src/SelectingFormValues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ There may be times when, in your form component, you would like to have access t
44
some of the fields in your form. To get them, you will need to `connect()` directly to the form
55
values in the Redux store. To facilitate this common use case, `redux-form` provides a convenient
66
selector via the
7-
[`formValueSelector`](https://redux-form.com/6.4.0/docs/api/FormValueSelector.md/)
7+
[`formValueSelector`](https://redux-form.com/6.4.1/docs/api/FormValueSelector.md/)
88
API.
99

1010
**WARNING**: Use this method sparingly, as it will cause your _entire_ form to re-render every

examples/selectingFormValues/src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ let render = () => {
3737
* This <App/> component only provides the site wrapper.
3838
* Remove it on your dev server if you wish. It will not affect the functionality.
3939
*/
40-
version="6.4.0"
40+
version="6.4.1"
4141
path="/examples/selectingFormValues"
4242
breadcrumbs={generateExampleBreadcrumbs('selectingFormValues',
4343
'Selecting Form Values Example',
44-
'6.4.0')}>
44+
'6.4.1')}>
4545

4646
<Markdown content={readme}/>
4747

examples/simple/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charSet="utf-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
66
<title>Redux Form</title>
7-
<link href="https://redux-form.com/6.4.0/bundle.css"
7+
<link href="https://redux-form.com/6.4.1/bundle.css"
88
media="screen, projection"
99
rel="stylesheet" type="text/css"/>
1010
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

examples/simple/src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ let render = () => {
3131
* This <App/> component only provides the site wrapper.
3232
* Remove it on your dev server if you wish. It will not affect the functionality.
3333
*/
34-
version="6.4.0"
34+
version="6.4.1"
3535
path="/examples/simple"
36-
breadcrumbs={generateExampleBreadcrumbs('simple', 'Simple Form Example', '6.4.0')}>
36+
breadcrumbs={generateExampleBreadcrumbs('simple', 'Simple Form Example', '6.4.1')}>
3737

3838
<Markdown content={readme}/>
3939

examples/submitValidation/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charSet="utf-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
66
<title>Redux Form</title>
7-
<link href="https://redux-form.com/6.4.0/bundle.css"
7+
<link href="https://redux-form.com/6.4.1/bundle.css"
88
media="screen, projection"
99
rel="stylesheet" type="text/css"/>
1010
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"

0 commit comments

Comments
 (0)