@mindexec/cli 0.2.243 → 0.2.245
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 +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/background-themes.js +3 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +18 -3
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +6 -0
- package/wwwroot/index.html +3 -3
- package/wwwroot/service-worker-assets.js +5 -5
- package/wwwroot/service-worker.js +1 -1
package/package.json
CHANGED
|
@@ -126,6 +126,9 @@
|
|
|
126
126
|
if (!themeObject || typeof themeObject.animate !== 'function') {
|
|
127
127
|
return false;
|
|
128
128
|
}
|
|
129
|
+
if (themeObject.userData?.localSnapGrid === true) {
|
|
130
|
+
return false;
|
|
131
|
+
}
|
|
129
132
|
|
|
130
133
|
const mode = getThemeAnimationMode(themeName, themeObject);
|
|
131
134
|
if (mode === THEME_ANIMATION_MODE.Continuous) {
|
|
@@ -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-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260620-local-grid-zoom-fastpath-v692';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -524,12 +524,18 @@
|
|
|
524
524
|
return false;
|
|
525
525
|
}
|
|
526
526
|
|
|
527
|
+
const hasDraftHint = module?._businessAutomationConnectionDraftActive === true;
|
|
528
|
+
if (hasActiveEdges !== true && hasDraftHint !== true) {
|
|
529
|
+
return false;
|
|
530
|
+
}
|
|
531
|
+
|
|
527
532
|
if (!window.MindMapCss3DManager) {
|
|
528
533
|
return false;
|
|
529
534
|
}
|
|
530
535
|
|
|
531
536
|
const hasConnectionDraft =
|
|
532
537
|
options.allowDraftRender === true &&
|
|
538
|
+
hasDraftHint === true &&
|
|
533
539
|
window.MindMapCss3DManager.hasBusinessAutomationConnectionDraft?.() === true;
|
|
534
540
|
if (hasActiveEdges !== true && hasConnectionDraft !== true) {
|
|
535
541
|
return false;
|
|
@@ -8042,7 +8048,16 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
8042
8048
|
isCameraNavigationOnlyInteractiveFrame === true) {
|
|
8043
8049
|
this._syncMotionGridLayerForCameraNavigation(usedWebglCanvasCameraTransform);
|
|
8044
8050
|
}
|
|
8045
|
-
|
|
8051
|
+
const shouldUseLocalSnapGridPositionOnly = !!(
|
|
8052
|
+
isCameraNavigationOnlyInteractiveFrame === true &&
|
|
8053
|
+
this._localSnapGridLayer?.isConnected &&
|
|
8054
|
+
this._lastLocalSnapGridKey
|
|
8055
|
+
);
|
|
8056
|
+
if (shouldUseLocalSnapGridPositionOnly === true) {
|
|
8057
|
+
this._syncLocalSnapGridPositionOnly(true);
|
|
8058
|
+
} else {
|
|
8059
|
+
this._syncLocalSnapGridLayer(true);
|
|
8060
|
+
}
|
|
8046
8061
|
if (shouldRenderWebglFrame === true &&
|
|
8047
8062
|
this._motionGridVisible === true &&
|
|
8048
8063
|
isPureCss3dCameraMotionFrame !== true &&
|
|
@@ -8095,7 +8110,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
8095
8110
|
this._businessAutomationEdgeLayer?.isConnected
|
|
8096
8111
|
);
|
|
8097
8112
|
const hasBusinessAutomationConnectionDraft =
|
|
8098
|
-
|
|
8113
|
+
this._businessAutomationConnectionDraftActive === true;
|
|
8099
8114
|
const shouldTransformBusinessAutomationEdgesForCameraMotion =
|
|
8100
8115
|
hasBusinessAutomationEdgeLayer &&
|
|
8101
8116
|
hasBusinessAutomationConnectionDraft !== true &&
|
|
@@ -8975,6 +8975,9 @@
|
|
|
8975
8975
|
function clearBusinessAutomationConnectionDraft() {
|
|
8976
8976
|
const previous = _businessAutomationConnectionDraft;
|
|
8977
8977
|
_businessAutomationConnectionDraft = null;
|
|
8978
|
+
if (_module) {
|
|
8979
|
+
_module._businessAutomationConnectionDraftActive = false;
|
|
8980
|
+
}
|
|
8978
8981
|
if (previous?.sourceNodeId && previous?.sourcePinId) {
|
|
8979
8982
|
const sourcePin = previous.sourcePinElement?.isConnected
|
|
8980
8983
|
? previous.sourcePinElement
|
|
@@ -8997,6 +9000,9 @@
|
|
|
8997
9000
|
function setBusinessAutomationConnectionDraft(draft) {
|
|
8998
9001
|
clearBusinessAutomationConnectionDraft();
|
|
8999
9002
|
_businessAutomationConnectionDraft = draft;
|
|
9003
|
+
if (_module) {
|
|
9004
|
+
_module._businessAutomationConnectionDraftActive = true;
|
|
9005
|
+
}
|
|
9000
9006
|
const sourcePin = findBusinessAutomationPinElement(_module, draft.sourceNodeId, draft.sourcePinId, 'output');
|
|
9001
9007
|
if (sourcePin) {
|
|
9002
9008
|
sourcePin.classList.add('is-connecting-source');
|
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-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-local-grid-zoom-fastpath-v692" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-local-grid-zoom-fastpath-v692" />
|
|
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-
|
|
582
|
+
const scriptVersion = '20260620-local-grid-zoom-fastpath-v692';
|
|
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": "V9ycITdg",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"url": "_content/MindExecution.Shared/js/agent-visualization.js"
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
|
-
"hash": "sha256-
|
|
61
|
+
"hash": "sha256-CrDccRF6gyngXofsjyROr6ziZabOdswoaK6ajTJtl88=",
|
|
62
62
|
"url": "_content/MindExecution.Shared/js/background-themes.js"
|
|
63
63
|
},
|
|
64
64
|
{
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"url": "_content/MindExecution.Shared/js/marked.min.js"
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
|
-
"hash": "sha256-
|
|
81
|
+
"hash": "sha256-F2DLnC1W9MpqQpN9fQ+jhytH0yY5qXSVR6Zte8MlE1U=",
|
|
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-
|
|
89
|
+
"hash": "sha256-3VNh7dLgyvqfHytYI283FCIN3TsUUK7Qt1YPj1HNJFY=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256-
|
|
837
|
+
"hash": "sha256-Vjm3aIREm7YeZlXHlJrl1enYS2ao7Pq65n8gpVqnSyQ=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|