Skip to content

Commit db1da67

Browse files
committed
refacto: rename visibility change props for clarity
1 parent 1f6f3c2 commit db1da67

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,5 @@ package-lock.json
4141
.dumi/tmp
4242
.dumi/tmp-production
4343

44-
bun.lockb
44+
bun.lockb
45+
.vscode/

src/Tooltip.tsx

+6-6
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ export interface TooltipProps
2727
placement?: string;
2828
/** Config popup motion */
2929
motion?: TriggerProps['popupMotion'];
30-
onVisibleChange?: (visible: boolean) => void;
31-
afterVisibleChange?: (visible: boolean) => void;
30+
onOpenChange?: (visible: boolean) => void;
31+
afterOpenChange?: (visible: boolean) => void;
3232
overlay: (() => React.ReactNode) | React.ReactNode;
3333
/** @deprecated Please use `styles={{ root: {} }}` */
3434
overlayStyle?: React.CSSProperties;
@@ -68,8 +68,8 @@ const Tooltip = (props: TooltipProps, ref: React.Ref<TooltipRef>) => {
6868
overlayStyle,
6969
prefixCls = 'rc-tooltip',
7070
children,
71-
onVisibleChange,
72-
afterVisibleChange,
71+
onOpenChange,
72+
afterOpenChange,
7373
motion,
7474
placement = 'right',
7575
align = {},
@@ -131,8 +131,8 @@ const Tooltip = (props: TooltipProps, ref: React.Ref<TooltipRef>) => {
131131
ref={triggerRef}
132132
popupAlign={align}
133133
getPopupContainer={getTooltipContainer}
134-
onPopupVisibleChange={onVisibleChange}
135-
afterPopupVisibleChange={afterVisibleChange}
134+
onOpenChange={onOpenChange}
135+
afterOpenChange={afterOpenChange}
136136
popupMotion={motion}
137137
defaultPopupVisible={defaultVisible}
138138
autoDestroy={destroyTooltipOnHide}

0 commit comments

Comments
 (0)