Skip to content

Commit ce5b436

Browse files
committed
[removed] Input type=submit deprecation warning.
Closes react-bootstrap#733
1 parent 93c95b6 commit ce5b436

File tree

2 files changed

+1
-29
lines changed

2 files changed

+1
-29
lines changed

src/Input.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
import React from 'react';
22
import InputBase from './InputBase';
3-
import ButtonInput from './ButtonInput';
43
import FormControls from './FormControls';
54
import deprecationWarning from './utils/deprecationWarning';
65

76
class Input extends InputBase {
87
render() {
9-
if (ButtonInput.types.indexOf(this.props.type) > -1) {
10-
deprecationWarning(`Input type=${this.props.type}`, 'ButtonInput');
11-
return <ButtonInput {...this.props} />;
12-
} else if (this.props.type === 'static') {
8+
if (this.props.type === 'static') {
139
deprecationWarning('Input type=static', 'StaticText');
1410
return <FormControls.Static {...this.props} />;
1511
}

test/InputSpec.js

-24
Original file line numberDiff line numberDiff line change
@@ -41,30 +41,6 @@ describe('Input', function () {
4141
assert.equal(instance.getValue(), 'v');
4242
});
4343

44-
it('throws a deprecation warning on type=button', function () {
45-
ReactTestUtils.renderIntoDocument(
46-
<Input type="button" />
47-
);
48-
49-
shouldWarn('deprecated');
50-
});
51-
52-
it('throws a deprecation warning on type=reset', function () {
53-
ReactTestUtils.renderIntoDocument(
54-
<Input type="reset" />
55-
);
56-
57-
shouldWarn('deprecated');
58-
});
59-
60-
it('throws a deprecation warning on type=submit', function () {
61-
ReactTestUtils.renderIntoDocument(
62-
<Input type="submit" />
63-
);
64-
65-
shouldWarn('deprecated');
66-
});
67-
6844
it('throws a warning when type=static', function () {
6945
ReactTestUtils.renderIntoDocument(
7046
<Input type="static" value="v" />

0 commit comments

Comments
 (0)