@mindexec/cli 0.2.241 → 0.2.242
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
CHANGED
|
@@ -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-
|
|
8
|
+
const MINDMAP_CORE_BUILD_ID = '20260620-defer-css-transform-dirty-v689';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -1267,8 +1267,8 @@
|
|
|
1267
1267
|
if (context.hasEditingTextOverlayFocus === true) {
|
|
1268
1268
|
return 'editing-text-overlay';
|
|
1269
1269
|
}
|
|
1270
|
-
if (context.
|
|
1271
|
-
return 'css3d-
|
|
1270
|
+
if (context.hasPendingCss3dParentRepair === true) {
|
|
1271
|
+
return 'css3d-parent-repair';
|
|
1272
1272
|
}
|
|
1273
1273
|
if (context.isBoardLoading === true) {
|
|
1274
1274
|
return 'board-loading';
|
|
@@ -1384,13 +1384,13 @@
|
|
|
1384
1384
|
return false;
|
|
1385
1385
|
}
|
|
1386
1386
|
|
|
1387
|
-
const
|
|
1388
|
-
|
|
1389
|
-
module._cssParentRepairNeeded === true
|
|
1390
|
-
);
|
|
1391
|
-
if (hasPendingCss3dStructuralTransformWork) {
|
|
1387
|
+
const hasPendingCss3dParentRepair = module._cssParentRepairNeeded === true;
|
|
1388
|
+
if (hasPendingCss3dParentRepair) {
|
|
1392
1389
|
return false;
|
|
1393
1390
|
}
|
|
1391
|
+
if ((module._cssTransformDirtyIds?.size || 0) > 0) {
|
|
1392
|
+
module._css3dVisualDeferredForMotion = true;
|
|
1393
|
+
}
|
|
1394
1394
|
|
|
1395
1395
|
if (module._css3dVisualChangedThisFrame === true ||
|
|
1396
1396
|
module._css3dVisualChangedSinceLastRender === true) {
|
|
@@ -1545,13 +1545,13 @@
|
|
|
1545
1545
|
return false;
|
|
1546
1546
|
}
|
|
1547
1547
|
|
|
1548
|
-
const
|
|
1549
|
-
|
|
1550
|
-
module._cssParentRepairNeeded === true
|
|
1551
|
-
);
|
|
1552
|
-
if (hasPendingCss3dStructuralTransformWork) {
|
|
1548
|
+
const hasPendingCss3dParentRepair = module._cssParentRepairNeeded === true;
|
|
1549
|
+
if (hasPendingCss3dParentRepair) {
|
|
1553
1550
|
return false;
|
|
1554
1551
|
}
|
|
1552
|
+
if ((module._cssTransformDirtyIds?.size || 0) > 0) {
|
|
1553
|
+
module._css3dVisualDeferredForMotion = true;
|
|
1554
|
+
}
|
|
1555
1555
|
|
|
1556
1556
|
const hasPendingCss3dVisualWork = !!(
|
|
1557
1557
|
module._css3dVisualChangedThisFrame === true ||
|
|
@@ -1767,13 +1767,13 @@
|
|
|
1767
1767
|
return false;
|
|
1768
1768
|
}
|
|
1769
1769
|
|
|
1770
|
-
const
|
|
1771
|
-
|
|
1772
|
-
module._cssParentRepairNeeded === true
|
|
1773
|
-
);
|
|
1774
|
-
if (hasPendingCss3dStructuralTransformWork) {
|
|
1770
|
+
const hasPendingCss3dParentRepair = module._cssParentRepairNeeded === true;
|
|
1771
|
+
if (hasPendingCss3dParentRepair) {
|
|
1775
1772
|
return false;
|
|
1776
1773
|
}
|
|
1774
|
+
if ((module._cssTransformDirtyIds?.size || 0) > 0) {
|
|
1775
|
+
module._css3dVisualDeferredForMotion = true;
|
|
1776
|
+
}
|
|
1777
1777
|
|
|
1778
1778
|
const hasPendingCss3dVisualWork = !!(
|
|
1779
1779
|
module._css3dVisualChangedThisFrame === true ||
|
|
@@ -6395,10 +6395,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6395
6395
|
String(this._textOverlayV2State?.editing?.nodeId || '').trim() ||
|
|
6396
6396
|
String(this._editingOverlayState?.nodeId || '').trim()
|
|
6397
6397
|
);
|
|
6398
|
-
const
|
|
6399
|
-
|
|
6400
|
-
this._cssParentRepairNeeded === true
|
|
6401
|
-
);
|
|
6398
|
+
const hasPendingCss3dParentRepair = this._cssParentRepairNeeded === true;
|
|
6399
|
+
const hasPendingCss3dTransformDirtyIds = (this._cssTransformDirtyIds?.size || 0) > 0;
|
|
6402
6400
|
const hasPendingCss3dVisualWork = !!(
|
|
6403
6401
|
this._css3dVisualChangedThisFrame === true ||
|
|
6404
6402
|
this._css3dVisualChangedSinceLastRender === true
|
|
@@ -6415,7 +6413,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6415
6413
|
isCameraMoving === true &&
|
|
6416
6414
|
this.isSelecting !== true &&
|
|
6417
6415
|
!hasEditingTextOverlayFocus &&
|
|
6418
|
-
!
|
|
6416
|
+
!hasPendingCss3dParentRepair &&
|
|
6419
6417
|
!isBoardLoading
|
|
6420
6418
|
);
|
|
6421
6419
|
if (canUseUaImmediateCameraOnlyFrame !== true &&
|
|
@@ -6434,7 +6432,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6434
6432
|
isCameraMoving,
|
|
6435
6433
|
isSelecting: this.isSelecting === true,
|
|
6436
6434
|
hasEditingTextOverlayFocus,
|
|
6437
|
-
|
|
6435
|
+
hasPendingCss3dParentRepair,
|
|
6438
6436
|
isBoardLoading
|
|
6439
6437
|
}),
|
|
6440
6438
|
{
|
|
@@ -6445,6 +6443,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6445
6443
|
);
|
|
6446
6444
|
}
|
|
6447
6445
|
if (canUseUaImmediateCameraOnlyFrame) {
|
|
6446
|
+
if (hasPendingCss3dTransformDirtyIds) {
|
|
6447
|
+
this._css3dVisualDeferredForMotion = true;
|
|
6448
|
+
}
|
|
6448
6449
|
this._fullResMotionFrozen = true;
|
|
6449
6450
|
this._wasViewStateMotionFrozenLastFrame = true;
|
|
6450
6451
|
this._wasLodMotionFrozenLastFrame = false;
|
|
@@ -6625,7 +6626,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6625
6626
|
shouldUpdate !== true &&
|
|
6626
6627
|
this.isSelecting !== true &&
|
|
6627
6628
|
!hasEditingTextOverlayFocus &&
|
|
6628
|
-
!
|
|
6629
|
+
!hasPendingCss3dParentRepair &&
|
|
6629
6630
|
!hasPendingCss3dVisualWork &&
|
|
6630
6631
|
!hasPendingNearCssWarmup &&
|
|
6631
6632
|
!isBoardLoading &&
|
|
@@ -6633,6 +6634,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6633
6634
|
(isWebglRenderEnabled !== true || !!this._lastWebglRenderedCameraState)
|
|
6634
6635
|
);
|
|
6635
6636
|
if (canUseUaStationaryCameraNavigationAnyModeFrame) {
|
|
6637
|
+
if (hasPendingCss3dTransformDirtyIds) {
|
|
6638
|
+
this._css3dVisualDeferredForMotion = true;
|
|
6639
|
+
}
|
|
6636
6640
|
this._preserveVisibleSetThisFrame = true;
|
|
6637
6641
|
this._lastVisibilityCullingSkipReason = 'ua-stationary-visual-motion';
|
|
6638
6642
|
recordCameraMotionFastPathStatus(this, 'hit', 'ua-stationary-visual-motion');
|
|
@@ -6781,7 +6785,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6781
6785
|
isCameraMoving === true &&
|
|
6782
6786
|
this.isSelecting !== true &&
|
|
6783
6787
|
!hasEditingTextOverlayFocus &&
|
|
6784
|
-
!
|
|
6788
|
+
!hasPendingCss3dParentRepair &&
|
|
6785
6789
|
!isBoardLoading &&
|
|
6786
6790
|
this.isWindowResizing !== true &&
|
|
6787
6791
|
(
|
|
@@ -6790,6 +6794,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
6790
6794
|
)
|
|
6791
6795
|
);
|
|
6792
6796
|
if (canUseUaResidentCameraOnlyFrame) {
|
|
6797
|
+
if (hasPendingCss3dTransformDirtyIds) {
|
|
6798
|
+
this._css3dVisualDeferredForMotion = true;
|
|
6799
|
+
}
|
|
6793
6800
|
this._fullResMotionFrozen = false;
|
|
6794
6801
|
this._wasViewStateMotionFrozenLastFrame = false;
|
|
6795
6802
|
this._wasLodMotionFrozenLastFrame = true;
|
|
@@ -7008,9 +7015,12 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
7008
7015
|
isCameraMoving === true &&
|
|
7009
7016
|
this.isSelecting !== true &&
|
|
7010
7017
|
typeof this.cssRenderer.renderCamera === 'function' &&
|
|
7011
|
-
!
|
|
7018
|
+
!hasPendingCss3dParentRepair
|
|
7012
7019
|
);
|
|
7013
7020
|
if (canUseUaEarlyCameraOnlyFrame) {
|
|
7021
|
+
if (hasPendingCss3dTransformDirtyIds) {
|
|
7022
|
+
this._css3dVisualDeferredForMotion = true;
|
|
7023
|
+
}
|
|
7014
7024
|
this._fullResMotionFrozen = true;
|
|
7015
7025
|
this._wasViewStateMotionFrozenLastFrame = true;
|
|
7016
7026
|
this._wasLodMotionFrozenLastFrame = false;
|
|
@@ -7189,13 +7199,16 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
7189
7199
|
!hasNonCameraNavigationForcedUpdate &&
|
|
7190
7200
|
!hasPendingNearCssWarmup &&
|
|
7191
7201
|
!hasEditingOverlay &&
|
|
7192
|
-
!
|
|
7202
|
+
!hasPendingCss3dParentRepair &&
|
|
7193
7203
|
!hasPendingCss3dVisualWork &&
|
|
7194
7204
|
shouldUpdate !== true &&
|
|
7195
7205
|
!isBoardLoading &&
|
|
7196
7206
|
this.isWindowResizing !== true
|
|
7197
7207
|
);
|
|
7198
7208
|
if (canUseUaStationaryCameraNavigationFrame) {
|
|
7209
|
+
if (hasPendingCss3dTransformDirtyIds) {
|
|
7210
|
+
this._css3dVisualDeferredForMotion = true;
|
|
7211
|
+
}
|
|
7199
7212
|
this._fullResMotionFrozen = true;
|
|
7200
7213
|
this._wasViewStateMotionFrozenLastFrame = true;
|
|
7201
7214
|
this._wasLodMotionFrozenLastFrame = false;
|
|
@@ -7777,11 +7790,12 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
7777
7790
|
!hasNonCameraNavigationForcedUpdate &&
|
|
7778
7791
|
!hasPendingNearCssWarmup &&
|
|
7779
7792
|
!hasMotionBlockingOverlayFocus &&
|
|
7780
|
-
!
|
|
7793
|
+
!hasPendingCss3dParentRepair &&
|
|
7781
7794
|
!lodVisualEpochChangedThisFrame &&
|
|
7782
7795
|
this.isWindowResizing !== true
|
|
7783
7796
|
);
|
|
7784
|
-
if (isPureCss3dCameraMotionFrame === true &&
|
|
7797
|
+
if (isPureCss3dCameraMotionFrame === true &&
|
|
7798
|
+
(hasPendingCss3dVisualWork || hasPendingCss3dTransformDirtyIds)) {
|
|
7785
7799
|
this._css3dVisualDeferredForMotion = true;
|
|
7786
7800
|
}
|
|
7787
7801
|
|
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-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-defer-css-transform-dirty-v689" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-defer-css-transform-dirty-v689" />
|
|
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-
|
|
582
|
+
const scriptVersion = '20260620-defer-css-transform-dirty-v689';
|
|
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": "VQRLUARv",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"url": "_content/MindExecution.Shared/js/marked.min.js"
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
|
-
"hash": "sha256-
|
|
81
|
+
"hash": "sha256-72sIz6xxBjFPWDJDQdIG0fx7b5bs3L8NLzxIRBDPYGQ=",
|
|
82
82
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256-
|
|
837
|
+
"hash": "sha256-ZroDjWgVjKhZ/W/V51zAsNMu5PZzgzIKjeQ9y4FxQ4U=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|