ninegrid2 6.1364.0 → 6.1366.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 +5 -2
- package/dist/bundle.esm.js +5 -2
- package/dist/nx/nxButtons.js +1 -1
- package/dist/nx/nxTitle2.js +4 -1
- package/package.json +1 -1
- package/src/nx/nxButtons.js +1 -1
- package/src/nx/nxTitle2.js +4 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -28612,7 +28612,10 @@ class nxTitle2 extends nxDiv {
|
|
|
28612
28612
|
<div class="left">
|
|
28613
28613
|
<span>${caption}</span>
|
|
28614
28614
|
</div>
|
|
28615
|
-
|
|
28615
|
+
|
|
28616
|
+
<div part="nx-title2">
|
|
28617
|
+
<slot></slot>
|
|
28618
|
+
</div>
|
|
28616
28619
|
`;
|
|
28617
28620
|
|
|
28618
28621
|
this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
|
|
@@ -28901,7 +28904,7 @@ class nxButtons extends nxDiv {
|
|
|
28901
28904
|
${ninegrid.getCustomPath(this,"nxButtons.css")}
|
|
28902
28905
|
</style>
|
|
28903
28906
|
|
|
28904
|
-
<div part="nx-buttons">
|
|
28907
|
+
<div part="nx-buttons-part">
|
|
28905
28908
|
<slot></slot>
|
|
28906
28909
|
</div>
|
|
28907
28910
|
`;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -28608,7 +28608,10 @@ class nxTitle2 extends nxDiv {
|
|
|
28608
28608
|
<div class="left">
|
|
28609
28609
|
<span>${caption}</span>
|
|
28610
28610
|
</div>
|
|
28611
|
-
|
|
28611
|
+
|
|
28612
|
+
<div part="nx-title2">
|
|
28613
|
+
<slot></slot>
|
|
28614
|
+
</div>
|
|
28612
28615
|
`;
|
|
28613
28616
|
|
|
28614
28617
|
this.shadowRoot.appendChild(htmlTmpl.content.cloneNode(true));
|
|
@@ -28897,7 +28900,7 @@ class nxButtons extends nxDiv {
|
|
|
28897
28900
|
${ninegrid.getCustomPath(this,"nxButtons.css")}
|
|
28898
28901
|
</style>
|
|
28899
28902
|
|
|
28900
|
-
<div part="nx-buttons">
|
|
28903
|
+
<div part="nx-buttons-part">
|
|
28901
28904
|
<slot></slot>
|
|
28902
28905
|
</div>
|
|
28903
28906
|
`;
|
package/dist/nx/nxButtons.js
CHANGED
package/dist/nx/nxTitle2.js
CHANGED
package/package.json
CHANGED
package/src/nx/nxButtons.js
CHANGED
package/src/nx/nxTitle2.js
CHANGED