@mindexec/cli 0.2.266 → 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.266",
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-v714';
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',
@@ -5496,7 +5496,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5496
5496
  this._deferPassiveOverlayRefresh = true;
5497
5497
  }
5498
5498
 
5499
- if (Number.isFinite(Number(clientX)) && Number.isFinite(Number(clientY))) {
5499
+ if (options?.snapGridPointAlreadySet !== true &&
5500
+ Number.isFinite(Number(clientX)) &&
5501
+ Number.isFinite(Number(clientY))) {
5500
5502
  this.setLocalSnapGridClientPoint?.(Number(clientX), Number(clientY));
5501
5503
  }
5502
5504
 
@@ -8610,14 +8612,20 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
8610
8612
  // ▲▲▲ [FIX] ▲▲▲
8611
8613
  _profileSection('css3dRender');
8612
8614
 
8613
- const hasBusinessAutomationEdgeLayer = !!(
8614
- this._businessAutomationEdgeVisualLayer?.isConnected ||
8615
- this._businessAutomationEdgeLayer?.isConnected
8616
- );
8617
8615
  const hasBusinessAutomationConnectionDraft =
8618
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
+ );
8619
8626
  const shouldTransformBusinessAutomationEdgesForCameraMotion =
8620
8627
  hasBusinessAutomationEdgeLayer &&
8628
+ hasBusinessAutomationEdgeRenderActive === true &&
8621
8629
  hasBusinessAutomationConnectionDraft !== true &&
8622
8630
  window.MindMapCss3DManager?.syncBusinessAutomationEdgesForCameraMotion &&
8623
8631
  (this.isPanning === true || this.isZooming === true || isCameraMoving === true) &&
@@ -8629,6 +8637,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
8629
8637
  const shouldThrottleBusinessAutomationEdgesForCameraMotion = shouldTransformBusinessAutomationEdgesForCameraMotion === true;
8630
8638
  const shouldDeferBusinessAutomationEdgesForCameraMotion = !!(
8631
8639
  hasBusinessAutomationEdgeLayer &&
8640
+ hasBusinessAutomationEdgeRenderActive === true &&
8632
8641
  hasBusinessAutomationConnectionDraft !== true &&
8633
8642
  shouldThrottleBusinessAutomationEdgesForCameraMotion !== true &&
8634
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-v714" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v714" />
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-v714';
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": "a3DPzEOX",
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-4pZaMyRaOb3TVVbVif7uhCJB3buD9FVjpRUeuOlS9Xs=",
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-KH2KTc9h4v4RyVIa88L9OqOFsr/WXRYslyp7T0obPF4=",
837
+ "hash": "sha256-+AycgD82SJsdhRtXzRfY0F/blfwIdnRyQD/9N9f437s=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: a3DPzEOX */
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