tippyjs-react
tippyjs-react copied to clipboard
React component for Tippy.js (official)
The default docs in `tippyjs-react` directs new developers to understand that they need to use `Headless Tippy` to achieve this config, turns out that after trying several options i found...
Visible doesn't seem to affect a singleton tippy, when it is used the tippy will never be shown an example sandbox https://codesandbox.io/s/focused-leavitt-xhmnp
Hi, I have to problems. I am using React and components from tippy. 1. Nested tippies, when I have nested tippies for example on bigger element and then on text...
When React's strict mode is activated, `aria-expanded` on interactive tooltips is always `false`. **CodeSandbox:** https://codesandbox.io/s/hardcore-carson-sn4n0h?file=/src/App.js
I achieved it like this, but it should be built in, it is an accessibility requirement. ``` const [hide, setHide] = useState(false) const onKeyPress = useCallback(e=>{ if(e.key == "Escape"){ setHide(true)...
I'm in the process of porting an old project of mine into React and have found that passing content that includes HTML into the Tippy component has it still rendered...
tippy() was passed a plain object which is not supported as an argument for virtual positioning. Use props.getReferenceClientRect instead. react-dom.development.js:22839 Uncaught DOMException: Failed to execute 'querySelectorAll' on 'Document': '[object Object]'...
Hello! I've been trying to create a custom component that integrates Tippy in our project and for the most part it works great. However I've been having issues with "theme"...
I'm trying to wrap individual bars in a bar chart with tooltips, but haven't figured out how yet. I found https://github.com/atomiks/tippyjs/issues/41, but that doesn't seem applicable to the react version....
Uncaught Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the...