Skip to content

Commit 30b63ed

Browse files
committed
feat: retire deprecated api
1 parent ac46af1 commit 30b63ed

File tree

4 files changed

+7
-15
lines changed

4 files changed

+7
-15
lines changed

docs/examples/formError.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class Test extends Component {
3434
<div style={{ marginTop: 100, marginLeft: 100, marginBottom: 100 }}>
3535
<Tooltip
3636
visible={this.state.visible}
37-
animation="zoom"
37+
motion={{ motionName: 'rc-tooltip-zoom' }}
3838
trigger={[]}
3939
overlayStyle={{ zIndex: 1000 }}
4040
overlay={<span>required!</span>}

docs/examples/onVisibleChange.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ function preventDefault(e) {
77
}
88

99
interface TestState {
10-
visible: boolean;
11-
destroy?: boolean;
12-
}
10+
visible: boolean;
11+
destroy?: boolean;
12+
}
1313

1414
class Test extends Component {
1515
state = {
@@ -37,7 +37,7 @@ class Test extends Component {
3737
<div style={{ marginTop: 300, marginLeft: 100, marginBottom: 100 }}>
3838
<Tooltip
3939
visible={this.state.visible}
40-
animation="zoom"
40+
motion={{ motionName: 'rc-tooltip-zoom' }}
4141
onVisibleChange={this.onVisibleChange}
4242
trigger="click"
4343
overlay={<span>I am a tooltip</span>}

docs/examples/simple.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ class Test extends Component<any, TestState> {
216216
align={{
217217
offset: [this.state.offsetX, this.state.offsetY],
218218
}}
219-
transitionName={this.state.transitionName}
219+
motion={{ motionName: this.state.transitionName }}
220220
overlayInnerStyle={state.overlayInnerStyle}
221221
>
222222
<div style={{ height: 100, width: 100, border: '1px solid red' }}>trigger</div>

src/Tooltip.tsx

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { ArrowType, TriggerProps, TriggerRef } from '@rc-component/trigger';
22
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';
44
import classNames from 'classnames';
55
import * as React from 'react';
66
import { forwardRef, useImperativeHandle, useRef } from 'react';
@@ -25,10 +25,6 @@ export interface TooltipProps
2525
defaultVisible?: boolean;
2626
visible?: boolean;
2727
placement?: string;
28-
/** @deprecated Use `motion` instead */
29-
transitionName?: string;
30-
/** @deprecated Use `motion` instead */
31-
animation?: AnimationType;
3228
/** Config popup motion */
3329
motion?: TriggerProps['popupMotion'];
3430
onVisibleChange?: (visible: boolean) => void;
@@ -74,8 +70,6 @@ const Tooltip = (props: TooltipProps, ref: React.Ref<TooltipRef>) => {
7470
children,
7571
onVisibleChange,
7672
afterVisibleChange,
77-
transitionName,
78-
animation,
7973
motion,
8074
placement = 'right',
8175
align = {},
@@ -139,8 +133,6 @@ const Tooltip = (props: TooltipProps, ref: React.Ref<TooltipRef>) => {
139133
getPopupContainer={getTooltipContainer}
140134
onPopupVisibleChange={onVisibleChange}
141135
afterPopupVisibleChange={afterVisibleChange}
142-
popupTransitionName={transitionName}
143-
popupAnimation={animation}
144136
popupMotion={motion}
145137
defaultPopupVisible={defaultVisible}
146138
autoDestroy={destroyTooltipOnHide}

0 commit comments

Comments
 (0)