ninegrid2 6.337.0 → 6.338.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/aiMessage.js +4 -1
- package/dist/bundle.cjs.js +4 -1
- package/dist/bundle.esm.js +4 -1
- package/package.json +1 -1
- package/src/ai/aiMessage.js +4 -1
package/dist/ai/aiMessage.js
CHANGED
package/dist/bundle.cjs.js
CHANGED
|
@@ -27349,7 +27349,10 @@ class aiMessage extends HTMLElement
|
|
|
27349
27349
|
initialize = (data) => {
|
|
27350
27350
|
this.#data = data;
|
|
27351
27351
|
|
|
27352
|
-
|
|
27352
|
+
setTimeout(() => {
|
|
27353
|
+
this.#init();
|
|
27354
|
+
}, 300);
|
|
27355
|
+
|
|
27353
27356
|
}
|
|
27354
27357
|
|
|
27355
27358
|
#init = () => {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -27347,7 +27347,10 @@ class aiMessage extends HTMLElement
|
|
|
27347
27347
|
initialize = (data) => {
|
|
27348
27348
|
this.#data = data;
|
|
27349
27349
|
|
|
27350
|
-
|
|
27350
|
+
setTimeout(() => {
|
|
27351
|
+
this.#init();
|
|
27352
|
+
}, 300);
|
|
27353
|
+
|
|
27351
27354
|
}
|
|
27352
27355
|
|
|
27353
27356
|
#init = () => {
|
package/package.json
CHANGED