File tree 6 files changed +12
-6
lines changed
6 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import classNames from 'classnames' ;
3
3
import BootstrapMixin from './BootstrapMixin' ;
4
+ import CustomPropTypes from './utils/CustomPropTypes' ;
4
5
5
6
const Button = React . createClass ( {
6
7
mixins : [ BootstrapMixin ] ,
@@ -11,7 +12,7 @@ const Button = React.createClass({
11
12
block : React . PropTypes . bool ,
12
13
navItem : React . PropTypes . bool ,
13
14
navDropdown : React . PropTypes . bool ,
14
- componentClass : React . PropTypes . node ,
15
+ componentClass : CustomPropTypes . elementType ,
15
16
href : React . PropTypes . string ,
16
17
target : React . PropTypes . string
17
18
} ,
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import classNames from 'classnames' ;
3
3
import styleMaps from './styleMaps' ;
4
+ import CustomPropTypes from './utils/CustomPropTypes' ;
4
5
5
6
const Col = React . createClass ( {
6
7
propTypes : {
@@ -20,7 +21,7 @@ const Col = React.createClass({
20
21
smPull : React . PropTypes . number ,
21
22
mdPull : React . PropTypes . number ,
22
23
lgPull : React . PropTypes . number ,
23
- componentClass : React . PropTypes . node . isRequired
24
+ componentClass : CustomPropTypes . elementType
24
25
} ,
25
26
26
27
getDefaultProps ( ) {
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import classNames from 'classnames' ;
3
+ import CustomPropTypes from './utils/CustomPropTypes' ;
3
4
4
5
const Grid = React . createClass ( {
5
6
propTypes : {
6
7
fluid : React . PropTypes . bool ,
7
- componentClass : React . PropTypes . node . isRequired
8
+ componentClass : CustomPropTypes . elementType
8
9
} ,
9
10
10
11
getDefaultProps ( ) {
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import classNames from 'classnames' ;
3
+ import CustomPropTypes from './utils/CustomPropTypes' ;
3
4
4
5
const Jumbotron = React . createClass ( {
5
6
propTypes : {
6
- componentClass : React . PropTypes . any . isRequired
7
+ componentClass : CustomPropTypes . elementType
7
8
} ,
8
9
9
10
getDefaultProps ( ) {
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import classNames from 'classnames';
4
4
5
5
import ValidComponentChildren from './utils/ValidComponentChildren' ;
6
6
import createChainedFunction from './utils/createChainedFunction' ;
7
+ import CustomPropTypes from './utils/CustomPropTypes' ;
7
8
8
9
const Navbar = React . createClass ( {
9
10
mixins : [ BootstrapMixin ] ,
@@ -15,7 +16,7 @@ const Navbar = React.createClass({
15
16
inverse : React . PropTypes . bool ,
16
17
fluid : React . PropTypes . bool ,
17
18
role : React . PropTypes . string ,
18
- componentClass : React . PropTypes . node . isRequired ,
19
+ componentClass : CustomPropTypes . elementType ,
19
20
brand : React . PropTypes . node ,
20
21
toggleButton : React . PropTypes . node ,
21
22
toggleNavKey : React . PropTypes . oneOfType ( [
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import classNames from 'classnames' ;
3
+ import CustomPropTypes from './utils/CustomPropTypes' ;
3
4
4
5
const Row = React . createClass ( {
5
6
propTypes : {
6
- componentClass : React . PropTypes . node . isRequired
7
+ componentClass : CustomPropTypes . elementType
7
8
} ,
8
9
9
10
getDefaultProps ( ) {
You can’t perform that action at this time.
0 commit comments