Skip to content

Commit dd409d1

Browse files
authored
refactor: update inner to body (#489)
1 parent dd6cb0d commit dd409d1

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ Online demo: <https://react-component.github.io/tooltip/demo>
9292
| align | object | | align config of tooltip. Please ref demo for usage example |
9393
| showArrow | boolean \| object | false | whether to show arrow of tooltip |
9494
| zIndex | number | | config popup tooltip zIndex |
95-
| classNames | classNames?: { root?: string; inner?: string;}; | | Semantic DOM class |
96-
| styles | styles?: {root?: React.CSSProperties;inner?: React.CSSProperties;}; | | Semantic DOM styles |
95+
| classNames | classNames?: { root?: string; body?: string;}; | | Semantic DOM class |
96+
| styles | styles?: {root?: React.CSSProperties;body?: React.CSSProperties;}; | | Semantic DOM styles |
9797

9898
## Important Note
9999

src/Popup.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ export interface ContentProps {
88
overlayInnerStyle?: React.CSSProperties;
99
className?: string;
1010
style?: React.CSSProperties;
11-
innerClassName?: string;
11+
bodyClassName?: string;
1212
}
1313

1414
export default function Popup(props: ContentProps) {
15-
const { children, prefixCls, id, overlayInnerStyle: innerStyle, innerClassName, className, style } =
15+
const { children, prefixCls, id, overlayInnerStyle: innerStyle, bodyClassName, className, style } =
1616
props;
1717

1818
return (
1919
<div className={classNames(`${prefixCls}-content`, className)} style={style}>
2020
<div
21-
className={classNames(`${prefixCls}-inner`, innerClassName)}
21+
className={classNames(`${prefixCls}-inner`, bodyClassName)}
2222
id={id}
2323
role="tooltip"
2424
style={innerStyle}

src/Tooltip.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export interface TooltipProps
4343
showArrow?: boolean | ArrowType;
4444
arrowContent?: React.ReactNode;
4545
id?: string;
46-
/** @deprecated Please use `styles={{ inner: {} }}` */
46+
/** @deprecated Please use `styles={{ body: {} }}` */
4747
overlayInnerStyle?: React.CSSProperties;
4848
zIndex?: number;
4949
styles?: TooltipStyles;
@@ -52,12 +52,12 @@ export interface TooltipProps
5252

5353
export interface TooltipStyles {
5454
root?: React.CSSProperties;
55-
inner?: React.CSSProperties;
55+
body?: React.CSSProperties;
5656
}
5757

5858
export interface TooltipClassNames {
5959
root?: string;
60-
inner?: string;
60+
body?: string;
6161
}
6262

6363
export interface TooltipRef extends TriggerRef {}
@@ -104,8 +104,8 @@ const Tooltip = (props: TooltipProps, ref: React.Ref<TooltipRef>) => {
104104
key="content"
105105
prefixCls={prefixCls}
106106
id={id}
107-
innerClassName={tooltipClassNames?.inner}
108-
overlayInnerStyle={{ ...overlayInnerStyle, ...tooltipStyles?.inner }}
107+
bodyClassName={tooltipClassNames?.body}
108+
overlayInnerStyle={{ ...overlayInnerStyle, ...tooltipStyles?.body }}
109109
>
110110
{overlay}
111111
</Popup>

tests/index.test.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -253,12 +253,12 @@ describe('rc-tooltip', () => {
253253
});
254254
it('should apply custom styles to Tooltip', () => {
255255
const customClassNames = {
256-
inner: 'custom-inner',
256+
body: 'custom-body',
257257
root: 'custom-root',
258258
};
259259

260260
const customStyles = {
261-
inner: { color: 'red' },
261+
body: { color: 'red' },
262262
root: { backgroundColor: 'blue' },
263263
};
264264

@@ -269,14 +269,14 @@ describe('rc-tooltip', () => {
269269
);
270270

271271
const tooltipElement = container.querySelector('.rc-tooltip') as HTMLElement;
272-
const tooltipInnerElement = container.querySelector('.rc-tooltip-inner') as HTMLElement;
272+
const tooltipBodyElement = container.querySelector('.rc-tooltip-inner') as HTMLElement;
273273

274274
// 验证 classNames
275275
expect(tooltipElement.classList).toContain('custom-root');
276-
expect(tooltipInnerElement.classList).toContain('custom-inner');
276+
expect(tooltipBodyElement.classList).toContain('custom-body');
277277

278278
// 验证 styles
279279
expect(tooltipElement.style.backgroundColor).toBe('blue');
280-
expect(tooltipInnerElement.style.color).toBe('red');
280+
expect(tooltipBodyElement.style.color).toBe('red');
281281
});
282282
});

0 commit comments

Comments
 (0)