@nine-lab/nine-mu 0.1.300 โ†’ 0.1.302

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": "@nine-lab/nine-mu",
3
- "version": "0.1.300",
3
+ "version": "0.1.302",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -142,9 +142,6 @@ export class NineChat extends HTMLElement {
142
142
  }
143
143
  }
144
144
 
145
-
146
-
147
-
148
145
  // ๐Ÿ’ก ๋งŒ์•ฝ intent๊ฐ€ EXECUTE_TOOL์ด๊ฑฐ๋‚˜ NAVIGATE์ผ ๋•Œ ํ”„๋ก ํŠธ์—์„œ
149
146
  // ํ™”๋ฉด ์ด๋™(Routing)์ด๋‚˜ ์ถ”๊ฐ€ ์•ก์…˜์„ ํ•ด์•ผ ํ•œ๋‹ค๋ฉด ์—ฌ๊ธฐ์„œ parsedData.target_path ๋“ฑ์„ ํ™œ์šฉํ•˜๋ฉด ๋ฉ๋‹ˆ๋‹ค!
150
147
 
@@ -256,9 +253,22 @@ export class NineChat extends HTMLElement {
256
253
  const container = this.shadowRoot.querySelector('.wrapper') || this.shadowRoot;
257
254
  container.appendChild($diffPopup);
258
255
 
256
+ const filePayload = {
257
+ //layer: "Unknown",
258
+ full_path: "unknown_file",
259
+ asis_source: asis || "",
260
+ source: tobe || ""
261
+ };
262
+
263
+ let collectedFiles = [];
264
+ collectedFiles.push(filePayload);
265
+
266
+ $diffPopup.data([...collectedFiles]);
267
+ $diffPopup.popup();
268
+
259
269
  // 4. ๋ฐ์ดํ„ฐ ์ฃผ์ž… ๋ฐ ํŒ์—… ์‹คํ–‰
260
270
  // ๐Ÿ’ก ํŒ์—…์ด ๋„ค์ดํ‹ฐ๋ธŒ <dialog> ๊ธฐ๋ฐ˜์ด๋ผ๋ฉด .popup() ๋‚ด๋ถ€์—์„œ showModal()์ด ์‹คํ–‰๋  ๊ฒ๋‹ˆ๋‹ค.
261
- $diffPopup.popup().data(asis, tobe, lang);
271
+ //$diffPopup.popup().data(asis, tobe, lang);
262
272
  }
263
273
  }
264
274