0.2.0

Keyboard control is enabled by default. Disable it for tours where keyboard input might interfere with the page.

Keys

KeyAction
ArrowRightNext step
ArrowLeftPrevious step
EscapeClose the tour

Enabled (default)

await borda.mount({
  steps: [...],
  tour: { hasKeyboardControl: true },
});

Disabled

await borda.mount({
  steps: [...],
  tour: { hasKeyboardControl: false },
});