mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 16:49:39 +02:00
- 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>
28 lines
907 B
TypeScript
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';
|