agent-tasks 1.9.14 → 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.14",
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 () {
@@ -503,6 +503,7 @@ header {
503
503
  display: flex;
504
504
  flex: 1;
505
505
  overflow: hidden;
506
+ position: relative;
506
507
  transition: all var(--transition-slow);
507
508
  }
508
509
 
@@ -1515,8 +1516,13 @@ header {
1515
1516
  }
1516
1517
 
1517
1518
  .board-wrapper.panel-open .side-panel {
1519
+ position: absolute;
1520
+ right: 0;
1521
+ top: 0;
1522
+ bottom: 0;
1518
1523
  width: var(--panel-width);
1519
1524
  min-width: var(--panel-width);
1525
+ z-index: 80;
1520
1526
  }
1521
1527
 
1522
1528
  .board-wrapper.panel-open .side-panel.panel-wide {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-tasks",
3
- "version": "1.9.14",
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",