@mindexec/cli 0.2.272 → 0.2.274
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 +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +22 -21
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +9 -6
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-interactions.js +1 -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
|
@@ -1481,7 +1481,7 @@ html.mindcanvas-platform-apple .css3d-resolution-wrapper.is-automation-relation-
|
|
|
1481
1481
|
transform-origin: 0 0;
|
|
1482
1482
|
-webkit-font-smoothing: antialiased;
|
|
1483
1483
|
-moz-osx-font-smoothing: grayscale;
|
|
1484
|
-
text-rendering:
|
|
1484
|
+
text-rendering: auto;
|
|
1485
1485
|
contain: layout style paint;
|
|
1486
1486
|
}
|
|
1487
1487
|
|
|
@@ -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-v722';
|
|
9
9
|
const CanvasPhase = Object.freeze({
|
|
10
10
|
Booting: 'booting',
|
|
11
11
|
BoardFileLoading: 'board-file-loading',
|
|
@@ -494,20 +494,17 @@
|
|
|
494
494
|
return false;
|
|
495
495
|
}
|
|
496
496
|
|
|
497
|
-
//
|
|
498
|
-
//
|
|
499
|
-
//
|
|
500
|
-
// freezes the WebGL surface separately so raw wheel cadence cannot be
|
|
501
|
-
// dominated by background rendering.
|
|
502
|
-
if (isContinuousBackgroundTheme(module) === true) {
|
|
503
|
-
return module?.useAnimation60Fps !== true;
|
|
504
|
-
}
|
|
505
|
-
|
|
497
|
+
// Camera navigation owns responsiveness. Continuous particle themes
|
|
498
|
+
// may animate while idle, but pan/wheel/camera motion should move the
|
|
499
|
+
// last WebGL surface like a viewport instead of re-simulating the theme.
|
|
506
500
|
return true;
|
|
507
501
|
}
|
|
508
502
|
|
|
509
503
|
function shouldFreezeWebglSurfaceForZoom(module) {
|
|
510
|
-
|
|
504
|
+
// Wheel zoom should behave like React Flow-style viewport movement:
|
|
505
|
+
// move the already-rendered WebGL surface with the same transform as
|
|
506
|
+
// CSS3D nodes, then reconcile after motion settles.
|
|
507
|
+
return false;
|
|
511
508
|
}
|
|
512
509
|
|
|
513
510
|
function isLocalSnapGridOnlyTheme(module) {
|
|
@@ -1550,8 +1547,6 @@
|
|
|
1550
1547
|
module._css3dVisualChangedSinceLastRender === true) {
|
|
1551
1548
|
module._css3dVisualDeferredForMotion = true;
|
|
1552
1549
|
}
|
|
1553
|
-
deferPassiveOverlayForCameraMotion(module, frameStart);
|
|
1554
|
-
|
|
1555
1550
|
if (hasForcedUpdate) {
|
|
1556
1551
|
module._forceUpdateFrames = Math.max(0, forceUpdateFrames - 1);
|
|
1557
1552
|
if (cameraNavigationForceFrames > 0) {
|
|
@@ -4058,13 +4053,12 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4058
4053
|
layer.style.display = 'none';
|
|
4059
4054
|
layer.style.opacity = '0';
|
|
4060
4055
|
layer.style.backgroundColor = 'transparent';
|
|
4061
|
-
layer.style.borderRadius = '
|
|
4062
|
-
layer.style.overflow = '
|
|
4063
|
-
layer.style.clipPath = 'circle(500px at 500px 500px)';
|
|
4056
|
+
layer.style.borderRadius = '0';
|
|
4057
|
+
layer.style.overflow = 'visible';
|
|
4064
4058
|
layer.style.contain = 'strict';
|
|
4065
|
-
layer.style.willChange = 'transform
|
|
4059
|
+
layer.style.willChange = 'transform';
|
|
4066
4060
|
layer.style.transform = 'translate3d(0, 0, 0)';
|
|
4067
|
-
layer.style.transition = '
|
|
4061
|
+
layer.style.transition = 'none';
|
|
4068
4062
|
|
|
4069
4063
|
const cssElement = this.cssRenderer?.domElement;
|
|
4070
4064
|
if (cssElement?.parentNode === this.container) {
|
|
@@ -5416,7 +5410,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5416
5410
|
const desiredDpr = this._getDesiredPixelRatio(interactive);
|
|
5417
5411
|
if (interactive) {
|
|
5418
5412
|
// Drop DPR immediately while panning/zooming; restore it only after motion settles.
|
|
5419
|
-
this.
|
|
5413
|
+
if (!this._deferredDprTimer) {
|
|
5414
|
+
this._scheduleDeferredRendererPixelRatioApply();
|
|
5415
|
+
}
|
|
5420
5416
|
if (this._currentDpr !== null && this._currentDpr <= desiredDpr + 0.001) {
|
|
5421
5417
|
return;
|
|
5422
5418
|
}
|
|
@@ -5574,7 +5570,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5574
5570
|
this._fullResVisibilityReconcilePending = true;
|
|
5575
5571
|
}
|
|
5576
5572
|
this._preserveVisibleSetThisFrame = true;
|
|
5577
|
-
|
|
5573
|
+
if (hasPassiveOverlayMotionWork(this) === true) {
|
|
5574
|
+
deferPassiveOverlayForCameraMotion(this);
|
|
5575
|
+
}
|
|
5578
5576
|
|
|
5579
5577
|
if (snapGridPointAlreadySet !== true &&
|
|
5580
5578
|
Number.isFinite(Number(clientX)) &&
|
|
@@ -5634,7 +5632,10 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5634
5632
|
if (canRenderCss3d === true) {
|
|
5635
5633
|
renderCss3dCameraForCameraNavigation(this, 'ua-wheel-zoom-direct');
|
|
5636
5634
|
}
|
|
5637
|
-
|
|
5635
|
+
if (this._businessAutomationEdgeRenderActive === true ||
|
|
5636
|
+
this._businessAutomationConnectionDraftActive === true) {
|
|
5637
|
+
syncBusinessAutomationEdgesForCameraNavigation(this, true);
|
|
5638
|
+
}
|
|
5638
5639
|
this.pauseAnimationLoopForDirectWheelZoom?.();
|
|
5639
5640
|
return true;
|
|
5640
5641
|
}
|
|
@@ -332,7 +332,7 @@
|
|
|
332
332
|
letter-spacing: normal;
|
|
333
333
|
-webkit-font-smoothing: antialiased;
|
|
334
334
|
-moz-osx-font-smoothing: grayscale;
|
|
335
|
-
text-rendering:
|
|
335
|
+
text-rendering: auto;
|
|
336
336
|
}
|
|
337
337
|
.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; }
|
|
338
338
|
.markdown-body h2 { font-size: 1.4em; font-weight: bold; margin-top: 1em; margin-bottom: 0.5em; border-bottom: 1px solid #eaecef; padding-bottom: 0.3em; }
|
|
@@ -708,9 +708,12 @@
|
|
|
708
708
|
.map-node {
|
|
709
709
|
-webkit-font-smoothing: antialiased !important;
|
|
710
710
|
-moz-osx-font-smoothing: grayscale !important;
|
|
711
|
-
text-rendering:
|
|
711
|
+
text-rendering: auto !important;
|
|
712
712
|
backface-visibility: hidden !important;
|
|
713
713
|
-webkit-backface-visibility: hidden !important;
|
|
714
|
+
transition: none !important;
|
|
715
|
+
-webkit-transition: none !important;
|
|
716
|
+
will-change: auto !important;
|
|
714
717
|
cursor: grab;
|
|
715
718
|
}
|
|
716
719
|
|
|
@@ -1081,7 +1084,7 @@
|
|
|
1081
1084
|
transform-origin: 0 0;
|
|
1082
1085
|
-webkit-font-smoothing: antialiased;
|
|
1083
1086
|
-moz-osx-font-smoothing: grayscale;
|
|
1084
|
-
text-rendering:
|
|
1087
|
+
text-rendering: auto;
|
|
1085
1088
|
backface-visibility: hidden;
|
|
1086
1089
|
-webkit-backface-visibility: hidden;
|
|
1087
1090
|
}
|
|
@@ -1140,7 +1143,7 @@
|
|
|
1140
1143
|
transform-origin: 0 0;
|
|
1141
1144
|
-webkit-font-smoothing: antialiased;
|
|
1142
1145
|
-moz-osx-font-smoothing: grayscale;
|
|
1143
|
-
text-rendering:
|
|
1146
|
+
text-rendering: auto;
|
|
1144
1147
|
backface-visibility: hidden;
|
|
1145
1148
|
-webkit-backface-visibility: hidden;
|
|
1146
1149
|
}
|
|
@@ -5686,7 +5689,7 @@
|
|
|
5686
5689
|
box-sizing: border-box;
|
|
5687
5690
|
overflow-y: auto;
|
|
5688
5691
|
-webkit-font-smoothing: antialiased;
|
|
5689
|
-
text-rendering:
|
|
5692
|
+
text-rendering: auto;
|
|
5690
5693
|
white-space: pre-wrap;
|
|
5691
5694
|
overflow-wrap: break-word;
|
|
5692
5695
|
pointer-events: auto;
|
|
@@ -20070,7 +20073,7 @@
|
|
|
20070
20073
|
white-space: pre-wrap;
|
|
20071
20074
|
overflow-wrap: break-word;
|
|
20072
20075
|
-webkit-font-smoothing: antialiased;
|
|
20073
|
-
text-rendering:
|
|
20076
|
+
text-rendering: auto;
|
|
20074
20077
|
`;
|
|
20075
20078
|
|
|
20076
20079
|
shell.appendChild(header);
|
|
@@ -7389,7 +7389,7 @@ window.MindMapInteractions = (function () {
|
|
|
7389
7389
|
box-sizing: border-box; /* User Request */
|
|
7390
7390
|
overflow-y: auto; /* User Request */
|
|
7391
7391
|
-webkit-font-smoothing: antialiased;
|
|
7392
|
-
text-rendering:
|
|
7392
|
+
text-rendering: auto;
|
|
7393
7393
|
white-space: pre-wrap;
|
|
7394
7394
|
overflow-wrap: break-word;
|
|
7395
7395
|
`;
|
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-v722" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v722" />
|
|
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-v722';
|
|
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": "2bce3prM",
|
|
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-IsoaitVgDvGMpqVgxyFAW22yVRgrOb0iXaxNi3Sa6s4=",
|
|
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-aLHD0t7zUz2Hm0YXh0mcna9uh2NOfK4GrgaGzFjKxXQ=",
|
|
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-1vOfr6NJpXOlWCDh3qIFXLoUAT3+WR6nAkd32NhHE2c=",
|
|
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-AlbbLd6JWDnJYXVds8eReO2OYyjzsjXYFn36UYz0ZxI=",
|
|
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-Fw2E9mGBm1TPjXCiHI5odjJdKIykBepdRCeX0L1irZ8=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|