@mindexec/cli 0.2.265 → 0.2.266

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.266",
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-v714';
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
 
@@ -5538,7 +5554,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5538
5554
  if (canRenderCss3d === true) {
5539
5555
  renderCss3dCameraForCameraNavigation(this, 'ua-wheel-zoom-direct');
5540
5556
  }
5541
- syncBusinessAutomationEdgesForCameraNavigation(this);
5557
+ syncBusinessAutomationEdgesForCameraNavigation(this, { transformOnly: true });
5542
5558
  this.pauseAnimationLoopForDirectWheelZoom?.();
5543
5559
  return true;
5544
5560
  }
@@ -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-v714" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v714" />
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-v714';
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": "a3DPzEOX",
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-4pZaMyRaOb3TVVbVif7uhCJB3buD9FVjpRUeuOlS9Xs=",
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-SGiYRwKQBPxBQiiAZmxk0pK3NXCKTCFrMwnjwg6fE7w=",
837
+ "hash": "sha256-KH2KTc9h4v4RyVIa88L9OqOFsr/WXRYslyp7T0obPF4=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: MBS0S+2Y */
1
+ /* Manifest version: a3DPzEOX */
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