主要变更: - 项目名称统一为"秒思智能审核平台"(替换 SmartAudit) - 完善 TDD 实施评估与计划 (featuredoc/tdd_plan.md V2.0) - 新增项目现状诊断与可行性分析 - 新增前后端测试策略与工具链配置模板 - 新增 CI/CD 集成方案与 Codecov 配置说明 - 标注所有待创建模板文件 - 新增 GitHub 配置脚本 (scripts/setup-github.sh) - 自动配置分支保护规则 - 验证 GitHub CLI 登录状态 - 更新 TASK-005-C 包含分支保护与 Codecov 配置 - 同步更新 F-51/F-52 功能至所有相关文档 - UI 设计 Logo 统一为"秒思" Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
23 lines
1.2 KiB
TypeScript
23 lines
1.2 KiB
TypeScript
/**
|
|
* 秒思智能审核平台组件库统一导出
|
|
* 基于 UIDesignSpec.md 设计规范
|
|
*/
|
|
|
|
// UI 基础组件
|
|
export { Button, type ButtonProps, type ButtonVariant, type ButtonSize } from './ui/Button';
|
|
export { Card, CardHeader, CardTitle, CardContent, CardFooter, type CardProps } from './ui/Card';
|
|
export { Tag, SuccessTag, PendingTag, WarningTag, ErrorTag, type TagProps, type TagStatus } from './ui/Tag';
|
|
export { Input, SearchInput, PasswordInput, type InputProps } from './ui/Input';
|
|
export { Select, type SelectProps, type SelectOption } from './ui/Select';
|
|
export { ProgressBar, CircularProgress, type ProgressBarProps, type CircularProgressProps } from './ui/ProgressBar';
|
|
export { Modal, ConfirmModal, type ModalProps, type ConfirmModalProps } from './ui/Modal';
|
|
|
|
// 导航组件
|
|
export { BottomNav, type BottomNavProps, type NavItem } from './navigation/BottomNav';
|
|
export { Sidebar, type SidebarProps, type SidebarItem, type SidebarSection } from './navigation/Sidebar';
|
|
export { StatusBar, type StatusBarProps } from './navigation/StatusBar';
|
|
|
|
// 布局组件
|
|
export { MobileLayout, type MobileLayoutProps } from './layout/MobileLayout';
|
|
export { DesktopLayout, type DesktopLayoutProps } from './layout/DesktopLayout';
|