diff --git a/.gitignore b/.gitignore
index a8c4af4..f4a55f8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -37,3 +37,4 @@ ehthumbs.db
Desktop.ini
yarn.lock
+.ai/
diff --git a/demo/App.vue b/demo/App.vue
index 9168f41..6c52c7a 100644
--- a/demo/App.vue
+++ b/demo/App.vue
@@ -1864,7 +1864,6 @@ const handleCustomMenuAction = (action: string, task: Task) => {
:tasks="tasks"
:milestones="milestones"
:locale="controlMode === 'props' ? propsLocale : undefined"
- :theme="controlMode === 'props' ? propsTheme : undefined"
:time-scale="controlMode === 'props' ? propsTimeScale : undefined"
:fullscreen="controlMode === 'props' ? propsFullscreen : undefined"
:expand-all="controlMode === 'props' ? propsExpandAll : undefined"
diff --git a/demo/version-history.json b/demo/version-history.json
index 6d36d38..f1c06f7 100644
--- a/demo/version-history.json
+++ b/demo/version-history.json
@@ -492,5 +492,19 @@
"🎉 Optimized: The assignee and avatar properties of the Task object now accept arrays to mark multiple assignees",
"Special thanks to yunlbs/fhjfhj/jakepan@gitee for their use and suggestions"
]
+ },
+ {
+ "version": "1.8.1",
+ "date": "2026-02-05",
+ "notes": [
+ "🎉 优化:重构组件,Theme作用域从全局调整至局部.gantt-root",
+ "🎉 优化:重构组件,Theme自动跟随系统设置",
+ "🎉 优化:重构组件,完美支持Nuxt3、TailwindCSS等框架",
+ "特别感谢andrijor@gmail.com的专业反馈",
+ "🎉 Optimized: Refactored components, Theme scope adjusted from global to local .gantt-root",
+ "🎉 Optimized: Refactored components, Theme automatically follows system settings",
+ "🎉 Optimized: Refactored components, Perfectly supports Nuxt3, TailwindCSS and other frameworks",
+ "Special thanks to andrijor@gmail.com for their professional feedback"
+ ]
}
]
diff --git a/package.json b/package.json
index e3e3e0c..2cf9f13 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "jordium-gantt-vue3",
- "version": "1.8.0",
+ "version": "1.8.1",
"type": "module",
"main": "npm-package/dist/jordium-gantt-vue3.cjs.js",
"module": "npm-package/dist/jordium-gantt-vue3.es.js",
diff --git a/src/components/ConfirmTimerDialog.vue b/src/components/ConfirmTimerDialog.vue
index 8f3a64e..df19e08 100644
--- a/src/components/ConfirmTimerDialog.vue
+++ b/src/components/ConfirmTimerDialog.vue
@@ -1,4 +1,4 @@
-