@mindexec/cli 0.2.103 → 0.2.104

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindexec/cli",
3
- "version": "0.2.103",
3
+ "version": "0.2.104",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -47,7 +47,7 @@
47
47
  "node": ">=20"
48
48
  },
49
49
  "dependencies": {
50
- "@mindexec/remote": "^0.1.16",
50
+ "@mindexec/remote": "^0.1.16",
51
51
  "@openai/codex-sdk": "^0.137.0",
52
52
  "chokidar": "^3.6.0",
53
53
  "cors": "^2.8.5",
@@ -1925,6 +1925,37 @@ body.is-panning .mind-map-text-overlay-v2-card.is-passive .mind-map-text-overlay
1925
1925
  caret-color: auto !important;
1926
1926
  }
1927
1927
 
1928
+ .css3d-resolution-wrapper.node-type-csv-table,
1929
+ .css3d-resolution-wrapper.node-type-csv-table > .map-node,
1930
+ .css3d-resolution-wrapper.node-type-csv-table .node-content-wrapper,
1931
+ .map-node-csv-table .node-content-wrapper--csv-table {
1932
+ min-width: 0 !important;
1933
+ min-height: 0 !important;
1934
+ max-width: 100% !important;
1935
+ max-height: 100% !important;
1936
+ box-sizing: border-box !important;
1937
+ overflow: hidden !important;
1938
+ }
1939
+
1940
+ .css3d-resolution-wrapper.node-type-csv-table .node-content-wrapper,
1941
+ .map-node-csv-table .node-content-wrapper--csv-table {
1942
+ display: flex !important;
1943
+ flex-direction: column !important;
1944
+ }
1945
+
1946
+ .css3d-resolution-wrapper.node-type-csv-table .node-response.csv-table-scroll,
1947
+ .map-node-csv-table .node-response.csv-table-scroll {
1948
+ width: 100% !important;
1949
+ height: auto !important;
1950
+ max-height: 100% !important;
1951
+ flex: 1 1 0% !important;
1952
+ min-height: 0 !important;
1953
+ overflow: auto !important;
1954
+ scrollbar-gutter: stable both-edges !important;
1955
+ padding-right: 0 !important;
1956
+ overscroll-behavior: contain;
1957
+ }
1958
+
1928
1959
  .css3d-resolution-wrapper.node-type-image,
1929
1960
  .css3d-resolution-wrapper.node-type-video,
