@mindexec/cli 0.2.265 → 0.2.267

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": "@mindexec/cli",
3
- "version": "0.2.265",
3
+ "version": "0.2.267",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -5,7 +5,7 @@
5
5
  const DEBUG = false;
6
6
  const FPS_DEBUG = false;
7
7
  const FRAME_PERF_DEBUG = false;
8
- const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v713';
8
+ const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v715';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -612,6 +612,7 @@
612
612
 
613
613
  function syncBusinessAutomationEdgesForCameraNavigation(module, options = {}) {
614
614
  const hasActiveEdges = module?._businessAutomationEdgeRenderActive === true;
615
+ const transformOnly = options.transformOnly === true;
615
616
  if (hasActiveEdges !== true && options.allowDraftRender !== true) {
616
617
  return false;
617
618
  }
@@ -621,11 +622,19 @@
621
622
  return false;
622
623
  }
623
624
 
625
+ if (transformOnly === true && hasDraftHint === true) {
626
+ if (hasActiveEdges === true) {
627
+ module._businessAutomationEdgesDeferredForMotion = true;
628
+ }
629
+ return false;
630
+ }
631
+
624
632
  if (!window.MindMapCss3DManager) {
625
633
  return false;
626
634
  }
627
635
 
628
636
  const hasConnectionDraft =
637
+ transformOnly !== true &&
629
638
  options.allowDraftRender === true &&
630
639
  hasDraftHint === true &&
631
640
  window.MindMapCss3DManager.hasBusinessAutomationConnectionDraft?.() === true;
@@ -650,6 +659,13 @@
650
659
  return true;
651
660
  }
652
661
 
662
+ if (transformOnly === true) {
663
+ if (hasActiveEdges === true) {
664
+ module._businessAutomationEdgesDeferredForMotion = true;
665
+ }
666
+ return false;
667
+ }
668
+
653
669
  if (hasConnectionDraft === true &&
654
670
  options.allowDraftRender === true &&
655
671
  typeof window.MindMapCss3DManager.renderBusinessAutomationEdges === 'function') {
@@ -1742,7 +1758,7 @@
1742
1758
  module._syncLocalSnapGridPositionOnly?.(true);
1743
1759
  renderCss3dCameraForCameraNavigation(module, 'ua-ultra-camera-only');
1744
1760
 
1745
- syncBusinessAutomationEdgesForCameraNavigation(module);
1761
+ syncBusinessAutomationEdgesForCameraNavigation(module, { transformOnly: true });
1746
1762
 
1747
1763
  profileSection?.('uaUltraEarlyCameraOnly');
1748
1764
 
@@ -1968,7 +1984,7 @@
1968
1984
  renderCss3dCameraForCameraNavigation(module, 'ua-ultra-resident-camera-only');
1969
1985
  }
1970
1986
 
1971
- syncBusinessAutomationEdgesForCameraNavigation(module);
1987
+ syncBusinessAutomationEdgesForCameraNavigation(module, { transformOnly: true });
1972
1988
 
1973
1989
  profileSection?.('uaUltraResidentCameraOnly');
1974
1990
 
@@ -5480,7 +5496,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5480
5496
  this._deferPassiveOverlayRefresh = true;
5481
5497
  }
5482
5498
 
5483
- if (Number.isFinite(Number(clientX)) && Number.isFinite(Number(clientY))) {
5499
+ if (options?.snapGridPointAlreadySet !== true &&
5500
+ Number.isFinite(Number(clientX)) &&
5501
+ Number.isFinite(Number(clientY))) {
5484
5502
  this.setLocalSnapGridClientPoint?.(Number(clientX), Number(clientY));
5485
5503
  }
5486
5504
 
@@ -5538,7 +5556,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5538
5556
  if (canRenderCss3d === true) {
5539
5557
  renderCss3dCameraForCameraNavigation(this, 'ua-wheel-zoom-direct');
5540
5558
  }
5541
- syncBusinessAutomationEdgesForCameraNavigation(this);
5559
+ syncBusinessAutomationEdgesForCameraNavigation(this, { transformOnly: true });
5542
5560
  this.pauseAnimationLoopForDirectWheelZoom?.();
5543
5561
  return true;
5544
5562
  }
@@ -8594,14 +8612,20 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
8594
8612
  // ▲▲▲ [FIX] ▲▲▲
8595
8613
  _profileSection('css3dRender');
8596
8614
 
8597
- const hasBusinessAutomationEdgeLayer = !!(
8598
- this._businessAutomationEdgeVisualLayer?.isConnected ||
8599
- this._businessAutomationEdgeLayer?.isConnected
8600
- );
8601
8615
  const hasBusinessAutomationConnectionDraft =
8602
8616
  this._businessAutomationConnectionDraftActive === true;
