@mindexec/cli 0.2.38 → 0.2.40
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 +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +20 -12
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.x5x3iqtkgo.dll → MindExecution.Plugins.Concept.tkxbh2hokn.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.07cy04zurx.dll → MindExecution.Plugins.PlanMaster.wbclikss3p.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.mo7avv377y.dll → MindExecution.Plugins.YouTube.fwync0c60s.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.w3ubr90yg5.dll → MindExecution.Shared.eemv6jbvss.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.gb9zhx3dxx.dll → MindExecution.Web.3x7btjkiy5.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +11 -11
- package/wwwroot/index.html +1 -1
- package/wwwroot/service-worker-assets.js +15 -15
- package/wwwroot/service-worker.js +1 -1
package/package.json
CHANGED
|
@@ -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 = '20260613-remote-monitor-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260613-remote-monitor-gap-v214';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -3405,6 +3405,9 @@
|
|
|
3405
3405
|
const REMOTE_FLEET_SEMANTIC_TYPE = 'RemoteFleetMonitor';
|
|
3406
3406
|
const REMOTE_FLEET_DEVICE_SEMANTIC_TYPE = 'RemoteFleetDevice';
|
|
3407
3407
|
const REMOTE_FLEET_CENTER_NUDGE_PX = 4;
|
|
3408
|
+
const REMOTE_FLEET_MONITOR_TILE_GAP_PX = 8;
|
|
3409
|
+
const REMOTE_FLEET_EMPTY_SCREEN_MIN_WIDTH = 132;
|
|
3410
|
+
const REMOTE_FLEET_EMPTY_SCREEN_MIN_HEIGHT = 72;
|
|
3408
3411
|
const AUTOMATION_NODE_KIND_METADATA_KEY = 'AutomationNodeKind';
|
|
3409
3412
|
const AUTOMATION_NODE_LABEL_METADATA_KEY = 'AutomationNodeLabel';
|
|
3410
3413
|
const AUTOMATION_NODE_DESCRIPTION_METADATA_KEY = 'AutomationNodeDescription';
|
|
@@ -12475,8 +12478,8 @@
|
|
|
12475
12478
|
const height = Number(nodeModel?.height ?? nodeModel?.Height ?? 620);
|
|
12476
12479
|
const usableWidth = Number.isFinite(width) ? Math.max(360, width - 44) : 916;
|
|
12477
12480
|
const usableHeight = Number.isFinite(height) ? Math.max(260, height - 128) : 492;
|
|
12478
|
-
const columns = Math.max(3, Math.floor(usableWidth /
|
|
12479
|
-
const rows = Math.max(3, Math.ceil(usableHeight /
|
|
12481
|
+
const columns = Math.max(3, Math.floor((usableWidth + REMOTE_FLEET_MONITOR_TILE_GAP_PX) / (REMOTE_FLEET_EMPTY_SCREEN_MIN_WIDTH + REMOTE_FLEET_MONITOR_TILE_GAP_PX)));
|
|
12482
|
+
const rows = Math.max(3, Math.ceil((usableHeight + REMOTE_FLEET_MONITOR_TILE_GAP_PX) / (REMOTE_FLEET_EMPTY_SCREEN_MIN_HEIGHT + REMOTE_FLEET_MONITOR_TILE_GAP_PX)));
|
|
12480
12483
|
return Math.max(12, Math.min(80, columns * rows));
|
|
12481
12484
|
}
|
|
12482
12485
|
|
|
@@ -12486,19 +12489,20 @@
|
|
|
12486
12489
|
shell.style.cssText = `
|
|
12487
12490
|
flex: 1 1 auto;
|
|
12488
12491
|
min-height: 0;
|
|
12489
|
-
overflow:
|
|
12492
|
+
overflow-y: auto;
|
|
12493
|
+
overflow-x: hidden;
|
|
12490
12494
|
display: grid;
|
|
12491
|
-
grid-template-columns: repeat(auto-fill, minmax(
|
|
12492
|
-
grid-auto-rows:
|
|
12495
|
+
grid-template-columns: repeat(auto-fill, minmax(${REMOTE_FLEET_EMPTY_SCREEN_MIN_WIDTH}px, 1fr));
|
|
12496
|
+
grid-auto-rows: max-content;
|
|
12493
12497
|
align-content: start;
|
|
12498
|
+
align-items: start;
|
|
12494
12499
|
justify-content: center;
|
|
12495
12500
|
justify-items: stretch;
|
|
12496
12501
|
align-self: center;
|
|
12497
12502
|
width: calc(100% - ${REMOTE_FLEET_CENTER_NUDGE_PX * 2}px);
|
|
12498
12503
|
max-width: 100%;
|
|
12499
12504
|
transform: translateX(${REMOTE_FLEET_CENTER_NUDGE_PX}px);
|
|
12500
|
-
|
|
12501
|
-
row-gap: 8px;
|
|
12505
|
+
gap: ${REMOTE_FLEET_MONITOR_TILE_GAP_PX}px;
|
|
12502
12506
|
box-sizing: border-box;
|
|
12503
12507
|
padding: 2px 4px 6px 4px;
|
|
12504
12508
|
`;
|
|
@@ -12508,8 +12512,10 @@
|
|
|
12508
12512
|
const screen = document.createElement('div');
|
|
12509
12513
|
screen.dataset.remoteFleetEmptyScreen = 'true';
|
|
12510
12514
|
screen.style.cssText = `
|
|
12515
|
+
width: 100%;
|
|
12516
|
+
height: auto;
|
|
12511
12517
|
aspect-ratio: 16 / 9;
|
|
12512
|
-
min-height:
|
|
12518
|
+
min-height: ${REMOTE_FLEET_EMPTY_SCREEN_MIN_HEIGHT}px;
|
|
12513
12519
|
box-sizing: border-box;
|
|
12514
12520
|
border-radius: 8px;
|
|
12515
12521
|
border: 1px solid rgba(203, 213, 225, 0.72);
|
|
@@ -14287,7 +14293,7 @@
|
|
|
14287
14293
|
|
|
14288
14294
|
const tileMinWidth = densityState === 'dense' ? 104 : 132;
|
|
14289
14295
|
const tileMinHeight = densityState === 'dense' ? 66 : 84;
|
|
14290
|
-
const tileGap =
|
|
14296
|
+
const tileGap = REMOTE_FLEET_MONITOR_TILE_GAP_PX;
|
|
14291
14297
|
|
|
14292
14298
|
const monitorWorkspace = document.createElement('div');
|
|
14293
14299
|
monitorWorkspace.dataset.remoteFleetMonitorWorkspace = 'true';
|
|
@@ -14310,17 +14316,17 @@
|
|
|
14310
14316
|
overflow-x: hidden;
|
|
14311
14317
|
display: grid;
|
|
14312
14318
|
grid-template-columns: repeat(auto-fill, minmax(${tileMinWidth}px, 1fr));
|
|
14313
|
-
grid-auto-rows:
|
|
14319
|
+
grid-auto-rows: max-content;
|
|
14314
14320
|
grid-auto-flow: row;
|
|
14315
14321
|
align-content: start;
|
|
14322
|
+
align-items: start;
|
|
14316
14323
|
justify-content: center;
|
|
14317
14324
|
justify-items: stretch;
|
|
14318
14325
|
justify-self: center;
|
|
14319
14326
|
width: calc(100% - ${REMOTE_FLEET_CENTER_NUDGE_PX * 2}px);
|
|
14320
14327
|
max-width: 100%;
|
|
14321
14328
|
transform: translateX(${REMOTE_FLEET_CENTER_NUDGE_PX}px);
|
|
14322
|
-
|
|
14323
|
-
row-gap: ${tileGap}px;
|
|
14329
|
+
gap: ${tileGap}px;
|
|
14324
14330
|
box-sizing: border-box;
|
|
14325
14331
|
padding: 0 4px;
|
|
14326
14332
|
`;
|
|
@@ -14415,6 +14421,8 @@
|
|
|
14415
14421
|
display: flex;
|
|
14416
14422
|
align-items: stretch;
|
|
14417
14423
|
min-width: 0;
|
|
14424
|
+
width: 100%;
|
|
14425
|
+
height: auto;
|
|
14418
14426
|
min-height: ${tileMinHeight}px;
|
|
14419
14427
|
aspect-ratio: 16 / 9;
|
|
14420
14428
|
box-sizing: border-box;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/wwwroot/_framework/{MindExecution.Web.gb9zhx3dxx.dll → MindExecution.Web.3x7btjkiy5.dll}
RENAMED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-LXAJ4vavBiH0gW7sIe3OgKH5osbdIL5IfUaOrJB056A=",
|
|
5
5
|
"fingerprinting": {
|
|
6
6
|
"Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
|
|
7
7
|
"Markdig.d1j7v41cl1.dll": "Markdig.dll",
|
|
@@ -127,12 +127,12 @@
|
|
|
127
127
|
"MindExecution.Kernel.z56elxihok.dll": "MindExecution.Kernel.dll",
|
|
128
128
|
"MindExecution.Plugins.Admin.p5cs4ap87v.dll": "MindExecution.Plugins.Admin.dll",
|
|
129
129
|
"MindExecution.Plugins.Business.s35og5uz44.dll": "MindExecution.Plugins.Business.dll",
|
|
130
|
-
"MindExecution.Plugins.Concept.
|
|
130
|
+
"MindExecution.Plugins.Concept.tkxbh2hokn.dll": "MindExecution.Plugins.Concept.dll",
|
|
131
131
|
"MindExecution.Plugins.Directory.y74f55e8x3.dll": "MindExecution.Plugins.Directory.dll",
|
|
132
|
-
"MindExecution.Plugins.PlanMaster.
|
|
133
|
-
"MindExecution.Plugins.YouTube.
|
|
134
|
-
"MindExecution.Shared.
|
|
135
|
-
"MindExecution.Web.
|
|
132
|
+
"MindExecution.Plugins.PlanMaster.wbclikss3p.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
|
+
"MindExecution.Plugins.YouTube.fwync0c60s.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
|
+
"MindExecution.Shared.eemv6jbvss.dll": "MindExecution.Shared.dll",
|
|
135
|
+
"MindExecution.Web.3x7btjkiy5.dll": "MindExecution.Web.dll",
|
|
136
136
|
"dotnet.js": "dotnet.js",
|
|
137
137
|
"dotnet.native.qc8g39g30v.js": "dotnet.native.js",
|
|
138
138
|
"dotnet.native.boem75ye5i.wasm": "dotnet.native.wasm",
|
|
@@ -280,16 +280,16 @@
|
|
|
280
280
|
"netstandard.yvr3prsx0x.dll": "sha256-EksNn8Luo4bOWqJ6X7dIe9qG9oOqwOVzjH2xYyMNi+E=",
|
|
281
281
|
"MindExecution.Core.6rfnfdndxq.dll": "sha256-giL4rreoKsQoQ5gkLusNx7oL3w1l2UH52TYY1KBoIfQ=",
|
|
282
282
|
"MindExecution.Kernel.z56elxihok.dll": "sha256-STATJelRGcW9SDGgsw6YmQi6tkQje52dy4lyT3QU4qs=",
|
|
283
|
-
"MindExecution.Plugins.Concept.
|
|
284
|
-
"MindExecution.Plugins.PlanMaster.
|
|
285
|
-
"MindExecution.Shared.
|
|
286
|
-
"MindExecution.Web.
|
|
283
|
+
"MindExecution.Plugins.Concept.tkxbh2hokn.dll": "sha256-vYcH7WM686ptbay3iIx5k+zChLgpxvgKxpvHGaDv0kY=",
|
|
284
|
+
"MindExecution.Plugins.PlanMaster.wbclikss3p.dll": "sha256-rBPdSa0fGB1Y73RXymqsLzyGXwfr5BQRFZS8wyAmiSw=",
|
|
285
|
+
"MindExecution.Shared.eemv6jbvss.dll": "sha256-2hrK2TD/R6bpVKmTXaHSI1BbfnDRJR7uxXZAaIW1zyM=",
|
|
286
|
+
"MindExecution.Web.3x7btjkiy5.dll": "sha256-1yXNI95k4vlq26Y8YlgIi69ufjSYk2OffuR6A864dUQ="
|
|
287
287
|
},
|
|
288
288
|
"lazyAssembly": {
|
|
289
289
|
"MindExecution.Plugins.Admin.p5cs4ap87v.dll": "sha256-jahiJxaiE8hwMyRcg6rZGo4WBhBGFyAHYhOqlKjawWg=",
|
|
290
290
|
"MindExecution.Plugins.Business.s35og5uz44.dll": "sha256-KOyk9eC6E/Gyfz2uWucHQmAayMQbShhLTqEymZFleh4=",
|
|
291
291
|
"MindExecution.Plugins.Directory.y74f55e8x3.dll": "sha256-4gMuhIPLiX31U+jwhDT83rSPqZINONadmW+cvujfq1g=",
|
|
292
|
-
"MindExecution.Plugins.YouTube.
|
|
292
|
+
"MindExecution.Plugins.YouTube.fwync0c60s.dll": "sha256-kSOB+Uu7I0SDSTkC41d/r2j55r48usAD3NhQjJBxNhU="
|
|
293
293
|
}
|
|
294
294
|
},
|
|
295
295
|
"cacheBootResources": true,
|
package/wwwroot/index.html
CHANGED
|
@@ -558,7 +558,7 @@
|
|
|
558
558
|
}
|
|
559
559
|
|
|
560
560
|
const base = '_content/MindExecution.Shared/js/';
|
|
561
|
-
const scriptVersion = '20260613-remote-monitor-
|
|
561
|
+
const scriptVersion = '20260613-remote-monitor-gap-v508';
|
|
562
562
|
const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
|
|
563
563
|
console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
|
|
564
564
|
const criticalScripts = [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "P5rJ7sPB",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"url": "_content/MindExecution.Shared/js/marked.min.js"
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
|
-
"hash": "sha256-
|
|
81
|
+
"hash": "sha256-tS2NkdGFK7jWKDH5NTbXqmJ+vgtdIuHB7akcpMxvC84=",
|
|
82
82
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
|
|
87
87
|
},
|
|
88
88
|
{
|
|
89
|
-
"hash": "sha256-
|
|
89
|
+
"hash": "sha256-jrzXaQSlY2BHJW062PzZuylbAEYe02+uQrMQyJt7FJA=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -426,28 +426,28 @@
|
|
|
426
426
|
"url": "_framework/MindExecution.Plugins.Business.s35og5uz44.dll"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
|
-
"hash": "sha256-
|
|
430
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
429
|
+
"hash": "sha256-vYcH7WM686ptbay3iIx5k+zChLgpxvgKxpvHGaDv0kY=",
|
|
430
|
+
"url": "_framework/MindExecution.Plugins.Concept.tkxbh2hokn.dll"
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
433
|
"hash": "sha256-4gMuhIPLiX31U+jwhDT83rSPqZINONadmW+cvujfq1g=",
|
|
434
434
|
"url": "_framework/MindExecution.Plugins.Directory.y74f55e8x3.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
437
|
+
"hash": "sha256-rBPdSa0fGB1Y73RXymqsLzyGXwfr5BQRFZS8wyAmiSw=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.wbclikss3p.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
441
|
+
"hash": "sha256-kSOB+Uu7I0SDSTkC41d/r2j55r48usAD3NhQjJBxNhU=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.YouTube.fwync0c60s.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Shared.
|
|
445
|
+
"hash": "sha256-2hrK2TD/R6bpVKmTXaHSI1BbfnDRJR7uxXZAaIW1zyM=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.eemv6jbvss.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Web.
|
|
449
|
+
"hash": "sha256-1yXNI95k4vlq26Y8YlgIi69ufjSYk2OffuR6A864dUQ=",
|
|
450
|
+
"url": "_framework/MindExecution.Web.3x7btjkiy5.dll"
|
|
451
451
|
},
|
|
452
452
|
{
|
|
453
453
|
"hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
|
|
@@ -770,7 +770,7 @@
|
|
|
770
770
|
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
771
771
|
},
|
|
772
772
|
{
|
|
773
|
-
"hash": "sha256-
|
|
773
|
+
"hash": "sha256-MqNNAhxn9vl7mzZu+B/8gKky8GXVA4nw1FBdOJi3v5w=",
|
|
774
774
|
"url": "_framework/blazor.boot.json"
|
|
775
775
|
},
|
|
776
776
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256-
|
|
837
|
+
"hash": "sha256-bjvQNTq7IFWd435tpUl5xUScla/vHBE+JHSWSDH464c=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|