ninegrid2 6.88.0 → 6.89.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/index.js CHANGED
@@ -6,7 +6,7 @@ import $ from "jquery";
6
6
  window.jQuery = window.$ = $;
7
7
 
8
8
  //import "./utils/ninegrid.js";
9
- import ninegrid from "./utils/ninegrid.js";
9
+ import { ninegrid } from "./utils/ninegrid.js";
10
10
 
11
11
  //const ng = new ninegrid(); // ✅ 새로운 인스턴스 생성
12
12
  //console.log(ninegrid.version);
@@ -1,6 +1,6 @@
1
1
 
2
2
 
3
- class ninegrid {
3
+ export class ninegrid {
4
4
 
5
5
 
6
6
  constructor() {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.88.0",
4
+ "version": "6.89.0",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
7
7
  "import": "./dist/index.js",
package/src/index.js CHANGED
@@ -6,7 +6,7 @@ import $ from "jquery";
6
6
  window.jQuery = window.$ = $;
7
7
 
8
8
  //import "./utils/ninegrid.js";
9
- import ninegrid from "./utils/ninegrid.js";
9
+ import { ninegrid } from "./utils/ninegrid.js";
10
10
 
11
11
  //const ng = new ninegrid(); // ✅ 새로운 인스턴스 생성
12
12
  //console.log(ninegrid.version);
@@ -1,6 +1,6 @@
1
1
 
2
2
 
3
- class ninegrid {
3
+ export class ninegrid {
4
4
 
5
5
 
6
6
  constructor() {