@mindexec/cli 0.2.212 → 0.2.214

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.212",
3
+ "version": "0.2.214",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -3508,3 +3508,38 @@ html body .css3d-resolution-wrapper > .map-node-automation:focus-within:not(.map
3508
3508
  -webkit-filter: none !important;
3509
3509
  filter: none !important;
3510
3510
  }
3511
+
3512
+ /* Final node edge policy:
3513
+ - unselected text-like surfaces use a hard dark edge because glow is removed
3514
+ - selected nodes, including AI task nodes, use the same blue edge as notes */
3515
+ html body .css3d-resolution-wrapper.node-type-text > .map-node,
3516
+ html body .css3d-resolution-wrapper.node-type-markdown > .map-node,
3517
+ html body .css3d-resolution-wrapper.node-type-text > .css3d-dynamic-node,
3518
+ html body .css3d-resolution-wrapper.node-type-markdown > .css3d-dynamic-node,
3519
+ html body .css3d-resolution-wrapper > .map-node-agent:not(.map-node-template-card):not(.map-node-remote-fleet),
3520
+ html body .css3d-resolution-wrapper > .map-node-automation:not(.map-node-template-card):not(.map-node-remote-fleet),
3521
+ html body .mind-map-text-overlay-v2-shell.type-text,
3522
+ html body .mind-map-text-overlay-v2-shell.type-markdown {
3523
+ border: 1px solid rgba(17, 24, 39, 0.88) !important;
3524
+ -webkit-box-shadow: none !important;
3525
+ box-shadow: none !important;
3526
+ -webkit-filter: none !important;
3527
+ filter: none !important;
3528
+ }
3529
+
3530
+ html body .css3d-resolution-wrapper.selected.node-type-text > .map-node,
3531
+ html body .css3d-resolution-wrapper.selected.node-type-markdown > .map-node,
3532
+ html body .css3d-resolution-wrapper.selected.node-type-text > .css3d-dynamic-node,
3533
+ html body .css3d-resolution-wrapper.selected.node-type-markdown > .css3d-dynamic-node,
3534
+ html body .css3d-resolution-wrapper.selected > .map-node-agent:not(.map-node-template-card):not(.map-node-remote-fleet),
3535
+ html body .css3d-resolution-wrapper.selected > .map-node-automation:not(.map-node-template-card):not(.map-node-remote-fleet),
3536
+ html body .css3d-resolution-wrapper > .map-node-agent.selected:not(.map-node-template-card):not(.map-node-remote-fleet),
3537
+ html body .css3d-resolution-wrapper > .map-node-agent:focus-within:not(.map-node-template-card):not(.map-node-remote-fleet),
3538
+ html body .css3d-resolution-wrapper > .map-node-automation.selected:not(.map-node-template-card):not(.map-node-remote-fleet),
3539
+ html body .css3d-resolution-wrapper > .map-node-automation:focus-within:not(.map-node-template-card):not(.map-node-remote-fleet) {
3540
+ border: 1px solid var(--mind-node-selection-edge) !important;
3541
+ -webkit-box-shadow: none !important;
3542
+ box-shadow: none !important;
3543
+ -webkit-filter: none !important;
3544
+ filter: none !important;
3545
+ }
@@ -3864,9 +3864,9 @@
3864
3864
  const REMOTE_FLEET_EMPTY_SCREEN_MIN_HEIGHT = 108;
3865
3865
  const REMOTE_FLEET_MONITOR_SIZE_LEVELS = Object.freeze(['dense', 'cards', 'large']);
3866
3866
  const REMOTE_FLEET_MONITOR_TILE_METRICS = Object.freeze({
3867
- dense: Object.freeze({ tileMinWidth: 132, tileMinHeight: 84, emptyMinWidth: 132, emptyMinHeight: 72 }),
3868
- cards: Object.freeze({ tileMinWidth: 198, tileMinHeight: 126, emptyMinWidth: 198, emptyMinHeight: 108 }),
3869
- large: Object.freeze({ tileMinWidth: 297, tileMinHeight: 189, emptyMinWidth: 297, emptyMinHeight: 162 })
3867
+ dense: Object.freeze({ tileMinWidth: 132, tileMinHeight: 84 }),
3868
+ cards: Object.freeze({ tileMinWidth: 198, tileMinHeight: 126 }),
3869
+ large: Object.freeze({ tileMinWidth: 297, tileMinHeight: 189 })
3870
3870
  });
