mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 08:19:41 +02:00
- Create new help module with HelpModal, KeyboardShortcutsPanel, and SyntaxHelpPanel components - Add common shortcuts and syntax constants for reusability - Refactor InputBarHelpModal to use new HelpModal component - Fix ContextMenu event handling with stopPropagation and pointer-events - Fix Modal z-index for proper stacking context - Add CalendarHeaderContextMenu import to WeekView 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
491 B
TypeScript
18 lines
491 B
TypeScript
// Help Components
|
|
export { default as HelpModal } from './HelpModal.svelte';
|
|
export { default as KeyboardShortcutsPanel } from './KeyboardShortcutsPanel.svelte';
|
|
export { default as SyntaxHelpPanel } from './SyntaxHelpPanel.svelte';
|
|
|
|
// Types
|
|
export type {
|
|
KeyboardShortcut,
|
|
ShortcutCategory,
|
|
SyntaxColor,
|
|
SyntaxExample,
|
|
SyntaxPattern,
|
|
SyntaxGroup,
|
|
HelpModalConfig,
|
|
} from './types';
|
|
|
|
// Constants
|
|
export { COMMON_SHORTCUTS, COMMON_SYNTAX, DEFAULT_LIVE_EXAMPLE } from './constants';
|