svooltip
Version:
A basic Svelte tooltip directive. Powered by [Floating UI](https://floating-ui.com/).
19 lines (18 loc) • 412 B
JavaScript
export const DEFAULTS = {
html: false,
target: 'body',
placement: 'top',
shiftPadding: 0,
offset: 10,
delay: 0,
constant: false,
visibility: true,
classes: {
container: 'svooltip',
content: 'svooltip-content',
arrow: 'svooltip-arrow',
animationEnter: 'svooltip-entering',
animationLeave: 'svooltip-leaving'
},
middleware: []
};