1
- import React , { cloneElement } from 'react' ;
2
- import BootstrapMixin from './BootstrapMixin' ;
3
- import Collapse from './Collapse' ;
4
1
import classNames from 'classnames' ;
2
+ import React , { cloneElement } from 'react' ;
3
+ import all from 'react-prop-types/lib/all' ;
5
4
6
5
import ValidComponentChildren from './utils/ValidComponentChildren' ;
7
6
import createChainedFunction from './utils/createChainedFunction' ;
8
7
8
+ import BootstrapMixin from './BootstrapMixin' ;
9
+ import Collapse from './Collapse' ;
10
+
9
11
const Nav = React . createClass ( {
10
12
mixins : [ BootstrapMixin ] ,
11
13
@@ -14,7 +16,17 @@ const Nav = React.createClass({
14
16
activeKey : React . PropTypes . any ,
15
17
bsStyle : React . PropTypes . oneOf ( [ 'tabs' , 'pills' ] ) ,
16
18
stacked : React . PropTypes . bool ,
17
- justified : React . PropTypes . bool ,
19
+ /**
20
+ * Make `NavItem`s equal widths on small or larger displays and stacked
21
+ * otherwise. Not supported for `Nav`s in `Navbar`s.
22
+ */
23
+ justified : all (
24
+ React . PropTypes . bool ,
25
+ ( { justified, navbar} ) => (
26
+ justified && navbar ?
27
+ Error ( 'justified navbar `Nav`s are not supported' ) : null
28
+ )
29
+ ) ,
18
30
onSelect : React . PropTypes . func ,
19
31
collapsible : React . PropTypes . bool ,
20
32
/**
0 commit comments