ninegrid2 6.1421.0 → 6.1422.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 +4 -1
- package/dist/bundle.cjs.js +4 -1
- package/dist/bundle.esm.js +4 -1
- package/package.json +1 -1
- package/src/ai/aiContainer.js +4 -1
package/dist/ai/aiContainer.js
CHANGED
package/dist/bundle.cjs.js
CHANGED
|
@@ -106886,7 +106886,10 @@ class aiContainer extends HTMLElement
|
|
|
106886
106886
|
};
|
|
106887
106887
|
}
|
|
106888
106888
|
|
|
106889
|
-
|
|
106889
|
+
|
|
106890
|
+
if (!customElements.get('nx-ai-container')) {
|
|
106891
|
+
customElements.define("nx-ai-container", aiContainer);
|
|
106892
|
+
}
|
|
106890
106893
|
|
|
106891
106894
|
class ideAssi extends HTMLElement
|
|
106892
106895
|
{
|
package/dist/bundle.esm.js
CHANGED
|
@@ -106882,7 +106882,10 @@ class aiContainer extends HTMLElement
|
|
|
106882
106882
|
};
|
|
106883
106883
|
}
|
|
106884
106884
|
|
|
106885
|
-
|
|
106885
|
+
|
|
106886
|
+
if (!customElements.get('nx-ai-container')) {
|
|
106887
|
+
customElements.define("nx-ai-container", aiContainer);
|
|
106888
|
+
}
|
|
106886
106889
|
|
|
106887
106890
|
class ideAssi extends HTMLElement
|
|
106888
106891
|
{
|
package/package.json
CHANGED
package/src/ai/aiContainer.js
CHANGED