0.2.0

The tooltip transition controls how it moves from one step to the next. Fade hides the tooltip while transitioning, then fades it in at the new position. Glide keeps it visible and slides it smoothly.

Fade

await borda.mount({
  steps: [...],
  animation: {
    tooltip: { transition: BordaTooltipTransition.FADE },
  },
});

Glide

await borda.mount({
  steps: [...],
  animation: {
    tooltip: { transition: BordaTooltipTransition.GLIDE },
  },
});