@mindexec/cli 0.2.191 → 0.2.193
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 +58 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +4 -0
- package/wwwroot/service-worker-assets.js +4 -4
- package/wwwroot/service-worker.js +1 -1
package/package.json
CHANGED
|
@@ -3450,3 +3450,61 @@ body.mindcanvas-is-dense .css3d-resolution-wrapper [id^="css3d-node-"] {
|
|
|
3450
3450
|
-webkit-filter: none !important;
|
|
3451
3451
|
filter: none !important;
|
|
3452
3452
|
}
|
|
3453
|
+
|
|
3454
|
+
/* Strong tail guard for the temporary lightweight node-visuals phase.
|
|
3455
|
+
This intentionally wins after idle/motion class cleanup and after older
|
|
3456
|
+
note/image/video/agent/remote rules that used selected-state glow. */
|
|
3457
|
+
html body .css3d-resolution-wrapper,
|
|
3458
|
+
html body .css3d-resolution-wrapper::before,
|
|
3459
|
+
html body .css3d-resolution-wrapper::after,
|
|
3460
|
+
html body .css3d-resolution-wrapper *,
|
|
3461
|
+
html body .css3d-resolution-wrapper *::before,
|
|
3462
|
+
html body .css3d-resolution-wrapper *::after,
|
|
3463
|
+
html body .mind-map-text-overlay-v2-card,
|
|
3464
|
+
html body .mind-map-text-overlay-v2-card::before,
|
|
3465
|
+
html body .mind-map-text-overlay-v2-card::after,
|
|
3466
|
+
html body .mind-map-text-overlay-v2-card *,
|
|
3467
|
+
html body .mind-map-text-overlay-v2-card *::before,
|
|
3468
|
+
html body .mind-map-text-overlay-v2-card *::after {
|
|
3469
|
+
-webkit-box-shadow: none !important;
|
|
3470
|
+
box-shadow: none !important;
|
|
3471
|
+
-webkit-filter: none !important;
|
|
3472
|
+
filter: none !important;
|
|
3473
|
+
text-shadow: none !important;
|
|
3474
|
+
}
|
|
3475
|
+
|
|
3476
|
+
html body .css3d-resolution-wrapper {
|
|
3477
|
+
transition-property: transform, opacity, border-color, background-color !important;
|
|
3478
|
+
}
|
|
3479
|
+
|
|
3480
|
+
html body .css3d-resolution-wrapper.node-type-note,
|
|
3481
|
+
html body .css3d-resolution-wrapper.node-type-note.selected,
|
|
3482
|
+
html body .css3d-resolution-wrapper.node-type-image,
|
|
3483
|
+
html body .css3d-resolution-wrapper.node-type-image.selected,
|
|
3484
|
+
html body .css3d-resolution-wrapper.node-type-video,
|
|
3485
|
+
html body .css3d-resolution-wrapper.node-type-video.selected,
|
|
3486
|
+
html body .css3d-resolution-wrapper.node-type-embed,
|
|
3487
|
+
html body .css3d-resolution-wrapper.node-type-embed.selected,
|
|
3488
|
+
html body .css3d-resolution-wrapper.selected-media-safe,
|
|
3489
|
+
html body .css3d-resolution-wrapper.selected-media-safe.selected {
|
|
3490
|
+
-webkit-box-shadow: none !important;
|
|
3491
|
+
box-shadow: none !important;
|
|
3492
|
+
-webkit-filter: none !important;
|
|
3493
|
+
filter: none !important;
|
|
3494
|
+
}
|
|
3495
|
+
|
|
3496
|
+
html body .css3d-resolution-wrapper.node-type-note .map-node-note,
|
|
3497
|
+
html body .css3d-resolution-wrapper.node-type-note .map-node-note.selected,
|
|
3498
|
+
html body .css3d-resolution-wrapper.node-type-note .map-node-note:focus-within,
|
|
3499
|
+
html body .css3d-resolution-wrapper.node-type-image .map-node-image-container,
|
|
3500
|
+
html body .css3d-resolution-wrapper.node-type-image .map-node-image-container.selected,
|
|
3501
|
+
html body .css3d-resolution-wrapper.node-type-video .map-node,
|
|
3502
|
+
html body .css3d-resolution-wrapper.node-type-video .map-node.selected,
|
|
3503
|
+
html body .css3d-resolution-wrapper.node-type-embed .map-node,
|
|
3504
|
+
html body .css3d-resolution-wrapper.node-type-embed .map-node.selected {
|
|
3505
|
+
-webkit-box-shadow: none !important;
|
|
3506
|
+
box-shadow: none !important;
|
|
3507
|
+
-webkit-filter: none !important;
|
|
3508
|
+
filter: none !important;
|
|
3509
|
+
outline-offset: 0 !important;
|
|
3510
|
+
}
|
|
@@ -18530,7 +18530,7 @@
|
|
|
18530
18530
|
const preview = createDevicePreview(device, 'tile');
|
|
18531
18531
|
if (isSelected) {
|
|
18532
18532
|
preview.style.borderColor = 'rgba(37, 99, 235, 0.86)';
|
|
18533
|
-
preview.style.boxShadow = '
|
|
18533
|
+
preview.style.boxShadow = 'none';
|
|
18534
18534
|
}
|
|
18535
18535
|
card.appendChild(preview);
|
|
18536
18536
|
grid.appendChild(card);
|
|
@@ -112,6 +112,7 @@
|
|
|
112
112
|
const CSS3D_PREWARM_EXTREME_VISIBLE_THRESHOLD = 240;
|
|
113
113
|
const FREEZE_CONTENT_DRIVEN_LOD_LINES = false; // Recompute when content changes; resident instances make this affordable.
|
|
114
114
|
const ENABLE_INSTANCED_BORDER_LINES = false; // Remove MID/FAR outline lines; keep body/halo/text lines.
|
|
115
|
+
const ENABLE_INSTANCED_HALO = false; // Temporary lightweight node visuals: no resident shadow/glow halo.
|
|
115
116
|
const ENABLE_INSTANCED_TEXT_LINES = true; // Keep MID/FAR text silhouettes enabled.
|
|
116
117
|
const SUSPEND_LOD_TEXT_LINES_DURING_PAN = false; // Keep MID line silhouettes visible during pan/wheel; only defer expensive refresh work.
|
|
117
118
|
// NOTE: Distance-based line disable removed (lines always render by distance)
|
|
@@ -229,6 +230,9 @@
|
|
|
229
230
|
}
|
|
230
231
|
|
|
231
232
|
function shouldShowInstancedHaloInLodBand(lodBand) {
|
|
233
|
+
if (ENABLE_INSTANCED_HALO !== true) {
|
|
234
|
+
return false;
|
|
235
|
+
}
|
|
232
236
|
return lodBand === 'MID';
|
|
233
237
|
}
|
|
234
238
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "NpZtPq6J",
|
|
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-pdaoNI0AXxz4sxAx0zwGR6XUiNNXi4EXE1KrXtsxg0c=",
|
|
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-w5El+b/jMkJXV0aHnzCeojwonc+KS91KFFVaQ5Yylzw=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -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-AfkjcIYsbpzKatPo61v58MnSQkP6Yw1jkEJ0D19HmAI=",
|
|
118
118
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
|
|
119
119
|
},
|
|
120
120
|
{
|