@mindexec/cli 0.2.197 → 0.2.199
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 +8 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +2 -2
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js +62 -2
- package/wwwroot/index.html +14 -14
- package/wwwroot/service-worker-assets.js +5 -5
- package/wwwroot/service-worker.js +1 -1
package/package.json
CHANGED
|
@@ -2059,6 +2059,14 @@ body.is-panning .mind-map-text-overlay-v2-card.is-passive .mind-map-text-overlay
|
|
|
2059
2059
|
overflow: hidden !important;
|
|
2060
2060
|
}
|
|
2061
2061
|
|
|
2062
|
+
.css3d-resolution-wrapper.node-type-csv-table > .map-node.map-node-csv-table,
|
|
2063
|
+
.css3d-resolution-wrapper.node-type-csv-table .map-node-csv-table,
|
|
2064
|
+
.mind-map-text-overlay-v2-source-clone.map-node-csv-table,
|
|
2065
|
+
.map-node-csv-table {
|
|
2066
|
+
border: 1px solid #111827 !important;
|
|
2067
|
+
box-shadow: none !important;
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2062
2070
|
.css3d-resolution-wrapper.node-type-csv-table .node-content-wrapper,
|
|
2063
2071
|
.map-node-csv-table .node-content-wrapper--csv-table {
|
|
2064
2072
|
display: flex !important;
|
|
@@ -353,8 +353,8 @@
|
|
|
353
353
|
.markdown-body table th { font-weight: 600; background-color: #f6f8fa; }
|
|
354
354
|
.markdown-body hr { height: 0.25em; padding: 0; margin: 24px 0; background-color: #e1e4e8; border: 0; }
|
|
355
355
|
.map-node-csv-table {
|
|
356
|
-
border: 1px solid
|
|
357
|
-
box-shadow:
|
|
356
|
+
border: 1px solid #111827;
|
|
357
|
+
box-shadow: none;
|
|
358
358
|
}
|
|
359
359
|
.csv-table-scroll {
|
|
360
360
|
width: 100%;
|
|
@@ -172,6 +172,11 @@
|
|
|
172
172
|
}
|
|
173
173
|
|
|
174
174
|
function blocksPassiveOverlayStack(entry) {
|
|
175
|
+
if (isCss3dOnlyOverlayEntry(entry)) {
|
|
176
|
+
const hasVisibleCss = !!entry?.cssObject && entry.cssObject.visible !== false;
|
|
177
|
+
return hasVisibleCss;
|
|
178
|
+
}
|
|
179
|
+
|
|
175
180
|
const type = getContentType(entry);
|
|
176
181
|
const isVisualStackBlocker = type === 'image'
|
|
177
182
|
|| type === 'video'
|
|
@@ -606,7 +611,9 @@
|
|
|
606
611
|
}
|
|
607
612
|
|
|
608
613
|
const candidateRank = Number(candidate.stackRank);
|
|
609
|
-
if (
|
|
614
|
+
if (currentItem.forceSuppressOverlappingPassive !== true &&
|
|
615
|
+
Number.isFinite(candidateRank) &&
|
|
616
|
+
candidateRank > blockerRank) {
|
|
610
617
|
return;
|
|
611
618
|
}
|
|
612
619
|
|
|
@@ -778,6 +785,41 @@
|
|
|
778
785
|
};
|
|
779
786
|
}
|
|
780
787
|
|
|
788
|
+
function isPassiveOverlayBlockedByCss3dOnlySurface(module, entry) {
|
|
789
|
+
if (!module || !entry || isCss3dOnlyOverlayEntry(entry)) {
|
|
790
|
+
return false;
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
const candidateRect = getPassiveOverlayScreenRect(module, entry);
|
|
794
|
+
if (!candidateRect) {
|
|
795
|
+
return false;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
const candidateId = getNodeId(entry);
|
|
799
|
+
let blocked = false;
|
|
800
|
+
module.nodeObjectsById?.forEach?.((otherEntry, otherNodeId) => {
|
|
801
|
+
if (blocked || !otherEntry || normalizeId(otherNodeId) === candidateId) {
|
|
802
|
+
return;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
if (!isCss3dOnlyOverlayEntry(otherEntry)) {
|
|
806
|
+
return;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
const hasVisibleCss = !!otherEntry.cssObject && otherEntry.cssObject.visible !== false;
|
|
810
|
+
if (!hasVisibleCss) {
|
|
811
|
+
return;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
const blockerRect = getPassiveOverlayScreenRect(module, otherEntry);
|
|
815
|
+
if (doPassiveOverlayRectsOverlap(candidateRect, blockerRect)) {
|
|
816
|
+
blocked = true;
|
|
817
|
+
}
|
|
818
|
+
});
|
|
819
|
+
|
|
820
|
+
return blocked;
|
|
821
|
+
}
|
|
822
|
+
|
|
781
823
|
function getPassiveOverlayCardLimit(module, candidateCount) {
|
|
782
824
|
if (!(candidateCount > 0)) {
|
|
783
825
|
return 0;
|
|
@@ -841,7 +883,8 @@
|
|
|
841
883
|
nodeId: normalizedId,
|
|
842
884
|
entry,
|
|
843
885
|
sourceIndex: nextSourceIndex,
|
|
844
|
-
renderPassiveOverlay: false
|
|
886
|
+
renderPassiveOverlay: false,
|
|
887
|
+
forceSuppressOverlappingPassive: isCss3dOnlyOverlayEntry(entry)
|
|
845
888
|
});
|
|
846
889
|
blockerCount += 1;
|
|
847
890
|
}
|
|
@@ -4099,6 +4142,23 @@
|
|
|
4099
4142
|
return;
|
|
4100
4143
|
}
|
|
4101
4144
|
|
|
4145
|
+
if (isPassiveOverlayBlockedByCss3dOnlySurface(module, entry)) {
|
|
4146
|
+
if (entry) {
|
|
4147
|
+
resumeSource(entry);
|
|
4148
|
+
}
|
|
4149
|
+
if (existingCard) {
|
|
4150
|
+
removeCard(state, selectionCardKey(nodeId));
|
|
4151
|
+
}
|
|
4152
|
+
state.passiveCandidateIds?.delete?.(nodeId);
|
|
4153
|
+
if (interactive) {
|
|
4154
|
+
state.selectionNodeId = '';
|
|
4155
|
+
state.dirtySelection = true;
|
|
4156
|
+
module._overlayDirty = true;
|
|
4157
|
+
module._lastOverlayKey = '';
|
|
4158
|
+
}
|
|
4159
|
+
return;
|
|
4160
|
+
}
|
|
4161
|
+
|
|
4102
4162
|
const isSelectedPassiveNode = !interactive && selectedNodeId === nodeId;
|
|
4103
4163
|
const keepPassiveCard = isSelectedPassiveNode && shouldKeepPassiveCardWhenSelected(entry);
|
|
4104
4164
|
if (isSelectedPassiveNode) {
|
package/wwwroot/index.html
CHANGED
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
<title>MindExec | Business Execution OS for solo builders</title>
|
|
8
8
|
<meta name="description" content="MindExec is an AI business execution OS for solo builders who want to turn notes, research, assets, and repeatable execution Skills into revenue-producing work." />
|
|
9
9
|
<base href="/" />
|
|
10
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260618-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260618-
|
|
12
|
-
<!-- ?�▼??Font Awesome (local) ?�▼??-->
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260618-csv-border-v616-x1" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260618-csv-border-v616-x1" />
|
|
12
|
+
<!-- ?�▼??Font Awesome (local) ?�▼??-->
|
|
13
13
|
<link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
|
|
14
|
-
<!-- ?�▲??-->
|
|
14
|
+
<!-- ?�▲??-->
|
|
15
15
|
<style>
|
|
16
16
|
#app {
|
|
17
17
|
min-height: 100vh;
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
function adjustTextareaHeight(element) {
|
|
181
181
|
if (!element) return;
|
|
182
182
|
|
|
183
|
-
// ?�▼??[Change] Add jitter-prevention logic ?�▼??
|
|
183
|
+
// ?�▼??[Change] Add jitter-prevention logic ?�▼??
|
|
184
184
|
// Compare the previous text length. When content grows, skip the 'auto' reset.
|
|
185
185
|
// Only reset to 'auto' when shrinking (during deletion).
|
|
186
186
|
const currentLength = element.value.length;
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
element.dataset.prevLength = currentLength; // store current length
|
|
194
|
-
// ?�▲??[Change] ?�▲??
|
|
194
|
+
// ?�▲??[Change] ?�▲??
|
|
195
195
|
|
|
196
196
|
const computedStyles = window.getComputedStyle(element);
|
|
197
197
|
const lineHeight = parseFloat(computedStyles.lineHeight || '24') || 24;
|
|
@@ -284,11 +284,11 @@
|
|
|
284
284
|
// Prevent default page-level DnD behavior
|
|
285
285
|
document.addEventListener('dragover', (e) => {
|
|
286
286
|
e.preventDefault();
|
|
287
|
-
// ?�▼??[Change] Remove/avoid stopPropagation (do not disrupt event flow) ?�▼??
|
|
287
|
+
// ?�▼??[Change] Remove/avoid stopPropagation (do not disrupt event flow) ?�▼??
|
|
288
288
|
// e.stopPropagation();
|
|
289
|
-
// ?�▲??[Change] ?�▲??
|
|
289
|
+
// ?�▲??[Change] ?�▲??
|
|
290
290
|
|
|
291
|
-
// ?�▼??[Change] Default is 'none', but only apply when not handled by children ?�▼??
|
|
291
|
+
// ?�▼??[Change] Default is 'none', but only apply when not handled by children ?�▼??
|
|
292
292
|
// (If MindMapDnD handles it, this code won't run or will be ignored)
|
|
293
293
|
// e.dataTransfer.dropEffect = 'none';
|
|
294
294
|
}, false);
|
|
@@ -428,7 +428,7 @@
|
|
|
428
428
|
window.__matchesMarketingToolHost(host, location.host || '')
|
|
429
429
|
);
|
|
430
430
|
</script>
|
|
431
|
-
<!-- ?�▼??[Upgrade] Three.js r168 via ESM ?�▼??-->
|
|
431
|
+
<!-- ?�▼??[Upgrade] Three.js r168 via ESM ?�▼??-->
|
|
432
432
|
<script type="importmap">
|
|
433
433
|
{
|
|
434
434
|
"imports": {
|
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
}
|
|
580
580
|
|
|
581
581
|
const base = '_content/MindExecution.Shared/js/';
|
|
582
|
-
const scriptVersion = '20260618-
|
|
582
|
+
const scriptVersion = '20260618-csv-border-v616-x1';
|
|
583
583
|
const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
|
|
584
584
|
console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
|
|
585
585
|
const criticalScripts = [
|
|
@@ -590,7 +590,7 @@
|
|
|
590
590
|
'background-themes.js',
|
|
591
591
|
'mind-map-logic-workers.js',
|
|
592
592
|
// Troika removed
|
|
593
|
-
'texture-worker-manager.js', // ??Web Worker ?�스�??�성
|
|
593
|
+
'texture-worker-manager.js', // ??Web Worker ?�스�??�성
|
|
594
594
|
'mind-map-texture-factory.js',
|
|
595
595
|
'mind-map-glow-shader.js', // ??SDF Glow (no textures, GPU only)
|
|
596
596
|
'mind-map-css3d-manager.js',
|
|
@@ -603,7 +603,7 @@
|
|
|
603
603
|
'mind-map-interactions.js',
|
|
604
604
|
'mind-map-dnd.js',
|
|
605
605
|
'mind-map-lod-renderer.js',
|
|
606
|
-
'mind-map-text-lod-system.js', // ??Text LOD ?�스??(?�적 ?�스�??�질)
|
|
606
|
+
'mind-map-text-lod-system.js', // ??Text LOD ?�스??(?�적 ?�스�??�질)
|
|
607
607
|
'mind-map-core.js',
|
|
608
608
|
'mindmap-toolbar.js',
|
|
609
609
|
'token-manager.js',
|
|
@@ -722,7 +722,7 @@
|
|
|
722
722
|
window.showBlazorBootError('The page could not finish loading. Reload and try again.');
|
|
723
723
|
});
|
|
724
724
|
</script>
|
|
725
|
-
<!-- ?�▲??[Upgrade] ?�▲??-->
|
|
725
|
+
<!-- ?�▲??[Upgrade] ?�▲??-->
|
|
726
726
|
</body>
|
|
727
727
|
|
|
728
728
|
</html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "OzJpaeUe",
|
|
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-fl/35unj7O08heeKVIJngY0k0M10A+RdeXCd0KVErto=",
|
|
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-vA0icWkELFeVXei/Mmeb4mzWWnd5bA8Inurvn8p50mI=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
"url": "_content/MindExecution.Shared/js/mind-map-text-lod-system.js"
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
|
-
"hash": "sha256-
|
|
157
|
+
"hash": "sha256-cBWMT7u9vUZ85762G4W5DNQvMpbE8QPoY3LuWMnYz8w=",
|
|
158
158
|
"url": "_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js"
|
|
159
159
|
},
|
|
160
160
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256-
|
|
837
|
+
"hash": "sha256-QAxOHJbMh0aQqXzdbc6IY2xYIlihNpzyTui727dKkEg=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|