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.
- package/dist/bundle.cjs.js +2 -0
- package/dist/bundle.esm.js +2 -0
- package/dist/nx/_nxDiv.js +2 -0
- package/package.json +1 -1
- package/src/nx/_nxDiv.js +2 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -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;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -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
package/package.json
CHANGED
package/src/nx/_nxDiv.js
CHANGED