ninegrid2 6.1195.0 → 6.1196.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 -2
- package/dist/bundle.esm.js +2 -2
- package/dist/nx/_nxDiv.js +2 -2
- package/package.json +1 -1
- package/src/nx/_nxDiv.js +2 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -121837,8 +121837,6 @@ class nxDiv extends HTMLElement
|
|
|
121837
121837
|
const key = el.name;
|
|
121838
121838
|
if (!key) return; // name이 없는 요소는 건너뜁니다.
|
|
121839
121839
|
|
|
121840
|
-
console.log(el);
|
|
121841
|
-
|
|
121842
121840
|
let value;
|
|
121843
121841
|
if (el.tagName === "INPUT" && (el.type === "checkbox" || el.type === "radio")) {
|
|
121844
121842
|
value = el.checked;
|
|
@@ -121846,6 +121844,8 @@ class nxDiv extends HTMLElement
|
|
|
121846
121844
|
value = el.value;
|
|
121847
121845
|
}
|
|
121848
121846
|
|
|
121847
|
+
console.log(key, value);
|
|
121848
|
+
|
|
121849
121849
|
// 중복 name을 대비한 배열 처리
|
|
121850
121850
|
if (jsonData[key]) {
|
|
121851
121851
|
if (!Array.isArray(jsonData[key])) {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121833,8 +121833,6 @@ class nxDiv extends HTMLElement
|
|
|
121833
121833
|
const key = el.name;
|
|
121834
121834
|
if (!key) return; // name이 없는 요소는 건너뜁니다.
|
|
121835
121835
|
|
|
121836
|
-
console.log(el);
|
|
121837
|
-
|
|
121838
121836
|
let value;
|
|
121839
121837
|
if (el.tagName === "INPUT" && (el.type === "checkbox" || el.type === "radio")) {
|
|
121840
121838
|
value = el.checked;
|
|
@@ -121842,6 +121840,8 @@ class nxDiv extends HTMLElement
|
|
|
121842
121840
|
value = el.value;
|
|
121843
121841
|
}
|
|
121844
121842
|
|
|
121843
|
+
console.log(key, value);
|
|
121844
|
+
|
|
121845
121845
|
// 중복 name을 대비한 배열 처리
|
|
121846
121846
|
if (jsonData[key]) {
|
|
121847
121847
|
if (!Array.isArray(jsonData[key])) {
|
package/dist/nx/_nxDiv.js
CHANGED
|
@@ -28,8 +28,6 @@ export class nxDiv extends HTMLElement
|
|
|
28
28
|
const key = el.name;
|
|
29
29
|
if (!key) return; // name이 없는 요소는 건너뜁니다.
|
|
30
30
|
|
|
31
|
-
console.log(el);
|
|
32
|
-
|
|
33
31
|
let value;
|
|
34
32
|
if (el.tagName === "INPUT" && (el.type === "checkbox" || el.type === "radio")) {
|
|
35
33
|
value = el.checked;
|
|
@@ -37,6 +35,8 @@ export class nxDiv extends HTMLElement
|
|
|
37
35
|
value = el.value;
|
|
38
36
|
}
|
|
39
37
|
|
|
38
|
+
console.log(key, value);
|
|
39
|
+
|
|
40
40
|
// 중복 name을 대비한 배열 처리
|
|
41
41
|
if (jsonData[key]) {
|
|
42
42
|
if (!Array.isArray(jsonData[key])) {
|
package/package.json
CHANGED
package/src/nx/_nxDiv.js
CHANGED
|
@@ -28,8 +28,6 @@ export class nxDiv extends HTMLElement
|
|
|
28
28
|
const key = el.name;
|
|
29
29
|
if (!key) return; // name이 없는 요소는 건너뜁니다.
|
|
30
30
|
|
|
31
|
-
console.log(el);
|
|
32
|
-
|
|
33
31
|
let value;
|
|
34
32
|
if (el.tagName === "INPUT" && (el.type === "checkbox" || el.type === "radio")) {
|
|
35
33
|
value = el.checked;
|
|
@@ -37,6 +35,8 @@ export class nxDiv extends HTMLElement
|
|
|
37
35
|
value = el.value;
|
|
38
36
|
}
|
|
39
37
|
|
|
38
|
+
console.log(key, value);
|
|
39
|
+
|
|
40
40
|
// 중복 name을 대비한 배열 처리
|
|
41
41
|
if (jsonData[key]) {
|
|
42
42
|
if (!Array.isArray(jsonData[key])) {
|