@mindexec/cli 0.2.37 → 0.2.39
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 -4
- 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-template-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260613-template-current-canvas-v213';
|
|
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';
|
|
@@ -12277,13 +12278,15 @@
|
|
|
12277
12278
|
rail.dataset.remoteFleetStatusRail = 'true';
|
|
12278
12279
|
rail.style.cssText = `
|
|
12279
12280
|
flex: 0 0 auto;
|
|
12280
|
-
align-self:
|
|
12281
|
+
align-self: center;
|
|
12281
12282
|
display: flex;
|
|
12282
12283
|
flex-direction: row;
|
|
12283
12284
|
align-items: center;
|
|
12284
|
-
justify-content:
|
|
12285
|
+
justify-content: center;
|
|
12285
12286
|
gap: 6px;
|
|
12286
|
-
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);
|
|
12287
12290
|
min-width: 0;
|
|
12288
12291
|
min-height: 28px;
|
|
12289
12292
|
box-sizing: border-box;
|
|
@@ -12300,7 +12303,8 @@
|
|
|
12300
12303
|
error.textContent = normalizedError;
|
|
12301
12304
|
error.title = normalizedError;
|
|
12302
12305
|
error.style.cssText = `
|
|
12303
|
-
flex:
|
|
12306
|
+
flex: 0 1 300px;
|
|
12307
|
+
max-width: min(300px, 42%);
|
|
12304
12308
|
min-width: 0;
|
|
12305
12309
|
display: inline-flex;
|
|
12306
12310
|
align-items: center;
|
|
@@ -12487,6 +12491,12 @@
|
|
|
12487
12491
|
grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
|
|
12488
12492
|
grid-auto-rows: minmax(72px, auto);
|
|
12489
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);
|
|
12490
12500
|
column-gap: 8px;
|
|
12491
12501
|
row-gap: 8px;
|
|
12492
12502
|
box-sizing: border-box;
|
|
@@ -14303,6 +14313,12 @@
|
|
|
14303
14313
|
grid-auto-rows: minmax(${tileMinHeight}px, auto);
|
|
14304
14314
|
grid-auto-flow: row;
|
|
14305
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);
|
|
14306
14322
|
column-gap: ${tileGap}px;
|
|
14307
14323
|
row-gap: ${tileGap}px;
|
|
14308
14324
|
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-template-
|
|
561
|
+
const scriptVersion = '20260613-template-current-canvas-v507';
|
|
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": "yVKOGKeq",
|
|
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-XaxBBTGHhZrW3oi5I1lPG/e1TW5seriQfInR9zw4AsI=",
|
|
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
|
{
|
|
@@ -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-lpSXakW1b+qoRoSLyzdSZY5hQCckBnnUmCJGa5EDWdQ=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|