@tekkare/auriga 0.2.15 → 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.15"
7
+ "version": "0.2.16"
8
8
  }
@@ -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.15",
3
+ "version": "0.2.16",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",