File tree 2 files changed +1
-29
lines changed
2 files changed +1
-29
lines changed Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import InputBase from './InputBase' ;
3
- import ButtonInput from './ButtonInput' ;
4
3
import FormControls from './FormControls' ;
5
4
import deprecationWarning from './utils/deprecationWarning' ;
6
5
7
6
class Input extends InputBase {
8
7
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' ) {
13
9
deprecationWarning ( 'Input type=static' , 'StaticText' ) ;
14
10
return < FormControls . Static { ...this . props } /> ;
15
11
}
Original file line number Diff line number Diff line change @@ -41,30 +41,6 @@ describe('Input', function () {
41
41
assert . equal ( instance . getValue ( ) , 'v' ) ;
42
42
} ) ;
43
43
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
-
68
44
it ( 'throws a warning when type=static' , function ( ) {
69
45
ReactTestUtils . renderIntoDocument (
70
46
< Input type = "static" value = "v" />
You can’t perform that action at this time.
0 commit comments