feat(KB-149): add mobile touch gesture support to TaskCard

- Implement touch gesture detection for swipe and tap interactions in TaskCard
- Add comprehensive tests for touch event handling (209 lines of test coverage)
- Include changeset for mobile touch sensitivity fix
- Enable smooth card interactions on mobile devices
This commit is contained in:
gsxdsm
2026-03-30 11:40:09 -07:00
parent 467f724a1b
commit b4631032f6
3 changed files with 265 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
---
"@dustinbyrne/kb": patch
---
Fix mobile touch sensitivity on dashboard cards
Implements touch gesture detection to distinguish between scrolling/dragging and intentional taps. Cards now only open the detail modal on quick taps (< 300ms) with minimal movement (< 10px). This prevents accidental modal opens when users are scrolling through the kanban board on mobile devices.