svooltip
svooltip copied to clipboard
A basic Svelte tooltip directive.
Hello there. Thanks for this lib. Any reason why `Props` is exported, but not `Options`? From `index.d.ts` ```ts export { default as tooltip } from './tooltip.js'; export { default as...
I have some CSS classes as follows: ```css .svooltip[data-placement^='top'] .svooltip-arrow { @apply border-b border-r; } .svooltip[data-placement^='bottom'] .svooltip-arrow { @apply border-t border-l; } ``` But the issue is, they are not...
I tested using the data-placement param in .scss file, but it seems like it is not working. I tried the following code: ``` .svooltip[data-placement='top'] { --svooltip-bg: white; border: 1px solid...
Would like to show these to keyboard users too
Hello! I have an issue with dynamic content of my tooltips. My tooltips can change dynamically based on a condition. The condition changes while the cursor is on the element...
Hi, Nice library! I just noticed that the `visibility` option is not reactive. This surprised me because it would be great to be able to toggle visibility of the tooltip....