[READ-ONLY] a fast, modern browser for the npm registry
at main 16 lines 396 B view raw
1<script setup lang="ts"> 2const props = defineProps<{ 3 /** Tooltip text */ 4 text: string 5 /** Position: 'top' | 'bottom' | 'left' | 'right' */ 6 position?: 'top' | 'bottom' | 'left' | 'right' 7 /** is tooltip visible */ 8 isVisible: boolean 9}>() 10</script> 11 12<template> 13 <TooltipBase :text :isVisible :position :tooltip-attr="{ 'aria-live': 'polite' }" 14 ><slot 15 /></TooltipBase> 16</template>