@mindexec/cli 0.2.431 → 0.2.433
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 +7 -7
- package/wwwroot/_content/MindExecution.Shared/css/mind-map-overrides.css +5 -35
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +10 -5
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +130 -238
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-render-plan.js +1414 -0
- package/wwwroot/_content/MindExecution.Shared/js/renderers/CSS3DRenderer.js +67 -10
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.hdpod01n2v.dll → MindExecution.Plugins.Concept.gmo0tv41kt.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.bcxkqs35nn.dll → MindExecution.Plugins.PlanMaster.ts9iffoyt9.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.gg4bv7zo0e.dll → MindExecution.Plugins.YouTube.m4ag6l6urx.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.acb35gyigd.dll → MindExecution.Shared.u07hdbavl1.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.6grqlsq22z.dll → MindExecution.Web.m9h5r0uvry.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +11 -11
- package/wwwroot/index.html +6 -5
- package/wwwroot/service-worker-assets.js +21 -17
- package/wwwroot/service-worker.js +1 -1
|
@@ -31,19 +31,76 @@
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
function CSS3DRenderer(){
|
|
34
|
-
var _width, _height
|
|
35
|
-
var
|
|
36
|
-
var
|
|
37
|
-
|
|
34
|
+
var _width, _height, _widthHalf, _heightHalf;
|
|
35
|
+
var cache = { camera:{ fov:0, style:'' }, objects: new WeakMap() };
|
|
36
|
+
var domElement = document.createElement('div');
|
|
37
|
+
domElement.style.overflow = 'hidden';
|
|
38
|
+
this.domElement = domElement;
|
|
39
|
+
var cameraElement = document.createElement('div');
|
|
40
|
+
cameraElement.style.webkitTransformStyle = cameraElement.style.transformStyle = 'preserve-3d';
|
|
41
|
+
cameraElement.style.pointerEvents = 'none';
|
|
42
|
+
domElement.appendChild(cameraElement);
|
|
43
|
+
|
|
38
44
|
this.getSize = function(){ return { width:_width, height:_height }; };
|
|
39
45
|
this.getCameraElement = function(){ return cameraElement; };
|
|
40
|
-
this.setSize = function(width, height){
|
|
46
|
+
this.setSize = function(width, height){
|
|
47
|
+
_width=width; _height=height; _widthHalf=_width/2; _heightHalf=_height/2;
|
|
48
|
+
domElement.style.width=width+'px'; domElement.style.height=height+'px';
|
|
49
|
+
cameraElement.style.width=width+'px'; cameraElement.style.height=height+'px';
|
|
50
|
+
};
|
|
51
|
+
|
|
41
52
|
function getCameraCSSMatrix(matrix){ var e=matrix.elements; return 'matrix3d('+epsilon(e[0])+','+epsilon(-e[1])+','+epsilon(e[2])+','+epsilon(e[3])+','+epsilon(e[4])+','+epsilon(-e[5])+','+epsilon(e[6])+','+epsilon(e[7])+','+epsilon(e[8])+','+epsilon(-e[9])+','+epsilon(e[10])+','+epsilon(e[11])+','+epsilon(e[12])+','+epsilon(-e[13])+','+epsilon(e[14])+','+epsilon(e[15])+')'; }
|
|
42
|
-
function getObjectCSSMatrix(matrix){ var e=matrix.elements;
|
|
43
|
-
function
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
53
|
+
function getObjectCSSMatrix(matrix){ var e=matrix.elements; return 'matrix3d('+epsilon(e[0])+','+epsilon(e[1])+','+epsilon(e[2])+','+epsilon(e[3])+','+epsilon(-e[4])+','+epsilon(-e[5])+','+epsilon(-e[6])+','+epsilon(-e[7])+','+epsilon(e[8])+','+epsilon(e[9])+','+epsilon(e[10])+','+epsilon(e[11])+','+epsilon(e[12])+','+epsilon(e[13])+','+epsilon(e[14])+','+epsilon(e[15])+')'; }
|
|
54
|
+
function hasMatrixChanged(elements, values){
|
|
55
|
+
if (!values) return true;
|
|
56
|
+
for (var i=0;i<16;i++) if (epsilon(elements[i])!==values[i]) return true;
|
|
57
|
+
return false;
|
|
58
|
+
}
|
|
59
|
+
function copyMatrix(elements, values){
|
|
60
|
+
var next=values || new Float64Array(16);
|
|
61
|
+
for (var i=0;i<16;i++) next[i]=epsilon(elements[i]);
|
|
62
|
+
return next;
|
|
63
|
+
}
|
|
64
|
+
function renderObject(object){
|
|
65
|
+
if (object.isCSS3DObject){
|
|
66
|
+
var visible=object.visible===true;
|
|
67
|
+
var layoutPrepared=object.userData?._residentTransitionPrepared===true;
|
|
68
|
+
var display=(visible || layoutPrepared) ? '' : 'none';
|
|
69
|
+
var element=object.element;
|
|
70
|
+
var cached=cache.objects.get(object);
|
|
71
|
+
if (cached===undefined){
|
|
72
|
+
cached={ element:null, matrix:null, display:null };
|
|
73
|
+
cache.objects.set(object,cached);
|
|
74
|
+
}
|
|
75
|
+
var elementChanged=cached.element!==element;
|
|
76
|
+
if ((visible || layoutPrepared) && (elementChanged || hasMatrixChanged(object.matrixWorld.elements,cached.matrix))){
|
|
77
|
+
var style=getObjectCSSMatrix(object.matrixWorld);
|
|
78
|
+
element.style.webkitTransform=element.style.transform=style;
|
|
79
|
+
cached.matrix=copyMatrix(object.matrixWorld.elements,cached.matrix);
|
|
80
|
+
}
|
|
81
|
+
if (elementChanged || cached.display!==display) element.style.display=display;
|
|
82
|
+
cached.element=element;
|
|
83
|
+
cached.display=display;
|
|
84
|
+
if (element.parentNode!==cameraElement) cameraElement.appendChild(element);
|
|
85
|
+
}
|
|
86
|
+
for (var i=0,l=object.children.length;i<l;i++) renderObject(object.children[i]);
|
|
87
|
+
}
|
|
88
|
+
function renderCameraOnly(renderer, camera, matrixWorldIsCurrent){
|
|
89
|
+
var fov=camera.projectionMatrix.elements[5]*_heightHalf;
|
|
90
|
+
if (cache.camera.fov!==fov){
|
|
91
|
+
renderer.domElement.style.webkitPerspective=renderer.domElement.style.perspective=fov+'px';
|
|
92
|
+
cache.camera.fov=fov;
|
|
93
|
+
}
|
|
94
|
+
if (matrixWorldIsCurrent!==true && camera.parent===null) camera.updateMatrixWorld();
|
|
95
|
+
var cameraCSSMatrix='translateZ('+fov+'px)'+getCameraCSSMatrix(camera.matrixWorldInverse);
|
|
96
|
+
var style=cameraCSSMatrix+'translate('+_widthHalf+'px,'+_heightHalf+'px)';
|
|
97
|
+
if (cache.camera.style!==style){
|
|
98
|
+
cameraElement.style.webkitTransform=cameraElement.style.transform=style;
|
|
99
|
+
cache.camera.style=style;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
this.renderCamera = function(camera, matrixWorldIsCurrent){ renderCameraOnly(this, camera, matrixWorldIsCurrent); };
|
|
103
|
+
this.render = function(scene, camera){ if (scene.autoUpdate===true) scene.updateMatrixWorld(); renderCameraOnly(this, camera, false); renderObject(scene); };
|
|
47
104
|
}
|
|
48
105
|
|
|
49
106
|
window.CSS3DObject = CSS3DObject; window.CSS3DSprite = CSS3DSprite; window.CSS3DRenderer = CSS3DRenderer;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/wwwroot/_framework/{MindExecution.Web.6grqlsq22z.dll → MindExecution.Web.m9h5r0uvry.dll}
RENAMED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-vI5xHgVEIfozQqYzVjlqe6BhywMU49Aum6z6LqwLXdw=",
|
|
5
5
|
"fingerprinting": {
|
|
6
6
|
"Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
|
|
7
7
|
"Markdig.d1j7v41cl1.dll": "Markdig.dll",
|
|
@@ -126,12 +126,12 @@
|
|
|
126
126
|
"MindExecution.Kernel.75hxk08tt0.dll": "MindExecution.Kernel.dll",
|
|
127
127
|
"MindExecution.Plugins.Admin.0zkmk8wahq.dll": "MindExecution.Plugins.Admin.dll",
|
|
128
128
|
"MindExecution.Plugins.Business.vyw3769hrw.dll": "MindExecution.Plugins.Business.dll",
|
|
129
|
-
"MindExecution.Plugins.Concept.
|
|
129
|
+
"MindExecution.Plugins.Concept.gmo0tv41kt.dll": "MindExecution.Plugins.Concept.dll",
|
|
130
130
|
"MindExecution.Plugins.Directory.jtw9q1dm9n.dll": "MindExecution.Plugins.Directory.dll",
|
|
131
|
-
"MindExecution.Plugins.PlanMaster.
|
|
132
|
-
"MindExecution.Plugins.YouTube.
|
|
133
|
-
"MindExecution.Shared.
|
|
134
|
-
"MindExecution.Web.
|
|
131
|
+
"MindExecution.Plugins.PlanMaster.ts9iffoyt9.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
132
|
+
"MindExecution.Plugins.YouTube.m4ag6l6urx.dll": "MindExecution.Plugins.YouTube.dll",
|
|
133
|
+
"MindExecution.Shared.u07hdbavl1.dll": "MindExecution.Shared.dll",
|
|
134
|
+
"MindExecution.Web.m9h5r0uvry.dll": "MindExecution.Web.dll",
|
|
135
135
|
"dotnet.native.566r55w3xu.js": "dotnet.native.js",
|
|
136
136
|
"dotnet.native.x6q5aixc38.wasm": "dotnet.native.wasm",
|
|
137
137
|
"dotnet.js": "dotnet.js",
|
|
@@ -279,15 +279,15 @@
|
|
|
279
279
|
"MindExecution.Core.808jj176e1.dll": "sha256-uMmP6rEgsbuwnsZ6Cnxrpmzio4usBtoJERfkOvz25iY=",
|
|
280
280
|
"MindExecution.Kernel.75hxk08tt0.dll": "sha256-9db04cSFp4z4iblswVb0UWgpjeluVqZUa7g27Oj3p40=",
|
|
281
281
|
"MindExecution.Plugins.Business.vyw3769hrw.dll": "sha256-WSc1w7WNOhnmzD3DcIgg4PCYzHeeU5rc7KK7eLgsu+M=",
|
|
282
|
-
"MindExecution.Plugins.Concept.
|
|
283
|
-
"MindExecution.Plugins.PlanMaster.
|
|
284
|
-
"MindExecution.Shared.
|
|
285
|
-
"MindExecution.Web.
|
|
282
|
+
"MindExecution.Plugins.Concept.gmo0tv41kt.dll": "sha256-qBXUF9WweoI0L8luwIA4Y9tkNvvyfftGeZiaXQOaBK4=",
|
|
283
|
+
"MindExecution.Plugins.PlanMaster.ts9iffoyt9.dll": "sha256-4/JDS1wN3+2JYM4cX21FZkbfzyuTB7WsnR+gy0E2/aw=",
|
|
284
|
+
"MindExecution.Shared.u07hdbavl1.dll": "sha256-ztbH6CE39o0VvcB+c+X98XXU9FHq82JJDeRrHzvTghs=",
|
|
285
|
+
"MindExecution.Web.m9h5r0uvry.dll": "sha256-Vn53TxOtXF7QbcK6wIkTAZqZj5YxnIrQsC73i7TJkyQ="
|
|
286
286
|
},
|
|
287
287
|
"lazyAssembly": {
|
|
288
288
|
"MindExecution.Plugins.Admin.0zkmk8wahq.dll": "sha256-VLiwzLIr+tjKr6+yQfhMVQHq2Yx26QenAkC092+fEdw=",
|
|
289
289
|
"MindExecution.Plugins.Directory.jtw9q1dm9n.dll": "sha256-Z1x+H7sTj3w9XjWxfqGsd3Jv+qlzwQxAur6pJIP4l20=",
|
|
290
|
-
"MindExecution.Plugins.YouTube.
|
|
290
|
+
"MindExecution.Plugins.YouTube.m4ag6l6urx.dll": "sha256-uk7G3IbzHVe7WPbDEUTEA5jyyE+/cWWrMYZ2IBRPQB4="
|
|
291
291
|
}
|
|
292
292
|
},
|
|
293
293
|
"cacheBootResources": true,
|
package/wwwroot/index.html
CHANGED
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
}
|
|
580
580
|
|
|
581
581
|
const base = '_content/MindExecution.Shared/js/';
|
|
582
|
-
const scriptVersion = '
|
|
582
|
+
const scriptVersion = '20260712-boundary-transition-cache-v923';
|
|
583
583
|
const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
|
|
584
584
|
console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
|
|
585
585
|
const criticalScripts = [
|
|
@@ -599,9 +599,10 @@
|
|
|
599
599
|
'mind-map-nodes.js',
|
|
600
600
|
'mind-map-menu-manager.js',
|
|
601
601
|
'mind-map-multi-select.js',
|
|
602
|
-
'mind-map-interactions.js',
|
|
603
|
-
'mind-map-dnd.js',
|
|
604
|
-
'mind-map-
|
|
602
|
+
'mind-map-interactions.js',
|
|
603
|
+
'mind-map-dnd.js',
|
|
604
|
+
'mind-map-render-plan.js',
|
|
605
|
+
'mind-map-lod-renderer.js',
|
|
605
606
|
'mind-map-text-lod-system.js', // ??Text LOD ??좎럩???(??좎럩????좎럩?ゅ뜝???좎럩彛?
|
|
606
607
|
'mind-map-core.js',
|
|
607
608
|
'mindmap-toolbar.js',
|
|
@@ -654,7 +655,7 @@
|
|
|
654
655
|
);
|
|
655
656
|
|
|
656
657
|
window.MindCanvasBuildInfo?.setRuntime?.('scriptVersion', scriptVersion);
|
|
657
|
-
window.MindCanvasBuildInfo?.validateRequiredParts?.(['devGuards', 'core', 'lodRenderer']);
|
|
658
|
+
window.MindCanvasBuildInfo?.validateRequiredParts?.(['devGuards', 'renderPlan', 'core', 'lodRenderer']);
|
|
658
659
|
|
|
659
660
|
console.log('[Script Loader] Critical scripts loaded, starting Blazor...');
|
|
660
661
|
window.mindExecutionStartupTiming?.mark('critical-scripts-loaded', {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "MRR9dM9W",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"url": "_content/MindExecution.Shared/css/app.css"
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
|
-
"hash": "sha256-
|
|
45
|
+
"hash": "sha256-4ZkJxfoTdJl937jfE4WfyEk/KLh/XxZ2y9bPWUdzpd8=",
|
|
46
46
|
"url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"url": "_content/MindExecution.Shared/js/marked.min.js"
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
|
-
"hash": "sha256-
|
|
81
|
+
"hash": "sha256-VtCWP9VR+lpe3PbV1E2voY0wiwg+YYP3M77qU8JJwTM=",
|
|
82
82
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
|
-
"hash": "sha256-
|
|
117
|
+
"hash": "sha256-IwXEhkurFaTiITycukVzAgPcA8Vk5G5dpTr+jIQKi2E=",
|
|
118
118
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
@@ -149,6 +149,10 @@
|
|
|
149
149
|
"hash": "sha256-QvC3R24/3hjEyEkuxhKD2yA47gscsPoysFuaQJ6hhLQ=",
|
|
150
150
|
"url": "_content/MindExecution.Shared/js/mind-map-pipeline.js"
|
|
151
151
|
},
|
|
152
|
+
{
|
|
153
|
+
"hash": "sha256-RjC8fUKPNF/NdW6W8x9/8yqUaEOfJbMYtr2ciSl4XHQ=",
|
|
154
|
+
"url": "_content/MindExecution.Shared/js/mind-map-render-plan.js"
|
|
155
|
+
},
|
|
152
156
|
{
|
|
153
157
|
"hash": "sha256-v+uBBIrgde8GhLr8xKvC2nK4UhfzBBP69RFZW1kDkhs=",
|
|
154
158
|
"url": "_content/MindExecution.Shared/js/mind-map-text-lod-system.js"
|
|
@@ -178,7 +182,7 @@
|
|
|
178
182
|
"url": "_content/MindExecution.Shared/js/plan-master.js"
|
|
179
183
|
},
|
|
180
184
|
{
|
|
181
|
-
"hash": "sha256-
|
|
185
|
+
"hash": "sha256-lIi8TNv5J+tdNSwhS4Lr8QOEiKzKOzvmvLcgOYfBWgU=",
|
|
182
186
|
"url": "_content/MindExecution.Shared/js/renderers/CSS3DRenderer.js"
|
|
183
187
|
},
|
|
184
188
|
{
|
|
@@ -422,28 +426,28 @@
|
|
|
422
426
|
"url": "_framework/MindExecution.Plugins.Business.vyw3769hrw.dll"
|
|
423
427
|
},
|
|
424
428
|
{
|
|
425
|
-
"hash": "sha256-
|
|
426
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
429
|
+
"hash": "sha256-qBXUF9WweoI0L8luwIA4Y9tkNvvyfftGeZiaXQOaBK4=",
|
|
430
|
+
"url": "_framework/MindExecution.Plugins.Concept.gmo0tv41kt.dll"
|
|
427
431
|
},
|
|
428
432
|
{
|
|
429
433
|
"hash": "sha256-Z1x+H7sTj3w9XjWxfqGsd3Jv+qlzwQxAur6pJIP4l20=",
|
|
430
434
|
"url": "_framework/MindExecution.Plugins.Directory.jtw9q1dm9n.dll"
|
|
431
435
|
},
|
|
432
436
|
{
|
|
433
|
-
"hash": "sha256-
|
|
434
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
437
|
+
"hash": "sha256-4/JDS1wN3+2JYM4cX21FZkbfzyuTB7WsnR+gy0E2/aw=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.ts9iffoyt9.dll"
|
|
435
439
|
},
|
|
436
440
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
441
|
+
"hash": "sha256-uk7G3IbzHVe7WPbDEUTEA5jyyE+/cWWrMYZ2IBRPQB4=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.YouTube.m4ag6l6urx.dll"
|
|
439
443
|
},
|
|
440
444
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Shared.
|
|
445
|
+
"hash": "sha256-ztbH6CE39o0VvcB+c+X98XXU9FHq82JJDeRrHzvTghs=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.u07hdbavl1.dll"
|
|
443
447
|
},
|
|
444
448
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Web.
|
|
449
|
+
"hash": "sha256-Vn53TxOtXF7QbcK6wIkTAZqZj5YxnIrQsC73i7TJkyQ=",
|
|
450
|
+
"url": "_framework/MindExecution.Web.m9h5r0uvry.dll"
|
|
447
451
|
},
|
|
448
452
|
{
|
|
449
453
|
"hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
|
|
@@ -762,7 +766,7 @@
|
|
|
762
766
|
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
763
767
|
},
|
|
764
768
|
{
|
|
765
|
-
"hash": "sha256-
|
|
769
|
+
"hash": "sha256-MD0kvjpf75Vf42k550ThUA2aJndMKVFGP2iftaPrl2E=",
|
|
766
770
|
"url": "_framework/blazor.boot.json"
|
|
767
771
|
},
|
|
768
772
|
{
|
|
@@ -822,7 +826,7 @@
|
|
|
822
826
|
"url": "icon-512.png"
|
|
823
827
|
},
|
|
824
828
|
{
|
|
825
|
-
"hash": "sha256-
|
|
829
|
+
"hash": "sha256-r3GcUrMmL938c4fztCOgu1rT3vgXovbh/fBJZBvrsms=",
|
|
826
830
|
"url": "index.html"
|
|
827
831
|
},
|
|
828
832
|
{
|