@mindexec/cli 0.2.35 → 0.2.37
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/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-template-card-select-v210';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -11579,6 +11579,9 @@
|
|
|
11579
11579
|
return;
|
|
11580
11580
|
}
|
|
11581
11581
|
if (event.target?.closest?.('[data-template-card-interactive="true"]')) {
|
|
11582
|
+
if (event.type === 'mousedown') {
|
|
11583
|
+
return;
|
|
11584
|
+
}
|
|
11582
11585
|
event.stopPropagation();
|
|
11583
11586
|
}
|
|
11584
11587
|
}
|
|
@@ -12482,8 +12485,10 @@
|
|
|
12482
12485
|
overflow: hidden;
|
|
12483
12486
|
display: grid;
|
|
12484
12487
|
grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
|
|
12488
|
+
grid-auto-rows: minmax(72px, auto);
|
|
12485
12489
|
align-content: start;
|
|
12486
|
-
gap: 8px;
|
|
12490
|
+
column-gap: 8px;
|
|
12491
|
+
row-gap: 8px;
|
|
12487
12492
|
box-sizing: border-box;
|
|
12488
12493
|
padding: 2px 4px 6px 4px;
|
|
12489
12494
|
`;
|
|
@@ -12495,6 +12500,7 @@
|
|
|
12495
12500
|
screen.style.cssText = `
|
|
12496
12501
|
aspect-ratio: 16 / 9;
|
|
12497
12502
|
min-height: 72px;
|
|
12503
|
+
box-sizing: border-box;
|
|
12498
12504
|
border-radius: 8px;
|
|
12499
12505
|
border: 1px solid rgba(203, 213, 225, 0.72);
|
|
12500
12506
|
background: #ffffff;
|
|
@@ -14269,6 +14275,10 @@
|
|
|
14269
14275
|
return panel;
|
|
14270
14276
|
};
|
|
14271
14277
|
|
|
14278
|
+
const tileMinWidth = densityState === 'dense' ? 104 : 132;
|
|
14279
|
+
const tileMinHeight = densityState === 'dense' ? 66 : 84;
|
|
14280
|
+
const tileGap = 8;
|
|
14281
|
+
|
|
14272
14282
|
const monitorWorkspace = document.createElement('div');
|
|
14273
14283
|
monitorWorkspace.dataset.remoteFleetMonitorWorkspace = 'true';
|
|
14274
14284
|
monitorWorkspace.style.cssText = `
|
|
@@ -14289,9 +14299,12 @@
|
|
|
14289
14299
|
overflow-y: auto;
|
|
14290
14300
|
overflow-x: hidden;
|
|
14291
14301
|
display: grid;
|
|
14292
|
-
grid-template-columns:
|
|
14302
|
+
grid-template-columns: repeat(auto-fill, minmax(${tileMinWidth}px, 1fr));
|
|
14303
|
+
grid-auto-rows: minmax(${tileMinHeight}px, auto);
|
|
14304
|
+
grid-auto-flow: row;
|
|
14293
14305
|
align-content: start;
|
|
14294
|
-
gap:
|
|
14306
|
+
column-gap: ${tileGap}px;
|
|
14307
|
+
row-gap: ${tileGap}px;
|
|
14295
14308
|
box-sizing: border-box;
|
|
14296
14309
|
padding: 0 4px;
|
|
14297
14310
|
`;
|
|
@@ -14386,7 +14399,10 @@
|
|
|
14386
14399
|
display: flex;
|
|
14387
14400
|
align-items: stretch;
|
|
14388
14401
|
min-width: 0;
|
|
14389
|
-
min-height: ${
|
|
14402
|
+
min-height: ${tileMinHeight}px;
|
|
14403
|
+
aspect-ratio: 16 / 9;
|
|
14404
|
+
box-sizing: border-box;
|
|
14405
|
+
overflow: hidden;
|
|
14390
14406
|
padding: 2px;
|
|
14391
14407
|
border-radius: 8px;
|
|
14392
14408
|
background: #ffffff;
|
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-template-card-select-v504';
|
|
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": "nJ1JVV9b",
|
|
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-XX6ObRj8RcMfqfuqQPjxCzBCSaiy4jjG5hom0LYhpkI=",
|
|
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-vdhhMtiB0X0yBte3pR+87T8F2Gc/Awjae+LGyVOa3/A=",
|
|
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-dI52EtMGojmcQgZJ8fD7s1bkcsLAiqOGZLskUfwbi4s=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|