@mindexec/cli 0.2.105 → 0.2.107
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 +22 -10
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js +8 -2
- 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
|
@@ -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 = '20260616-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260616-mdm-simple-monitor-border-v567';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -3898,7 +3898,7 @@
|
|
|
3898
3898
|
const NEUTRAL_SELECTION_GLOW_RGB_SOFT = '191, 219, 254';
|
|
3899
3899
|
const CSS3D_WRAPPER_TRANSITION = 'box-shadow .22s ease, filter .22s ease';
|
|
3900
3900
|
const CSS3D_WRAPPER_WEBKIT_TRANSITION = '-webkit-box-shadow .22s ease, -webkit-filter .22s ease';
|
|
3901
|
-
const TEXT_OVERLAY_SUPPORTED_TYPES = new Set(['text', 'markdown', 'note', 'code', 'memo', 'templatelauncher']);
|
|
3901
|
+
const TEXT_OVERLAY_SUPPORTED_TYPES = new Set(['text', 'markdown', 'note', 'code', 'memo', CSV_TABLE_CONTENT_TYPE, 'templatelauncher']);
|
|
3902
3902
|
const TEXT_SELECTION_OVERLAY_SUPPORTED_TYPES = new Set(['text', 'markdown']);
|
|
3903
3903
|
const TEXT_INTERACTION_SCROLLABLE_SELECTORS = '.node-response, .note-content, .markdown-body, .prose, .note-textarea, .code-body, .code-content, .csv-table-scroll, .csv-table-scroll *, .pdf-content, .text-content, .file-content, .map-node-memo__body, .map-node-memo__body-view, .map-node-memo__agent-plan-body, .map-node-memo__agent-console-body, pre, code';
|
|
3904
3904
|
const TEXT_INTERACTION_CONTENT_SELECTORS = '.node-response, .code-body, .text-content, .markdown-body, .prose, .csv-table-scroll, .csv-table-cell';
|
|
@@ -4011,6 +4011,11 @@
|
|
|
4011
4011
|
return contentType === 'templatelauncher' || isRemoteFleetMonitorNode(nodeModel);
|
|
4012
4012
|
}
|
|
4013
4013
|
|
|
4014
|
+
function isLiveOverlayPortalNode(nodeModel) {
|
|
4015
|
+
const contentType = String(nodeModel?.contentType ?? nodeModel?.ContentType ?? '').trim().toLowerCase();
|
|
4016
|
+
return contentType === CSV_TABLE_CONTENT_TYPE || isTemplateLauncherNode(nodeModel);
|
|
4017
|
+
}
|
|
4018
|
+
|
|
4014
4019
|
function isBusinessAutomationContextSourceNode(nodeModel) {
|
|
4015
4020
|
if (!nodeModel || isBusinessAutomationNode(nodeModel) || isRemoteFleetNode(nodeModel)) {
|
|
4016
4021
|
return false;
|
|
@@ -4081,7 +4086,7 @@
|
|
|
4081
4086
|
return 'none';
|
|
4082
4087
|
}
|
|
4083
4088
|
|
|
4084
|
-
if (
|
|
4089
|
+
if (isLiveOverlayPortalNode(nodeEntry?.model)) {
|
|
4085
4090
|
return 'live-template';
|
|
4086
4091
|
}
|
|
4087
4092
|
|
|
@@ -13331,9 +13336,9 @@
|
|
|
13331
13336
|
min-height: ${metrics.emptyMinHeight}px;
|
|
13332
13337
|
box-sizing: border-box;
|
|
13333
13338
|
border-radius: 8px;
|
|
13334
|
-
border: 1px solid rgba(203, 213, 225, 0.
|
|
13339
|
+
border: 1px solid rgba(203, 213, 225, 0.66);
|
|
13335
13340
|
background: #ffffff;
|
|
13336
|
-
box-shadow:
|
|
13341
|
+
box-shadow: none;
|
|
13337
13342
|
`;
|
|
13338
13343
|
shell.appendChild(screen);
|
|
13339
13344
|
}
|
|
@@ -16079,7 +16084,8 @@
|
|
|
16079
16084
|
overflow: hidden;
|
|
16080
16085
|
border-radius: ${isDetail ? '8px' : '6px'};
|
|
16081
16086
|
background: ${(hasLiveFrame || hasThumbnail) ? 'linear-gradient(135deg, #0f172a 0%, #1e293b 100%)' : '#ffffff'};
|
|
16082
|
-
border: 1px solid rgba(
|
|
16087
|
+
border: 1px solid rgba(148, 163, 184, ${isDetail ? '0.34' : '0.24'});
|
|
16088
|
+
box-shadow: none;
|
|
16083
16089
|
`;
|
|
16084
16090
|
|
|
16085
16091
|
if (hasLiveFrame || hasThumbnail) {
|
|
@@ -16249,16 +16255,22 @@
|
|
|
16249
16255
|
aspect-ratio: 16 / 9;
|
|
16250
16256
|
box-sizing: border-box;
|
|
16251
16257
|
overflow: hidden;
|
|
16252
|
-
padding:
|
|
16258
|
+
padding: 0;
|
|
16253
16259
|
border-radius: 8px;
|
|
16254
|
-
background:
|
|
16255
|
-
border:
|
|
16256
|
-
box-shadow:
|
|
16260
|
+
background: transparent;
|
|
16261
|
+
border: 0;
|
|
16262
|
+
box-shadow: none;
|
|
16263
|
+
outline: 0;
|
|
16257
16264
|
cursor: pointer;
|
|
16258
16265
|
pointer-events: auto;
|
|
16259
16266
|
user-select: none;
|
|
16260
16267
|
`;
|
|
16261
|
-
|
|
16268
|
+
const preview = createDevicePreview(device, 'tile');
|
|
16269
|
+
if (isSelected) {
|
|
16270
|
+
preview.style.borderColor = 'rgba(37, 99, 235, 0.86)';
|
|
16271
|
+
preview.style.boxShadow = '0 0 0 1px rgba(37, 99, 235, 0.20)';
|
|
16272
|
+
}
|
|
16273
|
+
card.appendChild(preview);
|
|
16262
16274
|
grid.appendChild(card);
|
|
16263
16275
|
});
|
|
16264
16276
|
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
const PASSIVE_OVERLAY_OVERLAP_MIN_AREA_PX = 16;
|
|
15
15
|
const PASSIVE_OVERLAY_STACK_Z_SCALE = 10000;
|
|
16
16
|
const LIVE_TEMPLATE_OVERLAY_MODE = 'live-template';
|
|
17
|
+
const CSV_TABLE_CONTENT_TYPE = 'csv-table';
|
|
17
18
|
const REMOTE_FLEET_SEMANTIC_TYPE = 'RemoteFleetMonitor';
|
|
18
19
|
const log = DEBUG ? console.log.bind(console, '[MindMapTextOverlayV2]') : () => { };
|
|
19
20
|
let _projCornerTopLeft = null;
|
|
@@ -84,7 +85,9 @@
|
|
|
84
85
|
function isLiveInteractiveOverlayEntry(entry) {
|
|
85
86
|
const type = getContentType(entry);
|
|
86
87
|
const semanticType = getNodeSemanticType(entry);
|
|
87
|
-
return type === 'templatelauncher'
|
|
88
|
+
return type === 'templatelauncher'
|
|
89
|
+
|| type === CSV_TABLE_CONTENT_TYPE
|
|
90
|
+
|| semanticType === REMOTE_FLEET_SEMANTIC_TYPE;
|
|
88
91
|
}
|
|
89
92
|
|
|
90
93
|
function isLiveInteractiveOverlayMode(mode) {
|
|
@@ -2425,7 +2428,10 @@
|
|
|
2425
2428
|
'[data-remote-fleet-control-popup]',
|
|
2426
2429
|
'[data-remote-fleet-task-input]',
|
|
2427
2430
|
'[data-remote-fleet-ai-toggle]',
|
|
2428
|
-
'[data-remote-fleet-search]'
|
|
2431
|
+
'[data-remote-fleet-search]',
|
|
2432
|
+
'.csv-table-scroll',
|
|
2433
|
+
'.csv-table-header-button',
|
|
2434
|
+
'.csv-table-cell'
|
|
2429
2435
|
].join(', '));
|
|
2430
2436
|
}
|
|
2431
2437
|
|
package/wwwroot/index.html
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
<title>MindExec | Run your ideas as AI task graphs</title>
|
|
8
8
|
<meta name="description" content="MindExec is an AI execution canvas for solo builders, researchers, developers, and creators. Start with free browser tools, then move serious work into saved MindCanvas projects." />
|
|
9
9
|
<base href="/" />
|
|
10
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260616-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260616-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260616-mdm-simple-monitor-border-v567" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260616-mdm-simple-monitor-border-v567" />
|
|
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 = '20260616-
|
|
582
|
+
const scriptVersion = '20260616-mdm-simple-monitor-border-v567';
|
|
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": "lm4IaYy/",
|
|
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-xoC/V6bym09C2/PSsXrMNa7JA6xWQTFq5RNRA+nojVs=",
|
|
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-3PsDD8j+YZE2SU7MQscT9DHl+zbP9r2NCCW6p8DzvOA=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
"url": "_content/MindExecution.Shared/js/mind-map-text-lod-system.js"
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
|
-
"hash": "sha256-
|
|
157
|
+
"hash": "sha256-dzOqbpcXDlZXQQTB9kDHqnzOVPxUMBrOpf8fnte9kcg=",
|
|
158
158
|
"url": "_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js"
|
|
159
159
|
},
|
|
160
160
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256-
|
|
837
|
+
"hash": "sha256-dsplZ/RaSr9+idAqCQA85yTQKyHFVw9MkMndOJpXrAQ=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|