ep-lib-ts 0.1.6 → 0.1.7
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/ep-lib-ts.js +9437 -18370
- package/dist/ep-lib-ts.umd.cjs +72 -771
- package/package.json +1 -1
- package/src/components/charts/EpBarChart.vue +2 -2
- package/src/components/charts/EpLineChart.vue +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
+
|
|
2
3
|
import { computed, toRefs } from "vue";
|
|
3
|
-
import VueApexCharts from "vue3-apexcharts";
|
|
4
4
|
import EpEdu from "../educationals/EpEdu.vue";
|
|
5
5
|
import { mdiChartBar } from "@mdi/js";
|
|
6
6
|
import { MediaVariants } from "../../types/Medias";
|
|
@@ -67,7 +67,7 @@ const { center, series, source } = toRefs(props)
|
|
|
67
67
|
</template>
|
|
68
68
|
<template #content>
|
|
69
69
|
<div :class="`p-4 ${center ? 'flex justify-center' : ''}`" v-if="globalOptions && series">
|
|
70
|
-
<
|
|
70
|
+
<apexchart width="500" type="bar" :options="globalOptions" :series="series"></apexchart>
|
|
71
71
|
</div>
|
|
72
72
|
<div v-else>
|
|
73
73
|
<p>Data no disponible</p>
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import { computed, toRefs } from "vue";
|
|
3
|
-
import VueApexCharts from "vue3-apexcharts";
|
|
4
3
|
import EpEdu from "../educationals/EpEdu.vue";
|
|
5
4
|
import { mdiChartLine } from "@mdi/js";
|
|
6
5
|
import { MediaVariants } from "../../types/Medias";
|
|
@@ -77,7 +76,7 @@ const { center, series, source } = toRefs(props)
|
|
|
77
76
|
</template>
|
|
78
77
|
<template #content>
|
|
79
78
|
<div :class="`p-4 ${center ? 'flex justify-center' : ''}`" v-if="globalOptions && series">
|
|
80
|
-
<
|
|
79
|
+
<apexchart width="500" type="line" :options="globalOptions" :series="series"></apexchart>
|
|
81
80
|
</div>
|
|
82
81
|
<div v-else>
|
|
83
82
|
<p>Data no disponible</p>
|