@mindexec/cli 0.2.273 → 0.2.274
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
|
@@ -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-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v722';
|
|
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
|
-
|
|
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) {
|
|
@@ -4050,9 +4053,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4050
4053
|
layer.style.display = 'none';
|
|
4051
4054
|
layer.style.opacity = '0';
|
|
4052
4055
|
layer.style.backgroundColor = 'transparent';
|
|
4053
|
-
layer.style.borderRadius = '
|
|
4054
|
-
layer.style.overflow = '
|
|
4055
|
-
layer.style.clipPath = 'circle(500px at 500px 500px)';
|
|
4056
|
+
layer.style.borderRadius = '0';
|
|
4057
|
+
layer.style.overflow = 'visible';
|
|
4056
4058
|
layer.style.contain = 'strict';
|
|
4057
4059
|
layer.style.willChange = 'transform';
|
|
4058
4060
|
layer.style.transform = 'translate3d(0, 0, 0)';
|
|
@@ -5568,7 +5570,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5568
5570
|
this._fullResVisibilityReconcilePending = true;
|
|
5569
5571
|
}
|
|
5570
5572
|
this._preserveVisibleSetThisFrame = true;
|
|
5571
|
-
|
|
5573
|
+
if (hasPassiveOverlayMotionWork(this) === true) {
|
|
5574
|
+
deferPassiveOverlayForCameraMotion(this);
|
|
5575
|
+
}
|
|
5572
5576
|
|
|
5573
5577
|
if (snapGridPointAlreadySet !== true &&
|
|
5574
5578
|
Number.isFinite(Number(clientX)) &&
|
|
@@ -5628,7 +5632,10 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5628
5632
|
if (canRenderCss3d === true) {
|
|
5629
5633
|
renderCss3dCameraForCameraNavigation(this, 'ua-wheel-zoom-direct');
|
|
5630
5634
|
}
|
|
5631
|
-
|
|
5635
|
+
if (this._businessAutomationEdgeRenderActive === true ||
|
|
5636
|
+
this._businessAutomationConnectionDraftActive === true) {
|
|
5637
|
+
syncBusinessAutomationEdgesForCameraNavigation(this, true);
|
|
5638
|
+
}
|
|
5632
5639
|
this.pauseAnimationLoopForDirectWheelZoom?.();
|
|
5633
5640
|
return true;
|
|
5634
5641
|
}
|
package/wwwroot/index.html
CHANGED
|
@@ -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-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-css3d-flat-wheel-v722" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v722" />
|
|
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-
|
|
582
|
+
const scriptVersion = '20260620-css3d-flat-wheel-v722';
|
|
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": "
|
|
2
|
+
"version": "2bce3prM",
|
|
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-
|
|
81
|
+
"hash": "sha256-aLHD0t7zUz2Hm0YXh0mcna9uh2NOfK4GrgaGzFjKxXQ=",
|
|
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-
|
|
837
|
+
"hash": "sha256-Fw2E9mGBm1TPjXCiHI5odjJdKIykBepdRCeX0L1irZ8=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|