ninegrid2 6.1367.0 → 6.1369.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.
@@ -28872,9 +28872,7 @@ class nxPanel extends nxDiv {
28872
28872
  </div>
28873
28873
  <div class="body">
28874
28874
  <nx-layout2 columns="${columns}" rows-height="${rowsHeight}">
28875
- <div part="nx-panel-part">
28876
- <slot></slot>
28877
- </div>
28875
+ ${this.originContents}
28878
28876
  </nx-layout2>
28879
28877
  </div>
28880
28878
  `;
@@ -28907,7 +28905,7 @@ class nxButtons extends nxDiv {
28907
28905
  </style>
28908
28906
 
28909
28907
  <div part="nx-buttons-part">
28910
- <slot></slot>
28908
+ <slot name="sss"></slot>
28911
28909
  </div>
28912
28910
  `;
28913
28911
 
@@ -28868,9 +28868,7 @@ class nxPanel extends nxDiv {
28868
28868
  </div>
28869
28869
  <div class="body">
28870
28870
  <nx-layout2 columns="${columns}" rows-height="${rowsHeight}">
28871
- <div part="nx-panel-part">
28872
- <slot></slot>
28873
- </div>
28871
+ ${this.originContents}
28874
28872
  </nx-layout2>
28875
28873
  </div>
28876
28874
  `;
@@ -28903,7 +28901,7 @@ class nxButtons extends nxDiv {
28903
28901
  </style>
28904
28902
 
28905
28903
  <div part="nx-buttons-part">
28906
- <slot></slot>
28904
+ <slot name="sss"></slot>
28907
28905
  </div>
28908
28906
  `;
28909
28907
 
@@ -23,7 +23,7 @@ class nxButtons extends nxDiv {
23
23
  </style>
24
24
 
25
25
  <div part="nx-buttons-part">
26
- <slot></slot>
26
+ <slot name="sss"></slot>
27
27
  </div>
28
28
  `;
29
29
 
@@ -28,9 +28,7 @@ class nxPanel extends nxDiv {
28
28
  </div>
29
29
  <div class="body">
30
30
  <nx-layout2 columns="${columns}" rows-height="${rowsHeight}">
31
- <div part="nx-panel-part">
32
- <slot></slot>
33
- </div>
31
+ ${this.originContents}
34
32
  </nx-layout2>
35
33
  </div>
36
34
  `;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1367.0",
4
+ "version": "6.1369.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -23,7 +23,7 @@ class nxButtons extends nxDiv {
23
23
  </style>
24
24
 
25
25
  <div part="nx-buttons-part">
26
- <slot></slot>
26
+ <slot name="sss"></slot>
27
27
  </div>
28
28
  `;
29
29
 
package/src/nx/nxPanel.js CHANGED
@@ -28,9 +28,7 @@ class nxPanel extends nxDiv {
28
28
  </div>
29
29
  <div class="body">
30
30
  <nx-layout2 columns="${columns}" rows-height="${rowsHeight}">
31
- <div part="nx-panel-part">
32
- <slot></slot>
33
- </div>
31
+ ${this.originContents}
34
32
  </nx-layout2>
35
33
  </div>
36
34
  `;