feat(KB-656): keep list quick entry collapsed on focus

- Add an autoExpand prop to QuickEntryBox with default focus expansion behavior
- Preserve manual expand and blur persistence while allowing list view to opt out
- Add coverage for autoExpand={false} behavior in QuickEntryBox tests
- Include a published-package changeset describing the quick entry behavior change
This commit is contained in:
gsxdsm
2026-04-01 12:25:00 -07:00
parent 5e257adbc9
commit 78f6a76fd2
3 changed files with 17 additions and 6 deletions

View File

@@ -1,7 +1,5 @@
---
"@fusion/dashboard": patch
"@gsxdsm/fusion": patch
---
Don't auto expand the quick add view in list view
Added `autoExpand` prop to QuickEntryBox component to control auto-expand behavior. List view now passes `autoExpand={false}` to keep the interface clean, while board view continues to auto-expand by default.
Keep the list-view quick add input collapsed on focus while preserving board-view auto-expand behavior.