ninegrid2 6.1262.0 → 6.1264.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.
@@ -122282,6 +122282,7 @@ class nxButtons extends nxDiv {
122282
122282
 
122283
122283
  const actionName = btn.getAttribute('on-click') || btn.getAttribute('onClick') || btn.getAttribute('onclick');
122284
122284
  console.log(actionName, this[actionName]);
122285
+ console.log(typeof this[actionName]);
122285
122286
  if (actionName) {
122286
122287
  // 1. 먼저 엘리먼트 자체(this)에 해당 이름의 함수가 있는지 확인
122287
122288
  if (typeof this[actionName] === 'function') {
@@ -122278,6 +122278,7 @@ class nxButtons extends nxDiv {
122278
122278
 
122279
122279
  const actionName = btn.getAttribute('on-click') || btn.getAttribute('onClick') || btn.getAttribute('onclick');
122280
122280
  console.log(actionName, this[actionName]);
122281
+ console.log(typeof this[actionName]);
122281
122282
  if (actionName) {
122282
122283
  // 1. 먼저 엘리먼트 자체(this)에 해당 이름의 함수가 있는지 확인
122283
122284
  if (typeof this[actionName] === 'function') {
@@ -33,6 +33,7 @@ class nxButtons extends nxDiv {
33
33
 
34
34
  const actionName = btn.getAttribute('on-click') || btn.getAttribute('onClick') || btn.getAttribute('onclick');
35
35
  console.log(actionName, this[actionName])
36
+ console.log(typeof this[actionName])
36
37
  if (actionName) {
37
38
  // 1. 먼저 엘리먼트 자체(this)에 해당 이름의 함수가 있는지 확인
38
39
  if (typeof this[actionName] === 'function') {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1262.0",
4
+ "version": "6.1264.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -33,6 +33,7 @@ class nxButtons extends nxDiv {
33
33
 
34
34
  const actionName = btn.getAttribute('on-click') || btn.getAttribute('onClick') || btn.getAttribute('onclick');
35
35
  console.log(actionName, this[actionName])
36
+ console.log(typeof this[actionName])
36
37
  if (actionName) {
37
38
  // 1. 먼저 엘리먼트 자체(this)에 해당 이름의 함수가 있는지 확인
38
39
  if (typeof this[actionName] === 'function') {