feat(KB-019): add grouped list view with section headers

- Implement task grouping logic by columns in ListView component
- Add CSS styling for section headers and grouped layout
- Fix React Fragment keys for proper list rendering
- Update tests for grouped list view functionality
- Add changeset for release notes
This commit is contained in:
gsxdsm
2026-03-29 18:43:52 -07:00
parent e79e28e717
commit 95fe32560d
4 changed files with 323 additions and 103 deletions

View File

@@ -0,0 +1,7 @@
---
"@dustinbyrne/kb": patch
---
Group list view tasks by column with section headers
The task list view now displays tasks grouped by their column (triage, todo, in-progress, in-review, done). Each section shows a header with the column's color dot, label, and task count. Empty sections display a "No tasks" placeholder, and when filtering is active, empty sections are hidden. Sorting continues to work within each section, preserving the selected sort order within column groups.