@mindexec/cli 0.2.303 → 0.2.304
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 -7
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +62 -80
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-nodes.js +8 -2
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-pipeline.js +4 -1
- package/wwwroot/_content/MindExecution.Shared/js/renderers/CSS3DRenderer.js +2 -2
- package/wwwroot/index.html +4 -4
- package/wwwroot/service-worker-assets.js +9 -9
- package/wwwroot/service-worker.js +1 -1
package/package.json
CHANGED
|
@@ -86,11 +86,11 @@ body.mind-map-scroll-locked {
|
|
|
86
86
|
.map-node-note,
|
|
87
87
|
.map-node-memo,
|
|
88
88
|
.map-node-code {
|
|
89
|
-
-webkit-backface-visibility:
|
|
90
|
-
backface-visibility:
|
|
89
|
+
-webkit-backface-visibility: visible;
|
|
90
|
+
backface-visibility: visible;
|
|
91
91
|
/* 텍스트 렌더링 품질 */
|
|
92
|
-
-webkit-font-smoothing:
|
|
93
|
-
-moz-osx-font-smoothing:
|
|
92
|
+
-webkit-font-smoothing: auto;
|
|
93
|
+
-moz-osx-font-smoothing: auto;
|
|
94
94
|
/* 서브픽셀 정렬로 흐림 방지 */
|
|
95
95
|
}
|
|
96
96
|
|
|
@@ -104,7 +104,8 @@ body.mind-map-scroll-locked {
|
|
|
104
104
|
contain: layout style !important;
|
|
105
105
|
content-visibility: visible !important;
|
|
106
106
|
contain-intrinsic-size: auto !important;
|
|
107
|
-
transform:
|
|
107
|
+
transform: none !important;
|
|
108
|
+
zoom: var(--css3d-node-resolution-zoom, 1) !important;
|
|
108
109
|
will-change: auto !important;
|
|
109
110
|
-webkit-backface-visibility: visible !important;
|
|
110
111
|
backface-visibility: visible !important;
|
|
@@ -1437,8 +1438,8 @@ html.mindcanvas-platform-apple .css3d-resolution-wrapper.is-automation-relation-
|
|
|
1437
1438
|
box-sizing: border-box;
|
|
1438
1439
|
pointer-events: auto;
|
|
1439
1440
|
transform-origin: 0 0;
|
|
1440
|
-
-webkit-font-smoothing:
|
|
1441
|
-
-moz-osx-font-smoothing:
|
|
1441
|
+
-webkit-font-smoothing: auto;
|
|
1442
|
+
-moz-osx-font-smoothing: auto;
|
|
1442
1443
|
text-rendering: auto;
|
|
1443
1444
|
contain: layout style paint;
|
|
1444
1445
|
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
const DEBUG = false;
|
|
6
6
|
const FPS_DEBUG = false;
|
|
7
7
|
const FRAME_PERF_DEBUG = false;
|
|
8
|
-
const MINDMAP_CORE_BUILD_ID = '20260621-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260621-aliasing-layout-v766';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -68,6 +68,33 @@
|
|
|
68
68
|
return CSS3D_TEXT_NODE_RESOLUTION_SCALE;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
+
function getCss3dResolutionZoomValue(resolutionScale) {
|
|
72
|
+
const scale = Math.max(1, Number(resolutionScale || 1));
|
|
73
|
+
return Number.isFinite(scale) ? String(scale) : '1';
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
function applyCss3dResolutionLayout(element, worldWidth, worldHeight, resolutionScale, options = {}) {
|
|
77
|
+
if (!element?.style) return;
|
|
78
|
+
|
|
79
|
+
const width = Math.max(1, Math.round(Number(worldWidth || 1)));
|
|
80
|
+
const height = Math.max(1, Math.round(Number(worldHeight || 1)));
|
|
81
|
+
const zoom = getCss3dResolutionZoomValue(resolutionScale);
|
|
82
|
+
element.style.width = `${width}px`;
|
|
83
|
+
element.style.height = `${height}px`;
|
|
84
|
+
element.style.minWidth = `${width}px`;
|
|
85
|
+
element.style.minHeight = `${height}px`;
|
|
86
|
+
element.style.maxWidth = `${width}px`;
|
|
87
|
+
element.style.maxHeight = `${height}px`;
|
|
88
|
+
element.style.transform = 'none';
|
|
89
|
+
element.style.transformOrigin = '0 0';
|
|
90
|
+
element.style.removeProperty('--css3d-node-resolution-transform');
|
|
91
|
+
element.style.setProperty('--css3d-node-resolution-zoom', zoom);
|
|
92
|
+
element.style.setProperty('zoom', zoom);
|
|
93
|
+
if (options.resetLayoutTransform === true) {
|
|
94
|
+
element.style.webkitTransform = 'none';
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
71
98
|
function detectCsvDelimiter(csvText) {
|
|
72
99
|
const text = String(csvText || '');
|
|
73
100
|
const candidates = [',', '\t', ';', '|'];
|
|
@@ -341,8 +368,8 @@
|
|
|
341
368
|
line-height: var(--mind-map-editable-line-height);
|
|
342
369
|
font-weight: 400;
|
|
343
370
|
letter-spacing: normal;
|
|
344
|
-
-webkit-font-smoothing:
|
|
345
|
-
-moz-osx-font-smoothing:
|
|
371
|
+
-webkit-font-smoothing: auto;
|
|
372
|
+
-moz-osx-font-smoothing: auto;
|
|
346
373
|
text-rendering: auto;
|
|
347
374
|
}
|
|
348
375
|
.markdown-body h1 { font-size: 1.8em; font-weight: bold; margin-top: 1em; margin-bottom: 0.5em; border-bottom: 1px solid #eaecef; padding-bottom: 0.3em; }
|
|
@@ -717,11 +744,11 @@
|
|
|
717
744
|
.css3d-dynamic-node,
|
|
718
745
|
[id^="css3d-node-"],
|
|
719
746
|
.map-node {
|
|
720
|
-
-webkit-font-smoothing:
|
|
721
|
-
-moz-osx-font-smoothing:
|
|
747
|
+
-webkit-font-smoothing: auto !important;
|
|
748
|
+
-moz-osx-font-smoothing: auto !important;
|
|
722
749
|
text-rendering: auto !important;
|
|
723
|
-
backface-visibility:
|
|
724
|
-
-webkit-backface-visibility:
|
|
750
|
+
backface-visibility: visible !important;
|
|
751
|
+
-webkit-backface-visibility: visible !important;
|
|
725
752
|
transition: none !important;
|
|
726
753
|
-webkit-transition: none !important;
|
|
727
754
|
will-change: auto !important;
|
|
@@ -1034,11 +1061,11 @@
|
|
|
1034
1061
|
pointer-events: none;
|
|
1035
1062
|
overflow: visible;
|
|
1036
1063
|
transform-origin: 0 0;
|
|
1037
|
-
-webkit-font-smoothing:
|
|
1038
|
-
-moz-osx-font-smoothing:
|
|
1064
|
+
-webkit-font-smoothing: auto;
|
|
1065
|
+
-moz-osx-font-smoothing: auto;
|
|
1039
1066
|
text-rendering: auto;
|
|
1040
|
-
backface-visibility:
|
|
1041
|
-
-webkit-backface-visibility:
|
|
1067
|
+
backface-visibility: visible;
|
|
1068
|
+
-webkit-backface-visibility: visible;
|
|
1042
1069
|
}
|
|
1043
1070
|
|
|
1044
1071
|
.mind-map-text-overlay.mind-map-text-overlay-selectable {
|
|
@@ -1093,11 +1120,11 @@
|
|
|
1093
1120
|
pointer-events: auto;
|
|
1094
1121
|
overflow: visible;
|
|
1095
1122
|
transform-origin: 0 0;
|
|
1096
|
-
-webkit-font-smoothing:
|
|
1097
|
-
-moz-osx-font-smoothing:
|
|
1123
|
+
-webkit-font-smoothing: auto;
|
|
1124
|
+
-moz-osx-font-smoothing: auto;
|
|
1098
1125
|
text-rendering: auto;
|
|
1099
|
-
backface-visibility:
|
|
1100
|
-
-webkit-backface-visibility:
|
|
1126
|
+
backface-visibility: visible;
|
|
1127
|
+
-webkit-backface-visibility: visible;
|
|
1101
1128
|
}
|
|
1102
1129
|
|
|
1103
1130
|
.mind-map-edit-overlay-card {
|
|
@@ -1824,7 +1851,7 @@
|
|
|
1824
1851
|
|| wrapper.classList?.contains?.('node-type-csv-table')
|
|
1825
1852
|
);
|
|
1826
1853
|
|
|
1827
|
-
const resolutionScale = Math.max(1, Number(cssObject?.userData?.resolutionScale ||
|
|
1854
|
+
const resolutionScale = Math.max(1, Number(cssObject?.userData?.resolutionScale || 1));
|
|
1828
1855
|
const worldWidth = Math.max(1, Math.round(Number(width || 1)));
|
|
1829
1856
|
const worldHeight = Math.max(1, Math.round(Number(height || 1)));
|
|
1830
1857
|
const scaledWidth = worldWidth * resolutionScale;
|
|
@@ -1856,14 +1883,9 @@
|
|
|
1856
1883
|
|
|
1857
1884
|
const inner = wrapper.firstElementChild;
|
|
1858
1885
|
if (inner?.style) {
|
|
1859
|
-
inner
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
inner.style.minHeight = `${worldHeight}px`;
|
|
1863
|
-
inner.style.maxWidth = `${worldWidth}px`;
|
|
1864
|
-
inner.style.maxHeight = `${worldHeight}px`;
|
|
1865
|
-
inner.style.transform = `scale(${resolutionScale})`;
|
|
1866
|
-
inner.style.transformOrigin = '0 0';
|
|
1886
|
+
applyCss3dResolutionLayout(inner, worldWidth, worldHeight, resolutionScale, {
|
|
1887
|
+
resetLayoutTransform: true
|
|
1888
|
+
});
|
|
1867
1889
|
inner.style.overflow = hasContextSourcePins ? 'visible' : 'hidden';
|
|
1868
1890
|
if (hasContextSourcePins) {
|
|
1869
1891
|
inner.style.contain = 'layout style';
|
|
@@ -2165,7 +2187,7 @@
|
|
|
2165
2187
|
}
|
|
2166
2188
|
|
|
2167
2189
|
function resolveCss3dMediaFrameSize(nodeModel, cssObject, options = {}) {
|
|
2168
|
-
const resolutionScale = Math.max(1, Number(cssObject?.userData?.resolutionScale ||
|
|
2190
|
+
const resolutionScale = Math.max(1, Number(cssObject?.userData?.resolutionScale || 1));
|
|
2169
2191
|
const wrapper = cssObject?.element || null;
|
|
2170
2192
|
const inner = wrapper?.firstElementChild || null;
|
|
2171
2193
|
const nodeId = getNodeId(nodeModel);
|
|
@@ -5735,7 +5757,7 @@
|
|
|
5735
5757
|
caret-color: #1f2937;
|
|
5736
5758
|
box-sizing: border-box;
|
|
5737
5759
|
overflow-y: auto;
|
|
5738
|
-
-webkit-font-smoothing:
|
|
5760
|
+
-webkit-font-smoothing: auto;
|
|
5739
5761
|
text-rendering: auto;
|
|
5740
5762
|
white-space: pre-wrap;
|
|
5741
5763
|
overflow-wrap: break-word;
|
|
@@ -20124,7 +20146,7 @@
|
|
|
20124
20146
|
overflow-y: auto;
|
|
20125
20147
|
white-space: pre-wrap;
|
|
20126
20148
|
overflow-wrap: break-word;
|
|
20127
|
-
-webkit-font-smoothing:
|
|
20149
|
+
-webkit-font-smoothing: auto;
|
|
20128
20150
|
text-rendering: auto;
|
|
20129
20151
|
`;
|
|
20130
20152
|
|
|
@@ -22892,12 +22914,9 @@
|
|
|
22892
22914
|
|
|
22893
22915
|
// ▼▼▼ [Clarity] Scale factor for high-resolution rendering ▼▼▼
|
|
22894
22916
|
const resolutionScale = getCss3dNodeResolutionScale(contentTypeLower);
|
|
22895
|
-
clonedElement
|
|
22896
|
-
|
|
22897
|
-
|
|
22898
|
-
clonedElement.style.minHeight = `${height}px`;
|
|
22899
|
-
clonedElement.style.maxWidth = `${width}px`;
|
|
22900
|
-
clonedElement.style.maxHeight = `${height}px`;
|
|
22917
|
+
applyCss3dResolutionLayout(clonedElement, width, height, resolutionScale, {
|
|
22918
|
+
resetLayoutTransform: true
|
|
22919
|
+
});
|
|
22901
22920
|
clonedElement.style.borderRadius = '0px';
|
|
22902
22921
|
|
|
22903
22922
|
// ▼▼▼ [Changed] Remove offset to match WebGL positioning (top-left origin) ▼▼▼
|
|
@@ -22909,17 +22928,13 @@
|
|
|
22909
22928
|
clonedElement.style.top = '0px';
|
|
22910
22929
|
// ▲▲▲ [Changed] ▲▲▲
|
|
22911
22930
|
|
|
22912
|
-
const innerResolutionTransform = resolutionScale === 1 ? 'none' : `scale(${resolutionScale})`;
|
|
22913
|
-
clonedElement.style.transform = innerResolutionTransform;
|
|
22914
|
-
clonedElement.style.setProperty('--css3d-node-resolution-transform', innerResolutionTransform);
|
|
22915
|
-
clonedElement.style.transformOrigin = '0 0'; // Scale from top-left
|
|
22916
22931
|
clonedElement.style.transition = 'none';
|
|
22917
22932
|
clonedElement.style.webkitTransition = 'none';
|
|
22918
22933
|
|
|
22919
22934
|
// ▼▼▼ [Perf] GPU acceleration for smooth zoom/pan ▼▼▼
|
|
22920
22935
|
// 초기에는 꺼둠 (auto). 카메라 이동 시 mind-map-core.js가 setWillChange(true) 호출
|
|
22921
22936
|
clonedElement.style.willChange = 'auto'; // 'transform';
|
|
22922
|
-
clonedElement.style.backfaceVisibility =
|
|
22937
|
+
clonedElement.style.backfaceVisibility = 'visible';
|
|
22923
22938
|
// ▲▲▲ [Perf] ▲▲▲
|
|
22924
22939
|
|
|
22925
22940
|
const wrapper = document.createElement('div');
|
|
@@ -22951,7 +22966,7 @@
|
|
|
22951
22966
|
|
|
22952
22967
|
// ▼▼▼ [Perf] GPU acceleration for smooth zoom/pan ▼▼▼
|
|
22953
22968
|
wrapper.style.willChange = 'auto'; // 'transform';
|
|
22954
|
-
wrapper.style.backfaceVisibility =
|
|
22969
|
+
wrapper.style.backfaceVisibility = 'visible';
|
|
22955
22970
|
wrapper.style.transformStyle = isMediaNode ? 'flat' : '';
|
|
22956
22971
|
// ▲▲▲ [Perf] ▲▲▲
|
|
22957
22972
|
|
|
@@ -23140,32 +23155,9 @@
|
|
|
23140
23155
|
}
|
|
23141
23156
|
const inner = el.firstElementChild;
|
|
23142
23157
|
if (inner) {
|
|
23143
|
-
|
|
23144
|
-
|
|
23145
|
-
|
|
23146
|
-
}
|
|
23147
|
-
if (inner.style.height !== `${worldHeight}px`) {
|
|
23148
|
-
inner.style.height = `${worldHeight}px`;
|
|
23149
|
-
}
|
|
23150
|
-
if (inner.style.minWidth !== `${worldWidth}px`) {
|
|
23151
|
-
inner.style.minWidth = `${worldWidth}px`;
|
|
23152
|
-
}
|
|
23153
|
-
if (inner.style.minHeight !== `${worldHeight}px`) {
|
|
23154
|
-
inner.style.minHeight = `${worldHeight}px`;
|
|
23155
|
-
}
|
|
23156
|
-
if (inner.style.maxWidth !== `${worldWidth}px`) {
|
|
23157
|
-
inner.style.maxWidth = `${worldWidth}px`;
|
|
23158
|
-
}
|
|
23159
|
-
if (inner.style.maxHeight !== `${worldHeight}px`) {
|
|
23160
|
-
inner.style.maxHeight = `${worldHeight}px`;
|
|
23161
|
-
}
|
|
23162
|
-
if (inner.style.transform !== innerResolutionTransform) {
|
|
23163
|
-
inner.style.transform = innerResolutionTransform;
|
|
23164
|
-
inner.style.transformOrigin = '0 0';
|
|
23165
|
-
}
|
|
23166
|
-
if (inner.style.getPropertyValue('--css3d-node-resolution-transform') !== innerResolutionTransform) {
|
|
23167
|
-
inner.style.setProperty('--css3d-node-resolution-transform', innerResolutionTransform);
|
|
23168
|
-
}
|
|
23158
|
+
applyCss3dResolutionLayout(inner, worldWidth, worldHeight, resolutionScale, {
|
|
23159
|
+
resetLayoutTransform: true
|
|
23160
|
+
});
|
|
23169
23161
|
}
|
|
23170
23162
|
}
|
|
23171
23163
|
|
|
@@ -23241,14 +23233,9 @@
|
|
|
23241
23233
|
card.dataset.nodeId = nodeId;
|
|
23242
23234
|
card.dataset.semanticType = getNodeSemanticType(nodeModel);
|
|
23243
23235
|
card.classList.toggle('map-node-remote-device', isRemoteFleetDeviceNode(nodeModel));
|
|
23244
|
-
card
|
|
23245
|
-
|
|
23246
|
-
|
|
23247
|
-
card.style.minHeight = `${worldHeight}px`;
|
|
23248
|
-
card.style.maxWidth = `${worldWidth}px`;
|
|
23249
|
-
card.style.maxHeight = `${worldHeight}px`;
|
|
23250
|
-
card.style.transform = `scale(${resolutionScale})`;
|
|
23251
|
-
card.style.transformOrigin = '0 0';
|
|
23236
|
+
applyCss3dResolutionLayout(card, worldWidth, worldHeight, resolutionScale, {
|
|
23237
|
+
resetLayoutTransform: true
|
|
23238
|
+
});
|
|
23252
23239
|
ensureRemoteFleetResizeHandles(card, nodeModel);
|
|
23253
23240
|
|
|
23254
23241
|
const titleEl = card.querySelector('.template-card__title');
|
|
@@ -23281,14 +23268,9 @@
|
|
|
23281
23268
|
card.style.position = 'absolute';
|
|
23282
23269
|
card.style.left = '0px';
|
|
23283
23270
|
card.style.top = '0px';
|
|
23284
|
-
card
|
|
23285
|
-
|
|
23286
|
-
|
|
23287
|
-
card.style.minHeight = `${worldHeight}px`;
|
|
23288
|
-
card.style.maxWidth = `${worldWidth}px`;
|
|
23289
|
-
card.style.maxHeight = `${worldHeight}px`;
|
|
23290
|
-
card.style.transform = `scale(${resolutionScale})`;
|
|
23291
|
-
card.style.transformOrigin = '0 0';
|
|
23271
|
+
applyCss3dResolutionLayout(card, worldWidth, worldHeight, resolutionScale, {
|
|
23272
|
+
resetLayoutTransform: true
|
|
23273
|
+
});
|
|
23292
23274
|
card.style.transition = 'none';
|
|
23293
23275
|
card.style.webkitTransition = 'none';
|
|
23294
23276
|
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
// ▲▲▲ [Usage] ▲▲▲
|
|
52
52
|
|
|
53
53
|
// Procedural line rendering settings
|
|
54
|
-
const LOD_RENDERER_BUILD_ID = '20260621-
|
|
54
|
+
const LOD_RENDERER_BUILD_ID = '20260621-aliasing-layout-v766';
|
|
55
55
|
const DirtyKind = Object.freeze({
|
|
56
56
|
ResidentFullRebuild: 'resident-full-rebuild',
|
|
57
57
|
ResidentPatch: 'resident-patch',
|
|
@@ -1494,8 +1494,11 @@
|
|
|
1494
1494
|
inner.style.minHeight = `${height}px`;
|
|
1495
1495
|
inner.style.maxWidth = `${width}px`;
|
|
1496
1496
|
inner.style.maxHeight = `${height}px`;
|
|
1497
|
-
inner.style.transform =
|
|
1497
|
+
inner.style.transform = 'none';
|
|
1498
1498
|
inner.style.transformOrigin = '0 0';
|
|
1499
|
+
inner.style.removeProperty('--css3d-node-resolution-transform');
|
|
1500
|
+
inner.style.setProperty('--css3d-node-resolution-zoom', String(Math.max(1, Number(resolutionScale || 1))));
|
|
1501
|
+
inner.style.setProperty('zoom', String(Math.max(1, Number(resolutionScale || 1))));
|
|
1499
1502
|
inner.style.overflow = 'hidden';
|
|
1500
1503
|
}
|
|
1501
1504
|
if (module && nodeId) {
|
|
@@ -4012,8 +4015,11 @@
|
|
|
4012
4015
|
if (innerContent) {
|
|
4013
4016
|
innerContent.style.width = `${modelWidth}px`;
|
|
4014
4017
|
innerContent.style.height = `${modelHeight}px`;
|
|
4015
|
-
innerContent.style.transform =
|
|
4018
|
+
innerContent.style.transform = 'none';
|
|
4016
4019
|
innerContent.style.transformOrigin = '0 0';
|
|
4020
|
+
innerContent.style.removeProperty('--css3d-node-resolution-transform');
|
|
4021
|
+
innerContent.style.setProperty('--css3d-node-resolution-zoom', String(Math.max(1, Number(resolutionScale || 1))));
|
|
4022
|
+
innerContent.style.setProperty('zoom', String(Math.max(1, Number(resolutionScale || 1))));
|
|
4017
4023
|
}
|
|
4018
4024
|
|
|
4019
4025
|
// Update textarea size as well
|
|
@@ -587,8 +587,11 @@
|
|
|
587
587
|
inner.style.minHeight = h + 'px';
|
|
588
588
|
inner.style.maxWidth = w + 'px';
|
|
589
589
|
inner.style.maxHeight = h + 'px';
|
|
590
|
-
inner.style.transform =
|
|
590
|
+
inner.style.transform = 'none';
|
|
591
591
|
inner.style.transformOrigin = '0 0';
|
|
592
|
+
inner.style.removeProperty('--css3d-node-resolution-transform');
|
|
593
|
+
inner.style.setProperty('--css3d-node-resolution-zoom', String(Math.max(1, Number(resolutionScale || 1))));
|
|
594
|
+
inner.style.setProperty('zoom', String(Math.max(1, Number(resolutionScale || 1))));
|
|
592
595
|
}
|
|
593
596
|
const textarea = wrapper.querySelector('textarea');
|
|
594
597
|
if (textarea) {
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
|
|
33
33
|
function CSS3DRenderer(){
|
|
34
34
|
var _width, _height; var _widthHalf, _heightHalf; var cache = { camera:{ fov:0, style:'', mode:'matrix3d' }, objects: new WeakMap() };
|
|
35
|
-
var domElement = document.createElement('div'); domElement.style.overflow = 'hidden'; domElement.style.contain = 'layout style'; domElement.style.willChange = 'transform'; domElement.style.webkitTransition = domElement.style.transition = 'none'; domElement.style.webkitBackfaceVisibility = domElement.style.backfaceVisibility = '
|
|
36
|
-
var cameraElement = document.createElement('div'); cameraElement.style.webkitTransformStyle = cameraElement.style.transformStyle = 'preserve-3d'; cameraElement.style.pointerEvents = 'none'; cameraElement.style.webkitTransformOrigin = cameraElement.style.transformOrigin = '0 0'; cameraElement.style.contain = 'layout style'; cameraElement.style.willChange = 'transform'; cameraElement.style.webkitTransition = cameraElement.style.transition = 'none'; cameraElement.style.webkitBackfaceVisibility = cameraElement.style.backfaceVisibility = '
|
|
35
|
+
var domElement = document.createElement('div'); domElement.style.overflow = 'hidden'; domElement.style.contain = 'layout style'; domElement.style.willChange = 'transform'; domElement.style.webkitTransition = domElement.style.transition = 'none'; domElement.style.webkitBackfaceVisibility = domElement.style.backfaceVisibility = 'visible'; this.domElement = domElement;
|
|
36
|
+
var cameraElement = document.createElement('div'); cameraElement.style.webkitTransformStyle = cameraElement.style.transformStyle = 'preserve-3d'; cameraElement.style.pointerEvents = 'none'; cameraElement.style.webkitTransformOrigin = cameraElement.style.transformOrigin = '0 0'; cameraElement.style.contain = 'layout style'; cameraElement.style.willChange = 'transform'; cameraElement.style.webkitTransition = cameraElement.style.transition = 'none'; cameraElement.style.webkitBackfaceVisibility = cameraElement.style.backfaceVisibility = 'visible'; domElement.appendChild(cameraElement);
|
|
37
37
|
|
|
38
38
|
this.getSize = function(){ return { width:_width, height:_height }; };
|
|
39
39
|
this.getCameraElement = function(){ return cameraElement; };
|
package/wwwroot/index.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
<!DOCTYPE html>
|
|
2
2
|
<html lang="en">
|
|
3
3
|
|
|
4
4
|
<head>
|
|
@@ -7,8 +7,8 @@
|
|
|
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=20260621-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260621-aliasing-layout-v766" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-aliasing-layout-v766" />
|
|
12
12
|
<!-- ?占썩뼹??Font Awesome (local) ?占썩뼹??-->
|
|
13
13
|
<link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
|
|
14
14
|
<!-- ?占썩뼯??-->
|
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
}
|
|
580
580
|
|
|
581
581
|
const base = '_content/MindExecution.Shared/js/';
|
|
582
|
-
const scriptVersion = '20260621-
|
|
582
|
+
const scriptVersion = '20260621-aliasing-layout-v766';
|
|
583
583
|
const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
|
|
584
584
|
console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
|
|
585
585
|
const criticalScripts = [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "N53YJ8Yh",
|
|
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-7nQpXb37sKR3RZmQKw2aOgyHiJhZIeD0ZjND2r6kPQA=",
|
|
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-SuW+Wqw+HzCW/GWoxGRLx+ExoVYPMbYvgFFi15o3syU=",
|
|
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-cCb/rrdw5jFO6rSX9zc3RyarGgzXTMcyAzMkhhMTBMY=",
|
|
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-4b21K9ePzG8aImBHhM2EK22e94BYgAb9TQRn9tBGHdU=",
|
|
118
118
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
"url": "_content/MindExecution.Shared/js/mind-map-node-search-worker.js"
|
|
135
135
|
},
|
|
136
136
|
{
|
|
137
|
-
"hash": "sha256-
|
|
137
|
+
"hash": "sha256-ILZvVKP1KjScKg2EAmPNokKNrZCv8do4XE3r1piy988=",
|
|
138
138
|
"url": "_content/MindExecution.Shared/js/mind-map-nodes.js"
|
|
139
139
|
},
|
|
140
140
|
{
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
"url": "_content/MindExecution.Shared/js/mind-map-object-manager.js.backup"
|
|
147
147
|
},
|
|
148
148
|
{
|
|
149
|
-
"hash": "sha256-
|
|
149
|
+
"hash": "sha256-QvC3R24/3hjEyEkuxhKD2yA47gscsPoysFuaQJ6hhLQ=",
|
|
150
150
|
"url": "_content/MindExecution.Shared/js/mind-map-pipeline.js"
|
|
151
151
|
},
|
|
152
152
|
{
|
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
"url": "_content/MindExecution.Shared/js/plan-master.js"
|
|
183
183
|
},
|
|
184
184
|
{
|
|
185
|
-
"hash": "sha256-
|
|
185
|
+
"hash": "sha256-sw+qo4BCCICzNh4RmibnAFQaeNcZ0njo6b1VwFAzKdo=",
|
|
186
186
|
"url": "_content/MindExecution.Shared/js/renderers/CSS3DRenderer.js"
|
|
187
187
|
},
|
|
188
188
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256-
|
|
837
|
+
"hash": "sha256-xATXYssdORHOzOqG2u2kEJPorXqQG0S6JCp4UkWdOFM=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|