mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 16:06:43 +02:00
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:
parent
51912a285d
commit
8a75b349dc
4 changed files with 275 additions and 564 deletions
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue