@comercti/web-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 +9 -9
- package/package.json +1 -1
package/comerc-style-guide.es.js
CHANGED
|
@@ -6934,7 +6934,7 @@ const Sd = ["onClick"], Ld = {
|
|
|
6934
6934
|
props: {
|
|
6935
6935
|
items: {},
|
|
6936
6936
|
position: { default: "bottom-end" },
|
|
6937
|
-
callbacks: {}
|
|
6937
|
+
callbacks: { default: () => ({}) }
|
|
6938
6938
|
},
|
|
6939
6939
|
emits: ["select"],
|
|
6940
6940
|
setup(e, { emit: t }) {
|
|
@@ -7003,8 +7003,9 @@ const Sd = ["onClick"], Ld = {
|
|
|
7003
7003
|
h.icon ? (d(), ee(X, {
|
|
7004
7004
|
key: 0,
|
|
7005
7005
|
name: h.icon,
|
|
7006
|
-
color: h.color
|
|
7007
|
-
|
|
7006
|
+
color: h.iconColor || h.color,
|
|
7007
|
+
size: h.iconSize || "16"
|
|
7008
|
+
}, null, 8, ["name", "color", "size"])) : C("", !0),
|
|
7008
7009
|
u("span", {
|
|
7009
7010
|
style: ce({ color: h.color })
|
|
7010
7011
|
}, N(h.label), 5)
|