tooltip icon indicating copy to clipboard operation
tooltip copied to clipboard

React Tooltip

Results 71 tooltip issues
Sort by recently updated
recently updated
newest added

Can you please provide a prop to be able to hide the tooltip arrow (noArrow for example)? In my case, I need to use both (tooltip with an arrow and...

im trying to make the tooltip alignment dynamic. but when the component parent passing different targetOffset, it stays with the initial values. im building a calendar. when clicking any date...

Thanks for the wonderful library! I think it would be really great if the types documented the API of the component a little more closely. For instance the type of...

The problem located in `Content.js` file at lines: ```javascript componentDidUpdate() { const { trigger } = this.props; if (trigger) { trigger.forcePopupAlign(); } } ``` On every re-render/changing props it invokes...

React v16.9 show Deprecated lifecycle method warnings. #193 @afc163

Hello! I have an issue trying to add an animation to my component with transitionName prop. My code looks like this: ``` import * as React from "react"; import styled,...

The following warning is shown upon upgrading to React 16.9.0: ``` Warning: componentWillReceiveProps has been renamed, and is not recommended for use. See https://fb.me/react-async-component-lifecycle-hooks for details. * Move data fetching...

According to this [issue](https://github.com/react-component/tooltip/issues/118) are you going to hide automatically tooltip on scroll? It is not a decision to listen "scroll" event on element (like we shouldn't manually handle `mouseLeave`)...

#### problem 1. By default, the tooltip's contents is rendered at the bottom of the DOM, so that it is not practical to use the keyboard to access the contents...

This is a very simple demo: https://codesandbox.io/embed/mqm14597m9 ```js import React from "react"; import { render } from "react-dom"; import Tooltip from "rc-tooltip"; import "rc-tooltip/assets/bootstrap.css"; const App = () => (...