@supaku/agentfactory-dashboard 0.6.3 → 0.7.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supaku/agentfactory-dashboard",
3
- "version": "0.6.3",
3
+ "version": "0.7.0",
4
4
  "description": "Premium dashboard UI components for AgentFactory",
5
5
  "author": "Supaku (https://supaku.com)",
6
6
  "license": "MIT",
@@ -45,7 +45,12 @@ export function AgentCard({ session, className, onSelect }: AgentCardProps) {
45
45
  <div className="flex items-start justify-between gap-2">
46
46
  <div className="flex items-center gap-2 min-w-0">
47
47
  <StatusDot status={session.status} showHeartbeat={session.status === 'working'} />
48
- <span className="text-sm font-mono font-medium text-af-text-primary truncate">
48
+ <span className={cn(
49
+ 'text-sm font-mono font-medium truncate',
50
+ onSelect
51
+ ? 'text-af-teal hover:underline underline-offset-2'
52
+ : 'text-af-text-primary'
53
+ )}>
49
54
  {session.identifier}
50
55
  </span>
51
56
  </div>
@@ -36,7 +36,12 @@ export function PipelineCard({ session, className, onSelect }: PipelineCardProps
36
36
  >
37
37
  <div className="flex items-center gap-2">
38
38
  <StatusDot status={session.status} />
39
- <span className="text-xs font-mono font-medium text-af-text-primary truncate">
39
+ <span className={cn(
40
+ 'text-xs font-mono font-medium truncate',
41
+ onSelect
42
+ ? 'text-af-teal hover:underline underline-offset-2'
43
+ : 'text-af-text-primary'
44
+ )}>
40
45
  {session.identifier}
41
46
  </span>
42
47
  </div>