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

- Add autoExpand prop to QuickEntryBox component (defaults to true for backward compatibility)
- Pass autoExpand={false} in ListView to prevent auto-expansion on focus
- Board view continues to auto-expand by default
- Add test coverage for autoExpand={false} behavior
This commit is contained in:
gsxdsm
2026-04-01 07:06:23 -07:00
parent 1e24e212f6
commit 590f938e23
4 changed files with 26 additions and 5 deletions

View File

@@ -1,5 +1,7 @@
---
"@gsxdsm/fusion": patch
"@fusion/dashboard": patch
---
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.
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.