@mindexec/cli 0.2.195 → 0.2.196

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.195",
3
+ "version": "0.2.196",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -1217,11 +1217,8 @@ body.is-node-dragging * {
1217
1217
  overflow: hidden !important;
1218
1218
  }
1219
1219
 
1220
- /* Note/Image hard edge lives on the inner CSS3D card in app.css.
1221
- Node glow/shadow is retired; keep only crisp borders. */
1222
- .map-node-note,
1223
- .map-node-note.selected,
1224
- .map-node-note:focus-within,
1220
+ /* Image hard edge lives on its own media surface.
1221
+ Text nodes keep a crisp border so overlapping nodes remain readable. */
1225
1222
  .map-node-image-container,
1226
1223
  .map-node-image-container.selected {
1227
1224
  border: none !important;
@@ -3431,3 +3428,38 @@ html body .css3d-resolution-wrapper.node-type-embed .map-node.selected {
3431
3428
  filter: none !important;
3432
3429
  outline-offset: 0 !important;
3433
3430
  }
3431
+
3432
+ /* Text nodes need a visible hard edge now that decorative glow/shadow is gone.
3433
+ Keep this scoped away from template, MDM, media, CSV, and remote-control cards. */
3434
+ html body .css3d-resolution-wrapper > .map-node-bubble,
3435
+ html body .css3d-resolution-wrapper > .map-node-note,
3436
+ html body .css3d-resolution-wrapper > .map-node-code,
3437
+ html body .css3d-resolution-wrapper > .map-node-agent:not(.map-node-template-card):not(.map-node-remote-fleet),
3438
+ html body .css3d-resolution-wrapper > .map-node-memo:not(.map-node-template-card):not(.map-node-remote-fleet) {
3439
+ border: 1px solid rgba(17, 24, 39, 0.88) !important;
3440
+ -webkit-box-shadow: none !important;
3441
+ box-shadow: none !important;
3442
+ -webkit-filter: none !important;
3443
+ filter: none !important;
3444
+ }
3445
+
3446
+ html body .css3d-resolution-wrapper.selected > .map-node-bubble,
3447
+ html body .css3d-resolution-wrapper.selected > .map-node-note,
3448
+ html body .css3d-resolution-wrapper.selected > .map-node-code,
3449
+ html body .css3d-resolution-wrapper.selected > .map-node-agent:not(.map-node-template-card):not(.map-node-remote-fleet),
3450
+ html body .css3d-resolution-wrapper.selected > .map-node-memo:not(.map-node-template-card):not(.map-node-remote-fleet),
3451
+ html body .css3d-resolution-wrapper > .map-node-bubble.selected,
3452
+ html body .css3d-resolution-wrapper > .map-node-note.selected,
3453
+ html body .css3d-resolution-wrapper > .map-node-note:focus-within,
3454
+ html body .css3d-resolution-wrapper > .map-node-code.selected,
3455
+ html body .css3d-resolution-wrapper > .map-node-code:focus-within,
3456
+ html body .css3d-resolution-wrapper > .map-node-agent.selected:not(.map-node-template-card):not(.map-node-remote-fleet),
3457
+ html body .css3d-resolution-wrapper > .map-node-agent:focus-within:not(.map-node-template-card):not(.map-node-remote-fleet),
3458
+ html body .css3d-resolution-wrapper > .map-node-memo.selected:not(.map-node-template-card):not(.map-node-remote-fleet),
3459
+ html body .css3d-resolution-wrapper > .map-node-memo:focus-within:not(.map-node-template-card):not(.map-node-remote-fleet) {
3460
+ border-color: var(--mind-node-selection-edge) !important;
3461
+ -webkit-box-shadow: none !important;
3462
+ box-shadow: none !important;
3463
+ -webkit-filter: none !important;
3464
+ filter: none !important;
3465
+ }
@@ -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=20260618-node-no-glow-v612" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260618-node-no-glow-v612" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260618-text-node-border-v613" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260618-text-node-border-v613" />
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 = '20260618-node-no-glow-v612';
582
+ const scriptVersion = '20260618-text-node-border-v613';
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": "mgN72BWo",
2
+ "version": "iBwjCw5h",
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-HZKOm11YuA4O+epDepAIOICiWR2Umvw/0RQw3R0/gL8=",
45
+ "hash": "sha256-Uz0yKoS3dqQn6Wub7Z5Xz4QwJ/wysZ7EKB2fs01V31U=",
46
46
  "url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
47
47
  },
48
48
  {
@@ -834,7 +834,7 @@
834
834
  "url": "image-manifest.json"
835
835
  },
836
836
  {
837
- "hash": "sha256-vbKJG7msZYn5IzSiN29u6RPsHviqxMMwqvXaNkcCU/U=",
837
+ "hash": "sha256-oq0WDrtQdjlYX1ccHWhNkU1iHIclV7doPHQPVFWzlOM=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: mgN72BWo */
1
+ /* Manifest version: iBwjCw5h */
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