@mindexec/cli 0.2.34 → 0.2.36
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 +31 -17
- package/wwwroot/index.html +1 -1
- package/wwwroot/service-worker-assets.js +4 -4
- 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-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260613-remote-tile-gap-v209';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -390,24 +390,24 @@
|
|
|
390
390
|
|
|
391
391
|
/* Preserve agent memo chrome during camera motion so middle-button panning
|
|
392
392
|
does not visibly weaken their glow or console surfaces. */
|
|
393
|
-
body.is-zooming .css3d-resolution-wrapper:not(.selection-style-agent),
|
|
394
|
-
body.is-panning .css3d-resolution-wrapper:not(.selection-style-agent),
|
|
395
|
-
body.mindcanvas-is-moving .css3d-resolution-wrapper:not(.selection-style-agent),
|
|
396
|
-
body.mindcanvas-is-dense .css3d-resolution-wrapper:not(.selection-style-agent) {
|
|
393
|
+
body.is-zooming .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher),
|
|
394
|
+
body.is-panning .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher),
|
|
395
|
+
body.mindcanvas-is-moving .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher),
|
|
396
|
+
body.mindcanvas-is-dense .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) {
|
|
397
397
|
transition: none !important;
|
|
398
398
|
-webkit-transition: none !important;
|
|
399
399
|
filter: none !important;
|
|
400
400
|
-webkit-filter: none !important;
|
|
401
401
|
}
|
|
402
402
|
|
|
403
|
-
body.is-zooming .css3d-resolution-wrapper:not(.selection-style-agent) .css3d-dynamic-node,
|
|
404
|
-
body.is-panning .css3d-resolution-wrapper:not(.selection-style-agent) .css3d-dynamic-node,
|
|
405
|
-
body.mindcanvas-is-moving .css3d-resolution-wrapper:not(.selection-style-agent) .css3d-dynamic-node,
|
|
406
|
-
body.mindcanvas-is-dense .css3d-resolution-wrapper:not(.selection-style-agent) .css3d-dynamic-node,
|
|
407
|
-
body.is-zooming .css3d-resolution-wrapper:not(.selection-style-agent) [id^="css3d-node-"],
|
|
408
|
-
body.is-panning .css3d-resolution-wrapper:not(.selection-style-agent) [id^="css3d-node-"],
|
|
409
|
-
body.mindcanvas-is-moving .css3d-resolution-wrapper:not(.selection-style-agent) [id^="css3d-node-"],
|
|
410
|
-
body.mindcanvas-is-dense .css3d-resolution-wrapper:not(.selection-style-agent) [id^="css3d-node-"] {
|
|
403
|
+
body.is-zooming .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) .css3d-dynamic-node,
|
|
404
|
+
body.is-panning .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) .css3d-dynamic-node,
|
|
405
|
+
body.mindcanvas-is-moving .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) .css3d-dynamic-node,
|
|
406
|
+
body.mindcanvas-is-dense .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) .css3d-dynamic-node,
|
|
407
|
+
body.is-zooming .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) [id^="css3d-node-"],
|
|
408
|
+
body.is-panning .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) [id^="css3d-node-"],
|
|
409
|
+
body.mindcanvas-is-moving .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) [id^="css3d-node-"],
|
|
410
|
+
body.mindcanvas-is-dense .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) [id^="css3d-node-"] {
|
|
411
411
|
box-shadow: none !important;
|
|
412
412
|
filter: none !important;
|
|
413
413
|
-webkit-filter: none !important;
|
|
@@ -11326,7 +11326,8 @@
|
|
|
11326
11326
|
const isAgentStyled = element?.classList?.contains('map-node-agent')
|
|
11327
11327
|
|| semanticType === 'MindCanvasAgent'
|
|
11328
11328
|
|| semanticType === 'AgentCommand'
|
|
11329
|
-
|| semanticType === BUSINESS_AUTOMATION_SEMANTIC_TYPE
|
|
11329
|
+
|| semanticType === BUSINESS_AUTOMATION_SEMANTIC_TYPE
|
|
11330
|
+
|| semanticType === REMOTE_FLEET_DEVICE_SEMANTIC_TYPE;
|
|
11330
11331
|
wrapper.classList.toggle('selection-style-agent', !!isAgentStyled);
|
|
11331
11332
|
const nextColorKey = MEMO_COLOR_THEMES[colorKey] ? colorKey : 'coral';
|
|
11332
11333
|
const theme = MEMO_COLOR_THEMES[nextColorKey] || MEMO_COLOR_THEMES.gray;
|
|
@@ -12481,8 +12482,10 @@
|
|
|
12481
12482
|
overflow: hidden;
|
|
12482
12483
|
display: grid;
|
|
12483
12484
|
grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
|
|
12485
|
+
grid-auto-rows: minmax(72px, auto);
|
|
12484
12486
|
align-content: start;
|
|
12485
|
-
gap: 8px;
|
|
12487
|
+
column-gap: 8px;
|
|
12488
|
+
row-gap: 8px;
|
|
12486
12489
|
box-sizing: border-box;
|
|
12487
12490
|
padding: 2px 4px 6px 4px;
|
|
12488
12491
|
`;
|
|
@@ -12494,6 +12497,7 @@
|
|
|
12494
12497
|
screen.style.cssText = `
|
|
12495
12498
|
aspect-ratio: 16 / 9;
|
|
12496
12499
|
min-height: 72px;
|
|
12500
|
+
box-sizing: border-box;
|
|
12497
12501
|
border-radius: 8px;
|
|
12498
12502
|
border: 1px solid rgba(203, 213, 225, 0.72);
|
|
12499
12503
|
background: #ffffff;
|
|
@@ -14268,6 +14272,10 @@
|
|
|
14268
14272
|
return panel;
|
|
14269
14273
|
};
|
|
14270
14274
|
|
|
14275
|
+
const tileMinWidth = densityState === 'dense' ? 104 : 132;
|
|
14276
|
+
const tileMinHeight = densityState === 'dense' ? 66 : 84;
|
|
14277
|
+
const tileGap = 8;
|
|
14278
|
+
|
|
14271
14279
|
const monitorWorkspace = document.createElement('div');
|
|
14272
14280
|
monitorWorkspace.dataset.remoteFleetMonitorWorkspace = 'true';
|
|
14273
14281
|
monitorWorkspace.style.cssText = `
|
|
@@ -14288,9 +14296,12 @@
|
|
|
14288
14296
|
overflow-y: auto;
|
|
14289
14297
|
overflow-x: hidden;
|
|
14290
14298
|
display: grid;
|
|
14291
|
-
grid-template-columns:
|
|
14299
|
+
grid-template-columns: repeat(auto-fill, minmax(${tileMinWidth}px, 1fr));
|
|
14300
|
+
grid-auto-rows: minmax(${tileMinHeight}px, auto);
|
|
14301
|
+
grid-auto-flow: row;
|
|
14292
14302
|
align-content: start;
|
|
14293
|
-
gap:
|
|
14303
|
+
column-gap: ${tileGap}px;
|
|
14304
|
+
row-gap: ${tileGap}px;
|
|
14294
14305
|
box-sizing: border-box;
|
|
14295
14306
|
padding: 0 4px;
|
|
14296
14307
|
`;
|
|
@@ -14385,7 +14396,10 @@
|
|
|
14385
14396
|
display: flex;
|
|
14386
14397
|
align-items: stretch;
|
|
14387
14398
|
min-width: 0;
|
|
14388
|
-
min-height: ${
|
|
14399
|
+
min-height: ${tileMinHeight}px;
|
|
14400
|
+
aspect-ratio: 16 / 9;
|
|
14401
|
+
box-sizing: border-box;
|
|
14402
|
+
overflow: hidden;
|
|
14389
14403
|
padding: 2px;
|
|
14390
14404
|
border-radius: 8px;
|
|
14391
14405
|
background: #ffffff;
|
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-
|
|
561
|
+
const scriptVersion = '20260613-remote-tile-gap-v503';
|
|
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": "GvUl7d+H",
|
|
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-ySu+DBocM6QdebgO4WQTdfUkQGrhzLFgfI5MyWA/dEU=",
|
|
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-jjOKmmfH7b8+KTTJ/VqPg2pE6X1tgAbZV1yOXZe+Wds=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256-
|
|
837
|
+
"hash": "sha256-cInjltFdS/+vAx9BBhCOy/xG4MjQCCgOXh8jxiMksdw=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|