@mindexec/cli 0.2.263 → 0.2.264

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.263",
3
+ "version": "0.2.264",
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-v711';
8
+ const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v712';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -3905,6 +3905,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
3905
3905
  this._lastLocalSnapGridTransformKey = '';
3906
3906
  this._lastLocalSnapGridOpacity = '';
3907
3907
  this._localSnapGridStyleDeferredForZoom = false;
3908
+ this._localSnapGridPointerWakeDeferredForZoom = false;
3908
3909
  this._lastSnapGridClientX = null;
3909
3910
  this._lastSnapGridClientY = null;
3910
3911
  this._animationIdleTimerId = null;
@@ -6591,6 +6592,19 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6591
6592
  updateCursorDomElement(this);
6592
6593
  this._cursorDomDeferredForMotion = false;
6593
6594
  }
6595
+ if (zoomEndedThisFrame === true) {
6596
+ const shouldReconcileLocalSnapGridAfterZoom = !!(
6597
+ this._isLocalSnapGridThemeEnabled?.() === true &&
6598
+ (
6599
+ this._localSnapGridStyleDeferredForZoom === true ||
6600
+ this._localSnapGridPointerWakeDeferredForZoom === true
6601
+ )
6602
+ );
6603
+ this._localSnapGridPointerWakeDeferredForZoom = false;
6604
+ if (shouldReconcileLocalSnapGridAfterZoom === true) {
6605
+ this._syncLocalSnapGridLayer(true);
6606
+ }
6607
+ }
6594
6608
  if (cameraEndedThisFrame) {
6595
6609
  this._cameraNavigationOverlayInputTime = 0;
6596
6610
  this._overlayDirty = true;
@@ -8581,21 +8595,21 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
8581
8595
  !visibilityChangedThisFrame &&
8582
8596
  !lodVisualEpochChangedThisFrame
8583
8597
  );
8598
+ const hasBusinessAutomationEdgeDirtyWork = !!(
8599
+ this._businessAutomationEdgesDirty === true ||
8600
+ this._businessAutomationConnectionDraftActive === true ||
8601
+ (this._businessAutomationEdgeRenderActive === true && !this._businessAutomationEdgeRenderState) ||
8602
+ isNodeInteracting === true ||
8603
+ hasNonCameraNavigationForcedUpdate === true ||
8604
+ visibilityChangedThisFrame === true ||
8605
+ lodVisualEpochChangedThisFrame === true
8606
+ );
8584
8607
  const shouldSyncBusinessAutomationEdges =
8585
8608
  hasBusinessAutomationEdgeLayer &&
8586
8609
  window.MindMapCss3DManager?.renderBusinessAutomationEdges &&
8587
8610
  shouldThrottleBusinessAutomationEdgesForCameraMotion !== true &&
8588
8611
  shouldDeferBusinessAutomationEdgesForCameraMotion !== true &&
8589
- (
8590
- this._businessAutomationEdgeRenderActive === true ||
8591
- this.isPanning === true ||
8592
- this.isZooming === true ||
8593
- isCameraMoving === true ||
8594
- isNodeInteracting === true ||
8595
- hasNonCameraNavigationForcedUpdate === true ||
8596
- visibilityChangedThisFrame === true ||
8597
- lodVisualEpochChangedThisFrame === true
8598
- );
8612
+ hasBusinessAutomationEdgeDirtyWork === true;
8599
8613
  if (shouldThrottleBusinessAutomationEdgesForCameraMotion === true ||
8600
8614
  shouldDeferBusinessAutomationEdgesForCameraMotion === true) {
8601
8615
  this._businessAutomationEdgesDeferredForMotion = true;
@@ -10644,6 +10644,7 @@
10644
10644
  const hitLayer = module._businessAutomationEdgeLayer || (module._businessAutomationEdgeRenderActive ? ensureBusinessAutomationEdgeLayer(module) : null);
10645
10645
  const visualLayer = module._businessAutomationEdgeVisualLayer || null;
10646
10646
  if (!hitLayer || !visualLayer) {
10647
+ module._businessAutomationEdgesDirty = module._businessAutomationEdgeRenderActive === true;
10647
10648
  return;
10648
10649
  }
10649
10650
  syncBusinessAutomationEdgeLayerOrder(module);
@@ -10669,6 +10670,7 @@
10669
10670
 
10670
10671
  if (edges.length === 0 && !_businessAutomationConnectionDraft) {
10671
10672
  setBusinessAutomationSvgElementsVisible([renderState.visualGroup, renderState.hitGroup], false);
10673
+ module._businessAutomationEdgesDirty = false;
10672
10674
  return;
10673
10675
  }
10674
10676
  setBusinessAutomationSvgElementsVisible([renderState.visualGroup, renderState.hitGroup], true);
@@ -10791,6 +10793,7 @@
10791
10793
  setBusinessAutomationSvgElementsVisible([renderState.draftPath, renderState.draftTarget], draftVisible);
10792
10794
 
10793
10795
  applyBusinessAutomationResidentOcclusionMask(visualLayer, renderState.visualGroup, module, containerRect, width, height);
10796
+ module._businessAutomationEdgesDirty = false;
10794
10797
  }
