ninegrid2 6.88.0 → 6.90.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/bundle.cjs.js +697 -706
- package/dist/bundle.esm.js +697 -706
- package/dist/etc/_ngCell.js +3 -0
- package/dist/index.js +1 -1
- package/dist/utils/ninegrid.js +3 -3
- package/package.json +1 -1
- package/src/etc/_ngCell.js +3 -0
- package/src/index.js +1 -1
- package/src/utils/ninegrid.js +3 -3
package/dist/etc/_ngCell.js
CHANGED
|
@@ -276,8 +276,11 @@ export class ngCellEx extends HTMLElement
|
|
|
276
276
|
const row = parseInt(this.cell.dataset.row);
|
|
277
277
|
|
|
278
278
|
if (!rowData) return "";
|
|
279
|
+
|
|
280
|
+
console.log(this.cell.dataset.expr, this.cell.dataset.bind);
|
|
279
281
|
|
|
280
282
|
if (!ninegrid.isNull(this.cell.dataset.expr)) {
|
|
283
|
+
|
|
281
284
|
try {
|
|
282
285
|
//console.log(this.cell.dataset.expr);
|
|
283
286
|
|
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);
|
package/dist/utils/ninegrid.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
class ninegrid {
|
|
3
|
+
export class ninegrid {
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
constructor() {
|
|
@@ -172,7 +172,7 @@ class ninegrid {
|
|
|
172
172
|
cssPath = host.getAttribute("css-path");
|
|
173
173
|
}
|
|
174
174
|
|
|
175
|
-
console.log("========================", ninegrid.cssPath);
|
|
175
|
+
//console.log("========================", ninegrid.cssPath);
|
|
176
176
|
|
|
177
177
|
if (!cssPath) cssPath = ninegrid.cssPath;
|
|
178
178
|
//console.log("================");
|
|
@@ -180,7 +180,7 @@ class ninegrid {
|
|
|
180
180
|
|
|
181
181
|
//console.log(cssPath ? `@import "${cssPath}/dist/${v}";` : null);
|
|
182
182
|
|
|
183
|
-
console.log("========================", cssPath ? `@import "${cssPath}/${v}";` : "");
|
|
183
|
+
//console.log("========================", cssPath ? `@import "${cssPath}/${v}";` : "");
|
|
184
184
|
|
|
185
185
|
return cssPath ? `@import "${cssPath}/${v}";` : "";
|
|
186
186
|
};
|
package/package.json
CHANGED
package/src/etc/_ngCell.js
CHANGED
|
@@ -276,8 +276,11 @@ export class ngCellEx extends HTMLElement
|
|
|
276
276
|
const row = parseInt(this.cell.dataset.row);
|
|
277
277
|
|
|
278
278
|
if (!rowData) return "";
|
|
279
|
+
|
|
280
|
+
console.log(this.cell.dataset.expr, this.cell.dataset.bind);
|
|
279
281
|
|
|
280
282
|
if (!ninegrid.isNull(this.cell.dataset.expr)) {
|
|
283
|
+
|
|
281
284
|
try {
|
|
282
285
|
//console.log(this.cell.dataset.expr);
|
|
283
286
|
|
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);
|
package/src/utils/ninegrid.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
class ninegrid {
|
|
3
|
+
export class ninegrid {
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
constructor() {
|
|
@@ -172,7 +172,7 @@ class ninegrid {
|
|
|
172
172
|
cssPath = host.getAttribute("css-path");
|
|
173
173
|
}
|
|
174
174
|
|
|
175
|
-
console.log("========================", ninegrid.cssPath);
|
|
175
|
+
//console.log("========================", ninegrid.cssPath);
|
|
176
176
|
|
|
177
177
|
if (!cssPath) cssPath = ninegrid.cssPath;
|
|
178
178
|
//console.log("================");
|
|
@@ -180,7 +180,7 @@ class ninegrid {
|
|
|
180
180
|
|
|
181
181
|
//console.log(cssPath ? `@import "${cssPath}/dist/${v}";` : null);
|
|
182
182
|
|
|
183
|
-
console.log("========================", cssPath ? `@import "${cssPath}/${v}";` : "");
|
|
183
|
+
//console.log("========================", cssPath ? `@import "${cssPath}/${v}";` : "");
|
|
184
184
|
|
|
185
185
|
return cssPath ? `@import "${cssPath}/${v}";` : "";
|
|
186
186
|
};
|