Gathering detailed insights and metrics for rc-tooltip
Gathering detailed insights and metrics for rc-tooltip
Gathering detailed insights and metrics for rc-tooltip
Gathering detailed insights and metrics for rc-tooltip
npm install rc-tooltip
Typescript
Module System
Node Version
NPM Version
91.2
Supply Chain
93.8
Quality
85.8
Maintenance
100
Vulnerability
100
License
TypeScript (84.07%)
JavaScript (10.24%)
Less (5.69%)
Total Downloads
430,808,111
Last Day
89,571
Last Week
2,154,962
Last Month
9,345,720
Last Year
101,230,976
MIT License
944 Stars
308 Commits
196 Forks
26 Watchers
10 Branches
64 Contributors
Updated on Jul 04, 2025
Minified
Minified + Gzipped
Latest Version
6.4.0
Package Id
rc-tooltip@6.4.0
Unpacked Size
54.92 kB
Size
9.39 kB
File Count
23
NPM Version
10.8.2
Node Version
22.5.1
Published on
Jan 07, 2025
Cumulative downloads
Total Downloads
Last Day
1.5%
89,571
Compared to previous day
Last Week
-11.7%
2,154,962
Compared to previous week
Last Month
0.1%
9,345,720
Compared to previous month
Last Year
19.1%
101,230,976
Compared to previous year
4
React Tooltip
![]() IE / Edge | ![]() Firefox | ![]() Chrome | ![]() Safari | ![]() Opera |
---|---|---|---|---|
IE 8 + ✔ | Firefox 31.0+ ✔ | Chrome 31.0+ ✔ | Safari 7.0+ ✔ | Opera 30.0+ ✔ |
1var Tooltip = require('rc-tooltip'); 2var React = require('react'); 3var ReactDOM = require('react-dom'); 4 5// By default, the tooltip has no style. 6// Consider importing the stylesheet it comes with: 7// 'rc-tooltip/assets/bootstrap_white.css' 8 9ReactDOM.render( 10 <Tooltip placement="left" trigger={['click']} overlay={<span>tooltip</span>}> 11 <a href="#">hover</a> 12 </Tooltip>, 13 container, 14);
npm start
and then go to
http://localhost:8000/demo
Online demo: https://react-component.github.io/tooltip/demo
name | type | default | description |
---|---|---|---|
trigger | string | string[] | 'hover' | which actions cause tooltip shown. enum of 'hover','click','focus' |
visible | boolean | false | whether tooltip is visible |
defaultVisible | boolean | false | whether tooltip is visible by default |
placement | string | 'right' | tooltip placement. enum of 'top','left','right','bottom', 'topLeft', 'topRight', 'bottomLeft', 'bottomRight', 'leftTop', 'leftBottom', 'rightTop', 'rightBottom' |
motion | object | Config popup motion. Please ref demo for example | |
onVisibleChange | (visible: boolean) => void; | Callback when visible change | |
afterVisibleChange | (visible: boolean) => void; | Callback after visible change | |
overlay | ReactNode | () => ReactNode | tooltip overlay content | |
overlayStyle | object | deprecated, Please use styles={{ root: {} }} | |
overlayClassName | string | deprecated, Please use classNames={{ root: {} }} | |
prefixCls | string | 'rc-tooltip' | prefix class name of tooltip |
mouseEnterDelay | number | 0 | delay time (in second) before tooltip shows when mouse enter |
mouseLeaveDelay | number | 0.1 | delay time (in second) before tooltip hides when mouse leave |
getTooltipContainer | (triggerNode: HTMLElement) => HTMLElement | () => document.body | get container of tooltip, default to body |
destroyTooltipOnHide | boolean | false | destroy tooltip when it is hidden |
align | object | align config of tooltip. Please ref demo for usage example | |
showArrow | boolean | object | false | whether to show arrow of tooltip |
zIndex | number | config popup tooltip zIndex | |
classNames | classNames?: { root?: string; body?: string;}; | Semantic DOM class | |
styles | styles?: {root?: React.CSSProperties;body?: React.CSSProperties;}; | Semantic DOM styles |
Tooltip
requires a child node that accepts an onMouseEnter
, onMouseLeave
, onFocus
, onClick
event. This means the child node must be a built-in component like div
or span
, or a custom component that passes its props to its built-in component child.
For accessibility purpose you can use the id
prop to link your tooltip with another element. For example attaching it to an input element:
1<Tooltip 2 ... 3 id={this.props.name}> 4 <input type="text" 5 ... 6 aria-describedby={this.props.name}/> 7</Tooltip>
If you do it like this, a screenreader would read the content of your tooltip if you focus the input element.
NOTE: role="tooltip"
is also added to expose the purpose of the tooltip element to a screenreader.
1npm install 2npm start
1npm test 2npm run chrome-test
1npm run coverage
rc-tooltip
is released under the MIT license.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 13/27 approved changesets -- score normalized to 4
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More