@lucashca/claudecontrol 0.3.32 → 0.3.33

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.
@@ -107,16 +107,18 @@ export function ChatPanel({ agentId, compact }: { agentId: string; compact?: boo
107
107
  <GitBranch size={12} />
108
108
  </button>
109
109
  </Tooltip>
110
- {agent.status === 'working' && (
111
- <Tooltip text="Parar agente" position="bottom">
112
- <button
113
- onClick={handleStop}
114
- className="inline-flex items-center justify-center w-6 h-6 rounded-md border-none cursor-pointer transition-colors text-cc-error hover:bg-cc-error/15"
115
- >
116
- <Square size={12} />
117
- </button>
118
- </Tooltip>
119
- )}
110
+ <Tooltip text="Parar agente" position="bottom">
111
+ <button
112
+ onClick={handleStop}
113
+ className={`inline-flex items-center justify-center w-6 h-6 rounded-md border-none cursor-pointer transition-colors ${
114
+ agent.status === 'working'
115
+ ? 'text-cc-error hover:bg-cc-error/15'
116
+ : 'text-cc-muted hover:text-cc-error hover:bg-cc-error/15'
117
+ }`}
118
+ >
119
+ <Square size={12} />
120
+ </button>
121
+ </Tooltip>
120
122
  <Badge variant={badgeVariant} className="text-[11px] px-2.5 py-0.5 rounded-md">
121
123
  {agent.status}
122
124
  </Badge>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucashca/claudecontrol",
3
- "version": "0.3.32",
3
+ "version": "0.3.33",
4
4
  "description": "AI Agent Dashboard — manage multiple Claude Code agents across projects",
5
5
  "type": "module",
6
6
  "bin": {
package/version.json CHANGED
@@ -1 +1 @@
1
- {"version":"0.3.32","build":"2026-04-04T00:22:18.525Z"}
1
+ {"version":"0.3.33","build":"2026-04-04T00:53:39.801Z"}