ninegrid2 6.570.0 → 6.571.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
|
@@ -346,8 +346,8 @@ class aiContainer extends HTMLElement
|
|
|
346
346
|
* setTimeout 없으면, 맥에서 한글 잔상이 남음
|
|
347
347
|
*/
|
|
348
348
|
console.log(e.target);
|
|
349
|
-
setTimeout(() => {
|
|
350
|
-
console.log(e.target);
|
|
349
|
+
setTimeout((x) => {
|
|
350
|
+
console.log(e.target, x);
|
|
351
351
|
this.shadowRoot.querySelector("textarea").value = "";
|
|
352
352
|
});
|
|
353
353
|
|
package/dist/bundle.cjs.js
CHANGED
|
@@ -54493,8 +54493,8 @@ class aiContainer extends HTMLElement
|
|
|
54493
54493
|
* setTimeout 없으면, 맥에서 한글 잔상이 남음
|
|
54494
54494
|
*/
|
|
54495
54495
|
console.log(e.target);
|
|
54496
|
-
setTimeout(() => {
|
|
54497
|
-
console.log(e.target);
|
|
54496
|
+
setTimeout((x) => {
|
|
54497
|
+
console.log(e.target, x);
|
|
54498
54498
|
this.shadowRoot.querySelector("textarea").value = "";
|
|
54499
54499
|
});
|
|
54500
54500
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -54491,8 +54491,8 @@ class aiContainer extends HTMLElement
|
|
|
54491
54491
|
* setTimeout 없으면, 맥에서 한글 잔상이 남음
|
|
54492
54492
|
*/
|
|
54493
54493
|
console.log(e.target);
|
|
54494
|
-
setTimeout(() => {
|
|
54495
|
-
console.log(e.target);
|
|
54494
|
+
setTimeout((x) => {
|
|
54495
|
+
console.log(e.target, x);
|
|
54496
54496
|
this.shadowRoot.querySelector("textarea").value = "";
|
|
54497
54497
|
});
|
|
54498
54498
|
|
package/package.json
CHANGED
package/src/ai/aiContainer.js
CHANGED
|
@@ -346,8 +346,8 @@ class aiContainer extends HTMLElement
|
|
|
346
346
|
* setTimeout 없으면, 맥에서 한글 잔상이 남음
|
|
347
347
|
*/
|
|
348
348
|
console.log(e.target);
|
|
349
|
-
setTimeout(() => {
|
|
350
|
-
console.log(e.target);
|
|
349
|
+
setTimeout((x) => {
|
|
350
|
+
console.log(e.target, x);
|
|
351
351
|
this.shadowRoot.querySelector("textarea").value = "";
|
|
352
352
|
});
|
|
353
353
|
|