Skip to content

Commit

Permalink
6.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
erikras committed Dec 8, 2016
1 parent c4dfa70 commit 2e7d4ab
Show file tree
Hide file tree
Showing 42 changed files with 69 additions and 68 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@

## Documentation

* [Getting Started](https://redux-form.com/6.3.0/docs/GettingStarted.md/)
* [Examples](https://redux-form.com/6.3.0/examples/)
* [API](https://redux-form.com/6.3.0/docs/api/)
* [FAQ](https://redux-form.com/6.3.0/docs/faq/)
* [Getting Started](https://redux-form.com/6.3.1/docs/GettingStarted.md/)
* [Examples](https://redux-form.com/6.3.1/examples/)
* [API](https://redux-form.com/6.3.1/docs/api/)
* [FAQ](https://redux-form.com/6.3.1/docs/faq/)
* [Release Notes](https://github.com/erikras/redux-form/releases)
* [Older Documentation](https://redux-form.com/6.3.0/docs/DocumentationVersions.md/)
* [Older Documentation](https://redux-form.com/6.3.1/docs/DocumentationVersions.md/)

## Videos

Expand Down
1 change: 1 addition & 0 deletions docs/DocumentationVersions.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Documentation Versions

* [6.3.1](https://redux-form.com/6.3.1/)
* [6.3.0](https://redux-form.com/6.3.0/)
* [6.2.1](https://redux-form.com/6.2.1/)
* [6.2.0](https://redux-form.com/6.2.0/)
Expand Down
2 changes: 1 addition & 1 deletion docs/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,4 @@ class ContactPage extends React.Component {

If you're starting out with `redux-form`, a good place to continue learning about how to connect
up the inputs to `redux-form` would be the
[Simple Form Example](https://redux-form.com/6.3.0/examples/simple).
[Simple Form Example](https://redux-form.com/6.3.1/examples/simple).
4 changes: 2 additions & 2 deletions docs/MigrationGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,8 @@ const upper = value => value && value.toUpperCase()
<Field name="myUppercaseField" component="input" normalize={upper}/>
```

See the [Normalizing Example](https://redux-form.com/6.3.0/examples/normalizing/) and
[Value Lifecycle](https://redux-form.com/6.3.0/docs/ValueLifecycle.md/) for
See the [Normalizing Example](https://redux-form.com/6.3.1/examples/normalizing/) and
[Value Lifecycle](https://redux-form.com/6.3.1/docs/ValueLifecycle.md/) for
more details.

## Listening to other actions
Expand Down
2 changes: 1 addition & 1 deletion docs/api/Fields.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ For example, if your `names` are `[ 'name.first', 'name.last', 'email' ]`, the `
## Props

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

Any additional props that you pass to `Field` will be included at the root of the props structure
Expand Down
4 changes: 2 additions & 2 deletions docs/api/FormValueSelector.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { formValueSelector } from 'redux-form'; // ES6
### `form : String` [required]

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

### `getFormState : Function` [optional]

Expand Down Expand Up @@ -105,4 +105,4 @@ connect(
## Example

See the
[Selecting Form Values](https://redux-form.com/6.3.0/examples/selectingFormValues/) example.
[Selecting Form Values](https://redux-form.com/6.3.1/examples/selectingFormValues/) example.
2 changes: 1 addition & 1 deletion docs/api/Props.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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

> If you are a strict `PropTypes` completionist, `redux-form` exports all of these
[`propTypes`](https://github.com/erikras/redux-form/blob/master/src/propTypes.js),
Expand Down
6 changes: 3 additions & 3 deletions docs/api/ReduxForm.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ or passed in as props to your component at runtime.**
> field names for which `onBlur` should trigger a call to the `asyncValidate` function.
Defaults to `[]`.

> See [Asynchronous Blur Validation Example](https://redux-form.com/6.3.0/examples/asyncValidation/)
> See [Asynchronous Blur Validation Example](https://redux-form.com/6.3.1/examples/asyncValidation/)
for more details.

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

> See [Asynchronous Blur Validation Example](https://redux-form.com/6.3.0/examples/asyncValidation/)
> See [Asynchronous Blur Validation Example](https://redux-form.com/6.3.1/examples/asyncValidation/)
for more details.

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

> See [Synchronous Validation Example](https://redux-form.com/6.3.0/examples/syncValidation/)
> See [Synchronous Validation Example](https://redux-form.com/6.3.1/examples/syncValidation/)
for more details.

#### `warn : (values:Object, props:Object) => warnings:Object` [optional]
Expand Down
2 changes: 1 addition & 1 deletion examples/asyncValidation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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="https://redux-form.com/6.3.0/bundle.css"
<link href="https://redux-form.com/6.3.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"
Expand Down
4 changes: 2 additions & 2 deletions examples/asyncValidation/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ let render = () => {
* This <App/> component only provides the site wrapper.
* Remove it on your dev server if you wish. It will not affect the functionality.
*/
version="6.3.0"
version="6.3.1"
path="/examples/asyncValidation"
breadcrumbs={generateExampleBreadcrumbs('asyncValidation', 'Async Validation Example', '6.3.0')}>
breadcrumbs={generateExampleBreadcrumbs('asyncValidation', 'Async Validation Example', '6.3.1')}>

<Markdown content={readme}/>

Expand Down
2 changes: 1 addition & 1 deletion examples/fieldArrays/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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="https://redux-form.com/6.3.0/bundle.css"
<link href="https://redux-form.com/6.3.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"
Expand Down
2 changes: 1 addition & 1 deletion examples/fieldArrays/src/FieldArrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -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](https://redux-form.com/6.3.0/docs/api/FieldArray.md).
[`FieldArray` docs](https://redux-form.com/6.3.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.)
Expand Down
4 changes: 2 additions & 2 deletions examples/fieldArrays/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ let render = () => {
* This <App/> component only provides the site wrapper.
* Remove it on your dev server if you wish. It will not affect the functionality.
*/
version="6.3.0"
version="6.3.1"
path="/examples/fieldArrays"
breadcrumbs={generateExampleBreadcrumbs('syncValidation',
'Field Arrays Example', '6.3.0')}>
'Field Arrays Example', '6.3.1')}>

<Markdown content={readme}/>

Expand Down
2 changes: 1 addition & 1 deletion examples/fieldLevelValidation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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="https://redux-form.com/6.3.0/bundle.css"
<link href="https://redux-form.com/6.3.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"
Expand Down
2 changes: 1 addition & 1 deletion examples/fieldLevelValidation/src/FieldLevelValidation.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Field-Level Validation Example

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

The parameters to the validation function are:
Expand Down
4 changes: 2 additions & 2 deletions examples/fieldLevelValidation/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ let render = () => {
* This <App/> component only provides the site wrapper.
* Remove it on your dev server if you wish. It will not affect the functionality.
*/
version="6.3.0"
version="6.3.1"
path="/examples/fieldLevelValidation"
breadcrumbs={generateExampleBreadcrumbs('fieldLevelValidation',
'Field-Level Validation Example', '6.3.0')}>
'Field-Level Validation Example', '6.3.1')}>

<Markdown content={readme}/>

Expand Down
2 changes: 1 addition & 1 deletion examples/immutable/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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="https://redux-form.com/6.3.0/bundle.css"
<link href="https://redux-form.com/6.3.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"
Expand Down
4 changes: 2 additions & 2 deletions examples/immutable/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ let render = () => {
* This <App/> component only provides the site wrapper.
* Remove it on your dev server if you wish. It will not affect the functionality.
*/
version="6.3.0"
version="6.3.1"
path="/examples/immutable"
breadcrumbs={generateExampleBreadcrumbs('immutable', 'Immutable JS Example', '6.3.0')}>
breadcrumbs={generateExampleBreadcrumbs('immutable', 'Immutable JS Example', '6.3.1')}>

<Markdown content={readme}/>

Expand Down
2 changes: 1 addition & 1 deletion examples/initializeFromState/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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="https://redux-form.com/6.3.0/bundle.css"
<link href="https://redux-form.com/6.3.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"
Expand Down
4 changes: 2 additions & 2 deletions examples/initializeFromState/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ let render = () => {
* This <App/> component only provides the site wrapper.
* Remove it on your dev server if you wish. It will not affect the functionality.
*/
version="6.3.0"
version="6.3.1"
path="/examples/initializeFromState"
breadcrumbs={generateExampleBreadcrumbs('initializeFromState', 'Initialize From State Example', '6.3.0')}>
breadcrumbs={generateExampleBreadcrumbs('initializeFromState', 'Initialize From State Example', '6.3.1')}>

<Markdown content={readme}/>

Expand Down
2 changes: 1 addition & 1 deletion examples/material-ui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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="https://redux-form.com/6.3.0/bundle.css"
<link href="https://redux-form.com/6.3.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"
Expand Down
2 changes: 1 addition & 1 deletion examples/material-ui/src/MaterialUi.md
Original file line number Diff line number Diff line change
Expand Up @@ -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](https://redux-form.com/6.3.0/docs/api/Field.md/#usage).
Read more [here](https://redux-form.com/6.3.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.
Expand Down
4 changes: 2 additions & 2 deletions examples/material-ui/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ let render = () => {
* This <App/> component only provides the site wrapper.
* Remove it on your dev server if you wish. It will not affect the functionality.
*/
version="6.3.0"
version="6.3.1"
path="/examples/material-ui/"
breadcrumbs={generateExampleBreadcrumbs('material-ui', 'Material Ui Form Example', '6.3.0')}>
breadcrumbs={generateExampleBreadcrumbs('material-ui', 'Material Ui Form Example', '6.3.1')}>

<Markdown content={readme}/>

Expand Down
2 changes: 1 addition & 1 deletion examples/normalizing/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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="https://redux-form.com/6.3.0/bundle.css"
<link href="https://redux-form.com/6.3.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"
Expand Down
4 changes: 2 additions & 2 deletions examples/normalizing/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ let render = () => {
* This <App/> component only provides the site wrapper.
* Remove it on your dev server if you wish. It will not affect the functionality.
*/
version="6.3.0"
version="6.3.1"
path="/examples/normalizing"
breadcrumbs={generateExampleBreadcrumbs('normalizing',
'Field Normalizing Example', '6.3.0')}>
'Field Normalizing Example', '6.3.1')}>

<Markdown content={readme}/>

Expand Down
2 changes: 1 addition & 1 deletion examples/react-widgets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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="https://redux-form.com/6.3.0/bundle.css"
<link href="https://redux-form.com/6.3.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"
Expand Down
4 changes: 2 additions & 2 deletions examples/react-widgets/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ let render = () => {
* This <App/> component only provides the site wrapper.
* Remove it on your dev server if you wish. It will not affect the functionality.
*/
version="6.3.0"
version="6.3.1"
path="/examples/react-widgets/"
breadcrumbs={generateExampleBreadcrumbs('react-widgets', 'React Widgets Form Example', '6.3.0')}>
breadcrumbs={generateExampleBreadcrumbs('react-widgets', 'React Widgets Form Example', '6.3.1')}>

<Markdown content={readme}/>

Expand Down
2 changes: 1 addition & 1 deletion examples/remoteSubmit/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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="https://redux-form.com/6.3.0/bundle.css"
<link href="https://redux-form.com/6.3.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"
Expand Down
4 changes: 2 additions & 2 deletions examples/remoteSubmit/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ let render = () => {
* This <App/> component only provides the site wrapper.
* Remove it on your dev server if you wish. It will not affect the functionality.
*/
version="6.3.0"
version="6.3.1"
path="/examples/remoteSubmit"
breadcrumbs={generateExampleBreadcrumbs('remoteSubmit', 'Remote Submit Example', '6.3.0')}>
breadcrumbs={generateExampleBreadcrumbs('remoteSubmit', 'Remote Submit Example', '6.3.1')}>

<Markdown content={readme}/>

Expand Down
2 changes: 1 addition & 1 deletion examples/selectingFormValues/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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="https://redux-form.com/6.3.0/bundle.css"
<link href="https://redux-form.com/6.3.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"
Expand Down
2 changes: 1 addition & 1 deletion examples/selectingFormValues/src/SelectingFormValues.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`](https://redux-form.com/6.3.0/docs/api/FormValueSelector.md/)
[`formValueSelector`](https://redux-form.com/6.3.1/docs/api/FormValueSelector.md/)
API.

**WARNING**: Use this method sparingly, as it will cause your _entire_ form to re-render every
Expand Down
4 changes: 2 additions & 2 deletions examples/selectingFormValues/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ let render = () => {
* This <App/> component only provides the site wrapper.
* Remove it on your dev server if you wish. It will not affect the functionality.
*/
version="6.3.0"
version="6.3.1"
path="/examples/selectingFormValues"
breadcrumbs={generateExampleBreadcrumbs('selectingFormValues',
'Selecting Form Values Example',
'6.3.0')}>
'6.3.1')}>

<Markdown content={readme}/>

Expand Down
2 changes: 1 addition & 1 deletion examples/simple/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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="https://redux-form.com/6.3.0/bundle.css"
<link href="https://redux-form.com/6.3.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"
Expand Down
4 changes: 2 additions & 2 deletions examples/simple/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ let render = () => {
* This <App/> component only provides the site wrapper.
* Remove it on your dev server if you wish. It will not affect the functionality.
*/
version="6.3.0"
version="6.3.1"
path="/examples/simple"
breadcrumbs={generateExampleBreadcrumbs('simple', 'Simple Form Example', '6.3.0')}>
breadcrumbs={generateExampleBreadcrumbs('simple', 'Simple Form Example', '6.3.1')}>

<Markdown content={readme}/>

Expand Down
2 changes: 1 addition & 1 deletion examples/submitValidation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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="https://redux-form.com/6.3.0/bundle.css"
<link href="https://redux-form.com/6.3.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"
Expand Down
4 changes: 2 additions & 2 deletions examples/submitValidation/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ let render = () => {
* This <App/> component only provides the site wrapper.
* Remove it on your dev server if you wish. It will not affect the functionality.
*/
version="6.3.0"
version="6.3.1"
path="/examples/submitValidation"
breadcrumbs={generateExampleBreadcrumbs('submitValidation', 'Submit Validation Example', '6.3.0')}>
breadcrumbs={generateExampleBreadcrumbs('submitValidation', 'Submit Validation Example', '6.3.1')}>

<Markdown content={readme}/>

Expand Down
Loading

0 comments on commit 2e7d4ab

Please sign in to comment.