ninegrid2 6.1268.0 → 6.1269.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 +4 -1
- package/dist/bundle.esm.js +4 -1
- package/dist/nx/_nxDiv.js +3 -0
- package/dist/nx/nxButtons.js +1 -1
- package/package.json +1 -1
- package/src/nx/_nxDiv.js +3 -0
- package/src/nx/nxButtons.js +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -121958,6 +121958,9 @@ class nxDiv extends HTMLElement {
|
|
|
121958
121958
|
}
|
|
121959
121959
|
}
|
|
121960
121960
|
|
|
121961
|
+
console.log("=========");
|
|
121962
|
+
console.log(this.innerHTML.trim());
|
|
121963
|
+
|
|
121961
121964
|
this.originContents = this.innerHTML.trim();
|
|
121962
121965
|
this.innerHTML = ""; // 기존 내부 HTML 제거
|
|
121963
121966
|
|
|
@@ -122273,7 +122276,7 @@ class nxButtons extends nxDiv {
|
|
|
122273
122276
|
${this.originContents}
|
|
122274
122277
|
`;
|
|
122275
122278
|
|
|
122276
|
-
console.log(htmlTmpl);
|
|
122279
|
+
//console.log(htmlTmpl);
|
|
122277
122280
|
|
|
122278
122281
|
target.appendChild(htmlTmpl.content.cloneNode(true));
|
|
122279
122282
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121954,6 +121954,9 @@ class nxDiv extends HTMLElement {
|
|
|
121954
121954
|
}
|
|
121955
121955
|
}
|
|
121956
121956
|
|
|
121957
|
+
console.log("=========");
|
|
121958
|
+
console.log(this.innerHTML.trim());
|
|
121959
|
+
|
|
121957
121960
|
this.originContents = this.innerHTML.trim();
|
|
121958
121961
|
this.innerHTML = ""; // 기존 내부 HTML 제거
|
|
121959
121962
|
|
|
@@ -122269,7 +122272,7 @@ class nxButtons extends nxDiv {
|
|
|
122269
122272
|
${this.originContents}
|
|
122270
122273
|
`;
|
|
122271
122274
|
|
|
122272
|
-
console.log(htmlTmpl);
|
|
122275
|
+
//console.log(htmlTmpl);
|
|
122273
122276
|
|
|
122274
122277
|
target.appendChild(htmlTmpl.content.cloneNode(true));
|
|
122275
122278
|
|
package/dist/nx/_nxDiv.js
CHANGED
package/dist/nx/nxButtons.js
CHANGED
package/package.json
CHANGED
package/src/nx/_nxDiv.js
CHANGED