react-tooltip icon indicating copy to clipboard operation
react-tooltip copied to clipboard

React Tooltip Component

Results 154 react-tooltip issues
Sort by recently updated
recently updated
newest added

HI, it looks like we cant test the tooltip with `react-testing-libarary`. Test: ``` test("tooltip, async () => { render( click to see tooltip ); fireEvent.mouseOver(screen.getByText("click to see tooltip")); await waitFor(()...

I'm displaying tooltips in some table cells in tables that contain 500+ items. Rendering is extremely slow. When I remove just the `ReactTooltip` elements, the table renders quickly. When a...

I want change `data-type` dynamic for opened tooltip. I can change Icon with this way but for tooltip not work I must re-hover to see change ```js { handleDarkMode(); }}...

Hey! This code, ```jsx Upload ``` Seems to be giving me this: ![image](https://user-images.githubusercontent.com/21041399/108627331-4db9da80-7455-11eb-9c8d-46b3ce6608b2.png) I've tried to use `` tags instead of `` and so on, but I can't seem to...

I've used the `@devexpress/dx-react-scheduler` for the calendar and tried to show the tooltip on each schedule. But the tooltip is shown underneath (see the below screenshot). Do you know how...

On first hover, tooltip (with ) is not shown, [code example](https://codesandbox.io/s/react-tooltip-example-3-11-6-forked-1n9g32?file=/src/App.js:513-517). (react: 18.2.0; react-dom: 18.2.0; react-tooltip: 4.2.21); [Same code example](https://codesandbox.io/s/react-tooltip-example-3-11-6-forked-99f17q?file=/src/App.js) but from react, react-dom: 17.0.2 tooltip is shown on first...

I'm using React testing library, which outputs the dom when a test fails. react-tooltip injects style elements into the dom, which make it hard to debug failing tests, especially when...

Added useful types and demo comment.

I'm writing forms and I need to check if input is valid. But right now I'm testing how your Tooltips work in general. It doesn't work properly for me. Either...

I would like to show a title and a description in each of my tooltips. Something like below: ```es6 {badges.map(badge => ( ( {name} {description} )} /> } ``` The...