@mindexec/cli 0.2.273 → 0.2.275

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.273",
3
+ "version": "0.2.275",
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-v721';
8
+ const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v723';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -501,7 +501,10 @@
501
501
  }
502
502
 
503
503
  function shouldFreezeWebglSurfaceForZoom(module) {
504
- return module?.isZooming === true;
504
+ // Wheel zoom should behave like React Flow-style viewport movement:
505
+ // move the already-rendered WebGL surface with the same transform as
506
+ // CSS3D nodes, then reconcile after motion settles.
507
+ return false;
505
508
  }
506
509
 
507
510
  function isLocalSnapGridOnlyTheme(module) {
@@ -619,6 +622,18 @@
619
622
  );
620
623
  }
621
624
 
625
+ function hasBusinessAutomationTransformMotionWork(module) {
626
+ return !!(
627
+ module?._businessAutomationEdgeRenderActive === true &&
628
+ hasBusinessAutomationEdgeLayer(module) === true
629
+ );
630
+ }
631
+
632
+ function hasBusinessAutomationDraftOrTransformMotionWork(module) {
633
+ return hasBusinessAutomationTransformMotionWork(module) === true ||
634
+ module?._businessAutomationConnectionDraftActive === true;
635
+ }
636
+
622
637
  function canUseFlatCss3dCameraMotion(module, renderer = module?.cssRenderer, camera = module?.camera, renderDebugFlags = null) {
623
638
  if (CSS3D_FLAT_CAMERA_MOTION_ENABLED !== true ||
624
639
  !renderer ||
@@ -1512,7 +1527,9 @@
1512
1527
 
1513
1528
  module._viewSyncMotionActive = true;
1514
1529
  module._cameraMovingThisFrame = false;
1515
- deferPassiveOverlayForCameraMotion(module, frameStart);
1530
+ if (hasPassiveOverlayMotionWork(module) === true) {
1531
+ deferPassiveOverlayForCameraMotion(module, frameStart);
1532
+ }
1516
1533
 
1517
1534
  const forceUpdateFrames = Math.max(0, Number(module._forceUpdateFrames || 0));
1518
1535
  const cameraNavigationForceFrames = Math.max(0, Number(module._cameraNavigationForceFrames || 0));
@@ -1720,7 +1737,9 @@
1720
1737
  module._preserveVisibleSetThisFrame = true;
1721
1738
  module._lastVisibilityCullingSkipReason = 'ua-ultra-camera-only';
1722
1739
  recordCameraMotionFastPathStatus(module, 'hit', 'ua-ultra-camera-only');
1723
- deferPassiveOverlayForCameraMotion(module, frameStart);
1740
+ if (hasPassiveOverlayMotionWork(module) === true) {
1741
+ deferPassiveOverlayForCameraMotion(module, frameStart);
1742
+ }
1724
1743
 
1725
1744
  if (shouldSyncMindCanvasPerfClasses()) {
1726
1745
  const visibleNodeCount = Number(module._visibleIds?.size || module._prevVisibleIds?.size || 0);
@@ -1783,7 +1802,9 @@
1783
1802
  module._syncLocalSnapGridPositionOnly?.(true);
1784
1803
  renderCss3dCameraForCameraNavigation(module, 'ua-ultra-camera-only');
1785
1804
 
1786
- syncBusinessAutomationEdgesForCameraNavigation(module, true);
1805
+ if (hasBusinessAutomationTransformMotionWork(module) === true) {
1806
+ syncBusinessAutomationEdgesForCameraNavigation(module, true);
1807
+ }
1787
1808
 
1788
1809
  profileSection?.('uaUltraEarlyCameraOnly');
1789
1810
 
@@ -1944,7 +1965,9 @@
1944
1965
  module._preserveVisibleSetThisFrame = true;
1945
1966
  module._lastVisibilityCullingSkipReason = 'ua-ultra-resident-camera-only';
1946
1967
  recordCameraMotionFastPathStatus(module, 'hit', 'ua-ultra-resident-camera-only');
1947
- deferPassiveOverlayForCameraMotion(module, frameStart);
1968
+ if (hasPassiveOverlayMotionWork(module) === true) {
1969
+ deferPassiveOverlayForCameraMotion(module, frameStart);
1970
+ }
1948
1971
 
1949
1972
  if (shouldSyncMindCanvasPerfClasses()) {
1950
1973
  const visibleNodeCount = Number(module._visibleIds?.size || module._prevVisibleIds?.size || 0);
@@ -2005,7 +2028,9 @@
2005
2028
  renderCss3dCameraForCameraNavigation(module, 'ua-ultra-resident-camera-only');
2006
2029
  }
2007
2030
 
2008
- syncBusinessAutomationEdgesForCameraNavigation(module, true);
2031
+ if (hasBusinessAutomationTransformMotionWork(module) === true) {
2032
+ syncBusinessAutomationEdgesForCameraNavigation(module, true);
2033
+ }
2009
2034
 
2010
2035
  profileSection?.('uaUltraResidentCameraOnly');
2011
2036
 
@@ -4050,9 +4075,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
4050
4075
  layer.style.display = 'none';
4051
4076
  layer.style.opacity = '0';
4052
4077
  layer.style.backgroundColor = 'transparent';
4053
- layer.style.borderRadius = '50%';
4054
- layer.style.overflow = 'hidden';
4055
- layer.style.clipPath = 'circle(500px at 500px 500px)';
4078
+ layer.style.borderRadius = '0';
4079
+ layer.style.overflow = 'visible';
4056
4080
  layer.style.contain = 'strict';
4057
4081
  layer.style.willChange = 'transform';
4058
4082
  layer.style.transform = 'translate3d(0, 0, 0)';
@@ -5568,7 +5592,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5568
5592
  this._fullResVisibilityReconcilePending = true;
5569
5593
  }
5570
5594
  this._preserveVisibleSetThisFrame = true;
5571
- deferPassiveOverlayForCameraMotion(this);
5595
+ if (hasPassiveOverlayMotionWork(this) === true) {
5596
+ deferPassiveOverlayForCameraMotion(this);
5597
+ }
5572
5598
 
5573
5599
  if (snapGridPointAlreadySet !== true &&
5574
5600
  Number.isFinite(Number(clientX)) &&
@@ -5628,7 +5654,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5628
5654
  if (canRenderCss3d === true) {
5629
5655
  renderCss3dCameraForCameraNavigation(this, 'ua-wheel-zoom-direct');
5630
5656
  }
5631
- syncBusinessAutomationEdgesForCameraNavigation(this, true);
5657
+ if (hasBusinessAutomationTransformMotionWork(this) === true) {
5658
+ syncBusinessAutomationEdgesForCameraNavigation(this, true);
5659
+ }
5632
5660
  this.pauseAnimationLoopForDirectWheelZoom?.();
5633
5661
  return true;
5634
5662
  }
@@ -6682,7 +6710,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6682
6710
  (this.isPanning === true || isRecentPanInput) && this.isZooming !== true
6683
6711
  ? PASSIVE_OVERLAY_PAN_IDLE_DELAY_MS
6684
6712
  : PASSIVE_OVERLAY_IDLE_DELAY_MS;
6685
- deferPassiveOverlayForCameraMotion(this, frameStart, overlayResumeDelayMs);
6713
+ if (hasPassiveOverlayMotionWork(this) === true) {
6714
+ deferPassiveOverlayForCameraMotion(this, frameStart, overlayResumeDelayMs);
6715
+ }
6686
6716
  }
6687
6717
  const zoomEndedThisFrame = wasZoomingLastFrame && !this.isZooming;
6688
6718
  const panEndedThisFrame = wasPanningLastFrame && !this.isPanning;
@@ -7125,7 +7155,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7125
7155
  window.MindMapTextOverlayV2?.syncPassiveViewTransform) {
7126
7156
  window.MindMapTextOverlayV2.syncPassiveViewTransform(this);
7127
7157
  }
