@mindexec/cli 0.2.422 → 0.2.424

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.422",
3
+ "version": "0.2.424",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -2611,8 +2611,6 @@ html body .css3d-resolution-wrapper.lod-low.node-type-csv-table .csv-table td {
2611
2611
 
2612
2612
  .css3d-resolution-wrapper.node-type-templatelauncher:has(> .map-node-template-card.map-node-remote-fleet) {
2613
2613
  outline: none !important;
2614
- -webkit-box-shadow: none !important;
2615
- box-shadow: none !important;
2616
2614
  -webkit-filter: none !important;
2617
2615
  filter: none !important;
2618
2616
  }
@@ -2621,9 +2619,9 @@ html body .css3d-resolution-wrapper.lod-low.node-type-csv-table .csv-table td {
2621
2619
  border: 2px solid var(--node-selection-edge, #2563eb) !important;
2622
2620
  }
2623
2621
 
2624
- /* Template launcher and Multi Desktop Monitor own their visual chrome on the
2625
- card itself. Keep the CSS3D wrapper neutral so motion CSS3D and the passive
2626
- DOM overlay do not stack different selection chrome. */
2622
+ /* Template launcher cards own their internal border chrome. The Multi Desktop
2623
+ Monitor still keeps the canonical CSS3D wrapper depth shadow so it reads like
2624
+ a normal canvas node while its screen-wall body stays flat. */
2627
2625
  .css3d-resolution-wrapper.node-type-templatelauncher.selected {
2628
2626
  outline: none !important;
2629
2627
  -webkit-box-shadow: none !important;
@@ -2636,6 +2634,19 @@ html body .css3d-resolution-wrapper.lod-low.node-type-csv-table .csv-table td {
2636
2634
  box-shadow: none !important;
2637
2635
  }
2638
2636
 
2637
+ html body .css3d-resolution-wrapper.node-type-templatelauncher:not(.lod-low):has(> .map-node-template-card.map-node-remote-fleet) {
2638
+ -webkit-box-shadow:
2639
+ 0 0 6px rgba(15, 23, 42, 0.25),
2640
+ 0 0 16px rgba(15, 23, 42, 0.18),
2641
+ 0 0 30px rgba(15, 23, 42, 0.12),
2642
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
2643
+ box-shadow:
2644
+ 0 0 6px rgba(15, 23, 42, 0.25),
2645
+ 0 0 16px rgba(15, 23, 42, 0.18),
2646
+ 0 0 30px rgba(15, 23, 42, 0.12),
2647
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
2648
+ }
2649
+
2639
2650
  .map-node-template-card,
2640
2651
  .map-node-template-card * {
2641
2652
  box-sizing: border-box;
@@ -418,7 +418,6 @@
418
418
  }
419
419
  .css3d-resolution-wrapper.node-type-templatelauncher:has(> .map-node-template-card.map-node-remote-fleet) {
420
420
  outline: none !important;
421
- box-shadow: none !important;
422
421
  filter: none !important;
423
422
  }
424
423
  .css3d-resolution-wrapper.node-type-templatelauncher.selected > .map-node-template-card.map-node-remote-fleet {
@@ -5256,6 +5256,18 @@ window.MindMapInteractions = (function () {
5256
5256
  const isMultiSelecting = module.isShiftClick;
5257
5257
  // Check if link was clicked (to prevent edit on link click)
5258
5258
  const isLink = e.target && (e.target.tagName === 'A' || e.target.closest?.('a'));
5259
+
5260
+ if (isAlreadySelected && !isMultiSelecting && isInlineEditableNode(nodeEntry)) {
5261
+ if (module.selectionChangedInThisClick) {
5262
+ module.selectionChangedInThisClick = false;
5263
+ } else if (consumePendingSelectedActivation(module, clickedNodeId)) {
5264
+ finalizeSingleSelection(module, clickedNodeId, { notifyBlazor: false, bringToFront: true, showMenu: true });
5265
+ } else {
5266
+ handleSelectedNodeActivation(module, clickedNodeId, nodeEntry, { isLink, target: e.target });
5267
+ }
5268
+ return;
5269
+ }
5270
+
5259
5271
  schedulePrimaryClickAction(module, () => {
5260
5272
  if (module.selectedNodeIdJs && module.selectedNodeIdJs !== clickedNodeId) {
5261
5273
  switchPreviousSelectedNoteToWebGL(module, false);
@@ -5273,6 +5285,17 @@ window.MindMapInteractions = (function () {
5273
5285
  return;
5274
5286
  }
5275
5287
 
5288
+ if (isAlreadySelected && !isMultiSelecting && isInlineEditableNode(nodeEntry)) {
5289
+ if (module.selectionChangedInThisClick) {
5290
+ module.selectionChangedInThisClick = false;
5291
+ } else if (consumePendingSelectedActivation(module, clickedNodeId)) {
5292
+ finalizeSingleSelection(module, clickedNodeId, { notifyBlazor: false, bringToFront: true, showMenu: true });
5293
+ } else {
5294
+ handleSelectedNodeActivation(module, clickedNodeId, nodeEntry, { isLink, target: e.target });
5295
+ }
5296
+ return;
5297
+ }
5298
+
5276
5299
  if (isAlreadySelected) {
5277
5300
  if (module.selectionChangedInThisClick) {
5278
5301
  module.selectionChangedInThisClick = false;
@@ -5365,6 +5388,19 @@ window.MindMapInteractions = (function () {
5365
5388
 
5366
5389
  const isAlreadySelected = module.selectedNodeIdJs === clickedNodeId;
5367
5390
  const isMultiSelecting = module.isShiftClick;
5391
+
5392
+ if (isAlreadySelected && !isMultiSelecting && isInlineEditableNode(nodeEntry)) {
5393
+ if (module.selectionChangedInThisClick) {
5394
+ module.selectionChangedInThisClick = false;
5395
+ finalizeSingleSelection(module, clickedNodeId, { notifyBlazor: false, bringToFront: true, showMenu: true });
5396
+ } else if (consumePendingSelectedActivation(module, clickedNodeId)) {
5397
+ finalizeSingleSelection(module, clickedNodeId, { notifyBlazor: false, bringToFront: true, showMenu: true });
5398
+ } else {
5399
+ handleSelectedNodeActivation(module, clickedNodeId, nodeEntry, { target: e.target });
5400
+ }
5401
+ return;
5402
+ }
5403
+
5368
5404
  schedulePrimaryClickAction(module, () => {
5369
5405
  if (module.selectedNodeIdJs && module.selectedNodeIdJs !== clickedNodeId) {
5370
5406
  switchPreviousSelectedNoteToWebGL(module, false);
@@ -5382,6 +5418,18 @@ window.MindMapInteractions = (function () {
5382
5418
  return;
5383
5419
  }
5384
5420
 
5421
+ if (isAlreadySelected && !isMultiSelecting && isInlineEditableNode(nodeEntry)) {
5422
+ if (module.selectionChangedInThisClick) {
5423
+ module.selectionChangedInThisClick = false;
5424
+ finalizeSingleSelection(module, clickedNodeId, { notifyBlazor: false, bringToFront: true, showMenu: true });
5425
+ } else if (consumePendingSelectedActivation(module, clickedNodeId)) {
5426
+ finalizeSingleSelection(module, clickedNodeId, { notifyBlazor: false, bringToFront: true, showMenu: true });
5427
+ } else {
5428
+ handleSelectedNodeActivation(module, clickedNodeId, nodeEntry, { target: e.target });
5429
+ }
5430
+ return;
5431
+ }
5432
+
5385
5433
  if (isAlreadySelected) {
5386
5434
  if (module.selectionChangedInThisClick) {
5387
5435
  module.selectionChangedInThisClick = false;
@@ -8,7 +8,7 @@
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
10
  <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260628-local-oauth-v838" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260627-local-oauth-relay-v836" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260629-mdm-shadow-v856" />
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 = '20260629-wheel-zoom-immediate-lite-v855';
582
+ const scriptVersion = '20260629-note-click-edit-v857';
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": "XIia70hb",
2
+ "version": "2kfQQzvQ",
3
3
  "assets": [
4
4
  {
5
5
  "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
@@ -42,7 +42,7 @@
42
42
  "url": "_content/MindExecution.Shared/css/app.css"
43
43
  },
44
44
  {
45
- "hash": "sha256-5H2C1LgV4x6yd6MJWyrR8rOgzngsEF5SfIROGDWenxc=",
45
+ "hash": "sha256-uoZWP9rvAR8US7KYwnM+F7X/1sozQpAiyOlyUr0cWeU=",
46
46
  "url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
47
47
  },
48
48
  {
@@ -86,7 +86,7 @@
86
86
  "url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
87
87
  },
88
88
  {
89
- "hash": "sha256-xGt9LTobfy8NmStfgnMGnwq4rmbMaDLpp41TSFZcxEA=",
89
+ "hash": "sha256-UFpa7SNYN+/9N9usMa7jWfvlI/mji1W6A27p4c2nQUs=",
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-cI3+GC8kPJOqszjmSBOS+rFPyXPheKohJfZZaDcOWV8=",
109
+ "hash": "sha256-199OWAqxLR0unTGMgqteXg5u9T6srTGcIgxLazRV8mE=",
110
110
  "url": "_content/MindExecution.Shared/js/mind-map-interactions.js"
111
111
  },
112
112
  {
@@ -826,7 +826,7 @@
826
826
  "url": "icon-512.png"
827
827
  },
828
828
  {
829
- "hash": "sha256-c7bd5qxUiH3yqT95Xt6vckY20uqzasgvEGQnonVsO1M=",
829
+ "hash": "sha256-BcNbvE1pVYYWB461LNgacu2M0SE6PIjiWn7wxU7TsiY=",
830
830
  "url": "index.html"
831
831
  },
832
832
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: XIia70hb */
1
+ /* Manifest version: 2kfQQzvQ */
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