ninegrid2 6.593.0 → 6.594.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.
@@ -54551,9 +54551,17 @@ customElements.define("nx-ai-container", aiContainer);
54551
54551
  //console.log($);
54552
54552
  window.jQuery = window.$ = $$1;
54553
54553
 
54554
+ // ✅ Custom Elements 등록 함수 정의
54555
+ function defineCustomElements() {
54556
+ if (!customElements.get("nine-grid")) {
54557
+ customElements.define("nine-grid", NinegridContainer);
54558
+ }
54559
+ }
54560
+
54554
54561
  //export default ninegrid;
54555
54562
 
54556
54563
  //export default new ninegrid();
54557
54564
 
54558
54565
  exports.NinegridContainer = NinegridContainer;
54559
54566
  exports.default = ninegrid;
54567
+ exports.defineCustomElements = defineCustomElements;
@@ -54547,8 +54547,15 @@ customElements.define("nx-ai-container", aiContainer);
54547
54547
  //console.log($);
54548
54548
  window.jQuery = window.$ = $$1;
54549
54549
 
54550
+ // ✅ Custom Elements 등록 함수 정의
54551
+ function defineCustomElements() {
54552
+ if (!customElements.get("nine-grid")) {
54553
+ customElements.define("nine-grid", NinegridContainer);
54554
+ }
54555
+ }
54556
+
54550
54557
  //export default ninegrid;
54551
54558
 
54552
54559
  //export default new ninegrid();
54553
54560
 
54554
- export { NinegridContainer, ninegrid as default };
54561
+ export { NinegridContainer, ninegrid as default, defineCustomElements };
package/dist/index.js CHANGED
@@ -175,13 +175,13 @@ export default ninegrid;
175
175
  //export default new ninegrid();
176
176
 
177
177
  export { NinegridContainer }; // Named Export
178
- /**
178
+
179
179
  // ✅ Custom Elements 등록 함수 정의
180
180
  export function defineCustomElements() {
181
181
  if (!customElements.get("nine-grid")) {
182
182
  customElements.define("nine-grid", NinegridContainer);
183
183
  }
184
- } */
184
+ }
185
185
 
186
186
  //const ninegrid = { defineCustomElements };
187
187
  export default ninegrid;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.593.0",
4
+ "version": "6.594.0",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
7
7
  "import": "./dist/index.js",
package/src/index.js CHANGED
@@ -175,13 +175,13 @@ export default ninegrid;
175
175
  //export default new ninegrid();
176
176
 
177
177
  export { NinegridContainer }; // Named Export
178
- /**
178
+
179
179
  // ✅ Custom Elements 등록 함수 정의
180
180
  export function defineCustomElements() {
181
181
  if (!customElements.get("nine-grid")) {
182
182
  customElements.define("nine-grid", NinegridContainer);
183
183
  }
184
- } */
184
+ }
185
185
 
186
186
  //const ninegrid = { defineCustomElements };
187
187
  export default ninegrid;