mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 11:49:39 +02:00
Password strength (zxcvbn-ts): - PasswordStrength component with 4-segment color bar and German feedback - Lazy-loaded with 150ms debounce to avoid SSR/bundle issues - Integrated into RegisterPage and ChangePassword components Magic Links (passwordless email): - Better Auth magicLink plugin (10-minute expiry) - sendMagicLinkEmail() in email service (German template) - Passthrough route for /magic-link/* endpoints - sendMagicLink() in shared-auth client - "Login-Link per E-Mail senden" button on all 20 login pages - All 21 auth stores have sendMagicLink() method Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
36 lines
1.5 KiB
TypeScript
36 lines
1.5 KiB
TypeScript
// Pages
|
|
export { default as LoginPage } from './pages/LoginPage.svelte';
|
|
export { default as RegisterPage } from './pages/RegisterPage.svelte';
|
|
export { default as ForgotPasswordPage } from './pages/ForgotPasswordPage.svelte';
|
|
|
|
// Components
|
|
export { default as GuestWelcomeModal } from './components/GuestWelcomeModal.svelte';
|
|
export { default as AuthGateModal } from './components/AuthGateModal.svelte';
|
|
export { default as SessionExpiredBanner } from './components/SessionExpiredBanner.svelte';
|
|
export { default as AuthGate } from './components/AuthGate.svelte';
|
|
export { default as PasskeyManager } from './components/PasskeyManager.svelte';
|
|
export { default as TwoFactorSetup } from './components/TwoFactorSetup.svelte';
|
|
export { default as SecurityOnboarding } from './components/SecurityOnboarding.svelte';
|
|
export { default as ChangePassword } from './components/ChangePassword.svelte';
|
|
export { default as PasswordStrength } from './components/PasswordStrength.svelte';
|
|
export { default as AuditLog } from './components/AuditLog.svelte';
|
|
|
|
// Utilities
|
|
export {
|
|
shouldShowGuestWelcome,
|
|
markGuestWelcomeSeen,
|
|
resetGuestWelcome,
|
|
resetAllGuestWelcome,
|
|
} from './utils/guestWelcome';
|
|
|
|
// Types
|
|
export type {
|
|
AuthUIConfig,
|
|
AuthServiceInterface,
|
|
AuthResult,
|
|
GuestWelcomeTranslations,
|
|
AuthGateAction,
|
|
AuthGateTranslations,
|
|
} from './types';
|
|
export type { PasskeyManagerTranslations } from './components/PasskeyManager.svelte';
|
|
export type { TwoFactorSetupTranslations } from './components/TwoFactorSetup.svelte';
|