ninegrid2 6.1091.0 → 6.1092.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.
@@ -121981,7 +121981,9 @@ class nxPanel extends HTMLElement {
121981
121981
  ${ninegrid.getCustomPath(this,"nxPanel.css")}
121982
121982
  </style>
121983
121983
 
121984
- <div class="head">${caption}</div>
121984
+ <div class="head">
121985
+ <div class="caption"><span>${caption}</span></div>
121986
+ </div>
121985
121987
  <div class="body">${contents}</div>
121986
121988
  `;
121987
121989
 
@@ -121977,7 +121977,9 @@ class nxPanel extends HTMLElement {
121977
121977
  ${ninegrid.getCustomPath(this,"nxPanel.css")}
121978
121978
  </style>
121979
121979
 
121980
- <div class="head">${caption}</div>
121980
+ <div class="head">
121981
+ <div class="caption"><span>${caption}</span></div>
121982
+ </div>
121981
121983
  <div class="body">${contents}</div>
121982
121984
  `;
121983
121985
 
@@ -29,7 +29,9 @@ class nxPanel extends HTMLElement {
29
29
  ${ninegrid.getCustomPath(this,"nxPanel.css")}
30
30
  </style>
31
31
 
32
- <div class="head">${caption}</div>
32
+ <div class="head">
33
+ <div class="caption"><span>${caption}</span></div>
34
+ </div>
33
35
  <div class="body">${contents}</div>
34
36
  `;
35
37
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1091.0",
4
+ "version": "6.1092.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
package/src/nx/nxPanel.js CHANGED
@@ -29,7 +29,9 @@ class nxPanel extends HTMLElement {
29
29
  ${ninegrid.getCustomPath(this,"nxPanel.css")}
30
30
  </style>
31
31
 
32
- <div class="head">${caption}</div>
32
+ <div class="head">
33
+ <div class="caption"><span>${caption}</span></div>
34
+ </div>
33
35
  <div class="body">${contents}</div>
34
36
  `;
35
37