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.
@@ -432,4 +432,7 @@ class aiContainer extends HTMLElement
432
432
  };
433
433
  }
434
434
 
435
- customElements.define("nx-ai-container", aiContainer);
435
+
436
+ if (!customElements.get('nx-ai-container')) {
437
+ customElements.define("nx-ai-container", aiContainer);
438
+ }
@@ -106886,7 +106886,10 @@ class aiContainer extends HTMLElement
106886
106886
  };
106887
106887
  }
106888
106888
 
106889
- customElements.define("nx-ai-container", aiContainer);
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
  {
@@ -106882,7 +106882,10 @@ class aiContainer extends HTMLElement
106882
106882
  };
106883
106883
  }
106884
106884
 
106885
- customElements.define("nx-ai-container", aiContainer);
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1421.0",
4
+ "version": "6.1422.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -432,4 +432,7 @@ class aiContainer extends HTMLElement
432
432
  };
433
433
  }
434
434
 
435
- customElements.define("nx-ai-container", aiContainer);
435
+
436
+ if (!customElements.get('nx-ai-container')) {
437
+ customElements.define("nx-ai-container", aiContainer);
438
+ }