@tekkare/auriga 0.2.14 → 0.2.15

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/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.2.14"
7
+ "version": "0.2.15"
8
8
  }
@@ -275,7 +275,7 @@ export default defineComponent({
275
275
  default: false
276
276
  }
277
277
  },
278
- emits: ["update:Value", "onClose"],
278
+ emits: ["update:Value", "onClose", "onTyping"],
279
279
  setup(props, { emit }) {
280
280
  const typing = ref(false);
281
281
  const shortcuts = ref([
@@ -337,6 +337,7 @@ export default defineComponent({
337
337
  es: "cargando m\xE1s sugerencias"
338
338
  };
339
339
  watch(value, (new_value) => {
340
+ emit("onTyping", value.value);
340
341
  typing.value = false;
341
342
  if (new_value === "") {
342
343
  hoverShortcut.value = "";
@@ -174,7 +174,7 @@ declare const _default: import("vue").DefineComponent<{
174
174
  es: string;
175
175
  };
176
176
  handleChangeType: (searchIndex: number) => void;
177
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:Value" | "onClose")[], "update:Value" | "onClose", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
177
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:Value" | "onClose" | "onTyping")[], "update:Value" | "onClose" | "onTyping", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
178
178
  placeHolderValue: {
179
179
  type: StringConstructor;
180
180
  default: string;
@@ -292,6 +292,7 @@ declare const _default: import("vue").DefineComponent<{
292
292
  }>> & {
293
293
  "onUpdate:Value"?: ((...args: any[]) => any) | undefined;
294
294
  onOnClose?: ((...args: any[]) => any) | undefined;
295
+ onOnTyping?: ((...args: any[]) => any) | undefined;
295
296
  }, {
296
297
  lang: string;
297
298
  placeHolderValue: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",