@mindexec/cli 0.2.263 → 0.2.265
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/js/background-themes.js +34 -44
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +59 -19
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +4 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-interactions.js +5 -1
- package/wwwroot/index.html +3 -3
- package/wwwroot/service-worker-assets.js +6 -6
- package/wwwroot/service-worker.js +1 -1
package/package.json
CHANGED
|
@@ -217,9 +217,6 @@
|
|
|
217
217
|
}
|
|
218
218
|
|
|
219
219
|
function createAdaptiveXYGridOverlay(colorValue, options = {}) {
|
|
220
|
-
const overlayGroup = new THREE.Group();
|
|
221
|
-
const color = resolveThemeGridColor(colorValue, THEME_GRID_COLOR);
|
|
222
|
-
const tmp = new THREE.Vector3();
|
|
223
220
|
const settings = {
|
|
224
221
|
fineDistance: 45000,
|
|
225
222
|
coarseDistance: 120000,
|
|
@@ -234,14 +231,15 @@
|
|
|
234
231
|
};
|
|
235
232
|
|
|
236
233
|
if (settings.localCssOnly === true) {
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
overlayGroup.animate = () => { };
|
|
242
|
-
return setThemeAnimationMode(overlayGroup, THEME_ANIMATION_MODE.None);
|
|
234
|
+
return createLocalSnapGridTheme(null, {
|
|
235
|
+
themeAlias: settings.themeAlias || 'AdaptiveLocalSnapGrid',
|
|
236
|
+
localSnapGridStyle: settings.localSnapGridStyle || 'line'
|
|
237
|
+
});
|
|
243
238
|
}
|
|
244
239
|
|
|
240
|
+
const overlayGroup = new THREE.Group();
|
|
241
|
+
const color = resolveThemeGridColor(colorValue, THEME_GRID_COLOR);
|
|
242
|
+
const tmp = new THREE.Vector3();
|
|
245
243
|
const grids = [
|
|
246
244
|
{
|
|
247
245
|
key: 'fine',
|
|
@@ -296,6 +294,21 @@
|
|
|
296
294
|
return setThemeAnimationMode(overlayGroup, THEME_ANIMATION_MODE.Camera);
|
|
297
295
|
}
|
|
298
296
|
|
|
297
|
+
function createLocalSnapGridTheme(scene, options = {}) {
|
|
298
|
+
const themeGroup = new THREE.Group();
|
|
299
|
+
themeGroup.visible = false;
|
|
300
|
+
themeGroup.userData.lightweightAdaptiveGrid = true;
|
|
301
|
+
themeGroup.userData.localSnapGrid = true;
|
|
302
|
+
themeGroup.userData.localSnapGridStyle = options.localSnapGridStyle || 'line';
|
|
303
|
+
themeGroup.userData.localSnapGridRadiusPx = 500;
|
|
304
|
+
themeGroup.userData.themeAlias = options.themeAlias || 'LocalSnapGrid';
|
|
305
|
+
themeGroup.animate = () => { };
|
|
306
|
+
if (scene && options.backgroundColor !== undefined) {
|
|
307
|
+
scene.background = new THREE.Color(options.backgroundColor);
|
|
308
|
+
}
|
|
309
|
+
return setThemeAnimationMode(themeGroup, THEME_ANIMATION_MODE.None);
|
|
310
|
+
}
|
|
311
|
+
|
|
299
312
|
// --- Theme definitions ---
|
|
300
313
|
const themes = {
|
|
301
314
|
// Theme 1: SpatialGrid (3D dots + '+' markers)
|
|
@@ -330,37 +343,23 @@
|
|
|
330
343
|
// Theme 2: SpatialGrid2D (lightweight adaptive grid on the XY plane)
|
|
331
344
|
'SpatialGrid2D': {
|
|
332
345
|
create: (scene) => {
|
|
333
|
-
scene
|
|
334
|
-
|
|
335
|
-
localCssOnly: true,
|
|
346
|
+
return createLocalSnapGridTheme(scene, {
|
|
347
|
+
themeAlias: 'SpatialGrid2D',
|
|
336
348
|
localSnapGridStyle: 'dot',
|
|
337
|
-
|
|
338
|
-
coarseDistance: 120000,
|
|
339
|
-
farDistance: 320000,
|
|
340
|
-
fineSmallOpacity: 0.36,
|
|
341
|
-
fineLargeOpacity: 0.24,
|
|
342
|
-
coarseSmallOpacity: 0.3,
|
|
343
|
-
coarseLargeOpacity: 0.2,
|
|
344
|
-
farSmallOpacity: 0.24,
|
|
345
|
-
farLargeOpacity: 0.14
|
|
349
|
+
backgroundColor: THEME_SURFACE_BG
|
|
346
350
|
});
|
|
347
|
-
grid.userData.themeAlias = 'SpatialGrid2D';
|
|
348
|
-
grid.userData.lightweightAdaptiveGrid = true;
|
|
349
|
-
return grid;
|
|
350
351
|
},
|
|
351
352
|
dispose: (themeObject) => { disposeThemeObject(themeObject); }
|
|
352
353
|
},
|
|
353
|
-
|
|
354
|
+
|
|
354
355
|
// Theme 3: GridPlane (basic 2D grid - rendered by the local CSS snap grid)
|
|
355
356
|
'GridPlane': {
|
|
356
357
|
create: (scene) => {
|
|
357
|
-
scene
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
358
|
+
return createLocalSnapGridTheme(scene, {
|
|
359
|
+
themeAlias: 'GridPlane',
|
|
360
|
+
localSnapGridStyle: 'line',
|
|
361
|
+
backgroundColor: THEME_PLAIN_BG
|
|
361
362
|
});
|
|
362
|
-
grid.userData.themeAlias = 'GridPlane';
|
|
363
|
-
return grid;
|
|
364
363
|
},
|
|
365
364
|
dispose: (themeObject) => { disposeThemeObject(themeObject); }
|
|
366
365
|
},
|
|
@@ -485,22 +484,13 @@
|
|
|
485
484
|
}
|
|
486
485
|
},
|
|
487
486
|
|
|
488
|
-
// Theme 6: XYGrid (distance-based auto LOD grid)
|
|
487
|
+
// Theme 6: XYGrid (distance-based auto LOD grid)
|
|
489
488
|
'XYGrid': {
|
|
490
489
|
create: (scene) => {
|
|
491
|
-
scene
|
|
492
|
-
|
|
493
|
-
localCssOnly: true,
|
|
490
|
+
return createLocalSnapGridTheme(scene, {
|
|
491
|
+
themeAlias: 'XYGrid',
|
|
494
492
|
localSnapGridStyle: 'line',
|
|
495
|
-
|
|
496
|
-
coarseDistance: 120000,
|
|
497
|
-
farDistance: 320000,
|
|
498
|
-
fineSmallOpacity: 0.4,
|
|
499
|
-
fineLargeOpacity: 0.25,
|
|
500
|
-
coarseSmallOpacity: 0.34,
|
|
501
|
-
coarseLargeOpacity: 0.22,
|
|
502
|
-
farSmallOpacity: 0.26,
|
|
503
|
-
farLargeOpacity: 0.16
|
|
493
|
+
backgroundColor: THEME_PLAIN_BG
|
|
504
494
|
});
|
|
505
495
|
},
|
|
506
496
|
dispose: (themeObject) => { disposeThemeObject(themeObject); }
|
|
@@ -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 = '20260620-css3d-flat-wheel-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v713';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -1736,7 +1736,9 @@
|
|
|
1736
1736
|
}
|
|
1737
1737
|
}
|
|
1738
1738
|
|
|
1739
|
-
module.
|
|
1739
|
+
if (module._shouldTouchMotionGridLayerForCameraNavigation?.() === true) {
|
|
1740
|
+
module._syncMotionGridLayerForCameraNavigation?.(usedWebglCanvasCameraTransform);
|
|
1741
|
+
}
|
|
1740
1742
|
module._syncLocalSnapGridPositionOnly?.(true);
|
|
1741
1743
|
renderCss3dCameraForCameraNavigation(module, 'ua-ultra-camera-only');
|
|
1742
1744
|
|
|
@@ -1958,7 +1960,9 @@
|
|
|
1958
1960
|
}
|
|
1959
1961
|
}
|
|
1960
1962
|
|
|
1961
|
-
module.
|
|
1963
|
+
if (module._shouldTouchMotionGridLayerForCameraNavigation?.() === true) {
|
|
1964
|
+
module._syncMotionGridLayerForCameraNavigation?.(usedWebglCanvasCameraTransform);
|
|
1965
|
+
}
|
|
1962
1966
|
module._syncLocalSnapGridPositionOnly?.(true);
|
|
1963
1967
|
if (canRenderCss3dCamera === true) {
|
|
1964
1968
|
renderCss3dCameraForCameraNavigation(module, 'ua-ultra-resident-camera-only');
|
|
@@ -3905,6 +3909,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
3905
3909
|
this._lastLocalSnapGridTransformKey = '';
|
|
3906
3910
|
this._lastLocalSnapGridOpacity = '';
|
|
3907
3911
|
this._localSnapGridStyleDeferredForZoom = false;
|
|
3912
|
+
this._localSnapGridPointerWakeDeferredForZoom = false;
|
|
3908
3913
|
this._lastSnapGridClientX = null;
|
|
3909
3914
|
this._lastSnapGridClientY = null;
|
|
3910
3915
|
this._animationIdleTimerId = null;
|
|
@@ -4457,6 +4462,10 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4457
4462
|
}
|
|
4458
4463
|
|
|
4459
4464
|
_syncMotionGridLayerForCameraNavigation(usedWebglCanvasCameraTransform = false) {
|
|
4465
|
+
if (this._shouldTouchMotionGridLayerForCameraNavigation() !== true) {
|
|
4466
|
+
return false;
|
|
4467
|
+
}
|
|
4468
|
+
|
|
4460
4469
|
if (usedWebglCanvasCameraTransform === true ||
|
|
4461
4470
|
CAMERA_MOTION_GRID_FALLBACK_ENABLED !== true) {
|
|
4462
4471
|
if (this._motionGridVisible === true || this._motionGridLayer) {
|
|
@@ -4468,6 +4477,12 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4468
4477
|
return this._syncMotionGridLayer(true);
|
|
4469
4478
|
}
|
|
4470
4479
|
|
|
4480
|
+
_shouldTouchMotionGridLayerForCameraNavigation() {
|
|
4481
|
+
return CAMERA_MOTION_GRID_FALLBACK_ENABLED === true ||
|
|
4482
|
+
this._motionGridVisible === true ||
|
|
4483
|
+
!!this._motionGridLayer;
|
|
4484
|
+
}
|
|
4485
|
+
|
|
4471
4486
|
_installForceUpdateWakeHook() {
|
|
4472
4487
|
if (Object.getOwnPropertyDescriptor(this, '_forceUpdateFrames')?.get) {
|
|
4473
4488
|
return;
|
|
@@ -5516,7 +5531,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5516
5531
|
}
|
|
5517
5532
|
}
|
|
5518
5533
|
|
|
5519
|
-
this.
|
|
5534
|
+
if (this._shouldTouchMotionGridLayerForCameraNavigation?.() === true) {
|
|
5535
|
+
this._syncMotionGridLayerForCameraNavigation?.(usedWebglCanvasCameraTransform);
|
|
5536
|
+
}
|
|
5520
5537
|
this._syncLocalSnapGridPositionOnly?.(true);
|
|
5521
5538
|
if (canRenderCss3d === true) {
|
|
5522
5539
|
renderCss3dCameraForCameraNavigation(this, 'ua-wheel-zoom-direct');
|
|
@@ -6591,6 +6608,19 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6591
6608
|
updateCursorDomElement(this);
|
|
6592
6609
|
this._cursorDomDeferredForMotion = false;
|
|
6593
6610
|
}
|
|
6611
|
+
if (zoomEndedThisFrame === true) {
|
|
6612
|
+
const shouldReconcileLocalSnapGridAfterZoom = !!(
|
|
6613
|
+
this._isLocalSnapGridThemeEnabled?.() === true &&
|
|
6614
|
+
(
|
|
6615
|
+
this._localSnapGridStyleDeferredForZoom === true ||
|
|
6616
|
+
this._localSnapGridPointerWakeDeferredForZoom === true
|
|
6617
|
+
)
|
|
6618
|
+
);
|
|
6619
|
+
this._localSnapGridPointerWakeDeferredForZoom = false;
|
|
6620
|
+
if (shouldReconcileLocalSnapGridAfterZoom === true) {
|
|
6621
|
+
this._syncLocalSnapGridLayer(true);
|
|
6622
|
+
}
|
|
6623
|
+
}
|
|
6594
6624
|
if (cameraEndedThisFrame) {
|
|
6595
6625
|
this._cameraNavigationOverlayInputTime = 0;
|
|
6596
6626
|
this._overlayDirty = true;
|
|
@@ -6993,7 +7023,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6993
7023
|
}
|
|
6994
7024
|
}
|
|
6995
7025
|
}
|
|
6996
|
-
this.
|
|
7026
|
+
if (this._shouldTouchMotionGridLayerForCameraNavigation?.() === true) {
|
|
7027
|
+
this._syncMotionGridLayerForCameraNavigation(usedWebglCanvasCameraTransformImmediate);
|
|
7028
|
+
}
|
|
6997
7029
|
this._syncLocalSnapGridPositionOnly(true);
|
|
6998
7030
|
|
|
6999
7031
|
renderCss3dCameraForCameraNavigation(this, 'ua-visual-only-motion');
|
|
@@ -7169,7 +7201,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
7169
7201
|
}
|
|
7170
7202
|
}
|
|
7171
7203
|
}
|
|
7172
|
-
this.
|
|
7204
|
+
if (this._shouldTouchMotionGridLayerForCameraNavigation?.() === true) {
|
|
7205
|
+
this._syncMotionGridLayerForCameraNavigation(usedWebglCanvasCameraTransformStationary);
|
|
7206
|
+
}
|
|
7173
7207
|
this._syncLocalSnapGridPositionOnly(true);
|
|
7174
7208
|
if (this.cssRenderer && typeof this.cssRenderer.renderCamera === 'function') {
|
|
7175
7209
|
renderCss3dCameraForCameraNavigation(this, 'ua-stationary-visual-motion');
|
|
@@ -7614,7 +7648,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
7614
7648
|
}
|
|
7615
7649
|
}
|
|
7616
7650
|
|
|
7617
|
-
this.
|
|
7651
|
+
if (this._shouldTouchMotionGridLayerForCameraNavigation?.() === true) {
|
|
7652
|
+
this._syncMotionGridLayerForCameraNavigation(usedWebglCanvasCameraTransformEarly);
|
|
7653
|
+
}
|
|
7618
7654
|
renderCss3dCameraForCameraNavigation(this, 'ua-early-camera-only');
|
|
7619
7655
|
_profileSection('uaEarlyCameraOnly');
|
|
7620
7656
|
|
|
@@ -8495,7 +8531,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
8495
8531
|
}
|
|
8496
8532
|
if (shouldUseMotionGridThemeSubstitute === true &&
|
|
8497
8533
|
isCameraNavigationOnlyInteractiveFrame === true) {
|
|
8498
|
-
this.
|
|
8534
|
+
if (this._shouldTouchMotionGridLayerForCameraNavigation?.() === true) {
|
|
8535
|
+
this._syncMotionGridLayerForCameraNavigation(usedWebglCanvasCameraTransform);
|
|
8536
|
+
}
|
|
8499
8537
|
}
|
|
8500
8538
|
const shouldUseLocalSnapGridPositionOnly = !!(
|
|
8501
8539
|
isCameraNavigationOnlyInteractiveFrame === true &&
|
|
@@ -8546,7 +8584,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
8546
8584
|
}
|
|
8547
8585
|
_profileSection('css3dRender');
|
|
8548
8586
|
if (canUseCss3dCameraFastPath) {
|
|
8549
|
-
this.
|
|
8587
|
+
if (this._shouldTouchMotionGridLayerForCameraNavigation?.() === true) {
|
|
8588
|
+
this._syncMotionGridLayerForCameraNavigation(usedWebglCanvasCameraTransform);
|
|
8589
|
+
}
|
|
8550
8590
|
recordCameraMotionFastPathStatus(this, 'hit', 'css3d-camera-fast');
|
|
8551
8591
|
renderCss3dCameraForCameraNavigation(this, 'css3d-camera-fast');
|
|
8552
8592
|
}
|
|
@@ -8581,21 +8621,21 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
8581
8621
|
!visibilityChangedThisFrame &&
|
|
8582
8622
|
!lodVisualEpochChangedThisFrame
|
|
8583
8623
|
);
|
|
8624
|
+
const hasBusinessAutomationEdgeDirtyWork = !!(
|
|
8625
|
+
this._businessAutomationEdgesDirty === true ||
|
|
8626
|
+
this._businessAutomationConnectionDraftActive === true ||
|
|
8627
|
+
(this._businessAutomationEdgeRenderActive === true && !this._businessAutomationEdgeRenderState) ||
|
|
8628
|
+
isNodeInteracting === true ||
|
|
8629
|
+
hasNonCameraNavigationForcedUpdate === true ||
|
|
8630
|
+
visibilityChangedThisFrame === true ||
|
|
8631
|
+
lodVisualEpochChangedThisFrame === true
|
|
8632
|
+
);
|
|
8584
8633
|
const shouldSyncBusinessAutomationEdges =
|
|
8585
8634
|
hasBusinessAutomationEdgeLayer &&
|
|
8586
8635
|
window.MindMapCss3DManager?.renderBusinessAutomationEdges &&
|
|
8587
8636
|
shouldThrottleBusinessAutomationEdgesForCameraMotion !== true &&
|
|
8588
8637
|
shouldDeferBusinessAutomationEdgesForCameraMotion !== true &&
|
|
8589
|
-
|
|
8590
|
-
this._businessAutomationEdgeRenderActive === true ||
|
|
8591
|
-
this.isPanning === true ||
|
|
8592
|
-
this.isZooming === true ||
|
|
8593
|
-
isCameraMoving === true ||
|
|
8594
|
-
isNodeInteracting === true ||
|
|
8595
|
-
hasNonCameraNavigationForcedUpdate === true ||
|
|
8596
|
-
visibilityChangedThisFrame === true ||
|
|
8597
|
-
lodVisualEpochChangedThisFrame === true
|
|
8598
|
-
);
|
|
8638
|
+
hasBusinessAutomationEdgeDirtyWork === true;
|
|
8599
8639
|
if (shouldThrottleBusinessAutomationEdgesForCameraMotion === true ||
|
|
8600
8640
|
shouldDeferBusinessAutomationEdgesForCameraMotion === true) {
|
|
8601
8641
|
this._businessAutomationEdgesDeferredForMotion = true;
|
|
@@ -10644,6 +10644,7 @@
|
|
|
10644
10644
|
const hitLayer = module._businessAutomationEdgeLayer || (module._businessAutomationEdgeRenderActive ? ensureBusinessAutomationEdgeLayer(module) : null);
|
|
10645
10645
|
const visualLayer = module._businessAutomationEdgeVisualLayer || null;
|
|
10646
10646
|
if (!hitLayer || !visualLayer) {
|
|
10647
|
+
module._businessAutomationEdgesDirty = module._businessAutomationEdgeRenderActive === true;
|
|
10647
10648
|
return;
|
|
10648
10649
|
}
|
|
10649
10650
|
syncBusinessAutomationEdgeLayerOrder(module);
|
|
@@ -10669,6 +10670,7 @@
|
|
|
10669
10670
|
|
|
10670
10671
|
if (edges.length === 0 && !_businessAutomationConnectionDraft) {
|
|
10671
10672
|
setBusinessAutomationSvgElementsVisible([renderState.visualGroup, renderState.hitGroup], false);
|
|
10673
|
+
module._businessAutomationEdgesDirty = false;
|
|
10672
10674
|
return;
|
|
10673
10675
|
}
|
|
10674
10676
|
setBusinessAutomationSvgElementsVisible([renderState.visualGroup, renderState.hitGroup], true);
|
|
@@ -10791,6 +10793,7 @@
|
|
|
10791
10793
|
setBusinessAutomationSvgElementsVisible([renderState.draftPath, renderState.draftTarget], draftVisible);
|
|
10792
10794
|
|
|
10793
10795
|
applyBusinessAutomationResidentOcclusionMask(visualLayer, renderState.visualGroup, module, containerRect, width, height);
|
|
10796
|
+
module._businessAutomationEdgesDirty = false;
|
|
10794
10797
|
}
|
|
10795
10798
|
|
|
10796
10799
|
function hasBusinessAutomationConnectionDraft() {
|
|
@@ -10802,6 +10805,7 @@
|
|
|
10802
10805
|
return;
|
|
10803
10806
|
}
|
|
10804
10807
|
|
|
10808
|
+
module._businessAutomationEdgesDirty = true;
|
|
10805
10809
|
ensureBusinessAutomationEdgeLayer(module);
|
|
10806
10810
|
if (module._businessAutomationEdgeRenderFrame) {
|
|
10807
10811
|
return;
|
|
@@ -1464,7 +1464,11 @@ window.MindMapInteractions = (function () {
|
|
|
1464
1464
|
|
|
1465
1465
|
const localSnapGridMoved = module.setLocalSnapGridClientPoint?.(clientX, clientY) === true;
|
|
1466
1466
|
if (localSnapGridMoved && module._isLocalSnapGridThemeEnabled?.() === true) {
|
|
1467
|
-
module.
|
|
1467
|
+
if (module.isZooming === true) {
|
|
1468
|
+
module._localSnapGridPointerWakeDeferredForZoom = true;
|
|
1469
|
+
} else {
|
|
1470
|
+
module.requestAnimationWake?.('local-snap-grid-pointer');
|
|
1471
|
+
}
|
|
1468
1472
|
}
|
|
1469
1473
|
|
|
1470
1474
|
const metrics = getCachedViewportMetrics(module);
|
package/wwwroot/index.html
CHANGED
|
@@ -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=20260620-css3d-flat-wheel-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-css3d-flat-wheel-v713" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v713" />
|
|
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 = '20260620-css3d-flat-wheel-
|
|
582
|
+
const scriptVersion = '20260620-css3d-flat-wheel-v713';
|
|
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": "MBS0S+2Y",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"url": "_content/MindExecution.Shared/js/agent-visualization.js"
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
|
-
"hash": "sha256-
|
|
61
|
+
"hash": "sha256-7nukRRerm88Ot5J1KdJMyyTHP3d+zlvaPaECTGeJZAk=",
|
|
62
62
|
"url": "_content/MindExecution.Shared/js/background-themes.js"
|
|
63
63
|
},
|
|
64
64
|
{
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"url": "_content/MindExecution.Shared/js/marked.min.js"
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
|
-
"hash": "sha256-
|
|
81
|
+
"hash": "sha256-UZV57eO2HTY3IJAI3FP1lJivwtBJX86/rbBDK7N5m/I=",
|
|
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-fcU6DmUUw/iLoW3TWn1UKW9+2+Vfqa2O1QDRg9Az2JE=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"url": "_content/MindExecution.Shared/js/mind-map-glow-shader.js"
|
|
107
107
|
},
|
|
108
108
|
{
|
|
109
|
-
"hash": "sha256-
|
|
109
|
+
"hash": "sha256-TLgqElMhXUaNKNxPc2h8SJhr/YhkvBFS7U8kwf7AVZw=",
|
|
110
110
|
"url": "_content/MindExecution.Shared/js/mind-map-interactions.js"
|
|
111
111
|
},
|
|
112
112
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256-
|
|
837
|
+
"hash": "sha256-SGiYRwKQBPxBQiiAZmxk0pK3NXCKTCFrMwnjwg6fE7w=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|