@mindexec/cli 0.2.269 → 0.2.271

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.269",
3
+ "version": "0.2.271",
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-v717';
8
+ const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v719';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -610,10 +610,11 @@
610
610
  Math.abs(Number(rotation.z || 0)) <= 1e-5;
611
611
  }
612
612
 
613
- function syncBusinessAutomationEdgesForCameraNavigation(module, options = {}) {
613
+ function syncBusinessAutomationEdgesForCameraNavigation(module, transformOnly = false, allowDraftRender = false) {
614
+ transformOnly = transformOnly === true;
615
+ allowDraftRender = allowDraftRender === true;
614
616
  const hasActiveEdges = module?._businessAutomationEdgeRenderActive === true;
615
- const transformOnly = options.transformOnly === true;
616
- if (hasActiveEdges !== true && options.allowDraftRender !== true) {
617
+ if (hasActiveEdges !== true && allowDraftRender !== true) {
617
618
  return false;
618
619
  }
619
620
 
@@ -635,7 +636,7 @@
635
636
 
636
637
  const hasConnectionDraft =
637
638
  transformOnly !== true &&
638
- options.allowDraftRender === true &&
639
+ allowDraftRender === true &&
639
640
  hasDraftHint === true &&
640
641
  window.MindMapCss3DManager.hasBusinessAutomationConnectionDraft?.() === true;
641
642
  if (hasActiveEdges !== true && hasConnectionDraft !== true) {
@@ -667,7 +668,7 @@
667
668
  }
668
669
 
669
670
  if (hasConnectionDraft === true &&
670
- options.allowDraftRender === true &&
671
+ allowDraftRender === true &&
671
672
  typeof window.MindMapCss3DManager.renderBusinessAutomationEdges === 'function') {
672
673
  window.MindMapCss3DManager.renderBusinessAutomationEdges(module);
673
674
  module._businessAutomationEdgesDeferredForMotion = false;
@@ -1766,7 +1767,7 @@
1766
1767
  module._syncLocalSnapGridPositionOnly?.(true);
1767
1768
  renderCss3dCameraForCameraNavigation(module, 'ua-ultra-camera-only');
1768
1769
 
1769
- syncBusinessAutomationEdgesForCameraNavigation(module, { transformOnly: true });
1770
+ syncBusinessAutomationEdgesForCameraNavigation(module, true);
1770
1771
 
1771
1772
  profileSection?.('uaUltraEarlyCameraOnly');
1772
1773
 
@@ -1992,7 +1993,7 @@
1992
1993
  renderCss3dCameraForCameraNavigation(module, 'ua-ultra-resident-camera-only');
1993
1994
  }
1994
1995
 
1995
- syncBusinessAutomationEdgesForCameraNavigation(module, { transformOnly: true });
1996
+ syncBusinessAutomationEdgesForCameraNavigation(module, true);
1996
1997
 
1997
1998
  profileSection?.('uaUltraResidentCameraOnly');
1998
1999
 
@@ -5495,7 +5496,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5495
5496
  return true;
5496
5497
  }
5497
5498
 
5498
- presentWheelZoomCameraFrame(clientX = null, clientY = null, options = {}) {
5499
+ presentWheelZoomCameraFrame(clientX = null, clientY = null, snapGridPointAlreadySet = false) {
5499
5500
  if (CAMERA_MOTION_VISUAL_ONLY_FAST_PATH_ENABLED !== true ||
5500
5501
  this.isLoading === true ||
5501
5502
  this.isSelecting === true ||
@@ -5563,7 +5564,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5563
5564
  this._deferPassiveOverlayRefresh = true;
5564
5565
  }
5565
5566
 
5566
- if (options?.snapGridPointAlreadySet !== true &&
5567
+ if (snapGridPointAlreadySet !== true &&
5567
5568
  Number.isFinite(Number(clientX)) &&
5568
5569
  Number.isFinite(Number(clientY))) {
5569
5570
  this.setLocalSnapGridClientPoint?.(Number(clientX), Number(clientY));
@@ -5621,7 +5622,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5621
5622
  if (canRenderCss3d === true) {
5622
5623
  renderCss3dCameraForCameraNavigation(this, 'ua-wheel-zoom-direct');
5623
5624
  }
5624
- syncBusinessAutomationEdgesForCameraNavigation(this, { transformOnly: true });
5625
+ syncBusinessAutomationEdgesForCameraNavigation(this, true);
5625
5626
  this.pauseAnimationLoopForDirectWheelZoom?.();
5626
5627
  return true;
5627
5628
  }
@@ -7118,7 +7119,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7118
7119
  window.MindMapTextOverlayV2?.syncPassiveViewTransform) {
7119
7120
  window.MindMapTextOverlayV2.syncPassiveViewTransform(this);
7120
7121
  }
7121
- syncBusinessAutomationEdgesForCameraNavigation(this, { allowDraftRender: true });
7122
+ syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7122
7123
  _profileSection('uaVisualOnlyMotion');
7123
7124
 
7124
7125
  const frameEnd = performance.now();
@@ -7291,7 +7292,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7291
7292
  if (this.cssRenderer && typeof this.cssRenderer.renderCamera === 'function') {
7292
7293
  renderCss3dCameraForCameraNavigation(this, 'ua-stationary-visual-motion');
7293
7294
  }
7294
- syncBusinessAutomationEdgesForCameraNavigation(this, { allowDraftRender: true });
7295
+ syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7295
7296
 
7296
7297
  _profileSection('uaStationaryVisualMotion');
7297
7298
 
@@ -7482,7 +7483,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7482
7483
  if (shouldRenderCss3dInLodForUaResidentCameraOnly === true) {
7483
7484
  renderCss3dCameraForCameraNavigation(this, 'ua-resident-visual-only-motion');
7484
7485
  }
7485
- syncBusinessAutomationEdgesForCameraNavigation(this, { allowDraftRender: true });
7486
+ syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7486
7487
  _profileSection('uaResidentVisualOnlyMotion');
7487
7488
 
7488
7489
  const frameEnd = performance.now();
@@ -6039,8 +6039,7 @@ window.MindMapInteractions = (function () {
6039
6039
  lastClientX: 0, // 마지막 마우스 X 위치
6040
6040
  lastClientY: 0, // 마지막 마우스 Y 위치
6041
6041
  pending: false, // rAF 대기 중 여부
6042
- frameId: null, // rAF ID
6043
- eventCount: 0
6042
+ frameId: null // rAF ID
6044
6043
  });
6045
6044
  }
6046
6045
  return wheelBuffers.get(module);
@@ -6317,22 +6316,16 @@ window.MindMapInteractions = (function () {
6317
6316
  wheelBuffer.deltaY += deltaY;
6318
6317
  wheelBuffer.lastClientX = e.clientX;
6319
6318
  wheelBuffer.lastClientY = e.clientY;
6320
- wheelBuffer.eventCount = Math.min(1000, Number(wheelBuffer.eventCount || 0) + 1);
6321
-
6322
6319
  scheduleWheelZoomFrame(module, wheelBuffer, () => {
6323
6320
  const accumulatedDeltaY = Number(wheelBuffer.deltaY || 0);
6324
6321
  const clientX = wheelBuffer.lastClientX;
6325
6322
  const clientY = wheelBuffer.lastClientY;
6326
- const eventCount = Number(wheelBuffer.eventCount || 0);
6327
6323
  wheelBuffer.deltaY = 0;
6328
- wheelBuffer.eventCount = 0;
6329
6324
  if (Math.abs(accumulatedDeltaY) <= 0.001) {
6330
6325
  return;
6331
6326
  }
6332
6327
 
6333
- performCameraZoomBuffered(module, accumulatedDeltaY, clientX, clientY, {
6334
- coalescedWheelEvents: eventCount
6335
- });
6328
+ performCameraZoomBuffered(module, accumulatedDeltaY, clientX, clientY);
6336
6329
  });
6337
6330
  }
6338
6331
 
@@ -6414,11 +6407,7 @@ window.MindMapInteractions = (function () {
6414
6407
  const newY = worldMouseY - (worldMouseY - module.targetY) * zoomRatio;
6415
6408
  module.targetX = newX;
6416
6409
  module.targetY = newY;
6417
- const presentedDirectly = module.presentWheelZoomCameraFrame?.(clientX, clientY, {
6418
- reason: 'wheel-zoom-direct',
6419
- coalescedWheelEvents: Number(options.coalescedWheelEvents || 0),
6420
- snapGridPointAlreadySet: true
6421
- }) === true;
6410
+ const presentedDirectly = module.presentWheelZoomCameraFrame?.(clientX, clientY, true) === true;
6422
6411
  const settleScheduled =
6423
6412
  presentedDirectly === true &&
6424
6413
  module.requestWheelZoomDirectSettle?.() === 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-v717" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v717" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-css3d-flat-wheel-v719" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v719" />
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-v717';
582
+ const scriptVersion = '20260620-css3d-flat-wheel-v719';
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": "/7T5wh84",
2
+ "version": "HbEMpqDj",
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-Ikvk4We4OWmiVUpNYw1cLxJ2rG5jF8Ywn2jYMmIAfUw=",
81
+ "hash": "sha256-pqgIWpUz6vTGCp3lE2eggiI30LkkJEe2bnEgUAHQqnI=",
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-tosOpXqyXDFBnjyuaucNqryVdR3s6BdWEWUuRpeCzgM=",
109
+ "hash": "sha256-JQA4jBklYiBR+NrSTcmyMNFG396DJB04AKiwJHXVeBU=",
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-hImUdqfR91Khdb59Xs20+qDOhbAcjjuT67jpBtox6lU=",
837
+ "hash": "sha256-aLa9QYcCCEMlUbiccQn+feYoFv4B1hNGLZh3cWsW6MU=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: /7T5wh84 */
1
+ /* Manifest version: HbEMpqDj */
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