3871
3871
  const AUTOMATION_NODE_KIND_METADATA_KEY = 'AutomationNodeKind';
3872
3872
  const AUTOMATION_NODE_LABEL_METADATA_KEY = 'AutomationNodeLabel';
@@ -13526,8 +13526,8 @@
13526
13526
  const height = Number(nodeModel?.height ?? nodeModel?.Height ?? 620);
13527
13527
  const usableWidth = Number.isFinite(width) ? Math.max(360, width - 44) : 916;
13528
13528
  const usableHeight = Number.isFinite(height) ? Math.max(260, height - 128) : 492;
13529
- const columns = Math.max(3, Math.floor((usableWidth + REMOTE_FLEET_MONITOR_TILE_GAP_PX) / (metrics.emptyMinWidth + REMOTE_FLEET_MONITOR_TILE_GAP_PX)));
13530
- const rows = Math.max(3, Math.ceil((usableHeight + REMOTE_FLEET_MONITOR_TILE_GAP_PX) / (metrics.emptyMinHeight + REMOTE_FLEET_MONITOR_TILE_GAP_PX)));
13529
+ const columns = Math.max(3, Math.floor((usableWidth + REMOTE_FLEET_MONITOR_TILE_GAP_PX) / (metrics.tileMinWidth + REMOTE_FLEET_MONITOR_TILE_GAP_PX)));
13530
+ const rows = Math.max(3, Math.ceil((usableHeight + REMOTE_FLEET_MONITOR_TILE_GAP_PX) / (metrics.tileMinHeight + REMOTE_FLEET_MONITOR_TILE_GAP_PX)));
13531
13531
  return Math.max(12, Math.min(80, columns * rows));
13532
13532
  }
13533
13533
 
@@ -13538,7 +13538,8 @@
13538
13538
  width: 100%;
13539
13539
  height: auto;
13540
13540
  aspect-ratio: 16 / 9;
13541
- min-height: ${metrics.emptyMinHeight}px;
13541
+ min-width: 0;
13542
+ min-height: ${metrics.tileMinHeight}px;
13542
13543
  box-sizing: border-box;
13543
13544
  border-radius: 0;
13544
13545
  border: 1px solid rgba(203, 213, 225, 0.66);
@@ -13568,7 +13569,7 @@
13568
13569
  overflow-y: auto;
13569
13570
  overflow-x: hidden;
13570
13571
  display: grid;
13571
- grid-template-columns: repeat(auto-fill, minmax(${metrics.emptyMinWidth}px, 1fr));
13572
+ grid-template-columns: repeat(auto-fill, minmax(${metrics.tileMinWidth}px, 1fr));
13572
13573
  grid-auto-rows: max-content;
13573
13574
  align-content: start;
13574
13575
  align-items: start;
@@ -1,5 +1,5 @@
1
1
  self.assetsManifest = {
2
- "version": "yDUuMQhr",
2
+ "version": "jdcdcQT8",
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-f+donrGuscLwnPmugZP05Oyjwt3PvPbURHzhJVE5rWw=",
45
+ "hash": "sha256-MAHHFASnRW0TgyMN27eWTfaPzuhTyjRRge7J1b59tUs=",
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-gj/1Ji+BbpWEEXxsJO/G06JwsucL7DPWqcPqRHEXAMg=",
89
+ "hash": "sha256-AmO/f+tNKMsT5NGWXiYnrNmWUPCBsP/yu4n2Jcy/fp8=",
90
90
  "url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
91
91
  },
92
92
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: yDUuMQhr */
1
+ /* Manifest version: jdcdcQT8 */
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