@mindexec/cli 0.2.397 → 0.2.399
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/css/mind-map-overrides.css +15 -2
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +14 -1
- package/wwwroot/index.html +4 -5
- package/wwwroot/service-worker-assets.js +4 -8
- package/wwwroot/service-worker.js +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js +0 -4795
package/package.json
CHANGED
|
@@ -2609,6 +2609,14 @@ html body .css3d-resolution-wrapper.lod-low.node-type-csv-table .csv-table td {
|
|
|
2609
2609
|
border: 0 !important;
|
|
2610
2610
|
}
|
|
2611
2611
|
|
|
2612
|
+
.css3d-resolution-wrapper.node-type-templatelauncher:has(> .map-node-template-card.map-node-remote-fleet) {
|
|
2613
|
+
outline: none !important;
|
|
2614
|
+
-webkit-box-shadow: none !important;
|
|
2615
|
+
box-shadow: none !important;
|
|
2616
|
+
-webkit-filter: none !important;
|
|
2617
|
+
filter: none !important;
|
|
2618
|
+
}
|
|
2619
|
+
|
|
2612
2620
|
.css3d-resolution-wrapper.node-type-templatelauncher.selected > .map-node-template-card.map-node-remote-fleet {
|
|
2613
2621
|
border: 2px solid var(--node-selection-edge, #2563eb) !important;
|
|
2614
2622
|
}
|
|
@@ -2643,6 +2651,8 @@ html body .css3d-resolution-wrapper.lod-low.node-type-csv-table .csv-table td {
|
|
|
2643
2651
|
|
|
2644
2652
|
.map-node-template-card.map-node-remote-fleet {
|
|
2645
2653
|
border: 0 !important;
|
|
2654
|
+
outline: none !important;
|
|
2655
|
+
box-shadow: none !important;
|
|
2646
2656
|
}
|
|
2647
2657
|
|
|
2648
2658
|
.template-card__shell {
|
|
@@ -2894,7 +2904,9 @@ html body .css3d-resolution-wrapper.lod-low.node-type-csv-table .csv-table td {
|
|
|
2894
2904
|
.map-node-template-card.map-node-remote-fleet .template-card__shell--remote-fleet {
|
|
2895
2905
|
gap: 10px;
|
|
2896
2906
|
padding: 14px;
|
|
2907
|
+
border: 0 !important;
|
|
2897
2908
|
background: #f8fafc;
|
|
2909
|
+
box-shadow: none !important;
|
|
2898
2910
|
}
|
|
2899
2911
|
|
|
2900
2912
|
.map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle {
|
|
@@ -3023,9 +3035,10 @@ html body .css3d-resolution-wrapper.lod-low.node-type-csv-table .csv-table td {
|
|
|
3023
3035
|
flex: 1 1 auto;
|
|
3024
3036
|
min-height: 0;
|
|
3025
3037
|
overflow: hidden;
|
|
3026
|
-
border:
|
|
3027
|
-
border-radius:
|
|
3038
|
+
border: 0 !important;
|
|
3039
|
+
border-radius: 0;
|
|
3028
3040
|
background: #ffffff;
|
|
3041
|
+
box-shadow: none !important;
|
|
3029
3042
|
}
|
|
3030
3043
|
|
|
3031
3044
|
.map-node-template-card.map-node-remote-device .template-card__shell--remote-fleet {
|
|
@@ -413,10 +413,23 @@
|
|
|
413
413
|
}
|
|
414
414
|
.map-node-template-card.map-node-remote-fleet {
|
|
415
415
|
border: 0 !important;
|
|
416
|
+
outline: none !important;
|
|
417
|
+
box-shadow: none !important;
|
|
418
|
+
}
|
|
419
|
+
.css3d-resolution-wrapper.node-type-templatelauncher:has(> .map-node-template-card.map-node-remote-fleet) {
|
|
420
|
+
outline: none !important;
|
|
421
|
+
box-shadow: none !important;
|
|
422
|
+
filter: none !important;
|
|
416
423
|
}
|
|
417
424
|
.css3d-resolution-wrapper.node-type-templatelauncher.selected > .map-node-template-card.map-node-remote-fleet {
|
|
418
425
|
border: 2px solid var(--node-selection-edge, #2563eb) !important;
|
|
419
426
|
}
|
|
427
|
+
.map-node-template-card.map-node-remote-fleet > .template-card__shell,
|
|
428
|
+
.map-node-template-card.map-node-remote-fleet .template-card__remote-fleet-body {
|
|
429
|
+
border: 0 !important;
|
|
430
|
+
border-radius: 0 !important;
|
|
431
|
+
box-shadow: none !important;
|
|
432
|
+
}
|
|
420
433
|
.map-node-template-card > .template-card__shell {
|
|
421
434
|
border: 0 !important;
|
|
422
435
|
border-radius: 0 !important;
|
|
@@ -19340,7 +19353,7 @@
|
|
|
19340
19353
|
overflow: hidden;
|
|
19341
19354
|
border-radius: 0;
|
|
19342
19355
|
background: ${hasPreviewSource ? 'linear-gradient(135deg, #0f172a 0%, #1e293b 100%)' : '#ffffff'};
|
|
19343
|
-
border:
|
|
19356
|
+
border: 0;
|
|
19344
19357
|
outline: 0;
|
|
19345
19358
|
outline-offset: 0;
|
|
19346
19359
|
box-shadow: none;
|
package/wwwroot/index.html
CHANGED
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
}
|
|
580
580
|
|
|
581
581
|
const base = '_content/MindExecution.Shared/js/';
|
|
582
|
-
|
|
582
|
+
const scriptVersion = '20260628-css3d-only-v839';
|
|
583
583
|
const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
|
|
584
584
|
console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
|
|
585
585
|
const criticalScripts = [
|
|
@@ -592,10 +592,9 @@
|
|
|
592
592
|
// Troika removed
|
|
593
593
|
'texture-worker-manager.js', // ??Web Worker ??좎럩?ゅ뜝???좎럩苑?
|
|
594
594
|
'mind-map-texture-factory.js',
|
|
595
|
-
'mind-map-glow-shader.js', // ??SDF Glow (no textures, GPU only)
|
|
596
|
-
'mind-map-css3d-manager.js',
|
|
597
|
-
'mind-map-
|
|
598
|
-
'mind-map-object-manager.js',
|
|
595
|
+
'mind-map-glow-shader.js', // ??SDF Glow (no textures, GPU only)
|
|
596
|
+
'mind-map-css3d-manager.js',
|
|
597
|
+
'mind-map-object-manager.js',
|
|
599
598
|
'mind-map-pipeline.js',
|
|
600
599
|
'mind-map-nodes.js',
|
|
601
600
|
'mind-map-menu-manager.js',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "FbVowZRL",
|
|
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-5H2C1LgV4x6yd6MJWyrR8rOgzngsEF5SfIROGDWenxc=",
|
|
46
46
|
"url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
@@ -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-a8da/gCQmnmyAg7a/c9n5VHeQccZcXwCjHd50TfNoKw=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -153,10 +153,6 @@
|
|
|
153
153
|
"hash": "sha256-v+uBBIrgde8GhLr8xKvC2nK4UhfzBBP69RFZW1kDkhs=",
|
|
154
154
|
"url": "_content/MindExecution.Shared/js/mind-map-text-lod-system.js"
|
|
155
155
|
},
|
|
156
|
-
{
|
|
157
|
-
"hash": "sha256-sMoq5F1prdHR/OxsWbJOv2J8183GFUMImBV+/rm4xkQ=",
|
|
158
|
-
"url": "_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js"
|
|
159
|
-
},
|
|
160
156
|
{
|
|
161
157
|
"hash": "sha256-RchuTERHSQ4CHfVYqLHwNiy1Lck+c4FjjlWm8y2MnPA=",
|
|
162
158
|
"url": "_content/MindExecution.Shared/js/mind-map-texture-factory.js"
|
|
@@ -830,7 +826,7 @@
|
|
|
830
826
|
"url": "icon-512.png"
|
|
831
827
|
},
|
|
832
828
|
{
|
|
833
|
-
"hash": "sha256-
|
|
829
|
+
"hash": "sha256-prIQFaS+GGMIB15zcGBrRYbhMP5bfUNG2D+LV6lMCOs=",
|
|
834
830
|
"url": "index.html"
|
|
835
831
|
},
|
|
836
832
|
{
|