@mindexec/cli 0.2.211 → 0.2.213
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
|
@@ -3508,3 +3508,38 @@ html body .css3d-resolution-wrapper > .map-node-automation:focus-within:not(.map
|
|
|
3508
3508
|
-webkit-filter: none !important;
|
|
3509
3509
|
filter: none !important;
|
|
3510
3510
|
}
|
|
3511
|
+
|
|
3512
|
+
/* Final node edge policy:
|
|
3513
|
+
- unselected text-like surfaces use a hard dark edge because glow is removed
|
|
3514
|
+
- selected nodes, including AI task nodes, use the same blue edge as notes */
|
|
3515
|
+
html body .css3d-resolution-wrapper.node-type-text > .map-node,
|
|
3516
|
+
html body .css3d-resolution-wrapper.node-type-markdown > .map-node,
|
|
3517
|
+
html body .css3d-resolution-wrapper.node-type-text > .css3d-dynamic-node,
|
|
3518
|
+
html body .css3d-resolution-wrapper.node-type-markdown > .css3d-dynamic-node,
|
|
3519
|
+
html body .css3d-resolution-wrapper > .map-node-agent:not(.map-node-template-card):not(.map-node-remote-fleet),
|
|
3520
|
+
html body .css3d-resolution-wrapper > .map-node-automation:not(.map-node-template-card):not(.map-node-remote-fleet),
|
|
3521
|
+
html body .mind-map-text-overlay-v2-shell.type-text,
|
|
3522
|
+
html body .mind-map-text-overlay-v2-shell.type-markdown {
|
|
3523
|
+
border: 1px solid rgba(17, 24, 39, 0.88) !important;
|
|
3524
|
+
-webkit-box-shadow: none !important;
|
|
3525
|
+
box-shadow: none !important;
|
|
3526
|
+
-webkit-filter: none !important;
|
|
3527
|
+
filter: none !important;
|
|
3528
|
+
}
|
|
3529
|
+
|
|
3530
|
+
html body .css3d-resolution-wrapper.selected.node-type-text > .map-node,
|
|
3531
|
+
html body .css3d-resolution-wrapper.selected.node-type-markdown > .map-node,
|
|
3532
|
+
html body .css3d-resolution-wrapper.selected.node-type-text > .css3d-dynamic-node,
|
|
3533
|
+
html body .css3d-resolution-wrapper.selected.node-type-markdown > .css3d-dynamic-node,
|
|
3534
|
+
html body .css3d-resolution-wrapper.selected > .map-node-agent:not(.map-node-template-card):not(.map-node-remote-fleet),
|
|
3535
|
+
html body .css3d-resolution-wrapper.selected > .map-node-automation:not(.map-node-template-card):not(.map-node-remote-fleet),
|
|
3536
|
+
html body .css3d-resolution-wrapper > .map-node-agent.selected:not(.map-node-template-card):not(.map-node-remote-fleet),
|
|
3537
|
+
html body .css3d-resolution-wrapper > .map-node-agent:focus-within:not(.map-node-template-card):not(.map-node-remote-fleet),
|
|
3538
|
+
html body .css3d-resolution-wrapper > .map-node-automation.selected:not(.map-node-template-card):not(.map-node-remote-fleet),
|
|
3539
|
+
html body .css3d-resolution-wrapper > .map-node-automation:focus-within:not(.map-node-template-card):not(.map-node-remote-fleet) {
|
|
3540
|
+
border: 1px solid var(--mind-node-selection-edge) !important;
|
|
3541
|
+
-webkit-box-shadow: none !important;
|
|
3542
|
+
box-shadow: none !important;
|
|
3543
|
+
-webkit-filter: none !important;
|
|
3544
|
+
filter: none !important;
|
|
3545
|
+
}
|
|
@@ -5277,8 +5277,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5277
5277
|
isCss3dEnabled &&
|
|
5278
5278
|
!isInLodMode &&
|
|
5279
5279
|
shouldUpdateCss3d &&
|
|
5280
|
-
this.isPanning === true &&
|
|
5281
|
-
this.isZooming !== true &&
|
|
5280
|
+
(this.isPanning === true || this.isZooming === true || isCameraMoving === true) &&
|
|
5282
5281
|
isCameraMoving === true &&
|
|
5283
5282
|
!isNodeInteracting &&
|
|
5284
5283
|
!hasNonPanForcedUpdate &&
|
|
@@ -5401,13 +5400,19 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5401
5400
|
_frameProfTimes.visibleNodes = profVisibleIds ? profVisibleIds.size : 0;
|
|
5402
5401
|
}
|
|
5403
5402
|
|
|
5404
|
-
|
|
5403
|
+
const shouldDeferFloatingUiDuringMotion =
|
|
5404
|
+
(this.isPanning === true || this.isZooming === true || isCameraMoving === true) &&
|
|
5405
|
+
!isNodeInteracting &&
|
|
5406
|
+
!hasForcedUpdate &&
|
|
5407
|
+
!hasOverlayFocus &&
|
|
5408
|
+
!this.isWindowResizing;
|
|
5409
|
+
if (isMenuOverlayUiEnabled && window.MindMapMenuManager && shouldDeferFloatingUiDuringMotion !== true) {
|
|
5405
5410
|
window.MindMapMenuManager.update();
|
|
5406
5411
|
} else if (!isMenuOverlayUiEnabled && window.MindMapMenuManager?.hideMenu) {
|
|
5407
5412
|
window.MindMapMenuManager.hideMenu();
|
|
5408
5413
|
}
|
|
5409
5414
|
_profileSection('menu');
|
|
5410
|
-
if (isMultiSelectOverlayUiEnabled && window.MindMapMultiSelect) {
|
|
5415
|
+
if (isMultiSelectOverlayUiEnabled && window.MindMapMultiSelect && shouldDeferFloatingUiDuringMotion !== true) {
|
|
5411
5416
|
window.MindMapMultiSelect.update();
|
|
5412
5417
|
} else if (!isMultiSelectOverlayUiEnabled && window.MindMapMultiSelect?.hide) {
|
|
5413
5418
|
window.MindMapMultiSelect.hide();
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "Tx/JKjhJ",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"url": "_content/MindExecution.Shared/css/app.css"
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
|
-
"hash": "sha256-
|
|
45
|
+
"hash": "sha256-MAHHFASnRW0TgyMN27eWTfaPzuhTyjRRge7J1b59tUs=",
|
|
46
46
|
"url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"url": "_content/MindExecution.Shared/js/marked.min.js"
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
|
-
"hash": "sha256-
|
|
81
|
+
"hash": "sha256-1lJ2AVs7KnxAb95JbWi1pq3LjvTHUuEU2AVPBXWGEaU=",
|
|
82
82
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
83
83
|
},
|
|
84
84
|
{
|