mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 18:59:40 +02:00
- Add @manacore/shared-help-types with TypeScript types and Zod schemas - Add @manacore/shared-help-content with Markdown parser, content loader, and Fuse.js search - Add @manacore/shared-help-ui with Svelte 5 components (HelpPage, FAQSection, FeaturesOverview, etc.) - Add @manacore/shared-help-mobile with React Native components for Expo apps - Add help translations to shared-i18n (de, en, fr, it, es) - Implement self-contained help page in Contacts app with FAQ, Features, Shortcuts, and Contact sections - Support i18n with German and English content 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
/**
|
|
* @manacore/shared-help-ui
|
|
* Svelte 5 components for the Help page system
|
|
*/
|
|
|
|
// Main page component
|
|
export { default as HelpPage } from './pages/HelpPage.svelte';
|
|
|
|
// Section components
|
|
export { default as FAQSection } from './components/FAQSection.svelte';
|
|
export { default as FAQItem } from './components/FAQItem.svelte';
|
|
export { default as FeaturesOverview } from './components/FeaturesOverview.svelte';
|
|
export { default as FeatureCard } from './components/FeatureCard.svelte';
|
|
export { default as KeyboardShortcuts } from './components/KeyboardShortcuts.svelte';
|
|
export { default as GettingStartedGuide } from './components/GettingStartedGuide.svelte';
|
|
export { default as ChangelogSection } from './components/ChangelogSection.svelte';
|
|
export { default as ChangelogEntry } from './components/ChangelogEntry.svelte';
|
|
export { default as ContactSection } from './components/ContactSection.svelte';
|
|
export { default as HelpSearch } from './components/HelpSearch.svelte';
|
|
|
|
// Types
|
|
export type {
|
|
HelpPageProps,
|
|
HelpPageTranslations,
|
|
HelpSection,
|
|
FAQSectionProps,
|
|
FeaturesOverviewProps,
|
|
KeyboardShortcutsProps,
|
|
GettingStartedGuideProps,
|
|
ChangelogSectionProps,
|
|
ContactSectionProps,
|
|
HelpSearchProps,
|
|
} from './types.js';
|