@mindexec/cli 0.2.105 → 0.2.106

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.105",
3
+ "version": "0.2.106",
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 = '20260616-live-template-overlay-v565';
8
+ const MINDMAP_CORE_BUILD_ID = '20260616-live-csv-overlay-v566';
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 (isTemplateLauncherNode(nodeEntry?.model)) {
4089
+ if (isLiveOverlayPortalNode(nodeEntry?.model)) {
4085
4090
  return 'live-template';
4086
4091
  }
4087
4092
 
@@ -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' || semanticType === REMOTE_FLEET_SEMANTIC_TYPE;
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
 
@@ -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-live-template-overlay-v565" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260616-live-template-overlay-v565" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260616-live-csv-overlay-v566" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260616-live-csv-overlay-v566" />
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-live-template-overlay-v565';
582
+ const scriptVersion = '20260616-live-csv-overlay-v566';
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": "nqE9sVux",
2
+ "version": "4Z/beLB1",
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-znNKrMbupuP7uSHjadUem9zeSkWfr11mN7gBXZ7p4DY=",
81
+ "hash": "sha256-7liM89dPcSTRsRDjW34NcN4nympUF2BXewfpgyA6P0c=",
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-7zaPQ47/AyOgHHbIAFLHteRif2MsuDB8icBUaYDhkXg=",
89
+ "hash": "sha256-/afOejfgIcOoUzPkYMaApwHu/giAM6sAskPi5O2HaiQ=",
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-qcrEPMkOzb7X1WFU1WcjRL2CBwOT/5xI62dUuyx2GUs=",
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-jFFpysUWXlCTjpS5auSogsacZmbe/Xlys2VAhvG/Guw=",
837
+ "hash": "sha256-9bEQ4UJDWO+QrReSgUser1zhLacqGTPSLgMZQZxRCyM=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: nqE9sVux */
1
+ /* Manifest version: 4Z/beLB1 */
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