1
1
import type { ArrowType , TriggerProps , TriggerRef } from '@rc-component/trigger' ;
2
2
import Trigger from '@rc-component/trigger' ;
3
- import type { ActionType , AlignType , AnimationType } from '@rc-component/trigger/lib/interface' ;
3
+ import type { ActionType , AlignType } from '@rc-component/trigger/lib/interface' ;
4
4
import classNames from 'classnames' ;
5
5
import * as React from 'react' ;
6
6
import { forwardRef , useImperativeHandle , useRef } from 'react' ;
@@ -25,10 +25,6 @@ export interface TooltipProps
25
25
defaultVisible ?: boolean ;
26
26
visible ?: boolean ;
27
27
placement ?: string ;
28
- /** @deprecated Use `motion` instead */
29
- transitionName ?: string ;
30
- /** @deprecated Use `motion` instead */
31
- animation ?: AnimationType ;
32
28
/** Config popup motion */
33
29
motion ?: TriggerProps [ 'popupMotion' ] ;
34
30
onVisibleChange ?: ( visible : boolean ) => void ;
@@ -74,8 +70,6 @@ const Tooltip = (props: TooltipProps, ref: React.Ref<TooltipRef>) => {
74
70
children,
75
71
onVisibleChange,
76
72
afterVisibleChange,
77
- transitionName,
78
- animation,
79
73
motion,
80
74
placement = 'right' ,
81
75
align = { } ,
@@ -139,8 +133,6 @@ const Tooltip = (props: TooltipProps, ref: React.Ref<TooltipRef>) => {
139
133
getPopupContainer = { getTooltipContainer }
140
134
onPopupVisibleChange = { onVisibleChange }
141
135
afterPopupVisibleChange = { afterVisibleChange }
142
- popupTransitionName = { transitionName }
143
- popupAnimation = { animation }
144
136
popupMotion = { motion }
145
137
defaultPopupVisible = { defaultVisible }
146
138
autoDestroy = { destroyTooltipOnHide }
0 commit comments