Skip to content

Commit 0b55854

Browse files
committed
Release 0.13.4
1 parent e6b4cdf commit 0b55854

File tree

9 files changed

+42
-39
lines changed

9 files changed

+42
-39
lines changed

.eslintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"extends": "airbnb",
3+
"parser": "babel-eslint",
34
"rules": {
45
}
56
}

LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Zlatko Fedor
3+
Copyright (c) 2016 Zlatko Fedor
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
22-

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,8 @@ Star this project on [GitHub][github-url].
428428
- Google Analytics [react-g-analytics](https://github.com/seeden/react-g-analytics)
429429
- Google AdSense via Google Publisher Tag [react-google-publisher-tag](https://github.com/seeden/react-google-publisher-tag)
430430

431-
## Credits
431+
## License
432432

433-
[Zlatko Fedor](http://github.com/seeden)
433+
The MIT License (MIT)
434+
435+
Copyright (c) 2016 [Zlatko Fedor](http://github.com/seeden)

package.json

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-form-controlled",
3-
"version": "0.13.3",
3+
"version": "0.13.4",
44
"description": "React controlled form components. The main idea is to make forms as simple as possible.",
55
"author": {
66
"name": "Zlatko Fedor",
@@ -36,34 +36,35 @@
3636
},
3737
"dependencies": {
3838
"diacritics": "^1.2.3",
39-
"ajv": "~3.4.0",
40-
"lodash": "^3.10.1",
41-
"react-select": "^0.9.1"
39+
"ajv": "~3.8.2",
40+
"lodash": "^4.6.1",
41+
"react-select": "^0.9.1",
42+
"js-beautify": "^1.6.2"
4243
},
4344
"devDependencies": {
44-
"babel-cli": "^6.4.5",
45-
"babel-core": "^6.4.5",
46-
"babel-eslint": "^4.1.5",
47-
"babel-plugin-transform-decorators": "^6.4.0",
48-
"babel-plugin-transform-class-properties": "^6.4.0",
49-
"babel-preset-es2015": "^6.3.13",
50-
"babel-preset-react": "^6.3.13",
51-
"babel-preset-stage-0": "^6.3.13",
52-
"babel-preset-stage-1": "^6.3.13",
53-
"eslint": "^1.10.3",
54-
"eslint-config-airbnb": "^0.1.1",
55-
"eslint-loader": "^1.2.0",
56-
"eslint-plugin-react": "^3.15.0",
57-
"gulp": "^3.9.0",
58-
"gulp-babel": "^6.1.1",
45+
"babel-cli": "^6.6.5",
46+
"babel-core": "^6.6.5",
47+
"babel-eslint": "^5.0.0",
48+
"babel-plugin-transform-decorators": "^6.6.5",
49+
"babel-plugin-transform-class-properties": "^6.6.0",
50+
"babel-preset-es2015": "^6.6.0",
51+
"babel-preset-react": "^6.5.0",
52+
"babel-preset-stage-0": "^6.5.0",
53+
"babel-preset-stage-1": "^6.5.0",
54+
"eslint": "2.2.0",
55+
"eslint-config-airbnb": "^6.1.0",
56+
"eslint-loader": "^1.3.0",
57+
"eslint-plugin-react": "^4.2.0",
58+
"gulp": "^3.9.1",
59+
"gulp-babel": "^6.1.2",
5960
"gulp-coveralls": "^0.1.4",
60-
"gulp-jsx-coverage": "^0.3.7",
61+
"gulp-jsx-coverage": "^0.3.8",
6162
"gulp-util": "^3.0.7",
62-
"react": "^0.14.6",
63-
"react-addons-test-utils": "^0.14.6",
64-
"react-dom": "^0.14.6",
65-
"should": "^8.1.1",
66-
"mocha": "^2.3.4",
63+
"react": "^0.14.7",
64+
"react-addons-test-utils": "^0.14.7",
65+
"react-dom": "^0.14.7",
66+
"should": "^8.2.2",
67+
"mocha": "^2.4.5",
6768
"jsdom": "^3.1.2 || ^6.5.1"
6869
},
6970
"peerDependencies": {

src/Fieldset.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import React, { PropTypes, cloneElement, createElement } from 'react';
22
import Element from './Element';
3-
import isArray from 'lodash/lang/isArray';
4-
import isFunction from 'lodash/lang/isFunction';
5-
import set from 'lodash/object/set';
6-
import get from 'lodash/object/get';
3+
import isArray from 'lodash/isArray';
4+
import isFunction from 'lodash/isFunction';
5+
import set from 'lodash/set';
6+
import get from 'lodash/get';
77
import traverse from './utils/traverse';
88
import Input from './Input';
99
import Select from './Select';

src/Select.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { PropTypes } from 'react';
22
import Element from './Element';
3-
import isPlainObject from 'lodash/lang/isPlainObject';
4-
import isArray from 'lodash/lang/isArray';
3+
import isPlainObject from 'lodash/isPlainObject';
4+
import isArray from 'lodash/isArray';
55

66
const PLACEHOLDER_VALUE = ''; // null and undefined is uncontrolled value
77

src/utils/extendChild.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { cloneElement } from 'react';
2-
import forOwn from 'lodash/object/forOwn';
2+
import forOwn from 'lodash/forOwn';
33

44
export default function extendChild(child, parent) {
55
const { index } = parent.props;

src/utils/markAsDirty.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import isArray from 'lodash/lang/isArray';
2-
import isPlainObject from 'lodash/lang/isPlainObject';
1+
import isArray from 'lodash/isArray';
2+
import isPlainObject from 'lodash/isPlainObject';
33

44
function dirty(value) {
55
if (isArray(value)) {

src/utils/traverse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Children, cloneElement } from 'react';
2-
import isArray from 'lodash/lang/isArray';
2+
import isArray from 'lodash/isArray';
33

44
export default function traverse(child, processCallback, replaceCallback) {
55
if (isArray(child)) {

0 commit comments

Comments
 (0)