File tree 3 files changed +19
-5
lines changed
3 files changed +19
-5
lines changed Original file line number Diff line number Diff line change @@ -78,10 +78,9 @@ class Overlay extends React.Component {
78
78
</ Transition >
79
79
) ;
80
80
} else {
81
- child = cloneElement (
82
- child ,
83
- { className : classNames ( 'in' , child . className ) }
84
- ) ;
81
+ child = cloneElement ( child , {
82
+ className : classNames ( 'in' , child . props . className )
83
+ } ) ;
85
84
}
86
85
87
86
// This goes after everything else because it adds a wrapping div.
Original file line number Diff line number Diff line change 1
1
import React , { cloneElement } from 'react' ;
2
+ import classNames from 'classnames' ;
2
3
import domUtils from './utils/domUtils' ;
3
4
import { calcOverlayPosition } from './utils/overlayPositionUtils' ;
4
5
import CustomPropTypes from './utils/CustomPropTypes' ;
@@ -40,7 +41,7 @@ class Position extends React.Component {
40
41
}
41
42
42
43
render ( ) {
43
- const { children, ...props } = this . props ;
44
+ const { children, className , ...props } = this . props ;
44
45
const { positionLeft, positionTop, ...arrowPosition } = this . state ;
45
46
46
47
const child = React . Children . only ( children ) ;
@@ -51,6 +52,7 @@ class Position extends React.Component {
51
52
...arrowPosition ,
52
53
positionTop,
53
54
positionLeft,
55
+ className : classNames ( className , child . props . className ) ,
54
56
style : {
55
57
...child . props . style ,
56
58
left : positionLeft ,
Original file line number Diff line number Diff line change @@ -39,6 +39,19 @@ describe('OverlayTrigger', function() {
39
39
instance . state . isOverlayShown . should . be . true ;
40
40
} ) ;
41
41
42
+ it ( 'Should maintain overlay classname' , function ( ) {
43
+ const instance = ReactTestUtils . renderIntoDocument (
44
+ < OverlayTrigger trigger = 'click' overlay = { < div className = 'test-overlay' > test</ div > } >
45
+ < button > button</ button >
46
+ </ OverlayTrigger >
47
+ ) ;
48
+
49
+ const overlayTrigger = React . findDOMNode ( instance ) ;
50
+ ReactTestUtils . Simulate . click ( overlayTrigger ) ;
51
+
52
+ expect ( document . getElementsByClassName ( 'test-overlay' ) . length ) . to . equal ( 1 )
53
+ } ) ;
54
+
42
55
it ( 'Should pass transition callbacks to Transition' , function ( done ) {
43
56
let count = 0 ;
44
57
let increment = ( ) => count ++ ;
You can’t perform that action at this time.
0 commit comments