ninegrid2 6.567.0 → 6.569.0
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/ai/aiContainer.js +2 -1
- package/dist/bundle.cjs.js +2 -1
- package/dist/bundle.esm.js +2 -1
- package/package.json +1 -1
- package/src/ai/aiContainer.js +2 -1
package/dist/ai/aiContainer.js
CHANGED
|
@@ -344,7 +344,8 @@ class aiContainer extends HTMLElement
|
|
|
344
344
|
|
|
345
345
|
/** setTimeout 없으면, 맥에서 한글 잔상이 남음 */
|
|
346
346
|
setTimeout(() => {
|
|
347
|
-
|
|
347
|
+
console.log(question);
|
|
348
|
+
this.shadowRoot.querySelector("textarea").value = "";
|
|
348
349
|
});
|
|
349
350
|
|
|
350
351
|
const elAiChat = this.shadowRoot.querySelector("nx-ai-chat");
|
package/dist/bundle.cjs.js
CHANGED
|
@@ -54491,7 +54491,8 @@ class aiContainer extends HTMLElement
|
|
|
54491
54491
|
|
|
54492
54492
|
/** setTimeout 없으면, 맥에서 한글 잔상이 남음 */
|
|
54493
54493
|
setTimeout(() => {
|
|
54494
|
-
|
|
54494
|
+
console.log(question);
|
|
54495
|
+
this.shadowRoot.querySelector("textarea").value = "";
|
|
54495
54496
|
});
|
|
54496
54497
|
|
|
54497
54498
|
const elAiChat = this.shadowRoot.querySelector("nx-ai-chat");
|
package/dist/bundle.esm.js
CHANGED
|
@@ -54489,7 +54489,8 @@ class aiContainer extends HTMLElement
|
|
|
54489
54489
|
|
|
54490
54490
|
/** setTimeout 없으면, 맥에서 한글 잔상이 남음 */
|
|
54491
54491
|
setTimeout(() => {
|
|
54492
|
-
|
|
54492
|
+
console.log(question);
|
|
54493
|
+
this.shadowRoot.querySelector("textarea").value = "";
|
|
54493
54494
|
});
|
|
54494
54495
|
|
|
54495
54496
|
const elAiChat = this.shadowRoot.querySelector("nx-ai-chat");
|
package/package.json
CHANGED
package/src/ai/aiContainer.js
CHANGED
|
@@ -344,7 +344,8 @@ class aiContainer extends HTMLElement
|
|
|
344
344
|
|
|
345
345
|
/** setTimeout 없으면, 맥에서 한글 잔상이 남음 */
|
|
346
346
|
setTimeout(() => {
|
|
347
|
-
|
|
347
|
+
console.log(question);
|
|
348
|
+
this.shadowRoot.querySelector("textarea").value = "";
|
|
348
349
|
});
|
|
349
350
|
|
|
350
351
|
const elAiChat = this.shadowRoot.querySelector("nx-ai-chat");
|