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