ninegrid2 6.1370.0 → 6.1372.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 +7 -1
- package/dist/bundle.esm.js +7 -1
- package/dist/nx/nxButtons.js +7 -1
- package/package.json +1 -1
- package/src/nx/nxButtons.js +7 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -28902,10 +28902,16 @@ class nxButtons extends nxDiv {
|
|
|
28902
28902
|
<style>
|
|
28903
28903
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/nxButtons.css";
|
|
28904
28904
|
${ninegrid.getCustomPath(this,"nxButtons.css")}
|
|
28905
|
+
|
|
28906
|
+
div[part="nx-buttons-part"] ::slotted(button[slot="sss"]) {
|
|
28907
|
+
background: red;
|
|
28908
|
+
padding: 4px 12px;
|
|
28909
|
+
border: 1px solid green;
|
|
28910
|
+
}
|
|
28905
28911
|
</style>
|
|
28906
28912
|
|
|
28907
28913
|
<div part="nx-buttons-part">
|
|
28908
|
-
<slot></slot>
|
|
28914
|
+
<slot name="sss"></slot>
|
|
28909
28915
|
</div>
|
|
28910
28916
|
`;
|
|
28911
28917
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -28898,10 +28898,16 @@ class nxButtons extends nxDiv {
|
|
|
28898
28898
|
<style>
|
|
28899
28899
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/nxButtons.css";
|
|
28900
28900
|
${ninegrid.getCustomPath(this,"nxButtons.css")}
|
|
28901
|
+
|
|
28902
|
+
div[part="nx-buttons-part"] ::slotted(button[slot="sss"]) {
|
|
28903
|
+
background: red;
|
|
28904
|
+
padding: 4px 12px;
|
|
28905
|
+
border: 1px solid green;
|
|
28906
|
+
}
|
|
28901
28907
|
</style>
|
|
28902
28908
|
|
|
28903
28909
|
<div part="nx-buttons-part">
|
|
28904
|
-
<slot></slot>
|
|
28910
|
+
<slot name="sss"></slot>
|
|
28905
28911
|
</div>
|
|
28906
28912
|
`;
|
|
28907
28913
|
|
package/dist/nx/nxButtons.js
CHANGED
|
@@ -20,10 +20,16 @@ class nxButtons extends nxDiv {
|
|
|
20
20
|
<style>
|
|
21
21
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/nxButtons.css";
|
|
22
22
|
${ninegrid.getCustomPath(this,"nxButtons.css")}
|
|
23
|
+
|
|
24
|
+
div[part="nx-buttons-part"] ::slotted(button[slot="sss"]) {
|
|
25
|
+
background: red;
|
|
26
|
+
padding: 4px 12px;
|
|
27
|
+
border: 1px solid green;
|
|
28
|
+
}
|
|
23
29
|
</style>
|
|
24
30
|
|
|
25
31
|
<div part="nx-buttons-part">
|
|
26
|
-
<slot></slot>
|
|
32
|
+
<slot name="sss"></slot>
|
|
27
33
|
</div>
|
|
28
34
|
`;
|
|
29
35
|
|
package/package.json
CHANGED
package/src/nx/nxButtons.js
CHANGED
|
@@ -20,10 +20,16 @@ class nxButtons extends nxDiv {
|
|
|
20
20
|
<style>
|
|
21
21
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/nxButtons.css";
|
|
22
22
|
${ninegrid.getCustomPath(this,"nxButtons.css")}
|
|
23
|
+
|
|
24
|
+
div[part="nx-buttons-part"] ::slotted(button[slot="sss"]) {
|
|
25
|
+
background: red;
|
|
26
|
+
padding: 4px 12px;
|
|
27
|
+
border: 1px solid green;
|
|
28
|
+
}
|
|
23
29
|
</style>
|
|
24
30
|
|
|
25
31
|
<div part="nx-buttons-part">
|
|
26
|
-
<slot></slot>
|
|
32
|
+
<slot name="sss"></slot>
|
|
27
33
|
</div>
|
|
28
34
|
`;
|
|
29
35
|
|