@agenticmail/enterprise 0.5.256 → 0.5.257
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.
|
@@ -713,7 +713,7 @@ export function TaskPipelinePage() {
|
|
|
713
713
|
onMouseDown: handleMouseDown,
|
|
714
714
|
onWheel: handleWheel,
|
|
715
715
|
},
|
|
716
|
-
h('div', { style: { transform: 'translate(' + pan.x + 'px, ' + pan.y + 'px) scale(' + zoom + ')', transformOrigin: '0 0', position: 'relative',
|
|
716
|
+
h('div', { style: { transform: 'translate(' + pan.x + 'px, ' + pan.y + 'px) scale(' + zoom + ')', transformOrigin: '0 0', position: 'relative', width: treeW + PAD * 2, height: treeH + PAD * 2 } },
|
|
717
717
|
|
|
718
718
|
// Chain labels (left side)
|
|
719
719
|
chainInfos.map(function(ci, i) {
|
|
@@ -792,9 +792,8 @@ export function TaskPipelinePage() {
|
|
|
792
792
|
onMouseLeave: function() { setHoveredId(null); },
|
|
793
793
|
style: {
|
|
794
794
|
position: 'absolute', left: node.x, top: node.y, width: node.w, height: node.h,
|
|
795
|
-
background: isHovered ? '
|
|
796
|
-
border: '1px solid ' + (isExpanded ? sc : isHovered || isChainHl ? sc + '66' : '
|
|
797
|
-
/* borderLeft removed */
|
|
795
|
+
background: isHovered ? 'var(--tp-card-hover)' : 'var(--tp-card)',
|
|
796
|
+
border: '1px solid ' + (isExpanded ? sc : isHovered || isChainHl ? sc + '66' : 'var(--tp-border)'),
|
|
798
797
|
borderRadius: 6, padding: '5px 8px', cursor: 'pointer', overflow: 'hidden',
|
|
799
798
|
transition: 'all 0.15s', opacity: dim ? 0.15 : 1,
|
|
800
799
|
backdropFilter: 'blur(6px)',
|
package/package.json
CHANGED
|
@@ -713,7 +713,7 @@ export function TaskPipelinePage() {
|
|
|
713
713
|
onMouseDown: handleMouseDown,
|
|
714
714
|
onWheel: handleWheel,
|
|
715
715
|
},
|
|
716
|
-
h('div', { style: { transform: 'translate(' + pan.x + 'px, ' + pan.y + 'px) scale(' + zoom + ')', transformOrigin: '0 0', position: 'relative',
|
|
716
|
+
h('div', { style: { transform: 'translate(' + pan.x + 'px, ' + pan.y + 'px) scale(' + zoom + ')', transformOrigin: '0 0', position: 'relative', width: treeW + PAD * 2, height: treeH + PAD * 2 } },
|
|
717
717
|
|
|
718
718
|
// Chain labels (left side)
|
|
719
719
|
chainInfos.map(function(ci, i) {
|
|
@@ -792,9 +792,8 @@ export function TaskPipelinePage() {
|
|
|
792
792
|
onMouseLeave: function() { setHoveredId(null); },
|
|
793
793
|
style: {
|
|
794
794
|
position: 'absolute', left: node.x, top: node.y, width: node.w, height: node.h,
|
|
795
|
-
background: isHovered ? '
|
|
796
|
-
border: '1px solid ' + (isExpanded ? sc : isHovered || isChainHl ? sc + '66' : '
|
|
797
|
-
/* borderLeft removed */
|
|
795
|
+
background: isHovered ? 'var(--tp-card-hover)' : 'var(--tp-card)',
|
|
796
|
+
border: '1px solid ' + (isExpanded ? sc : isHovered || isChainHl ? sc + '66' : 'var(--tp-border)'),
|
|
798
797
|
borderRadius: 6, padding: '5px 8px', cursor: 'pointer', overflow: 'hidden',
|
|
799
798
|
transition: 'all 0.15s', opacity: dim ? 0.15 : 1,
|
|
800
799
|
backdropFilter: 'blur(6px)',
|