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

- Add autoExpand prop to QuickEntryBox (defaults to true for backward compatibility)
- When autoExpand is true, component auto-expands on focus
- List view passes autoExpand={false} to keep view collapsed by default
- Board view continues to auto-expand using default behavior
- Add tests for both autoExpand modes and verify focus behavior
This commit is contained in:
gsxdsm
2026-04-02 09:20:37 -07:00
parent c03c9602b4
commit ecabeac947
5 changed files with 41 additions and 10 deletions

View File

@@ -0,0 +1,5 @@
---
"@fusion/dashboard": patch
---
Don't auto expand QuickEntryBox on focus in list view. The QuickEntryBox now has an `autoExpand` prop (default: `true`) that controls whether the component automatically expands when focused. List view now passes `autoExpand={false}` to keep the view collapsed, while board view continues to auto-expand (uses default behavior).