Skip to content

Commit f7b4310

Browse files
committed
removed react-select
1 parent 6167406 commit f7b4310

File tree

4 files changed

+18
-57
lines changed

4 files changed

+18
-57
lines changed

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-form-controlled",
3-
"version": "0.14.10",
3+
"version": "0.15.0",
44
"description": "React controlled form components. The main idea is to make forms as simple as possible.",
55
"author": {
66
"name": "Zlatko Fedor",
@@ -36,38 +36,38 @@
3636
},
3737
"dependencies": {
3838
"diacritics": "^1.2.3",
39-
"ajv": "~3.8.7",
40-
"lodash": "^4.6.1",
41-
"react-select": "^0.9.1"
39+
"ajv": "~4.0.1",
40+
"lodash": "^4.11.1"
4241
},
4342
"devDependencies": {
44-
"babel-cli": "^6.6.5",
45-
"babel-core": "^6.6.5",
46-
"babel-eslint": "^6.0.0",
43+
"babel-cli": "^6.7.5",
44+
"babel-core": "^6.7.6",
45+
"babel-eslint": "^6.0.3",
4746
"babel-plugin-transform-decorators": "^6.6.5",
4847
"babel-plugin-transform-class-properties": "^6.6.0",
4948
"babel-preset-es2015": "^6.6.0",
5049
"babel-preset-react": "^6.5.0",
5150
"babel-preset-stage-0": "^6.5.0",
5251
"babel-preset-stage-1": "^6.5.0",
53-
"eslint": "^2.5.1",
54-
"eslint-config-airbnb": "^6.1.0",
52+
"eslint": "^2.8.0",
53+
"eslint-config-airbnb": "^7.0.0",
5554
"eslint-loader": "^1.3.0",
56-
"eslint-plugin-react": "^4.2.0",
55+
"eslint-plugin-react": "^4.3.0",
5756
"gulp": "^3.9.1",
5857
"gulp-babel": "^6.1.2",
5958
"gulp-coveralls": "^0.1.4",
6059
"gulp-jsx-coverage": "^0.3.8",
6160
"gulp-util": "^3.0.7",
62-
"react": "^0.14.7",
63-
"react-addons-test-utils": "^0.14.7",
64-
"react-dom": "^0.14.7",
65-
"should": "^8.2.2",
61+
"react": "^15.0.1",
62+
"react-addons-test-utils": "^15.0.1",
63+
"eslint-plugin-jsx-a11y": "^0.6.2",
64+
"react-dom": "^15.0.1",
65+
"should": "^8.3.1",
6666
"mocha": "^2.4.5",
6767
"jsdom": "^3.1.2 || ^6.5.1"
6868
},
6969
"peerDependencies": {
70-
"react": "0.14.x"
70+
"react": "15.x || 0.14.x"
7171
},
7272
"typings": "react-form-controlled.d.ts"
7373
}

src/SelectPro.jsx

Lines changed: 0 additions & 39 deletions
This file was deleted.

src/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import Form from './Form';
22
import Input from './Input';
33
import Select from './Select';
4-
import SelectPro from './SelectPro';
54
import Textarea from './Textarea';
65
import ErrorAlert from './ErrorAlert';
76
import Fieldset from './Fieldset';
@@ -13,4 +12,4 @@ import Integrate from './Integrate';
1312
import markAsDirty from './utils/markAsDirty';
1413

1514
export default Form;
16-
export { Input, Select, Textarea, ErrorAlert, Fieldset, Tbody, SelectPro, Word, Index, If, Integrate, markAsDirty };
15+
export { Input, Select, Textarea, ErrorAlert, Fieldset, Tbody, Word, Index, If, Integrate, markAsDirty };

tests/input.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React from 'react';
22
import should from 'should';
3-
import Form, { Input, Textarea, Word, Select, Fieldset, Index, If, Tbody, Integrate } from '../dist';
3+
import Form, { Input, Textarea, Word, Select, Fieldset,
4+
Index, If, Tbody, Integrate } from '../dist';
45
import { renderJSX } from '../utils/tester';
56
import { findDOMNode } from 'react-dom';
67
import TestUtils from 'react-addons-test-utils';

0 commit comments

Comments
 (0)