File tree 2 files changed +35
-1
lines changed
2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import Transition from 'react-overlays/lib/Transition' ;
3
3
import domUtils from './utils/domUtils' ;
4
+ import CustomPropTypes from './utils/CustomPropTypes' ;
5
+ import deprecationWarning from './deprecationWarning' ;
4
6
import createChainedFunction from './utils/createChainedFunction' ;
5
7
6
8
let capitalize = str => str [ 0 ] . toUpperCase ( ) + str . substr ( 1 ) ;
@@ -140,6 +142,20 @@ Collapse.propTypes = {
140
142
*/
141
143
timeout : React . PropTypes . number ,
142
144
145
+ /**
146
+ * duration
147
+ * @private
148
+ */
149
+ duration : CustomPropTypes . all ( [
150
+ React . PropTypes . number ,
151
+ ( props ) => {
152
+ if ( props . duration != null ) {
153
+ deprecationWarning ( 'Collapse `duration`' , 'the `timeout` prop' ) ;
154
+ }
155
+ return null ;
156
+ }
157
+ ] ) ,
158
+
143
159
/**
144
160
* Callback fired before the component expands
145
161
*/
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import Transition from 'react-overlays/lib/Transition' ;
3
+ import CustomPropTypes from './utils/CustomPropTypes' ;
4
+ import deprecationWarning from './deprecationWarning' ;
3
5
4
6
class Fade extends React . Component {
5
7
render ( ) {
8
+ let timeout = this . props . timeout || this . props . duration ;
9
+
6
10
return (
7
11
< Transition
8
12
{ ...this . props }
13
+ timeout = { timeout }
9
14
className = 'fade'
10
15
enteredClassName = 'in'
11
16
enteringClassName = 'in'
@@ -18,7 +23,6 @@ class Fade extends React.Component {
18
23
19
24
// Explicitly copied from Transition for doc generation.
20
25
// TODO: Remove duplication once #977 is resolved.
21
-
22
26
Fade . propTypes = {
23
27
/**
24
28
* Show the component; triggers the fade in or fade out animation
@@ -43,6 +47,20 @@ Fade.propTypes = {
43
47
*/
44
48
timeout : React . PropTypes . number ,
45
49
50
+ /**
51
+ * duration
52
+ * @private
53
+ */
54
+ duration : CustomPropTypes . all ( [
55
+ React . PropTypes . number ,
56
+ ( props ) => {
57
+ if ( props . duration != null ) {
58
+ deprecationWarning ( 'Fade `duration`' , 'the `timeout` prop' ) ;
59
+ }
60
+ return null ;
61
+ }
62
+ ] ) ,
63
+
46
64
/**
47
65
* Callback fired before the component fades in
48
66
*/
You can’t perform that action at this time.
0 commit comments