File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ Online demo: <https://react-component.github.io/tooltip/demo>
82
82
| onVisibleChange | (visible: boolean) => void; | | Callback when visible change |
83
83
| afterVisibleChange | (visible: boolean) => void; | | Callback after visible change |
84
84
| overlay | ReactNode \| () => ReactNode | | tooltip overlay content |
85
- | overlayStyle | object | | style of tooltip overlay |
85
+ | overlayStyle | object | | deprecated, Please use ` styles={{ root: {} }} ` |
86
86
| overlayClassName | string | | className of tooltip overlay |
87
87
| prefixCls | string | 'rc-tooltip' | prefix class name of tooltip |
88
88
| mouseEnterDelay | number | 0 | delay time (in second) before tooltip shows when mouse enter |
@@ -92,6 +92,8 @@ Online demo: <https://react-component.github.io/tooltip/demo>
92
92
| align | object | | align config of tooltip. Please ref demo for usage example |
93
93
| showArrow | boolean \| object | false | whether to show arrow of tooltip |
94
94
| 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
97
96
98
## Important Note
97
99
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ export interface TooltipProps
33
33
onVisibleChange ?: ( visible : boolean ) => void ;
34
34
afterVisibleChange ?: ( visible : boolean ) => void ;
35
35
overlay : ( ( ) => React . ReactNode ) | React . ReactNode ;
36
+ /** @deprecated Please use `styles={{ root: {} }}` */
36
37
overlayStyle ?: React . CSSProperties ;
37
38
overlayClassName ?: string ;
38
39
getTooltipContainer ?: ( node : HTMLElement ) => HTMLElement ;
@@ -41,6 +42,7 @@ export interface TooltipProps
41
42
showArrow ?: boolean | ArrowType ;
42
43
arrowContent ?: React . ReactNode ;
43
44
id ?: string ;
45
+ /** @deprecated Please use `styles={{ inner: {} }}` */
44
46
overlayInnerStyle ?: React . CSSProperties ;
45
47
zIndex ?: number ;
46
48
styles ?: TooltipStyles ;
You can’t perform that action at this time.
0 commit comments