bump to v1.1.0: accessibility, filter bar fix, updated README

This commit is contained in:
Your Name
2026-02-19 20:15:01 +02:00
parent 6012166d99
commit 3d7dc4f875
7 changed files with 56 additions and 9 deletions

View File

@@ -388,7 +388,7 @@ export function BoardView() {
const columnIds = board.columns.map((c) => c.id);
return (
<>
<div className="flex h-full flex-col">
{/* Visually hidden live region for drag-and-drop announcements */}
<div
aria-live="polite"
@@ -421,7 +421,7 @@ export function BoardView() {
>
<OverlayScrollbarsComponent
ref={osRef}
className="h-full"
className="min-h-0 flex-1"
options={{ scrollbars: { theme: "os-theme-pylon", autoHide: "scroll", autoHideDelay: 600, clickScroll: true }, overflow: { y: "hidden" } }}
defer
>
@@ -511,6 +511,6 @@ export function BoardView() {
cardId={selectedCardId}
onClose={() => { setSelectedCardId(null); }}
/>
</>
</div>
);
}