@tekkare/auriga 0.2.32 → 0.2.33

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.32"
7
+ "version": "0.2.33"
8
8
  }
@@ -337,7 +337,9 @@ export default defineComponent({
337
337
  es: "cargando m\xE1s sugerencias"
338
338
  };
339
339
  watch(value, (new_value) => {
340
- emit("onTyping", value.value);
340
+ setTimeout(() => {
341
+ emit("onTyping", value.value);
342
+ }, 500);
341
343
  typing.value = false;
342
344
  if (new_value === "") {
343
345
  hoverShortcut.value = "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.2.32",
3
+ "version": "0.2.33",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",