問題: - SlidePanel 側邊滑入與右側 OpenClaw 固定面板衝突 - 480px 寬度不足,內容被擠壓截斷 - 標題「審核詳情」只顯示「情」 解決方案: - 新建 ApprovalModal 全屏 Modal 組件 - 居中對話框 (max-width: 672px) - 深色遮罩 (60%) 強制用戶聚焦 - 符合 Nothing.tech「一次專注一件事」設計哲學 設計參考: GitHub PR Review, AWS IAM Console Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
40 lines
702 B
TypeScript
40 lines
702 B
TypeScript
/**
|
|
* AWOOOI UI Component Library
|
|
* ===========================
|
|
* Nothing.tech 明亮工業風原子組件
|
|
*
|
|
* CPO-101: 原子組件庫
|
|
*/
|
|
|
|
// Glass Card
|
|
export {
|
|
GlassCard,
|
|
GlassCardHeader,
|
|
GlassCardTitle,
|
|
GlassCardContent,
|
|
GlassCardFooter,
|
|
type GlassCardProps,
|
|
} from './glass-card'
|
|
|
|
// Status Orb
|
|
export {
|
|
StatusOrb,
|
|
StatusOrbWithRing,
|
|
StatusBadge,
|
|
type StatusOrbProps,
|
|
type StatusType,
|
|
} from './status-orb'
|
|
|
|
// Dot Matrix Background
|
|
export {
|
|
DotMatrixBg,
|
|
DotMatrixLight,
|
|
DotMatrixSubtle,
|
|
DotMatrixDense,
|
|
GridLinesBg,
|
|
type DotMatrixBgProps,
|
|
} from './dot-matrix-bg'
|
|
|
|
// Approval Modal (Phase 17 UI/UX 修復)
|
|
export { ApprovalModal } from './approval-modal'
|