1930
1961
  .css3d-resolution-wrapper.node-type-embed {
@@ -384,6 +384,34 @@
384
384
  .csv-table-scroll:hover::-webkit-scrollbar-thumb {
385
385
  background: rgba(71, 85, 105, 0.48);
386
386
  }
387
+ .css3d-resolution-wrapper.node-type-csv-table,
388
+ .css3d-resolution-wrapper.node-type-csv-table > .map-node,
389
+ .css3d-resolution-wrapper.node-type-csv-table .node-content-wrapper,
390
+ .map-node-csv-table .node-content-wrapper--csv-table {
391
+ min-width: 0 !important;
392
+ min-height: 0 !important;
393
+ max-width: 100% !important;
394
+ max-height: 100% !important;
395
+ box-sizing: border-box !important;
396
+ overflow: hidden !important;
397
+ }
398
+ .css3d-resolution-wrapper.node-type-csv-table .node-content-wrapper,
399
+ .map-node-csv-table .node-content-wrapper--csv-table {
400
+ display: flex !important;
401
+ flex-direction: column !important;
402
+ }
403
+ .css3d-resolution-wrapper.node-type-csv-table .node-response.csv-table-scroll,
404
+ .map-node-csv-table .node-response.csv-table-scroll {
405
+ width: 100% !important;
406
+ height: auto !important;
407
+ max-height: 100% !important;
408
+ flex: 1 1 0% !important;
409
+ min-height: 0 !important;
410
+ overflow: auto !important;
411
+ scrollbar-gutter: stable both-edges !important;
412
+ padding-right: 0 !important;
413
+ overscroll-behavior: contain;
414
+ }
387
415
  .csv-table {
388
416
  width: max-content;
389
417
  min-width: 100%;
@@ -19589,14 +19617,18 @@
19589
19617
 
19590
19618
  // 콘텐츠 래퍼 생성
19591
19619
  const contentWrapper = document.createElement('div');
19592
- contentWrapper.className = 'node-content-wrapper';
19620
+ contentWrapper.className = isCsvTableNode
19621
+ ? 'node-content-wrapper node-content-wrapper--csv-table'
19622
+ : 'node-content-wrapper';
19593
19623
  contentWrapper.style.cssText = `
19594
19624
  width: 100%;
19595
19625
  height: 100%;
19626
+ max-height: 100%;
19596
19627
  overflow: hidden;
19597
19628
  display: ${isMediaNode ? 'block' : 'flex'};
19598
19629
  flex-direction: ${isMediaNode ? 'initial' : 'column'};
19599
19630
  min-height: ${isMediaNode ? 'auto' : '0'};
19631
+ min-width: 0;
19600
19632
  position: ${isMediaNode ? 'relative' : 'static'};
19601
19633
  transform: none;
19602
19634
  will-change: auto;
@@ -19691,10 +19723,13 @@
19691
19723
  responseDiv.className = 'node-response csv-table-scroll';
19692
19724
  responseDiv.style.cssText = `
19693
19725
  width: 100%;
19694
- height: 100%;
19695
- flex: 1 1 auto;
19726
+ height: auto;
19727
+ max-height: 100%;
19728
+ flex: 1 1 0%;
19696
19729
  min-height: 0;
19697
19730
  overflow: auto;
19731
+ overscroll-behavior: contain;
19732
+ scrollbar-gutter: stable both-edges;
19698
19733
  pointer-events: auto;
19699
19734
  box-sizing: border-box;
19700
19735
  user-select: text;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "mainAssemblyName": "MindExecution.Web",
3
3
  "resources": {
4
- "hash": "sha256-Br4DWyqxlRmH44i0F0OYs/cbiMcQZSXhuRDCRobDEAQ=",
4
+ "hash": "sha256-ncmibpfP4OVaoSZXQLmDLiOOSi8GW6wTmwlKPOWGtWk=",
5
5
  "fingerprinting": {
6
6
  "Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
7
7
  "Markdig.d1j7v41cl1.dll": "Markdig.dll",
@@ -131,7 +131,7 @@
131
131
  "MindExecution.Plugins.Directory.zc8ffaoknd.dll": "MindExecution.Plugins.Directory.dll",
132
132
  "MindExecution.Plugins.PlanMaster.flzcb87jvl.dll": "MindExecution.Plugins.PlanMaster.dll",
133
133
  "MindExecution.Plugins.YouTube.q4tvods1po.dll": "MindExecution.Plugins.YouTube.dll",
134
- "MindExecution.Shared.jv6r2n1bvg.dll": "MindExecution.Shared.dll",
134
+ "MindExecution.Shared.r8pan6upd8.dll": "MindExecution.Shared.dll",
135
135
  "MindExecution.Web.3b8az6ed0q.dll": "MindExecution.Web.dll",
136
136
  "dotnet.js": "dotnet.js",
137
137
  "dotnet.native.qc8g39g30v.js": "dotnet.native.js",
@@ -282,7 +282,7 @@
282
282
  "MindExecution.Kernel.pbzp3jfync.dll": "sha256-Ff6WHyLD39V0fEjUiQlxX9Y+edssyTH+7T4zfBdj3s0=",
283
283
  "MindExecution.Plugins.Concept.ksc3wkuptm.dll": "sha256-fIy3+/z7i12WktCVlAHG6hJGVOSgzWJNGXiDrArviYU=",
284
284
  "MindExecution.Plugins.PlanMaster.flzcb87jvl.dll": "sha256-zYXs1kS13yT6eDgbsthOX4Ku1n3P+TnPn8oIhJVwxQ0=",
285
- "MindExecution.Shared.jv6r2n1bvg.dll": "sha256-cdYJze5sGTmNGOvWL+BktfURuCHsKmec9PB0emQVJ38=",
285
+ "MindExecution.Shared.r8pan6upd8.dll": "sha256-Sw26dtjM8Rd82Nk3uWpkPPjrzCULyX1GwGdX9uJ0zzw=",
286
286
  "MindExecution.Web.3b8az6ed0q.dll": "sha256-cbwDzpFNXJ2mcIVtZC6fNkvXq4K+q0QTXJ5EGuTKL7w="
287
287
  },
288
288
  "lazyAssembly": {
@@ -7,8 +7,8 @@
7
7
  <title>MindExec | Run your ideas as AI task graphs</title>
8
8
  <meta name="description" content="MindExec is an AI execution canvas for solo builders, researchers, developers, and creators. Start with free browser tools, then move serious work into saved MindCanvas projects." />
9
9
  <base href="/" />
10
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260616-remote-live-fresh-v563" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260616-remote-live-fresh-v563" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260616-csv-import-scroll-v564" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260616-csv-import-scroll-v564" />
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 = '20260616-remote-live-fresh-v563';
582
+ const scriptVersion = '20260616-csv-import-scroll-v564';
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": "0GkQkAf6",
2
+ "version": "dcqbmuSQ",
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-bM3TPSd4WDlrAJjzMh91OLXSpkFX5/3qUs84piTAEKA=",
45
+ "hash": "sha256-Z/qOemFxT1byK3tSyusCzWleiFLxcMRdsEc/0DoSPbk=",
46
46
  "url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
47
47
  },
48
48
  {
@@ -86,7 +86,7 @@
86
86
  "url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
87
87
  },
88
88
  {
89
- "hash": "sha256-DhSn/UhaZNiUWVI6SxAXUCT4ZJ1rTb0M4ZAzWBF4ibU=",
89
+ "hash": "sha256-argv1cbei7H0a1mJ744ULYCoG8vmNo2LOIjjqeVe+v8=",
90
90
  "url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
91
91
  },
92
92
  {
@@ -442,8 +442,8 @@
442
442
  "url": "_framework/MindExecution.Plugins.YouTube.q4tvods1po.dll"
443
443
  },
444
444
  {
445
- "hash": "sha256-cdYJze5sGTmNGOvWL+BktfURuCHsKmec9PB0emQVJ38=",
446
- "url": "_framework/MindExecution.Shared.jv6r2n1bvg.dll"
445
+ "hash": "sha256-Sw26dtjM8Rd82Nk3uWpkPPjrzCULyX1GwGdX9uJ0zzw=",
446
+ "url": "_framework/MindExecution.Shared.r8pan6upd8.dll"
447
447
  },
448
448
  {
449
449
  "hash": "sha256-cbwDzpFNXJ2mcIVtZC6fNkvXq4K+q0QTXJ5EGuTKL7w=",
@@ -770,7 +770,7 @@
770
770
  "url": "_framework/Websocket.Client.vapounvmnl.dll"
771
771
  },
772
772
  {
773
- "hash": "sha256-5j809S+7v/sq5DbtGGZHh2z8V4kL+rCKD7nhboJYuxQ=",
773
+ "hash": "sha256-X5tMd8TgdpyfWLfjIOQZ6EsVxGF+b/KYBX2d/htH6Qo=",
774
774
  "url": "_framework/blazor.boot.json"
775
775
  },
776
776
  {
@@ -834,7 +834,7 @@
834
834
  "url": "image-manifest.json"
835
835
  },
836
836
  {
837
- "hash": "sha256-2B93M5xFDpgqUOcnXJPakFVZ1W1wwThzsOo3U1cQtto=",
837
+ "hash": "sha256-6d4BMAFu8S+buYLIfn/YU12rChaOPCkPEswE7eGNQAA=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: 0GkQkAf6 */
1
+ /* Manifest version: dcqbmuSQ */
2
2
  // Hosted deployments should prefer the network over stale offline caches.
3
3
  // This service worker immediately clears old Blazor offline caches and unregisters itself.
4
4