managarten/packages/shared-ui/src/quick-input/index.ts
Till-JS 9e7113982e feat(shared-ui): add InputBar context menu with settings
- Add InputBarContextMenu with settings toggles (syntax highlighting, auto-focus)
- Add InputBarHelpModal for keyboard shortcuts and syntax help
- Add inputBarSettings store with localStorage persistence
- Add recentInputHistory store for tracking used tags/references
- Integrate context menu in calendar app with default calendar selection
- Right-click on InputBar opens settings menu

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-14 22:20:00 +01:00

28 lines
907 B
TypeScript

export { default as InputBar } from './InputBar.svelte';
// Alias for backwards compatibility
export { default as QuickInputBar } from './InputBar.svelte';
export { default as InputBarContextMenu } from './InputBarContextMenu.svelte';
export { default as InputBarHelpModal } from './InputBarHelpModal.svelte';
export type { QuickInputItem, QuickAction, CreatePreview } from './types';
// Recent input history (tags, references)
export {
getRecentTags,
getRecentReferences,
addRecentTag,
addRecentReference,
extractAndSaveFromInput,
clearRecentHistory,
createRecentInputHistoryStore,
} from './recentInputHistory';
// InputBar settings
export {
loadInputBarSettings,
saveInputBarSettings,
updateInputBarSetting,
resetInputBarSettings,
createInputBarSettingsStore,
getInputBarSettingsStore,
} from './inputBarSettings.svelte';
export type { InputBarSettings } from './inputBarSettings.svelte';