Merge branch 'develop' into pages

This commit is contained in:
LINING-PC\lining
2026-01-10 23:36:46 +08:00
5 changed files with 1222 additions and 18 deletions
+4
View File
@@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- 拆分TaskList子组件代码,更易读、易维护
- Split TaskList sub-component code for better readability and maintainability
### Fixed
- 🔧 依赖包happy-domjspdfvitest漏洞升级
- 🔧 Upgraded vulnerabilities in dependent packages happy-dom, jspdf, vitest
## [1.6.2] - 2025-12-23
### Fixed
+2 -2
View File
@@ -1390,7 +1390,7 @@ const handleCustomMenuAction = (action: string, task: Task) => {
</TaskListContextMenu>
<!-- 使用声明式的 TaskBarContextMenu 组件 - 推荐方式 -->
<TaskBarContextMenu>
<!-- <TaskBarContextMenu>
<template #default="scope">
<div class="custom-menu">
<div class="custom-menu-header">声明式 TaskBar 菜单</div>
@@ -1406,7 +1406,7 @@ const handleCustomMenuAction = (action: string, task: Task) => {
</div>
</div>
</template>
</TaskBarContextMenu>
</TaskBarContextMenu> -->
</GanttChart>
</div>
+2
View File
@@ -427,11 +427,13 @@
"🎉 新增:TaskListContextMenu和TaskBarContextMenu的default Slots",
"🎉 新增:TaskListContextMenu和TaskBarContextMenu是否展示属性 - enable-task-list-context-menu和enable-task-bar-context-menu",
"🎉 优化:拆分TaskList子组件代码,更易读、易维护",
"🔧 修复:依赖包happy-domjspdfvitest漏洞升级",
"<span style=\"font-weight: bold; color: #f00;\">特别感谢 fhjfhj@gitee的使用及反馈</span>",
"🎉 Added: Declarative definition ContextMenu method for TaskList and TaskBar using the TaskListContextMenu and TaskBarContextMenu components",
"🎉 Added: default Slots for TaskListContextMenu and TaskBarContextMenu",
"🎉 Added: Properties to control the display of TaskListContextMenu and TaskBarContextMenu - enable-task-list-context-menu and enable-task-bar-context-menu",
"🎉 Optimized: Split TaskList sub-component code for better readability and maintainability",
"🔧 Fixed: Upgraded vulnerabilities in dependent packages happy-dom, jspdf, vitest",
"<span style=\"font-weight: bold; color: #f00;\">Special thanks to fhjfhj@gitee for their use and feedback</span>"
]
}
+1209 -11
View File
File diff suppressed because it is too large Load Diff
+5 -5
View File
@@ -76,26 +76,26 @@
"dependencies": {
"date-fns": "^4.1.0",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.1",
"jspdf": "^4.0.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-vue": "^5.2.3",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.7.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.25.0",
"happy-dom": "^12.10.3",
"happy-dom": "^20.1.0",
"prettier": "^3.2.5",
"typescript": "~5.8.3",
"vite": "^6.3.5",
"vitest": "^0.34.6",
"vitest": "^4.0.16",
"vue-tsc": "^2.2.8"
}
}