feat: add Sheet component for bottom sheet UI with drag-to-dismiss and snap points

test: implement DialogStyleContext tests for preference management and style recommendations

test: create tests for useAutoSelection hook, including countdown and pause functionality

feat: implement useAutoSelection hook for enhanced auto-selection with sound notifications

feat: create Zustand store for managing issue submission wizard state

feat: add Zod validation schemas for issue-related API requests

feat: implement issue service for CRUD operations and validation handling

feat: define TypeScript types for issue submission and management
This commit is contained in:
catlog22
2026-02-16 11:51:21 +08:00
parent 374a1e1c2c
commit 2202c2ccfd
35 changed files with 3717 additions and 145 deletions

View File

@@ -448,5 +448,34 @@
"autoStart": {
"label": "拖到进行中自动执行"
}
},
"issueDialog": {
"titleLabel": "标题",
"titlePlaceholder": "请输入Issue标题...",
"descriptionLabel": "描述",
"descriptionPlaceholder": "请详细描述问题或需求...",
"typeLabel": "选择类型",
"typeBug": "Bug",
"typeBugDesc": "功能异常或错误",
"typeFeature": "Feature",
"typeFeatureDesc": "新功能需求",
"typeImprovement": "Improvement",
"typeImprovementDesc": "现有功能改进",
"typeOther": "Other",
"typeOtherDesc": "其他类型",
"priorityLabel": "选择优先级",
"priorityLow": "低",
"priorityMedium": "中",
"priorityHigh": "高",
"priorityUrgent": "紧急",
"summaryTitle": "标题",
"summaryDescription": "描述",
"summaryType": "类型",
"summaryPriority": "优先级",
"cancel": "取消",
"previous": "上一步",
"next": "下一步",
"submit": "提交",
"submitting": "提交中..."
}
}