@mindexec/cli 0.2.36 → 0.2.38
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 +23 -4
- 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
|
-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260613-remote-monitor-center-v212';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -3404,6 +3404,7 @@
|
|
|
3404
3404
|
const BUSINESS_AUTOMATION_SEMANTIC_TYPE = 'BusinessAutomationNode';
|
|
3405
3405
|
const REMOTE_FLEET_SEMANTIC_TYPE = 'RemoteFleetMonitor';
|
|
3406
3406
|
const REMOTE_FLEET_DEVICE_SEMANTIC_TYPE = 'RemoteFleetDevice';
|
|
3407
|
+
const REMOTE_FLEET_CENTER_NUDGE_PX = 4;
|
|
3407
3408
|
const AUTOMATION_NODE_KIND_METADATA_KEY = 'AutomationNodeKind';
|
|
3408
3409
|
const AUTOMATION_NODE_LABEL_METADATA_KEY = 'AutomationNodeLabel';
|
|
3409
3410
|
const AUTOMATION_NODE_DESCRIPTION_METADATA_KEY = 'AutomationNodeDescription';
|
|
@@ -11579,6 +11580,9 @@
|
|
|
11579
11580
|
return;
|
|
11580
11581
|
}
|
|
11581
11582
|
if (event.target?.closest?.('[data-template-card-interactive="true"]')) {
|
|
11583
|
+
if (event.type === 'mousedown') {
|
|
11584
|
+
return;
|
|
11585
|
+
}
|
|
11582
11586
|
event.stopPropagation();
|
|
11583
11587
|
}
|
|
11584
11588
|
}
|
|
@@ -12274,13 +12278,15 @@
|
|
|
12274
12278
|
rail.dataset.remoteFleetStatusRail = 'true';
|
|
12275
12279
|
rail.style.cssText = `
|
|
12276
12280
|
flex: 0 0 auto;
|
|
12277
|
-
align-self:
|
|
12281
|
+
align-self: center;
|
|
12278
12282
|
display: flex;
|
|
12279
12283
|
flex-direction: row;
|
|
12280
12284
|
align-items: center;
|
|
12281
|
-
justify-content:
|
|
12285
|
+
justify-content: center;
|
|
12282
12286
|
gap: 6px;
|
|
12283
|
-
width: 100
|
|
12287
|
+
width: calc(100% - ${REMOTE_FLEET_CENTER_NUDGE_PX * 2}px);
|
|
12288
|
+
max-width: 100%;
|
|
12289
|
+
transform: translateX(${REMOTE_FLEET_CENTER_NUDGE_PX}px);
|
|
12284
12290
|
min-width: 0;
|
|
12285
12291
|
min-height: 28px;
|
|
12286
12292
|
box-sizing: border-box;
|
|
@@ -12297,7 +12303,8 @@
|
|
|
12297
12303
|
error.textContent = normalizedError;
|
|
12298
12304
|
error.title = normalizedError;
|
|
12299
12305
|
error.style.cssText = `
|
|
12300
|
-
flex:
|
|
12306
|
+
flex: 0 1 300px;
|
|
12307
|
+
max-width: min(300px, 42%);
|
|
12301
12308
|
min-width: 0;
|
|
12302
12309
|
display: inline-flex;
|
|
12303
12310
|
align-items: center;
|
|
@@ -12484,6 +12491,12 @@
|
|
|
12484
12491
|
grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
|
|
12485
12492
|
grid-auto-rows: minmax(72px, auto);
|
|
12486
12493
|
align-content: start;
|
|
12494
|
+
justify-content: center;
|
|
12495
|
+
justify-items: stretch;
|
|
12496
|
+
align-self: center;
|
|
12497
|
+
width: calc(100% - ${REMOTE_FLEET_CENTER_NUDGE_PX * 2}px);
|
|
12498
|
+
max-width: 100%;
|
|
12499
|
+
transform: translateX(${REMOTE_FLEET_CENTER_NUDGE_PX}px);
|
|
12487
12500
|
column-gap: 8px;
|
|
12488
12501
|
row-gap: 8px;
|
|
12489
12502
|
box-sizing: border-box;
|
|
@@ -14300,6 +14313,12 @@
|
|
|
14300
14313
|
grid-auto-rows: minmax(${tileMinHeight}px, auto);
|
|
14301
14314
|
grid-auto-flow: row;
|
|
14302
14315
|
align-content: start;
|
|
14316
|
+
justify-content: center;
|
|
14317
|
+
justify-items: stretch;
|
|
14318
|
+
justify-self: center;
|
|
14319
|
+
width: calc(100% - ${REMOTE_FLEET_CENTER_NUDGE_PX * 2}px);
|
|
14320
|
+
max-width: 100%;
|
|
14321
|
+
transform: translateX(${REMOTE_FLEET_CENTER_NUDGE_PX}px);
|
|
14303
14322
|
column-gap: ${tileGap}px;
|
|
14304
14323
|
row-gap: ${tileGap}px;
|
|
14305
14324
|
box-sizing: border-box;
|
package/wwwroot/index.html
CHANGED
|
@@ -558,7 +558,7 @@
|
|
|
558
558
|
}
|
|
559
559
|
|
|
560
560
|
const base = '_content/MindExecution.Shared/js/';
|
|
561
|
-
|
|
561
|
+
const scriptVersion = '20260613-remote-monitor-center-v506';
|
|
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": "Fe6dFXov",
|
|
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-0AqwLnDHJqymfcY+L/luW4H5UPm4gPtIXtxoPWmU6Qg=",
|
|
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-qup69YZeiW9fSkNG+pViWzQ8eT5NNxuzX7ofwnc0vvI=",
|
|
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-PZCFK8Vb7kQ90SGl9J1iqmvk5xgJxn6c66AuySMcsP8=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|