Dynamic `visible` prop doesn't work as expected
I want to sometimes force a tooltip to be visible, but the same tooltip should then revert to "automatic visibility". I do something like visible={forceVisible ? true : undefined}, which seems to work up until forceVisible becomes false again – the tooltip remains visible even though I'm subsequently passing undefined as the visible prop. The only thing that makes it hide is making it false, but then it forces it to be hidden, instead of showing/hiding automatically.
Doesn't look like the lib handles a dynamic change for that prop: https://github.com/atomiks/tippyjs-react/blob/master/src/Tippy.js#L46-L62
Would love to see this prop handle dynamic updates! We'd also like to use it to manually hold a tooltip open, but are open to other suggestions on how to implement this.
how is this not the default ?