mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 08:39:40 +02:00
1. Extract hardcoded German highlight patterns into locale-specific sets (de, en, fr, it, es). InputBar accepts `locale` or custom `highlightPatterns` prop, defaulting to German for backward compat. 2. Add visual success feedback after creating: input bar flashes green with a checkmark icon for 1.2s, confirming the action was successful. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
1 KiB
TypeScript
31 lines
1 KiB
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, HighlightPattern } from './types';
|
|
|
|
// Highlight patterns (locale-aware syntax highlighting)
|
|
export { getHighlightPatterns } from './highlightPatterns';
|
|
|
|
// 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';
|