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.
- package/dist/bundle.cjs.js +3 -1
- package/dist/bundle.esm.js +3 -1
- package/dist/etc/_ngCell.js +3 -1
- package/package.json +1 -1
- package/src/etc/_ngCell.js +3 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -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
|
}
|
package/dist/bundle.esm.js
CHANGED
|
@@ -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
|
}
|
package/dist/etc/_ngCell.js
CHANGED
|
@@ -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
package/src/etc/_ngCell.js
CHANGED
|
@@ -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
|
}
|