mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 05:09:39 +02:00
- Add HTML sanitization via isomorphic-dompurify in parser layer to prevent XSS - Replace all hardcoded English strings with translations (FAQSection, KeyboardShortcuts, ChangelogEntry/Section) - Remove unsafe `as` type casting in loader.ts, use Zod-inferred generics instead - Add error logging in content loader (replaces silent catch blocks) - Fix HelpSearch blur handling (mousedown+preventDefault instead of setTimeout hack) - Add ARIA attributes to HelpSearch for accessibility - Derive FAQ categories from items instead of hardcoding all 6 - Fix null-safety in GettingStartedGuide.svelte - Fix unused appId variable in HelpPage.svelte, add scroll-reset on tab switch - Rebuild Contacts help page as reference implementation using shared HelpPage component - Add README with quick-start guide, props docs, and translations template Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
55 lines
1.1 KiB
TypeScript
55 lines
1.1 KiB
TypeScript
/**
|
|
* @manacore/shared-help-content
|
|
* Central help content and utilities for loading, parsing, and searching
|
|
*/
|
|
|
|
// Parser utilities
|
|
export {
|
|
parseMarkdown,
|
|
parseMarkdownFiles,
|
|
stripHtml,
|
|
generateExcerpt,
|
|
type ParsedContent,
|
|
type ParseOptions,
|
|
} from './parser.js';
|
|
|
|
// Content loader
|
|
export {
|
|
parseFAQContent,
|
|
parseFeatureContent,
|
|
parseShortcutsContent,
|
|
parseGettingStartedContent,
|
|
parseChangelogContent,
|
|
parseContactContent,
|
|
loadHelpContentFromFiles,
|
|
type LoaderOptions,
|
|
} from './loader.js';
|
|
|
|
// Content merger
|
|
export { mergeContent, createEmptyContent } from './merger.js';
|
|
|
|
// Sanitization
|
|
export { sanitizeHtml } from './sanitize.js';
|
|
|
|
// Search functionality
|
|
export { buildSearchIndex, search, createSearcher, flattenContentForSearch } from './search.js';
|
|
|
|
// Re-export types for convenience
|
|
export type {
|
|
HelpContent,
|
|
FAQItem,
|
|
FeatureItem,
|
|
ShortcutsItem,
|
|
GettingStartedItem,
|
|
ChangelogItem,
|
|
ContactInfo,
|
|
SupportedLanguage,
|
|
MergeContentOptions,
|
|
} from '@manacore/shared-help-types';
|
|
|
|
export type {
|
|
SearchResult,
|
|
SearchOptions,
|
|
SearchIndexConfig,
|
|
SearchableItem,
|
|
} from '@manacore/shared-help-types';
|