10795
10798
 
10796
10799
  function hasBusinessAutomationConnectionDraft() {
@@ -10802,6 +10805,7 @@
10802
10805
  return;
10803
10806
  }
10804
10807
 
10808
+ module._businessAutomationEdgesDirty = true;
10805
10809
  ensureBusinessAutomationEdgeLayer(module);
10806
10810
  if (module._businessAutomationEdgeRenderFrame) {
10807
10811
  return;
@@ -1464,7 +1464,11 @@ window.MindMapInteractions = (function () {
1464
1464
 
1465
1465
  const localSnapGridMoved = module.setLocalSnapGridClientPoint?.(clientX, clientY) === true;
1466
1466
  if (localSnapGridMoved && module._isLocalSnapGridThemeEnabled?.() === true) {
1467
- module.requestAnimationWake?.('local-snap-grid-pointer');
1467
+ if (module.isZooming === true) {
1468
+ module._localSnapGridPointerWakeDeferredForZoom = true;
1469
+ } else {
1470
+ module.requestAnimationWake?.('local-snap-grid-pointer');
1471
+ }
1468
1472
  }
1469
1473
 
1470
1474
  const metrics = getCachedViewportMetrics(module);
@@ -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-v711" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v711" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-css3d-flat-wheel-v712" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v712" />
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-v711';
582
+ const scriptVersion = '20260620-css3d-flat-wheel-v712';
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": "NFlIAEYu",
2
+ "version": "q8TDwBKS",
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-oPH7NgFD/aMC5uyNB5j+bHrrVVJmt4ySpTDgXHC5800=",
81
+ "hash": "sha256-RQbjofk+Lk0yfrB6PluYoJKVJmdB/sAv3ISNjwScjCg=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -86,7 +86,7 @@
86
86
  "url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
87
87
  },
88
88
  {
89
- "hash": "sha256-3VNh7dLgyvqfHytYI283FCIN3TsUUK7Qt1YPj1HNJFY=",
89
+ "hash": "sha256-fcU6DmUUw/iLoW3TWn1UKW9+2+Vfqa2O1QDRg9Az2JE=",
90
90
  "url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
91
91
  },
92
92
  {
@@ -106,7 +106,7 @@
106
106
  "url": "_content/MindExecution.Shared/js/mind-map-glow-shader.js"
107
107
  },
108
108
  {
109
- "hash": "sha256-o5V0YYMPabf5eB2Z/rGiGB4Ggv3HEaLsCXSq0xY4dPQ=",
109
+ "hash": "sha256-TLgqElMhXUaNKNxPc2h8SJhr/YhkvBFS7U8kwf7AVZw=",
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-3rA4Y12tE7DBEMBdoNxtSXP29bAbByTEgZVku5GEQyQ=",
837
+ "hash": "sha256-hTra3gg8X1Oc6i5im/P0HR5OaPtMZSj9Vwh9BXJYHao=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: NFlIAEYu */
1
+ /* Manifest version: q8TDwBKS */
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