@tekkare/auriga 0.2.14 → 0.2.16

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.16"
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;
@@ -425,6 +425,17 @@ export default defineComponent({
425
425
  }
426
426
  }
427
427
  };
428
+ props.options["yaxis"] = {
429
+ labels: {
430
+ show: true,
431
+ style: {
432
+ fontFamily: "Figtree, sans-serif",
433
+ fontSize: "14px",
434
+ fontWeight: "400",
435
+ colors: ["#3E3F5E"]
436
+ }
437
+ }
438
+ };
428
439
  } else if (props.type === "bar-horizontal-stack") {
429
440
  props.options["plotOptions"] = {
430
441
  bar: {
@@ -493,6 +504,17 @@ export default defineComponent({
493
504
  }
494
505
  }
495
506
  };
507
+ props.options["yaxis"] = {
508
+ labels: {
509
+ show: true,
510
+ style: {
511
+ fontFamily: "Figtree, sans-serif",
512
+ fontSize: "14px",
513
+ fontWeight: "400",
514
+ colors: ["#3E3F5E"]
515
+ }
516
+ }
517
+ };
496
518
  } else if (props.type === "full-bar-horizontal-stack") {
497
519
  props.options["plotOptions"] = {
498
520
  bar: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.2.14",
3
+ "version": "0.2.16",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",