feat: add compact view feature to Kanban components

- Introduced `compactView` prop in `KanbanBoard`, `KanbanColumn`, and `TaskCard` for a streamlined task display.
- Updated `KanbanFilters` to include a toggle for compact view, enhancing user experience.
- Adjusted rendering logic in `TaskCard` to conditionally display task details based on the compact view state.
This commit is contained in:
Julien Froidefond
2025-09-14 21:37:33 +02:00
parent c1844cfb71
commit ef3ee1bdbf
5 changed files with 118 additions and 6 deletions

View File

@@ -61,6 +61,7 @@ export function KanbanBoardContainer() {
onUpdateTitle={handleUpdateTitle}
onUpdateStatus={handleUpdateStatus}
loading={loading}
compactView={kanbanFilters.compactView}
/>
<EditTaskForm