@comercti/vue-components-hmg 0.43.12 → 0.43.14
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/comerc-style-guide.cjs.js +1 -1
- package/comerc-style-guide.es.js +4 -3
- package/comerc-style-guide.umd.js +1 -1
- package/index.d.ts +4 -1
- package/package.json +1 -1
package/comerc-style-guide.es.js
CHANGED
|
@@ -8412,7 +8412,7 @@ const L0 = /* @__PURE__ */ J({
|
|
|
8412
8412
|
props: {
|
|
8413
8413
|
items: {},
|
|
8414
8414
|
position: { default: "bottom-end" },
|
|
8415
|
-
callbacks: {}
|
|
8415
|
+
callbacks: { default: () => ({}) }
|
|
8416
8416
|
},
|
|
8417
8417
|
emits: ["select"],
|
|
8418
8418
|
setup(e, { emit: t }) {
|
|
@@ -8481,8 +8481,9 @@ const L0 = /* @__PURE__ */ J({
|
|
|
8481
8481
|
b.icon ? (d(), K(G, {
|
|
8482
8482
|
key: 0,
|
|
8483
8483
|
name: b.icon,
|
|
8484
|
-
color: b.color
|
|
8485
|
-
|
|
8484
|
+
color: b.iconColor || b.color,
|
|
8485
|
+
size: b.iconSize || "16"
|
|
8486
|
+
}, null, 8, ["name", "color", "size"])) : C("", !0),
|
|
8486
8487
|
c("span", {
|
|
8487
8488
|
style: ie({ color: b.color })
|
|
8488
8489
|
}, z(b.label), 5)
|