@mindexec/cli 0.2.129 → 0.2.130

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.129",
3
+ "version": "0.2.130",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -17395,15 +17395,11 @@
17395
17395
  });
17396
17396
  }
17397
17397
 
17398
- try {
17399
- await refreshRemoteFleetVisibleLiveFrames();
17400
- } catch (error) {
17401
- window.RuntimeTrace?.emit?.('remote.live.initialFrameFailed', {
17402
- nodeId,
17403
- started,
17404
- error: error?.message || String(error || '')
17405
- });
17406
- }
17398
+ window.RuntimeTrace?.emit?.('remote.live.awaitingBinaryFrames', {
17399
+ nodeId,
17400
+ started,
17401
+ transport: 'ws-binary'
17402
+ });
17407
17403
  }
17408
17404
 
17409
17405
  return lastResult || { success: started > 0, started };
@@ -17427,21 +17423,6 @@
17427
17423
  applyRemoteFleetFramePatches(bodyView, normalizeRemoteFleetDeviceFramePatches(result));
17428
17424
  return result;
17429
17425
  };
17430
- const refreshRemoteFleetVisibleLiveFrames = async () => {
17431
- let deviceIds = getVisibleLiveFrameDeviceIds();
17432
- if (deviceIds.length === 0) {
17433
- deviceIds = getVisibleFrameDeviceIds();
17434
- }
17435
- if (deviceIds.length === 0) {
17436
- return null;
17437
- }
17438
-
17439
- const result = await invokeDotNetAsync('RefreshRemoteFleetFramesFromJs', nodeId, deviceIds, false);
17440
- const patches = normalizeRemoteFleetDeviceFramePatches(result)
17441
- .filter(frame => String(frame.kind || '').toLowerCase() === 'live');
17442
- applyRemoteFleetFramePatches(bodyView, patches);
17443
- return result;
17444
- };
17445
17426
  const startRemoteFleetMonitorRefreshTimer = (intervalMs, reason = 'monitor') => {
17446
17427
  const interval = Math.max(1000, Number(intervalMs) || REMOTE_FLEET_MONITOR_REFRESH_MS);
17447
17428
  bodyView.dataset.remoteFleetRefreshReason = reason;
@@ -2354,6 +2354,11 @@
2354
2354
  };
2355
2355
 
2356
2356
  const handler = (event) => {
2357
+ if (typeof window.MindMapInteractions?.routeCanvasWheelEvent === 'function') {
2358
+ window.MindMapInteractions.routeCanvasWheelEvent(module, event);
2359
+ return;
2360
+ }
2361
+
2357
2362
  if (shouldRouteReadonlyOverlayWheelToZoom(module, event)) {
2358
2363
  window.MindMapInteractions?.routeWheelEventToZoom?.(module, event);
2359
2364
  return;
@@ -2593,6 +2598,8 @@
2593
2598
 
2594
2599
  root.dataset.overlayInteractive = interactive ? 'true' : 'false';
2595
2600
  root._mindMapReadonlyOverlaySourceRoot = sourceRoot || root._mindMapReadonlyOverlaySourceRoot || null;
2601
+ bindReadonlyOverlayWheelRouting(module, root);
2602
+ bindReadonlyOverlayPanRouting(module, root);
2596
2603
  if (root.classList?.contains?.('mind-map-text-overlay-v2-source-clone')) {
2597
2604
  root.style.pointerEvents = interactive ? 'auto' : 'none';
2598
2605
  root.style.userSelect = interactive ? 'text' : 'none';
@@ -1,5 +1,5 @@
1
1
  self.assetsManifest = {
2
- "version": "KG10QAOi",
2
+ "version": "ssCNFqYX",
3
3
  "assets": [
4
4
  {
5
5
  "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
@@ -86,7 +86,7 @@
86
86
  "url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
87
87
  },
88
88
  {
89
- "hash": "sha256-t3ZoaaIrShUpwIPOgELhLfHFR6L91XatB46jRhe0O8s=",
89
+ "hash": "sha256-cegQeRNPVyy9IFW9kOgLE0bhe4QOA0+Q72z3bheV0hc=",
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-dzOqbpcXDlZXQQTB9kDHqnzOVPxUMBrOpf8fnte9kcg=",
157
+ "hash": "sha256-3l28axG42hfZEY1kU745EtUjPK+at8T9yNb/OERee0U=",
158
158
  "url": "_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js"
159
159
  },
160
160
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: KG10QAOi */
1
+ /* Manifest version: ssCNFqYX */
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