ninegrid2 6.1088.0 → 6.1090.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 +3 -5
- package/dist/bundle.esm.js +3 -5
- package/dist/nx/nxPanel.js +3 -5
- package/package.json +1 -1
- package/src/nx/nxPanel.js +3 -5
package/dist/bundle.cjs.js
CHANGED
|
@@ -121974,13 +121974,11 @@ class nxPanel extends HTMLElement {
|
|
|
121974
121974
|
${ninegrid.getCustomPath(this,"nxPanel.css")}
|
|
121975
121975
|
</style>
|
|
121976
121976
|
|
|
121977
|
-
|
|
121978
|
-
|
|
121979
|
-
<div class="body">${contents}</div>
|
|
121980
|
-
</div>
|
|
121977
|
+
<div class="head">${caption}</div>
|
|
121978
|
+
<div class="body">${contents}</div>
|
|
121981
121979
|
`;
|
|
121982
121980
|
|
|
121983
|
-
this.shadowRoot.
|
|
121981
|
+
this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
|
|
121984
121982
|
}
|
|
121985
121983
|
}
|
|
121986
121984
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121970,13 +121970,11 @@ class nxPanel extends HTMLElement {
|
|
|
121970
121970
|
${ninegrid.getCustomPath(this,"nxPanel.css")}
|
|
121971
121971
|
</style>
|
|
121972
121972
|
|
|
121973
|
-
|
|
121974
|
-
|
|
121975
|
-
<div class="body">${contents}</div>
|
|
121976
|
-
</div>
|
|
121973
|
+
<div class="head">${caption}</div>
|
|
121974
|
+
<div class="body">${contents}</div>
|
|
121977
121975
|
`;
|
|
121978
121976
|
|
|
121979
|
-
this.shadowRoot.
|
|
121977
|
+
this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
|
|
121980
121978
|
}
|
|
121981
121979
|
}
|
|
121982
121980
|
|
package/dist/nx/nxPanel.js
CHANGED
|
@@ -22,13 +22,11 @@ class nxPanel extends HTMLElement {
|
|
|
22
22
|
${ninegrid.getCustomPath(this,"nxPanel.css")}
|
|
23
23
|
</style>
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
<div class="body">${contents}</div>
|
|
28
|
-
</div>
|
|
25
|
+
<div class="head">${caption}</div>
|
|
26
|
+
<div class="body">${contents}</div>
|
|
29
27
|
`;
|
|
30
28
|
|
|
31
|
-
this.shadowRoot.
|
|
29
|
+
this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
|
|
32
30
|
}
|
|
33
31
|
}
|
|
34
32
|
|
package/package.json
CHANGED
package/src/nx/nxPanel.js
CHANGED
|
@@ -22,13 +22,11 @@ class nxPanel extends HTMLElement {
|
|
|
22
22
|
${ninegrid.getCustomPath(this,"nxPanel.css")}
|
|
23
23
|
</style>
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
<div class="body">${contents}</div>
|
|
28
|
-
</div>
|
|
25
|
+
<div class="head">${caption}</div>
|
|
26
|
+
<div class="body">${contents}</div>
|
|
29
27
|
`;
|
|
30
28
|
|
|
31
|
-
this.shadowRoot.
|
|
29
|
+
this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
|
|
32
30
|
}
|
|
33
31
|
}
|
|
34
32
|
|