Highlights
scrollbar — opt out of the overlay scrollbar (#281)
A new scrollbar option controls scrollbar presentation, restoring what v4 offered via shouldRemoveScrollbarStyle:
styled(default) — the current overlay bar (invisible at rest, paints on scroll/hover). Unchanged — existing sites are unaffected.visible— the same themed bar, but always shown (no idle-hide).native— no scrollbar styling; the browser's own always-visible scrollbar.
Works for both the JSDoc template and the TypeDoc plugin. Migration: shouldRemoveScrollbarStyle: true → scrollbar: "native".
{
opts: {
scrollbar: "native" // or "visible", or "styled" (default)
}
}Patch Changes
- Add the
scrollbaroption (see Highlights). Purely additive — the default (styled) preserves existing behavior. (#281)
Security
- No security-relevant changes in this release.
Full changelog: v5.1.0...v5.1.1