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

A lightweight tooltip for React. Based on tippy.js and powered by Popper.js

Results 104 react-tippy issues
Sort by recently updated
recently updated
newest added

I've a pop on mouse over in a table, the problem is that when I move to click on the popup(interactive) the mouse is passing on another popup area and...

Trying this: ![image](https://user-images.githubusercontent.com/12855692/34805769-c7144048-f64d-11e7-9fdf-00db2db92216.png) Produces this error: ![image](https://user-images.githubusercontent.com/12855692/34805781-d1798c32-f64d-11e7-843f-e713abbab1d5.png) ... can you post something in the documentation about how to use `html` with `withTooltip`? Thank you!! Muchos kudos. :-)

Currently they are listed as dev dependencies, but this is incorrect - both are needed by the package during production. `devDependencies` should only be used for dependencies that are not...

# Summary To fix aria attribute do not have valid value, issue: https://github.com/tvkhoa/react-tippy/issues/89 As describedby need to point to a valid id, that means id that exists, while current implementation...

Tippy.js v2 was released some weeks ago: https://github.com/atomiks/tippyjs/releases/tag/v2.0.1 It would be nice to update the dependency here! As a side note, why didn't you required `tippy.js` from `npm` and instead...

In my specific case I'm trying to set the `aria` attribute for Tippy.js, and it appears that I can't do so through this API. Since you already provide direct access...

How can I hide all poppers? ```[...document.querySelectorAll('.tippy-popper')].forEach(popper => popper._tippy.hide())``` something like that is not working (_tippy is undefined)

I'm trying to render a `react-tippy` tooltip for each cell in a column using `react-table`. I have a table that has a column where each cell in that column renders...