主要更新: - 新增 FilePreview 通用组件,支持视频/图片/PDF 内嵌预览 - 审核详情页添加文件信息卡片、预览/下载功能 - 审核列表和详情页添加申诉标识和申诉理由显示 - 完善三端消息通知系统(达人/代理商/品牌) - 新增达人 Brief 查看页面 - 新增品牌方消息中心页面 - 创建后端开发备忘文档 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
35 lines
1.3 KiB
TypeScript
35 lines
1.3 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 {
|
|
FilePreview,
|
|
FileInfoCard,
|
|
FilePreviewModal,
|
|
VideoPlayer,
|
|
ImageViewer,
|
|
PDFViewer,
|
|
DocumentPlaceholder,
|
|
getFileCategory,
|
|
type FileInfo
|
|
} from './ui/FilePreview';
|
|
|
|
// 导航组件
|
|
export { BottomNav } from './navigation/BottomNav';
|
|
export { Sidebar } from './navigation/Sidebar';
|
|
export { StatusBar } from './navigation/StatusBar';
|
|
|
|
// 布局组件
|
|
export { MobileLayout } from './layout/MobileLayout';
|
|
export { DesktopLayout } from './layout/DesktopLayout';
|
|
export { ResponsiveLayout } from './layout/ResponsiveLayout';
|