Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

rc-tooltip

react-component7.4mMIT6.4.0TypeScript support: included

React Tooltip

react, react-component, react-tooltip, tooltip

readme

rc-tooltip

React Tooltip

NPM version npm download build status Codecov bundle size dumi

Screenshot

Browsers support

IE / Edge
IE / Edge
Firefox
Firefox
Chrome
Chrome
Safari
Safari
Opera
Opera
IE 8 + ✔ Firefox 31.0+ ✔ Chrome 31.0+ ✔ Safari 7.0+ ✔ Opera 30.0+ ✔

Install

rc-tooltip

Usage

var Tooltip = require('rc-tooltip');
var React = require('react');
var ReactDOM = require('react-dom');

// By default, the tooltip has no style.
// Consider importing the stylesheet it comes with:
// 'rc-tooltip/assets/bootstrap_white.css'

ReactDOM.render(
  <Tooltip placement="left" trigger={['click']} overlay={<span>tooltip</span>}>
    <a href="#">hover</a>
  </Tooltip>,
  container,
);

Examples

npm start and then go to http://localhost:8000/demo

Online demo: https://react-component.github.io/tooltip/demo

API

Props

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

Important Note

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.

Accessibility

For accessibility purpose you can use the id prop to link your tooltip with another element. For example attaching it to an input element:

<Tooltip
    ...
    id={this.props.name}>
    <input type="text"
           ...
           aria-describedby={this.props.name}/>
</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.

Development

npm install
npm start

Test Case

npm test
npm run chrome-test

Coverage

npm run coverage

License

rc-tooltip is released under the MIT license.

changelog

Changelog

3.6.0

  • Support React 16.

3.5.0

  • Add id for ARIA.

3.4.4

  • Fix babel-runtime module not found

3.4.3

  • Fix createClass and PropTypes warning.

3.4.0

  • allow overlay prop as function type

3.3.0

  • support arrowContent prop

3.2.0

  • support destroyTooltipOnHide prop

3.0.0

  • only support react 0.14
  • add align prop to allow set offset and targetOffset when placement's type is String

2.10.0

  • auto adjust align if current tooltip is not visible

2.9.0

  • support 'topLeft', 'topRight', 'bottomLeft', 'bottomRight' for placement

2.8.0

  • add getTooltipContainer prop

2.7.0

  • add overlayClassName prop #16
  • split delay into mouseEnterDelay and mouseLeaveDelay #15

2.6.0

remove renderOverlayToBody prop. defaults to true

2.5.0 / 2015-07-28

use rc-animate & rc-align

2.4.0 / 2015-07-08

revert to document click and fix focus/click conflict #13

2.3.0 / 2015-07-07

new #7 support delay prop

2.2.0 / 2015-06-30

  • use mask instead of document click

2.1.0 / 2015-06-15

  • support overlayStyle props
  • support wrapStyle props

2.0.0 / 2015-06-08

  • support click document to hide
  • support animation props
  • support renderPopupToBody props

1.1.1 / 2015-05-14

add defaultVisible and onVisibleChange