@mindexec/cli 0.2.315 → 0.2.316
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/mind-map-core.js +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +2 -2
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-interactions.js +25 -2
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +1 -1
- package/wwwroot/index.html +3 -3
- package/wwwroot/service-worker-assets.js +6 -6
- package/wwwroot/service-worker.js +1 -1
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 = '20260621-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260621-mdm-drag-v799';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -13140,6 +13140,7 @@
|
|
|
13140
13140
|
'[data-remote-fleet-control-node-placeholder]',
|
|
13141
13141
|
'[data-remote-fleet-task-input]',
|
|
13142
13142
|
'[data-remote-fleet-device-task-input]',
|
|
13143
|
+
'[data-remote-fleet-device-preview]',
|
|
13143
13144
|
'[data-remote-fleet-ai-toggle]',
|
|
13144
13145
|
'[data-remote-fleet-device-ai-toggle]',
|
|
13145
13146
|
'[data-remote-fleet-search]',
|
|
@@ -13189,7 +13190,6 @@
|
|
|
13189
13190
|
}
|
|
13190
13191
|
|
|
13191
13192
|
const nodeId = String(getNodeId(nodeModel) || card.dataset?.nodeId || '').trim();
|
|
13192
|
-
const isRemoteFleetCard = isRemoteFleetMonitorNode(nodeModel);
|
|
13193
13193
|
|
|
13194
13194
|
const wheelHandler = event => {
|
|
13195
13195
|
routeTemplateCardWheelToCanvas(event);
|
|
@@ -13209,7 +13209,7 @@
|
|
|
13209
13209
|
return;
|
|
13210
13210
|
}
|
|
13211
13211
|
|
|
13212
|
-
if (button !== 0 ||
|
|
13212
|
+
if (button !== 0 || !nodeId || isTemplateCardCanvasControlTarget(event.target)) {
|
|
13213
13213
|
return;
|
|
13214
13214
|
}
|
|
13215
13215
|
|
|
@@ -691,6 +691,27 @@ window.MindMapInteractions = (function () {
|
|
|
691
691
|
return String(model?.contentType ?? model?.ContentType ?? '').toLowerCase();
|
|
692
692
|
}
|
|
693
693
|
|
|
694
|
+
function getNodeSemanticType(target) {
|
|
695
|
+
const model = getNodeModel(target);
|
|
696
|
+
const metadata = model?.metadata ?? model?.Metadata ?? {};
|
|
697
|
+
return String(
|
|
698
|
+
model?.semanticType ??
|
|
699
|
+
model?.SemanticType ??
|
|
700
|
+
metadata?.SemanticType ??
|
|
701
|
+
metadata?.semanticType ??
|
|
702
|
+
''
|
|
703
|
+
).trim();
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
function prefersCss3dDragObject(nodeEntry) {
|
|
707
|
+
const contentType = getNodeContentType(nodeEntry);
|
|
708
|
+
const semanticType = getNodeSemanticType(nodeEntry);
|
|
709
|
+
return contentType === 'templatelauncher'
|
|
710
|
+
|| contentType === 'remote-control'
|
|
711
|
+
|| semanticType === 'RemoteFleetMonitor'
|
|
712
|
+
|| semanticType === 'RemoteFleetDevice';
|
|
713
|
+
}
|
|
714
|
+
|
|
694
715
|
function isAgentNode(target) {
|
|
695
716
|
const model = getNodeModel(target);
|
|
696
717
|
const nodeType = String(model?.nodeType ?? model?.NodeType ?? '').toLowerCase();
|
|
@@ -4693,9 +4714,11 @@ window.MindMapInteractions = (function () {
|
|
|
4693
4714
|
e.preventDefault();
|
|
4694
4715
|
e.stopPropagation();
|
|
4695
4716
|
|
|
4696
|
-
const actualDragObject = (nodeEntry
|
|
4717
|
+
const actualDragObject = (prefersCss3dDragObject(nodeEntry) && nodeEntry.cssObject) ?
|
|
4697
4718
|
nodeEntry.cssObject :
|
|
4698
|
-
nodeEntry.
|
|
4719
|
+
((nodeEntry.currentType === 'CSS' && nodeEntry.cssObject) ?
|
|
4720
|
+
nodeEntry.cssObject :
|
|
4721
|
+
(dragObject || nodeEntry.glObject));
|
|
4699
4722
|
|
|
4700
4723
|
if (!actualDragObject) return;
|
|
4701
4724
|
setBrowserSelectionLock(true, 'node-drag');
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
// ▲▲▲ [Usage] ▲▲▲
|
|
52
52
|
|
|
53
53
|
// Procedural line rendering settings
|
|
54
|
-
const LOD_RENDERER_BUILD_ID = '20260621-
|
|
54
|
+
const LOD_RENDERER_BUILD_ID = '20260621-mdm-drag-v799';
|
|
55
55
|
const DirtyKind = Object.freeze({
|
|
56
56
|
ResidentFullRebuild: 'resident-full-rebuild',
|
|
57
57
|
ResidentPatch: 'resident-patch',
|
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=20260621-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260621-mdm-drag-v799" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-mdm-drag-v799" />
|
|
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 = '20260621-
|
|
582
|
+
const scriptVersion = '20260621-mdm-drag-v799';
|
|
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": "SAss2wLl",
|
|
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-CdH4wPJb4NXehCfojFNuSltl7onaEXZ0efVUwHVr3gE=",
|
|
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-pbrochTaLCm/0nF+SSTAFAbdp82Kn61FWofSQf79c3w=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"url": "_content/MindExecution.Shared/js/mind-map-glow-shader.js"
|
|
107
107
|
},
|
|
108
108
|
{
|
|
109
|
-
"hash": "sha256-
|
|
109
|
+
"hash": "sha256-tU6TgB0yR2ft8+e/QouGtynlKONttkjzO8LQ+7q+58I=",
|
|
110
110
|
"url": "_content/MindExecution.Shared/js/mind-map-interactions.js"
|
|
111
111
|
},
|
|
112
112
|
{
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
|
-
"hash": "sha256-
|
|
117
|
+
"hash": "sha256-NXuJnhvbgnRE3BVR05gYACE8iXaU6rmkON1WGlHtpng=",
|
|
118
118
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256-
|
|
837
|
+
"hash": "sha256-YR0oSsyb101t+ulom2kgMzFyEzF+3m2rOTXOrSCtUzU=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|