7128
- syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7158
+ if (hasBusinessAutomationDraftOrTransformMotionWork(this) === true) {
7159
+ syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7160
+ }
7129
7161
  _profileSection('uaVisualOnlyMotion');
7130
7162
 
7131
7163
  const frameEnd = performance.now();
@@ -7298,7 +7330,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7298
7330
  if (this.cssRenderer && typeof this.cssRenderer.renderCamera === 'function') {
7299
7331
  renderCss3dCameraForCameraNavigation(this, 'ua-stationary-visual-motion');
7300
7332
  }
7301
- syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7333
+ if (hasBusinessAutomationDraftOrTransformMotionWork(this) === true) {
7334
+ syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7335
+ }
7302
7336
 
7303
7337
  _profileSection('uaStationaryVisualMotion');
7304
7338
 
@@ -7489,7 +7523,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7489
7523
  if (shouldRenderCss3dInLodForUaResidentCameraOnly === true) {
7490
7524
  renderCss3dCameraForCameraNavigation(this, 'ua-resident-visual-only-motion');
7491
7525
  }
7492
- syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7526
+ if (hasBusinessAutomationDraftOrTransformMotionWork(this) === true) {
7527
+ syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7528
+ }
7493
7529
  _profileSection('uaResidentVisualOnlyMotion');
7494
7530
 
7495
7531
  const frameEnd = performance.now();
@@ -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-v721" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v721" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-css3d-flat-wheel-v723" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v723" />
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-v721';
582
+ const scriptVersion = '20260620-css3d-flat-wheel-v723';
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": "o4neVAwV",
2
+ "version": "Rl0DlhWJ",
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-P1BWGBXjOUibEDrwx0hQ5l0WgegU7VV8/DIib3bw++Y=",
81
+ "hash": "sha256-PokWtZ7UoJE+/mdQACZBHihHMJLTJjkjp/LuemQac68=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -834,7 +834,7 @@
834
834
  "url": "image-manifest.json"
835
835
  },
836
836
  {
837
- "hash": "sha256-a+4c2TI1A0UnV155SAvgW6psiYnLVcJ6Ozi78O+ViP4=",
837
+ "hash": "sha256-dcrHGEoxLMetEizqS8+tjnhWes2n9RCfZas3A5/nbA4=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: o4neVAwV */
1
+ /* Manifest version: Rl0DlhWJ */
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