sprintify-ui 0.10.83 → 0.10.84

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.
@@ -43995,7 +43995,7 @@ const HL = /* @__PURE__ */ Qi($L, [["render", jL]]), qL = { class: "flex-shrink-
43995
43995
  type: String
43996
43996
  }
43997
43997
  },
43998
- emits: ["update:modelValue"],
43998
+ emits: ["update:modelValue", "blur", "focus"],
43999
43999
  setup(n, { emit: t }) {
44000
44000
  const e = n, r = t, { emitUpdate: o, sizeInternal: i } = On({
44001
44001
  name: S(() => e.name),
@@ -66,6 +66,8 @@ declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPro
66
66
  icon: typeof icon;
67
67
  update: typeof update;
68
68
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
69
+ blur: (...args: any[]) => void;
70
+ focus: (...args: any[]) => void;
69
71
  "update:modelValue": (...args: any[]) => void;
70
72
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
71
73
  modelValue: {
@@ -105,6 +107,8 @@ declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPro
105
107
  type: StringConstructor;
106
108
  };
107
109
  }>> & Readonly<{
110
+ onBlur?: ((...args: any[]) => any) | undefined;
111
+ onFocus?: ((...args: any[]) => any) | undefined;
108
112
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
109
113
  }>, {
110
114
  size: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
@@ -155,6 +159,8 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
155
159
  type: StringConstructor;
156
160
  };
157
161
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
162
+ blur: (...args: any[]) => void;
163
+ focus: (...args: any[]) => void;
158
164
  "update:modelValue": (...args: any[]) => void;
159
165
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
160
166
  modelValue: {
@@ -194,6 +200,8 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
194
200
  type: StringConstructor;
195
201
  };
196
202
  }>> & Readonly<{
203
+ onBlur?: ((...args: any[]) => any) | undefined;
204
+ onFocus?: ((...args: any[]) => any) | undefined;
197
205
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
198
206
  }>, {
199
207
  size: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.10.83",
3
+ "version": "0.10.84",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vue-tsc && vite build",
@@ -93,7 +93,7 @@ const props = defineProps({
93
93
  },
94
94
  });
95
95
 
96
- const emit = defineEmits(['update:modelValue']);
96
+ const emit = defineEmits(['update:modelValue', 'blur', 'focus']);
97
97
 
98
98
  const { emitUpdate, sizeInternal } = useField({
99
99
  name: computed(() => props.name),