@nine-lab/nine-mu 0.1.300 โ 0.1.301
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/dist/nine-mu.js +14 -6
- package/dist/nine-mu.js.map +1 -1
- package/dist/nine-mu.umd.js +1 -1
- package/dist/nine-mu.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NineChat.js +12 -4
package/package.json
CHANGED
|
@@ -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,20 @@ 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
|
+
collectedFiles.push(filePayload);
|
|
263
|
+
|
|
264
|
+
$diffPopup.data([...collectedFiles]);
|
|
265
|
+
$diffPopup.popup();
|
|
266
|
+
|
|
259
267
|
// 4. ๋ฐ์ดํฐ ์ฃผ์
๋ฐ ํ์
์คํ
|
|
260
268
|
// ๐ก ํ์
์ด ๋ค์ดํฐ๋ธ <dialog> ๊ธฐ๋ฐ์ด๋ผ๋ฉด .popup() ๋ด๋ถ์์ showModal()์ด ์คํ๋ ๊ฒ๋๋ค.
|
|
261
|
-
|
|
269
|
+
//$diffPopup.popup().data(asis, tobe, lang);
|
|
262
270
|
}
|
|
263
271
|
}
|
|
264
272
|
|