feat(KB-656): add autoExpand prop to QuickEntryBox for list view

- Add autoExpand prop to QuickEntryBox component (defaults to true for backward compatibility)
- Pass autoExpand={false} from ListView to prevent automatic expansion on focus
- Keep board view with default auto-expand behavior
- Add test coverage for autoExpand={false} behavior
- Add changeset for patch release
This commit is contained in:
gsxdsm
2026-03-31 23:29:29 -07:00
parent 2a0c660aa8
commit 48c4c357b4
5 changed files with 23 additions and 7 deletions

View File

@@ -2,4 +2,4 @@
"@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.
Add autoExpand prop to QuickEntryBox component to control auto-expand behavior. List view now passes autoExpand={false} to prevent automatic expansion on focus, while board view continues to auto-expand by default.