sprintify-ui 0.8.37 → 0.8.39

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.
@@ -7081,7 +7081,7 @@ const rS = {
7081
7081
  color: { default: "" },
7082
7082
  to: { default: void 0 }
7083
7083
  },
7084
- emits: ["click"],
7084
+ emits: ["click", "mouseover", "mouseleave", "mouseenter"],
7085
7085
  setup(n, { expose: t }) {
7086
7086
  const e = hm(), r = {
7087
7087
  "": "",
@@ -7139,7 +7139,10 @@ const rS = {
7139
7139
  href: p.href,
7140
7140
  disabled: p.disabled,
7141
7141
  type: p.type,
7142
- onClick: g[0] || (g[0] = (m) => p.$emit("click", m))
7142
+ onClick: g[0] || (g[0] = (m) => p.$emit("click", m)),
7143
+ onMouseenter: g[1] || (g[1] = (m) => p.$emit("mouseenter", m)),
7144
+ onMouseover: g[2] || (g[2] = (m) => p.$emit("mouseover", m)),
7145
+ onMouseleave: g[3] || (g[3] = (m) => p.$emit("mouseleave", m))
7143
7146
  }, {
7144
7147
  default: pe(() => [
7145
7148
  j("div", {
@@ -7160,7 +7163,7 @@ const rS = {
7160
7163
  p.loading ? (I(), Y("div", rS, oS)) : ve("", !0)
7161
7164
  ]),
7162
7165
  _: 3
7163
- }, 8, ["class", "style", "to", "href", "disabled", "type"]));
7166
+ }, 40, ["class", "style", "to", "href", "disabled", "type"]));
7164
7167
  }
7165
7168
  }), hg = /* @__PURE__ */ ye({
7166
7169
  __name: "BasePassword",
@@ -56,6 +56,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
56
56
  focus: typeof focus;
57
57
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
58
58
  click: (...args: any[]) => void;
59
+ mouseenter: (...args: any[]) => void;
60
+ mouseleave: (...args: any[]) => void;
61
+ mouseover: (...args: any[]) => void;
59
62
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
60
63
  as?: string;
61
64
  disabled?: boolean;
@@ -84,6 +87,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
84
87
  to: undefined;
85
88
  }>>> & {
86
89
  onClick?: ((...args: any[]) => any) | undefined;
90
+ onMouseenter?: ((...args: any[]) => any) | undefined;
91
+ onMouseleave?: ((...args: any[]) => any) | undefined;
92
+ onMouseover?: ((...args: any[]) => any) | undefined;
87
93
  }, {
88
94
  class: string | false | 0 | 0n | ClassNameValue[] | null;
89
95
  type: "button" | "submit" | "reset";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.8.37",
3
+ "version": "0.8.39",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -9,6 +9,9 @@
9
9
  :disabled="disabled"
10
10
  :type="type"
11
11
  @click="$emit('click', $event)"
12
+ @mouseenter="$emit('mouseenter', $event)"
13
+ @mouseover="$emit('mouseover', $event)"
14
+ @mouseleave="$emit('mouseleave', $event)"
12
15
  >
13
16
  <div
14
17
  :class="containerClass"
@@ -109,7 +112,7 @@ const props = withDefaults(defineProps<{
109
112
  to: undefined,
110
113
  });
111
114
 
112
- defineEmits(['click']);
115
+ defineEmits(['click', 'mouseover', 'mouseleave', 'mouseenter']);
113
116
 
114
117
  const sizeInternal = computed(() => {
115
118