refactor(shared-ui): rename QuickInputBar to InputBar

- Rename QuickInputBar.svelte to InputBar.svelte (simpler name)
- Remove quickActions prop (moved to toolbar components)
- Add onSearchChange callback for real-time search updates
- Export both InputBar and QuickInputBar (alias) for backwards compatibility

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2025-12-12 11:58:13 +01:00
parent 51912a285d
commit 8a75b349dc
4 changed files with 275 additions and 564 deletions

View file

@ -1,2 +1,4 @@
export { default as QuickInputBar } from './QuickInputBar.svelte';
export { default as InputBar } from './InputBar.svelte';
// Alias for backwards compatibility
export { default as QuickInputBar } from './InputBar.svelte';
export type { QuickInputItem, QuickAction, CreatePreview } from './types';