@mindexec/cli 0.2.324 → 0.2.325

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.324",
3
+ "version": "0.2.325",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -1485,29 +1485,13 @@ html.mindcanvas-platform-apple .css3d-resolution-wrapper.is-automation-relation-
1485
1485
 
1486
1486
  .mind-map-text-overlay-v2-card.is-passive {
1487
1487
  pointer-events: none;
1488
- /* Passive overlay paints screen-space chrome for text-like nodes so the
1489
- user does not see CSS3D's camera-scaled hard card edge in NEAR. */
1488
+ /* CSS3D owns card background/edge/glow; passive overlay only contributes
1489
+ readable text fragments and must never paint over the CSS3D chrome. */
1490
1490
  contain: layout style;
1491
1491
  overflow: visible;
1492
- background: rgba(255, 255, 255, 0.985) !important;
1493
- background-color: rgba(255, 255, 255, 0.985) !important;
1492
+ background: transparent !important;
1493
+ background-color: transparent !important;
1494
1494
  background-image: none !important;
1495
- border: 1px solid var(--mind-node-static-edge) !important;
1496
- box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05) !important;
1497
- border-radius: 2px !important;
1498
- outline: none !important;
1499
- }
1500
-
1501
- .mind-map-text-overlay-v2-card.is-passive[data-content-type="memo"],
1502
- .mind-map-text-overlay-v2-card.is-passive[data-content-type="note"] {
1503
- border-color: var(--mind-node-static-edge) !important;
1504
- border-radius: 6px !important;
1505
- }
1506
-
1507
- .mind-map-text-overlay-v2-card.is-passive[data-content-type="code"],
1508
- .mind-map-text-overlay-v2-card.is-passive[data-content-type="text"],
1509
- .mind-map-text-overlay-v2-card.is-passive[data-content-type="markdown"] {
1510
- border-radius: 1px !important;
1511
1495
  }
1512
1496
 
1513
1497
  .mind-map-text-overlay-v2-card.is-passive .mind-map-text-overlay-v2-body {
@@ -1517,6 +1501,10 @@ html.mindcanvas-platform-apple .css3d-resolution-wrapper.is-automation-relation-
1517
1501
  -moz-osx-font-smoothing: auto;
1518
1502
  }
1519
1503
 
1504
+ body.is-panning .mind-map-text-overlay-v2-card.is-passive .mind-map-text-overlay-v2-body {
1505
+ pointer-events: none !important;
1506
+ }
1507
+
1520
1508
  .mind-map-text-overlay-v2-shell {
1521
1509
  width: 100%;
1522
1510
  height: 100%;
@@ -2062,20 +2050,6 @@ html.mindcanvas-platform-apple .css3d-resolution-wrapper.is-automation-relation-
2062
2050
  caret-color: transparent !important;
2063
2051
  }
2064
2052
 
2065
- .css3d-resolution-wrapper.mind-map-v2-source-suspended:not(.node-type-image):not(.node-type-video):not(.node-type-embed),
2066
- .css3d-resolution-wrapper.mind-map-v2-source-suspended:not(.node-type-image):not(.node-type-video):not(.node-type-embed) > .map-node,
2067
- .css3d-resolution-wrapper.mind-map-v2-source-suspended:not(.node-type-image):not(.node-type-video):not(.node-type-embed) > .map-node-bubble,
2068
- .css3d-resolution-wrapper.mind-map-v2-source-suspended:not(.node-type-image):not(.node-type-video):not(.node-type-embed) > .map-node-note,
2069
- .css3d-resolution-wrapper.mind-map-v2-source-suspended:not(.node-type-image):not(.node-type-video):not(.node-type-embed) > .map-node-code,
2070
- .css3d-resolution-wrapper.mind-map-v2-source-suspended:not(.node-type-image):not(.node-type-video):not(.node-type-embed) > .map-node-memo:not(.map-node-agent):not(.map-node-automation) {
2071
- background: transparent !important;
2072
- background-color: transparent !important;
2073
- background-image: none !important;
2074
- border-color: var(--mind-node-static-edge) !important;
2075
- outline-color: var(--mind-node-static-edge) !important;
2076
- box-shadow: none !important;
2077
- }
2078
-
2079
2053
  .css3d-resolution-wrapper.node-type-image .mind-map-v2-source-suspended,
2080
2054
  .css3d-resolution-wrapper.node-type-video .mind-map-v2-source-suspended,
2081
2055
  .css3d-resolution-wrapper.node-type-embed .mind-map-v2-source-suspended,
@@ -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-normal-text-restore-v808';
8
+ const MINDMAP_CORE_BUILD_ID = '20260621-passive-overlay-visual-v809';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -51,7 +51,7 @@
51
51
  // ▲▲▲ [Usage] ▲▲▲
52
52
 
53
53
  // Procedural line rendering settings
54
- const LOD_RENDERER_BUILD_ID = '20260621-normal-text-restore-v808';
54
+ const LOD_RENDERER_BUILD_ID = '20260621-passive-overlay-visual-v809';
55
55
  const DirtyKind = Object.freeze({
56
56
  ResidentFullRebuild: 'resident-full-rebuild',
57
57
  ResidentPatch: 'resident-patch',
@@ -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-normal-text-restore-v808" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-normal-text-restore-v808" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260621-passive-overlay-visual-v809" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-passive-overlay-visual-v809" />
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-normal-text-restore-v808';
582
+ const scriptVersion = '20260621-passive-overlay-visual-v809';
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": "K++PCGF7",
2
+ "version": "/ZP7j8/4",
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-H3/sdU3NP0vCzGPw++siXpNyBLla/wi3+sjvcMSg6vQ=",
45
+ "hash": "sha256-vid9yH+PpB1piyotFJWl7w8T0rHHzozGJXcARF4Bt3M=",
46
46
  "url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
47
47
  },
48
48
  {
@@ -78,7 +78,7 @@
78
78
  "url": "_content/MindExecution.Shared/js/marked.min.js"
79
79
  },
80
80
  {
81
- "hash": "sha256-dU2gKWaOZoszfV7/dN6gL8t+2POGuIS5kFZ7Y529aPc=",
81
+ "hash": "sha256-/B3VgAaxd8kCxinkwTtDL2FZqd/16ZT776aofWm2d3U=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -114,7 +114,7 @@
114
114
  "url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
115
115
  },
116
116
  {
117
- "hash": "sha256-RxjDf83FLNGlh4jbmJ449idO13/CoV+xjddozjp2oMM=",
117
+ "hash": "sha256-+AKWC0QdceiMs2L5gB8YYo7FGxOKQryQZQUqqcSiE00=",
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-DZ1EAjCOSaZDYlvBMoOHY7XZdgvyYDoPmmvTrFrsQ/A=",
837
+ "hash": "sha256-KY6fyBhIFE2MDuYOYewFBAjKksJZocJxS2uxk73ND3U=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: K++PCGF7 */
1
+ /* Manifest version: /ZP7j8/4 */
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