@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/dist/nine-mu.js +15 -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 +14 -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,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
|
-
|
|
271
|
+
//$diffPopup.popup().data(asis, tobe, lang);
|
|
262
272
|
}
|
|
263
273
|
}
|
|
264
274
|
|