ninegrid2 6.1193.0 → 6.1195.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.
@@ -121837,6 +121837,8 @@ class nxDiv extends HTMLElement
121837
121837
  const key = el.name;
121838
121838
  if (!key) return; // name이 없는 요소는 건너뜁니다.
121839
121839
 
121840
+ console.log(el);
121841
+
121840
121842
  let value;
121841
121843
  if (el.tagName === "INPUT" && (el.type === "checkbox" || el.type === "radio")) {
121842
121844
  value = el.checked;
@@ -121833,6 +121833,8 @@ class nxDiv extends HTMLElement
121833
121833
  const key = el.name;
121834
121834
  if (!key) return; // name이 없는 요소는 건너뜁니다.
121835
121835
 
121836
+ console.log(el);
121837
+
121836
121838
  let value;
121837
121839
  if (el.tagName === "INPUT" && (el.type === "checkbox" || el.type === "radio")) {
121838
121840
  value = el.checked;
package/dist/nx/_nxDiv.js CHANGED
@@ -28,6 +28,8 @@ export class nxDiv extends HTMLElement
28
28
  const key = el.name;
29
29
  if (!key) return; // name이 없는 요소는 건너뜁니다.
30
30
 
31
+ console.log(el);
32
+
31
33
  let value;
32
34
  if (el.tagName === "INPUT" && (el.type === "checkbox" || el.type === "radio")) {
33
35
  value = el.checked;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1193.0",
4
+ "version": "6.1195.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
package/src/nx/_nxDiv.js CHANGED
@@ -28,6 +28,8 @@ export class nxDiv extends HTMLElement
28
28
  const key = el.name;
29
29
  if (!key) return; // name이 없는 요소는 건너뜁니다.
30
30
 
31
+ console.log(el);
32
+
31
33
  let value;
32
34
  if (el.tagName === "INPUT" && (el.type === "checkbox" || el.type === "radio")) {
33
35
  value = el.checked;