sprintify-ui 0.8.17 → 0.8.19
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/sprintify-ui.es.js
CHANGED
|
@@ -7030,7 +7030,7 @@ const Wx = {
|
|
|
7030
7030
|
href: p.href,
|
|
7031
7031
|
disabled: p.disabled,
|
|
7032
7032
|
type: p.type,
|
|
7033
|
-
onClick: g[0] || (g[0] = (m) => p.$emit("click"))
|
|
7033
|
+
onClick: g[0] || (g[0] = (m) => p.$emit("click", m))
|
|
7034
7034
|
}, {
|
|
7035
7035
|
default: he(() => [
|
|
7036
7036
|
j("div", {
|
|
@@ -9620,8 +9620,8 @@ const BE = {
|
|
|
9620
9620
|
},
|
|
9621
9621
|
emits: ["click"],
|
|
9622
9622
|
setup(n, { emit: t }) {
|
|
9623
|
-
const e = t, r = () => {
|
|
9624
|
-
e("click");
|
|
9623
|
+
const e = t, r = (a) => {
|
|
9624
|
+
e("click", a);
|
|
9625
9625
|
}, i = n, o = N(() => i.size == "xs" ? "md:p-3 p-2" : i.size == "sm" ? "md:p-4 p-3" : i.size == "lg" ? "md:p-8 p-6" : "md:p-6 px-4 py-5"), l = N(() => gt(
|
|
9626
9626
|
"border-t border-slate-300 first:border-t-0",
|
|
9627
9627
|
o.value,
|
package/package.json
CHANGED