@mindexec/cli 0.2.183 → 0.2.185
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
package/server.js
CHANGED
|
@@ -5487,7 +5487,7 @@ function readSupabaseRuntimeConfig() {
|
|
|
5487
5487
|
|
|
5488
5488
|
for (const candidate of Array.from(new Set(candidates.map(item => path.resolve(item))))) {
|
|
5489
5489
|
try {
|
|
5490
|
-
const payload = JSON.parse(readFileSync(candidate, 'utf8'));
|
|
5490
|
+
const payload = JSON.parse(readFileSync(candidate, 'utf8').replace(/^\uFEFF/, ''));
|
|
5491
5491
|
const url = String(payload?.Supabase?.Url || '').trim().replace(/\/+$/, '');
|
|
5492
5492
|
const key = String(payload?.Supabase?.Key || payload?.Supabase?.AnonKey || payload?.Supabase?.PublishableKey || '').trim();
|
|
5493
5493
|
if (url && key) {
|
|
@@ -1820,6 +1820,13 @@
|
|
|
1820
1820
|
|| wrapper.classList?.contains?.('node-type-video')
|
|
1821
1821
|
|| wrapper.classList?.contains?.('node-type-embed')
|
|
1822
1822
|
);
|
|
1823
|
+
const isScrollableTextWrapper = !!(
|
|
1824
|
+
wrapper.classList?.contains?.('node-type-note')
|
|
1825
|
+
|| wrapper.classList?.contains?.('node-type-text')
|
|
1826
|
+
|| wrapper.classList?.contains?.('node-type-markdown')
|
|
1827
|
+
|| wrapper.classList?.contains?.('node-type-code')
|
|
1828
|
+
|| wrapper.classList?.contains?.('node-type-csv-table')
|
|
1829
|
+
);
|
|
1823
1830
|
|
|
1824
1831
|
const resolutionScale = Math.max(1, Number(cssObject?.userData?.resolutionScale || CSS3D_RESOLUTION_SCALE || 1));
|
|
1825
1832
|
const worldWidth = Math.max(1, Math.round(Number(width || 1)));
|
|
@@ -1905,13 +1912,32 @@
|
|
|
1905
1912
|
|
|
1906
1913
|
const response = inner?.querySelector?.('.node-response') || null;
|
|
1907
1914
|
if (response?.style) {
|
|
1915
|
+
const responseIsScrollableText = isScrollableTextWrapper || !!(
|
|
1916
|
+
response.classList?.contains?.('note-content')
|
|
1917
|
+
|| response.classList?.contains?.('markdown-body')
|
|
1918
|
+
|| response.classList?.contains?.('code-body')
|
|
1919
|
+
|| response.classList?.contains?.('csv-table-scroll')
|
|
1920
|
+
);
|
|
1908
1921
|
response.style.width = '100%';
|
|
1909
1922
|
response.style.height = '100%';
|
|
1910
1923
|
response.style.minWidth = isMediaWrapper ? '100%' : '0';
|
|
1911
1924
|
response.style.minHeight = isMediaWrapper ? '100%' : '0';
|
|
1912
1925
|
response.style.maxWidth = '100%';
|
|
1913
1926
|
response.style.maxHeight = '100%';
|
|
1914
|
-
|
|
1927
|
+
if (responseIsScrollableText && !isMediaWrapper) {
|
|
1928
|
+
response.style.overflow = '';
|
|
1929
|
+
response.style.overflowX = response.classList?.contains?.('code-body') || response.classList?.contains?.('csv-table-scroll')
|
|
1930
|
+
? 'auto'
|
|
1931
|
+
: 'hidden';
|
|
1932
|
+
response.style.overflowY = 'auto';
|
|
1933
|
+
response.style.scrollbarWidth = 'thin';
|
|
1934
|
+
response.style.scrollbarGutter = response.classList?.contains?.('csv-table-scroll')
|
|
1935
|
+
? 'stable both-edges'
|
|
1936
|
+
: 'stable';
|
|
1937
|
+
response.style.pointerEvents = 'auto';
|
|
1938
|
+
} else {
|
|
1939
|
+
response.style.overflow = 'hidden';
|
|
1940
|
+
}
|
|
1915
1941
|
if (hasContextSourcePins) {
|
|
1916
1942
|
response.style.contain = 'none';
|
|
1917
1943
|
response.style.contentVisibility = 'visible';
|
|
@@ -22123,9 +22149,10 @@
|
|
|
22123
22149
|
flex: 1 1 auto;
|
|
22124
22150
|
min-height: 0;
|
|
22125
22151
|
overflow-y: auto;
|
|
22126
|
-
pointer-events:
|
|
22152
|
+
pointer-events: auto;
|
|
22127
22153
|
scrollbar-width: thin;
|
|
22128
22154
|
scrollbar-color: rgba(0,0,0,0.2) transparent;
|
|
22155
|
+
scrollbar-gutter: stable;
|
|
22129
22156
|
padding-right: 14px;
|
|
22130
22157
|
`;
|
|
22131
22158
|
|
package/wwwroot/appsettings.json
CHANGED
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=20260617-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260617-note-scroll-view-v611" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-note-scroll-view-v611" />
|
|
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 = '20260617-
|
|
582
|
+
const scriptVersion = '20260617-note-scroll-view-v611';
|
|
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": "zdahFh/b",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -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-VJQ48zNB42JJETm59vTBtxdXez0dwIui6LnZUisNTSo=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256-
|
|
837
|
+
"hash": "sha256-lN61w54gvVeokmrGVYWF73NCi+cReoJ7J0/4myF8Fgk=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|