ninegrid2 6.1136.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 () {
@@ -122071,7 +122072,7 @@ class nxButtons extends nxDiv {
122071
122072
  this.innerHTML = ""; // 기존 내부 HTML 제거
122072
122073
  */
122073
122074
 
122074
- console.log(super.originContents);
122075
+ console.log(this.originContents);
122075
122076
 
122076
122077
  const htmlTmpl = document.createElement("template");
122077
122078
  htmlTmpl.innerHTML = `
@@ -122080,7 +122081,7 @@ class nxButtons extends nxDiv {
122080
122081
  ${ninegrid.getCustomPath(this,"nxButtons.css")}
122081
122082
  </style>
122082
122083
 
122083
- ${super.originContents}
122084
+ ${this.originContents}
122084
122085
  `;
122085
122086
 
122086
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 () {
@@ -122067,7 +122068,7 @@ class nxButtons extends nxDiv {
122067
122068
  this.innerHTML = ""; // 기존 내부 HTML 제거
122068
122069
  */
122069
122070
 
122070
- console.log(super.originContents);
122071
+ console.log(this.originContents);
122071
122072
 
122072
122073
  const htmlTmpl = document.createElement("template");
122073
122074
  htmlTmpl.innerHTML = `
@@ -122076,7 +122077,7 @@ class nxButtons extends nxDiv {
122076
122077
  ${ninegrid.getCustomPath(this,"nxButtons.css")}
122077
122078
  </style>
122078
122079
 
122079
- ${super.originContents}
122080
+ ${this.originContents}
122080
122081
  `;
122081
122082
 
122082
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 () {
@@ -24,7 +24,7 @@ class nxButtons extends nxDiv {
24
24
  this.innerHTML = ""; // 기존 내부 HTML 제거
25
25
  */
26
26
 
27
- console.log(super.originContents);
27
+ console.log(this.originContents);
28
28
 
29
29
  const htmlTmpl = document.createElement("template");
30
30
  htmlTmpl.innerHTML = `
@@ -33,7 +33,7 @@ class nxButtons extends nxDiv {
33
33
  ${ninegrid.getCustomPath(this,"nxButtons.css")}
34
34
  </style>
35
35
 
36
- ${super.originContents}
36
+ ${this.originContents}
37
37
  `;
38
38
 
39
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.1136.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 () {
@@ -24,7 +24,7 @@ class nxButtons extends nxDiv {
24
24
  this.innerHTML = ""; // 기존 내부 HTML 제거
25
25
  */
26
26
 
27
- console.log(super.originContents);
27
+ console.log(this.originContents);
28
28
 
29
29
  const htmlTmpl = document.createElement("template");
30
30
  htmlTmpl.innerHTML = `
@@ -33,7 +33,7 @@ class nxButtons extends nxDiv {
33
33
  ${ninegrid.getCustomPath(this,"nxButtons.css")}
34
34
  </style>
35
35
 
36
- ${super.originContents}
36
+ ${this.originContents}
37
37
  `;
38
38
 
39
39
  this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));