Skip to content

Commit

Permalink
upgraded version and fixed a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
erikras committed Aug 18, 2016
1 parent 80ff307 commit a5b665f
Show file tree
Hide file tree
Showing 53 changed files with 160 additions and 96 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
[<img src="logo.png" align="right" class="logo" height="151" width="250"/>](http://erikras.github.io/redux-form/)

## Installation
```npm install --save redux-form@6.0.0-rc.4```
```npm install --save redux-form@6.0.0-rc.5```

## Documentation

* [Getting Started](http://redux-form.com/6.0.0-rc.4/docs/GettingStarted.md/)
* [Examples](http://redux-form.com/6.0.0-rc.4/examples/)
* [API](http://redux-form.com/6.0.0-rc.4/docs/api/)
* [FAQ](http://redux-form.com/6.0.0-rc.4/docs/faq/)
* [Getting Started](http://redux-form.com/6.0.0-rc.5/docs/GettingStarted.md/)
* [Examples](http://redux-form.com/6.0.0-rc.5/examples/)
* [API](http://redux-form.com/6.0.0-rc.5/docs/api/)
* [FAQ](http://redux-form.com/6.0.0-rc.5/docs/faq/)
* [Release Notes](https://github.com/erikras/redux-form/releases)

## Videos
Expand Down
1 change: 1 addition & 0 deletions docs/DocumentationVersions.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@
* [6.0.0-rc.2](http://redux-form.com/6.0.0-rc.2/)
* [6.0.0-rc.3](http://redux-form.com/6.0.0-rc.3/)
* [6.0.0-rc.4](http://redux-form.com/6.0.0-rc.4/)
* [6.0.0-rc.5](http://redux-form.com/6.0.0-rc.5/)
2 changes: 1 addition & 1 deletion docs/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ function.

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](http://redux-form.com/6.0.0-rc.4/examples/simple).
[Simple Form Example](http://redux-form.com/6.0.0-rc.5/examples/simple).
2 changes: 1 addition & 1 deletion docs/MigrationGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ const upper = value => value && value.toUpperCase()
<Field name="myUppercaseField" component="input" normalize={upper}/>
```

See the [Normalizing Example](http://redux-form.com/6.0.0-rc.4/examples/normalizing/) for
See the [Normalizing Example](http://redux-form.com/6.0.0-rc.5/examples/normalizing/) for
more details.

## Listening to other actions
Expand Down
6 changes: 3 additions & 3 deletions docs/api/Fields.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# `Fields`

The `Fields` component is similar to the
[`Field`](http://redux-form.com/6.0.0-rc.4/docs/api/Field.md/) component, but operates on multiple
[`Field`](http://redux-form.com/6.0.0-rc.5/docs/api/Field.md/) component, but operates on multiple
fields at a time. Rather than passing a single `name` prop, `Fields` takes an array of names in
the `names` prop.

Expand All @@ -24,7 +24,7 @@ import { Fields } from 'redux-form'; // ES6
#### `names : Array<String>` [required]

An array of strings (or the pseudo-array `fields` provided by
[`FieldArray`](http://redux-form.com/6.0.0-rc.4/docs/api/FieldArray.md/)),
[`FieldArray`](http://redux-form.com/6.0.0-rc.5/docs/api/FieldArray.md/)),
in dot-and-bracket notation, corresponding to form values. They may
be as simple as `'firstName'` or as complicated as
`contact.billing.address[2].phones[1].areaCode`. See the [Usage](#usage) section below for details.
Expand Down Expand Up @@ -138,7 +138,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](http://redux-form.com/6.0.0-rc.4/docs/api/Field.md/#props), except that
that `Field` generates](http://redux-form.com/6.0.0-rc.5/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 @@ -17,7 +17,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()`](http://redux-form.com/6.0.0-rc.4/docs/api/ReduxForm.md/).
gave to [`reduxForm()`](http://redux-form.com/6.0.0-rc.5/docs/api/ReduxForm.md/).

### `getFormState : Function` [optional]

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

See the
[Selecting Form Values](http://redux-form.com/6.0.0-rc.4/examples/selectingFormValues/) example.
[Selecting Form Values](http://redux-form.com/6.0.0-rc.5/examples/selectingFormValues/) example.
6 changes: 3 additions & 3 deletions docs/api/ReduxForm.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,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](http://redux-form.com/6.0.0-rc.4/examples/asyncValidation/)
> See [Asynchronous Blur Validation Example](http://redux-form.com/6.0.0-rc.5/examples/asyncValidation/)
for more details.

#### `asyncValidate : (values:Object, dispatch:Function, props:Object, blurredField:String) => Promise<undefined, errors:Object>` [optional]
Expand All @@ -42,7 +42,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](http://redux-form.com/6.0.0-rc.4/examples/asyncValidation/)
> See [Asynchronous Blur Validation Example](http://redux-form.com/6.0.0-rc.5/examples/asyncValidation/)
for more details.

#### `destroyOnUnmount : boolean` [optional]
Expand Down Expand Up @@ -196,7 +196,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](http://redux-form.com/6.0.0-rc.4/examples/syncValidation/)
> See [Synchronous Validation Example](http://redux-form.com/6.0.0-rc.5/examples/syncValidation/)
for more details.

## Instance API
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="http://redux-form.com/6.0.0-rc.4/bundle.css"
<link href="http://redux-form.com/6.0.0-rc.5/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/asyncValidation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"react-redux": "^4.4.1",
"redux": "^3.3.1",
"redux-form": "file:../../",
"redux-form-website-template": "0.0.34"
"redux-form-website-template": "0.0.35"
},
"devDependencies": {
"babel-core": "^6.3.15",
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.0.0-rc.4"
version="6.0.0-rc.5"
path="/examples/asyncValidation"
breadcrumbs={generateExampleBreadcrumbs('asyncValidation', 'Async Validation Example', '6.0.0-rc.4')}>
breadcrumbs={generateExampleBreadcrumbs('asyncValidation', 'Async Validation Example', '6.0.0-rc.5')}>

<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="http://redux-form.com/6.0.0-rc.4/bundle.css"
<link href="http://redux-form.com/6.0.0-rc.5/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/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"react-redux": "^4.4.1",
"redux": "^3.3.1",
"redux-form": "file:../../",
"redux-form-website-template": "0.0.34"
"redux-form-website-template": "0.0.35"
},
"devDependencies": {
"babel-core": "^6.3.15",
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](http://redux-form.com/6.0.0-rc.4/docs/api/FieldArray.md).
[`FieldArray` docs](http://redux-form.com/6.0.0-rc.5/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.)
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.0.0-rc.4"
version="6.0.0-rc.5"
path="/examples/fieldArrays"
breadcrumbs={generateExampleBreadcrumbs('syncValidation',
'Field Arrays Example', '6.0.0-rc.4')}>
'Field Arrays Example', '6.0.0-rc.5')}>

<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="http://redux-form.com/6.0.0-rc.4/bundle.css"
<link href="http://redux-form.com/6.0.0-rc.5/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/immutable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"react-redux": "^4.4.2",
"redux": "^3.4.0",
"redux-form": "file:../../",
"redux-form-website-template": "0.0.34",
"redux-form-website-template": "0.0.35",
"redux-immutablejs": "0.0.8"
},
"devDependencies": {
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 @@ -32,9 +32,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.0.0-rc.4"
version="6.0.0-rc.5"
path="/examples/immutable"
breadcrumbs={generateExampleBreadcrumbs('immutable', 'Immutable JS Example', '6.0.0-rc.4')}>
breadcrumbs={generateExampleBreadcrumbs('immutable', 'Immutable JS Example', '6.0.0-rc.5')}>

<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="http://redux-form.com/6.0.0-rc.4/bundle.css"
<link href="http://redux-form.com/6.0.0-rc.5/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/initializeFromState/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"react-redux": "^4.4.1",
"redux": "^3.3.1",
"redux-form": "file:../../",
"redux-form-website-template": "0.0.34"
"redux-form-website-template": "0.0.35"
},
"devDependencies": {
"babel-core": "^6.3.15",
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.0.0-rc.4"
version="6.0.0-rc.5"
path="/examples/initializeFromState"
breadcrumbs={generateExampleBreadcrumbs('initializeFromState', 'Initialize From State Example', '6.0.0-rc.4')}>
breadcrumbs={generateExampleBreadcrumbs('initializeFromState', 'Initialize From State Example', '6.0.0-rc.5')}>

<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="http://redux-form.com/6.0.0-rc.4/bundle.css"
<link href="http://redux-form.com/6.0.0-rc.5/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/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.3.1",
"redux-form": "file:../../",
"redux-form-website-template": "0.0.34"
"redux-form-website-template": "0.0.35"
},
"devDependencies": {
"babel-core": "^6.3.15",
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](http://redux-form.com/6.0.0-rc.4/docs/api/Field.md/#usage).
Read more [here](http://redux-form.com/6.0.0-rc.5/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.0.0-rc.4"
version="6.0.0-rc.5"
path="/examples/material-ui/"
breadcrumbs={generateExampleBreadcrumbs('material-ui', 'Material Ui Form Example', '6.0.0-rc.4')}>
breadcrumbs={generateExampleBreadcrumbs('material-ui', 'Material Ui Form Example', '6.0.0-rc.5')}>

<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="http://redux-form.com/6.0.0-rc.4/bundle.css"
<link href="http://redux-form.com/6.0.0-rc.5/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/normalizing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"react-redux": "^4.4.1",
"redux": "^3.3.1",
"redux-form": "file:../../",
"redux-form-website-template": "0.0.34"
"redux-form-website-template": "0.0.35"
},
"devDependencies": {
"babel-core": "^6.3.15",
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.0.0-rc.4"
version="6.0.0-rc.5"
path="/examples/syncValidation"
breadcrumbs={generateExampleBreadcrumbs('syncValidation',
'Field Normalizing Example', '6.0.0-rc.4')}>
'Field Normalizing Example', '6.0.0-rc.5')}>

<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="http://redux-form.com/6.0.0-rc.4/bundle.css"
<link href="http://redux-form.com/6.0.0-rc.5/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/react-widgets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"react-widgets": "^3.3.1",
"redux": "^3.3.1",
"redux-form": "file:../../",
"redux-form-website-template": "0.0.34"
"redux-form-website-template": "0.0.35"
},
"devDependencies": {
"babel-core": "^6.3.15",
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.0.0-rc.4"
version="6.0.0-rc.5"
path="/examples/react-widgets/"
breadcrumbs={generateExampleBreadcrumbs('react-widgets', 'React Widgets Form Example', '6.0.0-rc.4')}>
breadcrumbs={generateExampleBreadcrumbs('react-widgets', 'React Widgets Form Example', '6.0.0-rc.5')}>

<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="http://redux-form.com/6.0.0-rc.4/bundle.css"
<link href="http://redux-form.com/6.0.0-rc.5/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/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"react-redux": "^4.4.1",
"redux": "^3.3.1",
"redux-form": "file:../../",
"redux-form-website-template": "0.0.34"
"redux-form-website-template": "0.0.35"
},
"devDependencies": {
"babel-core": "^6.3.15",
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`](http://redux-form.com/6.0.0-rc.4/docs/api/FormValueSelector.md/)
[`formValueSelector`](http://redux-form.com/6.0.0-rc.5/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.0.0-rc.4"
version="6.0.0-rc.5"
path="/examples/selectingFormValues"
breadcrumbs={generateExampleBreadcrumbs('selectingFormValues',
'Selecting Form Values Example',
'6.0.0-rc.4')}>
'6.0.0-rc.5')}>

<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="http://redux-form.com/6.0.0-rc.4/bundle.css"
<link href="http://redux-form.com/6.0.0-rc.5/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/simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"react-redux": "^4.4.1",
"redux": "^3.3.1",
"redux-form": "file:../../",
"redux-form-website-template": "0.0.34"
"redux-form-website-template": "0.0.35"
},
"devDependencies": {
"babel-core": "^6.3.15",
Expand Down
Loading

0 comments on commit a5b665f

Please sign in to comment.