- Updated RegisterScreen to support a multi-step registration flow with components for email input, verification, and profile setup. - Added new components: VerificationCodeInput, StepIndicator, and corresponding types for step management. - Enhanced background service to check authentication status before executing tasks, improving app reliability. - Updated TypeScript configuration to include module resolution and JSON module support. This update significantly improves the user registration experience and ensures background tasks are only executed for authenticated users.
16 lines
576 B
TypeScript
16 lines
576 B
TypeScript
/**
|
|
* 认证屏幕导出
|
|
* 胡萝卜BBS - 登录注册模块
|
|
*/
|
|
|
|
export { LoginScreen } from './LoginScreen';
|
|
export { RegisterScreen } from './RegisterScreen';
|
|
export { ForgotPasswordScreen } from './ForgotPasswordScreen';
|
|
export { WelcomeScreen } from './WelcomeScreen';
|
|
|
|
// 注册步骤组件
|
|
export { RegisterStep1Email } from './RegisterStep1Email';
|
|
export { RegisterStep2Verification } from './RegisterStep2Verification';
|
|
export { RegisterStep3Profile } from './RegisterStep3Profile';
|
|
export type { RegisterFormData, RegisterStepProps, RegisterStep } from './types';
|