ninegrid2 6.1239.0 → 6.1240.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.
@@ -12346,7 +12346,9 @@ class ngCellEx extends HTMLElement
12346
12346
  const match = fn.match(/^(\w+)\s*\(/);
12347
12347
  // match가 null이면 undefined 반환, 아니면 [1] 반환
12348
12348
  const methodName = match?.[1];
12349
-
12349
+
12350
+ console.log(methodName);
12351
+
12350
12352
  if (this.owner[methodName]) {
12351
12353
  this.owner[methodName].call(this.owner, this.cell.closest("tr").data, parseInt(this.cell.dataset.row), this.cell);
12352
12354
  }
@@ -12342,7 +12342,9 @@ class ngCellEx extends HTMLElement
12342
12342
  const match = fn.match(/^(\w+)\s*\(/);
12343
12343
  // match가 null이면 undefined 반환, 아니면 [1] 반환
12344
12344
  const methodName = match?.[1];
12345
-
12345
+
12346
+ console.log(methodName);
12347
+
12346
12348
  if (this.owner[methodName]) {
12347
12349
  this.owner[methodName].call(this.owner, this.cell.closest("tr").data, parseInt(this.cell.dataset.row), this.cell);
12348
12350
  }
@@ -229,7 +229,9 @@ export class ngCellEx extends HTMLElement
229
229
  const match = fn.match(/^(\w+)\s*\(/);
230
230
  // match가 null이면 undefined 반환, 아니면 [1] 반환
231
231
  const methodName = match?.[1];
232
-
232
+
233
+ console.log(methodName);
234
+
233
235
  if (this.owner[methodName]) {
234
236
  this.owner[methodName].call(this.owner, this.cell.closest("tr").data, parseInt(this.cell.dataset.row), this.cell);
235
237
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1239.0",
4
+ "version": "6.1240.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -229,7 +229,9 @@ export class ngCellEx extends HTMLElement
229
229
  const match = fn.match(/^(\w+)\s*\(/);
230
230
  // match가 null이면 undefined 반환, 아니면 [1] 반환
231
231
  const methodName = match?.[1];
232
-
232
+
233
+ console.log(methodName);
234
+
233
235
  if (this.owner[methodName]) {
234
236
  this.owner[methodName].call(this.owner, this.cell.closest("tr").data, parseInt(this.cell.dataset.row), this.cell);
235
237
  }