File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ import React, { Component } from 'react';
4
4
import '../../assets/bootstrap.less' ;
5
5
6
6
interface TestState {
7
- visible : boolean ;
7
+ open : boolean ;
8
8
destroy ?: boolean ;
9
9
}
10
10
11
11
class Test extends Component {
12
12
state = {
13
- visible : false ,
13
+ open : false ,
14
14
} as TestState ;
15
15
16
16
handleDestroy = ( ) => {
@@ -33,7 +33,7 @@ class Test extends Component {
33
33
< div >
34
34
< div style = { { marginTop : 100 , marginLeft : 100 , marginBottom : 100 } } >
35
35
< Tooltip
36
- visible = { this . state . visible }
36
+ open = { this . state . open }
37
37
motion = { { motionName : 'rc-tooltip-zoom' } }
38
38
trigger = { [ ] }
39
39
overlayStyle = { { zIndex : 1000 } }
Original file line number Diff line number Diff line change @@ -7,16 +7,16 @@ function preventDefault(e) {
7
7
}
8
8
9
9
interface TestState {
10
- visible : boolean ;
10
+ open : boolean ;
11
11
destroy ?: boolean ;
12
12
}
13
13
14
14
class Test extends Component {
15
15
state = {
16
- visible : false ,
16
+ open : false ,
17
17
} as TestState ;
18
18
19
- onVisibleChange = visible => {
19
+ onOpenChange = visible => {
20
20
this . setState ( {
21
21
visible,
22
22
} ) ;
@@ -36,9 +36,9 @@ class Test extends Component {
36
36
< div >
37
37
< div style = { { marginTop : 300 , marginLeft : 100 , marginBottom : 100 } } >
38
38
< Tooltip
39
- visible = { this . state . visible }
39
+ open = { this . state . open }
40
40
motion = { { motionName : 'rc-tooltip-zoom' } }
41
- onVisibleChange = { this . onVisibleChange }
41
+ onOpenChange = { this . onOpenChange }
42
42
trigger = "click"
43
43
overlay = { < span > I am a tooltip</ span > }
44
44
>
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ class Test extends Component<any, TestState> {
88
88
} ) ;
89
89
} ;
90
90
91
- onVisibleChange = ( visible ) => {
91
+ onOpenChange = ( visible ) => {
92
92
console . log ( 'tooltip' , visible ) ; // eslint-disable-line no-console
93
93
} ;
94
94
@@ -211,7 +211,7 @@ class Test extends Component<any, TestState> {
211
211
mouseLeaveDelay = { 0.1 }
212
212
destroyTooltipOnHide = { this . state . destroyTooltipOnHide }
213
213
trigger = { Object . keys ( this . state . trigger ) as ActionType [ ] }
214
- onVisibleChange = { this . onVisibleChange }
214
+ onOpenChange = { this . onOpenChange }
215
215
overlay = { < div style = { { height : 50 , width : 50 } } > i am a tooltip</ div > }
216
216
align = { {
217
217
offset : [ this . state . offsetX , this . state . offsetY ] ,
You can’t perform that action at this time.
0 commit comments