feat(KB-656): add autoExpand prop to QuickEntryBox and disable in list view

- Add autoExpand prop to QuickEntryBox component (defaults to true)
- Disable auto-expand in list view to reduce visual clutter
- Add tests for autoExpand={false} behavior
- Add changeset for the quick entry auto-expand change
- Fix duplicate variable in QuickEntryBox component
- Remove unused imports from useTasks hook
This commit is contained in:
gsxdsm
2026-03-31 22:55:40 -07:00
parent 661658944f
commit f1f654eb11
4 changed files with 27 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
---
"@gsxdsm/fusion": patch
---
Add autoExpand prop to QuickEntryBox component to control auto-expand behavior on focus. List view now passes autoExpand={false} to keep the UI clean, while board view continues to auto-expand by default.