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
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
929 Stars
292 Commits
191 Forks
27 Watching
10 Branches
63 Contributors
Updated on 14 Nov 2024
Minified
Minified + Gzipped
TypeScript (81.1%)
JavaScript (12.15%)
Less (6.75%)
Cumulative downloads
Total Downloads
Last day
-4.3%
390,378
Compared to previous day
Last week
3.5%
2,067,341
Compared to previous week
Last month
10.9%
8,598,364
Compared to previous month
Last year
10%
91,413,826
Compared to previous year
3
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 | style of tooltip overlay | |
overlayClassName | string | className of tooltip overlay | |
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 |
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 10/27 approved changesets -- score normalized to 3
Reason
3 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 2
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 2024-11-18
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