@agenticmail/enterprise 0.5.217 → 0.5.218
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.
|
@@ -3,8 +3,8 @@ import { I } from '../components/icons.js';
|
|
|
3
3
|
import { HelpButton } from '../components/help-button.js';
|
|
4
4
|
|
|
5
5
|
// ─── Constants ───────────────────────────────────────────
|
|
6
|
-
var NODE_W =
|
|
7
|
-
var NODE_H =
|
|
6
|
+
var NODE_W = 200;
|
|
7
|
+
var NODE_H = 52;
|
|
8
8
|
var AGENT_W = 130;
|
|
9
9
|
var AGENT_H = 40;
|
|
10
10
|
var H_GAP = 32; // horizontal gap (left→right flow)
|
|
@@ -35,7 +35,7 @@ function injectCSS() {
|
|
|
35
35
|
.tp-flow-active { animation: flowDash 1.2s linear infinite; }
|
|
36
36
|
.tp-node-active { animation: taskPulse 2s ease-in-out infinite; }
|
|
37
37
|
.tp-node:hover { transform: scale(1.03); z-index: 10; }
|
|
38
|
-
.tp-chain-tag { font-size: 9px; padding: 1px 5px; border-radius: 4px; font-weight: 600; letter-spacing: 0.02em; }
|
|
38
|
+
.tp-chain-tag { font-size: 9px; padding: 1px 5px; border-radius: 4px; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap; flex-shrink: 0; }
|
|
39
39
|
`;
|
|
40
40
|
document.head.appendChild(style);
|
|
41
41
|
}
|
|
@@ -707,7 +707,7 @@ export function TaskPipelinePage() {
|
|
|
707
707
|
background: isHovered ? 'rgba(255,255,255,0.06)' : 'rgba(255,255,255,0.02)',
|
|
708
708
|
border: '1px solid ' + (isExpanded ? sc : isHovered || isChainHl ? sc + '66' : 'rgba(255,255,255,0.1)'),
|
|
709
709
|
/* borderLeft removed */
|
|
710
|
-
borderRadius: 6, padding: '
|
|
710
|
+
borderRadius: 6, padding: '5px 8px', cursor: 'pointer', overflow: 'hidden',
|
|
711
711
|
transition: 'all 0.15s', opacity: dim ? 0.15 : 1,
|
|
712
712
|
backdropFilter: 'blur(6px)',
|
|
713
713
|
display: 'flex', flexDirection: 'column', justifyContent: 'center', gap: 3, userSelect: 'none',
|
|
@@ -723,9 +723,9 @@ export function TaskPipelinePage() {
|
|
|
723
723
|
h('span', { style: { fontSize: 10, fontWeight: 600, color: 'var(--tp-text)', flex: 1, overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap' } }, t.title)
|
|
724
724
|
),
|
|
725
725
|
// Status + agent name + time
|
|
726
|
-
h('div', { style: { display: 'flex', alignItems: 'center', gap: 4, flexWrap: '
|
|
726
|
+
h('div', { style: { display: 'flex', alignItems: 'center', gap: 4, flexWrap: 'nowrap', overflow: 'hidden' } },
|
|
727
727
|
tag(sc, t.status.replace('_', ' ')),
|
|
728
|
-
h('span', { style: { fontSize: 9, color: 'var(--tp-text-dim)' } }, t.assignedToName || t.assignedTo),
|
|
728
|
+
h('span', { style: { fontSize: 9, color: 'var(--tp-text-dim)', overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap', minWidth: 0 } }, t.assignedToName || t.assignedTo),
|
|
729
729
|
t.delegationType && tag(DELEGATION_COLORS[t.delegationType] || '#6b7394', t.delegationType),
|
|
730
730
|
h('span', { style: { fontSize: 9, color: 'var(--tp-text-dim)', marginLeft: 'auto' } }, timeAgo(t.createdAt))
|
|
731
731
|
),
|
package/package.json
CHANGED
|
@@ -3,8 +3,8 @@ import { I } from '../components/icons.js';
|
|
|
3
3
|
import { HelpButton } from '../components/help-button.js';
|
|
4
4
|
|
|
5
5
|
// ─── Constants ───────────────────────────────────────────
|
|
6
|
-
var NODE_W =
|
|
7
|
-
var NODE_H =
|
|
6
|
+
var NODE_W = 200;
|
|
7
|
+
var NODE_H = 52;
|
|
8
8
|
var AGENT_W = 130;
|
|
9
9
|
var AGENT_H = 40;
|
|
10
10
|
var H_GAP = 32; // horizontal gap (left→right flow)
|
|
@@ -35,7 +35,7 @@ function injectCSS() {
|
|
|
35
35
|
.tp-flow-active { animation: flowDash 1.2s linear infinite; }
|
|
36
36
|
.tp-node-active { animation: taskPulse 2s ease-in-out infinite; }
|
|
37
37
|
.tp-node:hover { transform: scale(1.03); z-index: 10; }
|
|
38
|
-
.tp-chain-tag { font-size: 9px; padding: 1px 5px; border-radius: 4px; font-weight: 600; letter-spacing: 0.02em; }
|
|
38
|
+
.tp-chain-tag { font-size: 9px; padding: 1px 5px; border-radius: 4px; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap; flex-shrink: 0; }
|
|
39
39
|
`;
|
|
40
40
|
document.head.appendChild(style);
|
|
41
41
|
}
|
|
@@ -707,7 +707,7 @@ export function TaskPipelinePage() {
|
|
|
707
707
|
background: isHovered ? 'rgba(255,255,255,0.06)' : 'rgba(255,255,255,0.02)',
|
|
708
708
|
border: '1px solid ' + (isExpanded ? sc : isHovered || isChainHl ? sc + '66' : 'rgba(255,255,255,0.1)'),
|
|
709
709
|
/* borderLeft removed */
|
|
710
|
-
borderRadius: 6, padding: '
|
|
710
|
+
borderRadius: 6, padding: '5px 8px', cursor: 'pointer', overflow: 'hidden',
|
|
711
711
|
transition: 'all 0.15s', opacity: dim ? 0.15 : 1,
|
|
712
712
|
backdropFilter: 'blur(6px)',
|
|
713
713
|
display: 'flex', flexDirection: 'column', justifyContent: 'center', gap: 3, userSelect: 'none',
|
|
@@ -723,9 +723,9 @@ export function TaskPipelinePage() {
|
|
|
723
723
|
h('span', { style: { fontSize: 10, fontWeight: 600, color: 'var(--tp-text)', flex: 1, overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap' } }, t.title)
|
|
724
724
|
),
|
|
725
725
|
// Status + agent name + time
|
|
726
|
-
h('div', { style: { display: 'flex', alignItems: 'center', gap: 4, flexWrap: '
|
|
726
|
+
h('div', { style: { display: 'flex', alignItems: 'center', gap: 4, flexWrap: 'nowrap', overflow: 'hidden' } },
|
|
727
727
|
tag(sc, t.status.replace('_', ' ')),
|
|
728
|
-
h('span', { style: { fontSize: 9, color: 'var(--tp-text-dim)' } }, t.assignedToName || t.assignedTo),
|
|
728
|
+
h('span', { style: { fontSize: 9, color: 'var(--tp-text-dim)', overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap', minWidth: 0 } }, t.assignedToName || t.assignedTo),
|
|
729
729
|
t.delegationType && tag(DELEGATION_COLORS[t.delegationType] || '#6b7394', t.delegationType),
|
|
730
730
|
h('span', { style: { fontSize: 9, color: 'var(--tp-text-dim)', marginLeft: 'auto' } }, timeAgo(t.createdAt))
|
|
731
731
|
),
|