mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 11:59:39 +02:00
- Rename authStore.svelte.ts to auth.svelte.ts (manacore, manadeck, moodlit) - Add i18n setup to Finance and Mail apps (DE, EN, FR, ES, IT) - Add feedback pages using shared component to Finance and Mail - Create @manacore/shared-api-client package with API client factory - Create @manacore/shared-vite-config package with SSR config helpers - Create @manacore/shared-stores package with toast, navigation, theme factories 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
391 B
TypeScript
12 lines
391 B
TypeScript
/**
|
|
* Shared Store Factories for ManaCore Apps
|
|
* Provides reusable Svelte 5 runes-based stores.
|
|
*/
|
|
|
|
export { createToastStore, type Toast, type ToastStore, type ToastType } from './toast.svelte';
|
|
export {
|
|
createNavigationStore,
|
|
type NavigationItem,
|
|
type NavigationStore,
|
|
} from './navigation.svelte';
|
|
export { createThemeStore, type ThemeStore, type ThemeMode } from './theme.svelte';
|