@@ -23,12 +23,12 @@ export interface TooltipProps
23
23
> {
24
24
trigger ?: ActionType | ActionType [ ] ;
25
25
defaultVisible ?: boolean ;
26
- visible ?: boolean ;
26
+ open ?: boolean ;
27
27
placement ?: string ;
28
28
/** Config popup motion */
29
29
motion ?: TriggerProps [ 'popupMotion' ] ;
30
- onOpenChange ?: ( visible : boolean ) => void ;
31
- afterOpenChange ?: ( visible : boolean ) => void ;
30
+ onOpenChange ?: ( open : boolean ) => void ;
31
+ afterOpenChange ?: ( open : boolean ) => void ;
32
32
overlay : ( ( ) => React . ReactNode ) | React . ReactNode ;
33
33
/** @deprecated Please use `styles={{ root: {} }}` */
34
34
overlayStyle ?: React . CSSProperties ;
@@ -83,6 +83,7 @@ const Tooltip = (props: TooltipProps, ref: React.Ref<TooltipRef>) => {
83
83
showArrow = true ,
84
84
classNames : tooltipClassNames ,
85
85
styles : tooltipStyles ,
86
+ open,
86
87
...restProps
87
88
} = props ;
88
89
@@ -91,11 +92,6 @@ const Tooltip = (props: TooltipProps, ref: React.Ref<TooltipRef>) => {
91
92
92
93
useImperativeHandle ( ref , ( ) => triggerRef . current ) ;
93
94
94
- const extraProps : Partial < TooltipProps & TriggerProps > = { ...restProps } ;
95
- if ( 'visible' in props ) {
96
- extraProps . popupVisible = props . visible ;
97
- }
98
-
99
95
const getPopupElement = ( ) => (
100
96
< Popup
101
97
key = "content"
@@ -140,7 +136,8 @@ const Tooltip = (props: TooltipProps, ref: React.Ref<TooltipRef>) => {
140
136
popupStyle = { { ...overlayStyle , ...tooltipStyles ?. root } }
141
137
mouseEnterDelay = { mouseEnterDelay }
142
138
arrow = { showArrow }
143
- { ...extraProps }
139
+ popupVisible = { open }
140
+ { ...restProps }
144
141
>
145
142
{ getChildren ( ) }
146
143
</ Trigger >
0 commit comments