agent-tasks 1.9.15 → 1.9.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,7 @@
2
2
  "id": "agent-tasks",
3
3
  "name": "Tasks",
4
4
  "icon": "task_alt",
5
- "version": "1.9.15",
5
+ "version": "1.9.16",
6
6
  "description": "Pipeline task board — kanban, stages, artifacts, dependencies",
7
7
  "ui": "./dist/ui/app.js",
8
8
  "css": "./dist/ui/styles.css",
package/dist/ui/app.js CHANGED
@@ -815,6 +815,8 @@ TaskBoard.mount = function (container, options) {
815
815
 
816
816
  TaskBoard._root = shadow;
817
817
  _init();
818
+ var themeBtn = shadow.getElementById('theme-toggle');
819
+ if (themeBtn) themeBtn.style.display = 'none';
818
820
  };
819
821
 
820
822
  TaskBoard.unmount = function () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-tasks",
3
- "version": "1.9.15",
3
+ "version": "1.9.16",
4
4
  "description": "Pipeline-driven task management for AI coding agents — stages, dependencies, artifacts, and multi-agent claiming",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",