ninegrid2 6.1135.0 → 6.1137.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.
@@ -122011,6 +122011,7 @@ customElements.define("nx-panel", nxPanel);
122011
122011
 
122012
122012
  class nxDiv extends HTMLElement
122013
122013
  {
122014
+ originContents = '';
122014
122015
  #isInitialized = false;
122015
122016
 
122016
122017
  constructor () {
@@ -122043,6 +122044,8 @@ class nxDiv extends HTMLElement
122043
122044
 
122044
122045
  this.originContents = this.innerHTML.trim();
122045
122046
  this.innerHTML = ""; // 기존 내부 HTML 제거
122047
+
122048
+ console.log(this.originContents);
122046
122049
  };
122047
122050
  }
122048
122051
 
@@ -122069,6 +122072,8 @@ class nxButtons extends nxDiv {
122069
122072
  this.innerHTML = ""; // 기존 내부 HTML 제거
122070
122073
  */
122071
122074
 
122075
+ console.log(this.originContents);
122076
+
122072
122077
  const htmlTmpl = document.createElement("template");
122073
122078
  htmlTmpl.innerHTML = `
122074
122079
  <style>
@@ -122076,7 +122081,7 @@ class nxButtons extends nxDiv {
122076
122081
  ${ninegrid.getCustomPath(this,"nxButtons.css")}
122077
122082
  </style>
122078
122083
 
122079
- ${super.originContents}
122084
+ ${this.originContents}
122080
122085
  `;
122081
122086
 
122082
122087
  this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
@@ -122007,6 +122007,7 @@ customElements.define("nx-panel", nxPanel);
122007
122007
 
122008
122008
  class nxDiv extends HTMLElement
122009
122009
  {
122010
+ originContents = '';
122010
122011
  #isInitialized = false;
122011
122012
 
122012
122013
  constructor () {
@@ -122039,6 +122040,8 @@ class nxDiv extends HTMLElement
122039
122040
 
122040
122041
  this.originContents = this.innerHTML.trim();
122041
122042
  this.innerHTML = ""; // 기존 내부 HTML 제거
122043
+
122044
+ console.log(this.originContents);
122042
122045
  };
122043
122046
  }
122044
122047
 
@@ -122065,6 +122068,8 @@ class nxButtons extends nxDiv {
122065
122068
  this.innerHTML = ""; // 기존 내부 HTML 제거
122066
122069
  */
122067
122070
 
122071
+ console.log(this.originContents);
122072
+
122068
122073
  const htmlTmpl = document.createElement("template");
122069
122074
  htmlTmpl.innerHTML = `
122070
122075
  <style>
@@ -122072,7 +122077,7 @@ class nxButtons extends nxDiv {
122072
122077
  ${ninegrid.getCustomPath(this,"nxButtons.css")}
122073
122078
  </style>
122074
122079
 
122075
- ${super.originContents}
122080
+ ${this.originContents}
122076
122081
  `;
122077
122082
 
122078
122083
  this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
package/dist/nx/_nxDiv.js CHANGED
@@ -2,6 +2,7 @@ import ninegrid from "../index.js";
2
2
 
3
3
  export class nxDiv extends HTMLElement
4
4
  {
5
+ originContents = '';
5
6
  #isInitialized = false;
6
7
 
7
8
  constructor () {
@@ -34,5 +35,7 @@ export class nxDiv extends HTMLElement
34
35
 
35
36
  this.originContents = this.innerHTML.trim();
36
37
  this.innerHTML = ""; // 기존 내부 HTML 제거
38
+
39
+ console.log(this.originContents);
37
40
  };
38
41
  }
@@ -24,6 +24,8 @@ class nxButtons extends nxDiv {
24
24
  this.innerHTML = ""; // 기존 내부 HTML 제거
25
25
  */
26
26
 
27
+ console.log(this.originContents);
28
+
27
29
  const htmlTmpl = document.createElement("template");
28
30
  htmlTmpl.innerHTML = `
29
31
  <style>
@@ -31,7 +33,7 @@ class nxButtons extends nxDiv {
31
33
  ${ninegrid.getCustomPath(this,"nxButtons.css")}
32
34
  </style>
33
35
 
34
- ${super.originContents}
36
+ ${this.originContents}
35
37
  `;
36
38
 
37
39
  this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1135.0",
4
+ "version": "6.1137.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
package/src/nx/_nxDiv.js CHANGED
@@ -2,6 +2,7 @@ import ninegrid from "../index.js";
2
2
 
3
3
  export class nxDiv extends HTMLElement
4
4
  {
5
+ originContents = '';
5
6
  #isInitialized = false;
6
7
 
7
8
  constructor () {
@@ -34,5 +35,7 @@ export class nxDiv extends HTMLElement
34
35
 
35
36
  this.originContents = this.innerHTML.trim();
36
37
  this.innerHTML = ""; // 기존 내부 HTML 제거
38
+
39
+ console.log(this.originContents);
37
40
  };
38
41
  }
@@ -24,6 +24,8 @@ class nxButtons extends nxDiv {
24
24
  this.innerHTML = ""; // 기존 내부 HTML 제거
25
25
  */
26
26
 
27
+ console.log(this.originContents);
28
+
27
29
  const htmlTmpl = document.createElement("template");
28
30
  htmlTmpl.innerHTML = `
29
31
  <style>
@@ -31,7 +33,7 @@ class nxButtons extends nxDiv {
31
33
  ${ninegrid.getCustomPath(this,"nxButtons.css")}
32
34
  </style>
33
35
 
34
- ${super.originContents}
36
+ ${this.originContents}
35
37
  `;
36
38
 
37
39
  this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));