8617
+ const hasBusinessAutomationEdgeRenderActive =
8618
+ this._businessAutomationEdgeRenderActive === true;
8619
+ const hasBusinessAutomationEdgeLayer = !!(
8620
+ (hasBusinessAutomationEdgeRenderActive === true || hasBusinessAutomationConnectionDraft === true) &&
8621
+ (
8622
+ this._businessAutomationEdgeVisualLayer?.isConnected ||
8623
+ this._businessAutomationEdgeLayer?.isConnected
8624
+ )
8625
+ );
8603
8626
  const shouldTransformBusinessAutomationEdgesForCameraMotion =
8604
8627
  hasBusinessAutomationEdgeLayer &&
8628
+ hasBusinessAutomationEdgeRenderActive === true &&
8605
8629
  hasBusinessAutomationConnectionDraft !== true &&
8606
8630
  window.MindMapCss3DManager?.syncBusinessAutomationEdgesForCameraMotion &&
8607
8631
  (this.isPanning === true || this.isZooming === true || isCameraMoving === true) &&
@@ -8613,6 +8637,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
8613
8637
  const shouldThrottleBusinessAutomationEdgesForCameraMotion = shouldTransformBusinessAutomationEdgesForCameraMotion === true;
8614
8638
  const shouldDeferBusinessAutomationEdgesForCameraMotion = !!(
8615
8639
  hasBusinessAutomationEdgeLayer &&
8640
+ hasBusinessAutomationEdgeRenderActive === true &&
8616
8641
  hasBusinessAutomationConnectionDraft !== true &&
8617
8642
  shouldThrottleBusinessAutomationEdgesForCameraMotion !== true &&
8618
8643
  (this.isPanning === true || this.isZooming === true || isCameraMoving === true) &&
@@ -6416,7 +6416,8 @@ window.MindMapInteractions = (function () {
6416
6416
  module.targetY = newY;
6417
6417
  const presentedDirectly = module.presentWheelZoomCameraFrame?.(clientX, clientY, {
6418
6418
  reason: 'wheel-zoom-direct',
6419
- coalescedWheelEvents: Number(options.coalescedWheelEvents || 0)
6419
+ coalescedWheelEvents: Number(options.coalescedWheelEvents || 0),
6420
+ snapGridPointAlreadySet: true
6420
6421
  }) === true;
6421
6422
  const settleScheduled =
6422
6423
  presentedDirectly === true &&
@@ -7,8 +7,8 @@
7
7
  <title>MindExec | Business Execution OS for solo builders</title>
8
8
  <meta name="description" content="MindExec is an AI business execution OS for solo builders who want to turn notes, research, assets, and repeatable execution Skills into revenue-producing work." />
9
9
  <base href="/" />
10
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-css3d-flat-wheel-v713" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v713" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-css3d-flat-wheel-v715" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v715" />
12
12
  <!-- ?�▼??Font Awesome (local) ?�▼??-->
13
13
  <link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
14
14
  <!-- ?�▲??-->
@@ -579,7 +579,7 @@
579
579
  }
580
580
 
581
581
  const base = '_content/MindExecution.Shared/js/';
582
- const scriptVersion = '20260620-css3d-flat-wheel-v713';
582
+ const scriptVersion = '20260620-css3d-flat-wheel-v715';
583
583
  const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
584
584
  console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
585
585
  const criticalScripts = [
@@ -1,5 +1,5 @@
1
1
  self.assetsManifest = {
2
- "version": "MBS0S+2Y",
2
+ "version": "MKHv0KED",
3
3
  "assets": [
4
4
  {
5
5
  "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
@@ -78,7 +78,7 @@
78
78
  "url": "_content/MindExecution.Shared/js/marked.min.js"
79
79
  },
80
80
  {
81
- "hash": "sha256-UZV57eO2HTY3IJAI3FP1lJivwtBJX86/rbBDK7N5m/I=",
81
+ "hash": "sha256-W1ZPZtb6zK+6cKGNIE44BVqVd/JdOYxOfBojVhlaJaE=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -106,7 +106,7 @@
106
106
  "url": "_content/MindExecution.Shared/js/mind-map-glow-shader.js"
107
107
  },
108
108
  {
109
- "hash": "sha256-TLgqElMhXUaNKNxPc2h8SJhr/YhkvBFS7U8kwf7AVZw=",
109
+ "hash": "sha256-tosOpXqyXDFBnjyuaucNqryVdR3s6BdWEWUuRpeCzgM=",
110
110
  "url": "_content/MindExecution.Shared/js/mind-map-interactions.js"
111
111
  },
112
112
  {
@@ -834,7 +834,7 @@
834
834
  "url": "image-manifest.json"
835
835
  },
836
836
  {
837
- "hash": "sha256-SGiYRwKQBPxBQiiAZmxk0pK3NXCKTCFrMwnjwg6fE7w=",
837
+ "hash": "sha256-+AycgD82SJsdhRtXzRfY0F/blfwIdnRyQD/9N9f437s=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: MBS0S+2Y */
1
+ /* Manifest version: MKHv0KED */
2
2
  // Hosted deployments should prefer the network over stale offline caches.
3
3
  // This service worker immediately clears old Blazor offline caches and unregisters itself.
4
4