0.2.0

The progress indicator shows the user's position in the tour. Three visual variants are available, or disable it entirely.

Dots

await borda.mount({
  steps: [...],
  tourProgress: { variant: BordaTourProgressVariant.DOTS },
});

Text

await borda.mount({
  steps: [...],
  tourProgress: { variant: BordaTourProgressVariant.TEXT },
});

Line

await borda.mount({
  steps: [...],
  tourProgress: { variant: BordaTourProgressVariant.LINE },
});