Skip to content

Commit 00ef358

Browse files
committed
Release 0.17.23
1 parent bb576cc commit 00ef358

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

.babelrc

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
"react",
66
],
77
"plugins": [
8+
["transform-runtime", {
9+
"polyfill": false,
10+
"regenerator": true
11+
}],
812
"transform-decorators-legacy",
913
"transform-class-properties",
1014
"transform-proto-to-assign",

package.json

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-form-controlled",
3-
"version": "0.17.22",
3+
"version": "0.17.23",
44
"description": "Intuitive react forms for building powerful applications",
55
"author": {
66
"name": "Zlatko Fedor",
@@ -39,12 +39,13 @@
3939
"dependencies": {
4040
"diacritics": "^1.3.0",
4141
"lodash": "^4.17.4",
42-
"prop-types": "^15.5.8"
42+
"prop-types": "^15.5.10",
43+
"babel-runtime": "^6.23.0"
4344
},
4445
"devDependencies": {
4546
"babel-cli": "^6.24.1",
4647
"babel-core": "^6.24.1",
47-
"babel-eslint": "^7.2.2",
48+
"babel-eslint": "^7.2.3",
4849
"babel-plugin-transform-class-properties": "^6.24.1",
4950
"babel-plugin-transform-decorators-legacy": "^1.3.4",
5051
"babel-plugin-transform-proto-to-assign": "^6.23.0",
@@ -54,19 +55,19 @@
5455
"babel-preset-stage-0": "^6.24.1",
5556
"babel-preset-stage-1": "^6.24.1",
5657
"eslint": "^3.19.0",
57-
"eslint-config-airbnb": "^14.1.0",
58+
"eslint-config-airbnb": "^15.0.1",
5859
"eslint-loader": "^1.7.1",
59-
"eslint-plugin-react": "^6.10.3",
60-
"eslint-plugin-import": "^2.2.0",
60+
"eslint-plugin-react": "^7.0.1",
61+
"eslint-plugin-import": "^2.3.0",
6162
"gulp": "^3.9.1",
6263
"gulp-babel": "^6.1.2",
6364
"gulp-util": "^3.0.8",
6465
"react": "^15.5.4",
6566
"react-addons-test-utils": "^15.5.1",
66-
"eslint-plugin-jsx-a11y": "^4.0.0",
67+
"eslint-plugin-jsx-a11y": "^5.0.3",
6768
"react-dom": "^15.5.4",
68-
"jest": "^19.0.2",
69-
"jest-cli": "^19.0.2",
69+
"jest": "^20.0.4",
70+
"jest-cli": "^20.0.4",
7071
"enzyme": "^2.8.2"
7172
},
7273
"peerDependencies": {

src/Fieldset.jsx

-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,6 @@ export default class Fieldset extends Element {
282282
const value = this.getValue();
283283

284284
if (typeof children === 'function') {
285-
286285
return this.processChildren(children({ value }));
287286
}
288287

0 commit comments

Comments
 (0)