@golstats/gsc-reports 1.0.0 → 1.0.2
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/README.md +2 -2
- package/dist/{FilterConditions-55d68355-C5NIJbY6-xW04mYhu-DRN4eEO4.js → FilterConditions-55d68355-C5NIJbY6-BIYJFxA1-ChzU0yno.js} +4 -4
- package/dist/{FilterField-59a73e38-DO8nYLqs-Da7H_Fvj-ZuLwDGOM.js → FilterField-59a73e38-DO8nYLqs-BlMX75HQ-DcD79wEB.js} +3 -3
- package/dist/{FilterSubcategories-a9b32cc9-DlkHni1L-BXid_sIn-BvoU3OqZ.js → FilterSubcategories-a9b32cc9-DlkHni1L-DbepEYoC-4bY4RGa1.js} +10 -10
- package/dist/css/fonts.css +83 -83
- package/dist/gsc-reports.css +1 -1
- package/dist/gsc-reports.es.js +1 -1
- package/dist/gsc-reports.umd.js +292 -283
- package/dist/icons/icn-report.svg +10 -10
- package/dist/{index-B1R4W2EC.js → index-Cdmd9KsD.js} +100076 -88052
- package/package.json +2 -2
- package/src/App.vue +5 -0
- package/src/components/elementsTemplates/ModalCreateTemplate.vue +9 -2
- package/src/components/elementsTemplates/ModalDeleteReport.vue +239 -231
- package/src/components/elementsTemplates/ModalDeleteTemplate.vue +242 -234
- package/src/components/elementsTemplates/ModalGenerarReporte.vue +18 -5
- package/src/components/elementsTemplates/ModalRenameReporte.vue +323 -315
- package/src/components/elementsTemplates/ModalRenameTemplate.vue +330 -320
- package/src/components/elementsTemplates/ModalSoloEscritorio.vue +83 -83
- package/src/components/elementsTemplates/ModalduplicateTemplate.vue +293 -283
- package/src/components/elementsTemplates/TooltipReportOptions.vue +85 -85
- package/src/components/elementsTemplates/TooltipTemplateOptions.vue +141 -141
- package/src/components/filters.vue +935 -935
- package/src/components/gsc-reports.vue +7 -1
- package/src/components/template-report-maker/CoverPage.vue +636 -636
- package/src/components/template-report-maker/CoverSelector.vue +165 -165
- package/src/components/template-report-maker/ReportView.vue +66 -66
- package/src/components/template-report-maker/TemplateReportPage.vue +398 -398
- package/src/components/thumbnails-reports/AnalisisPostMatchType1.vue +741 -741
- package/src/components/thumbnails-reports/AnalisisPostMatchType2.vue +743 -743
- package/src/components/thumbnails-reports/AnalisisPostMatchType3.vue +463 -463
- package/src/components/thumbnails-reports/AnalisisPostMatchType4.vue +462 -462
- package/src/components/thumbnails-reports/AnalisisPrematchType1.vue +164 -164
- package/src/components/thumbnails-reports/AnalisisPrematchType2.vue +163 -163
- package/src/components/thumbnails-reports/AnalisisPrematchType3.vue +173 -173
- package/src/components/thumbnails-reports/AnalisisPrematchType4.vue +173 -173
- package/src/index.js +4 -4
- package/src/types.d.ts +45 -45
- package/src/utils/dateUtils.js +52 -52
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<GSCTemplateReportMaker ref="reportTemplateMaker" :token="token" />
|
|
3
3
|
<div ref="containerRef" class="reports-container">
|
|
4
|
-
<ModalSoloEscritorio v-if="showMobileWarning" />
|
|
4
|
+
<ModalSoloEscritorio v-if="showMobileWarning" @toHome="toHome" />
|
|
5
5
|
<h1 class="title">Mis reportes</h1>
|
|
6
6
|
<div class="top-bar">
|
|
7
7
|
<div class="tabs-container">
|
|
@@ -160,6 +160,8 @@ const searchQuery = ref('')
|
|
|
160
160
|
const searchQueryReports = ref('')
|
|
161
161
|
const reportTemplateMaker = ref(null)
|
|
162
162
|
|
|
163
|
+
const emit = defineEmits(['toHome'])
|
|
164
|
+
|
|
163
165
|
function checkContainerWidth() {
|
|
164
166
|
if (containerRef.value) {
|
|
165
167
|
const width = containerRef.value.offsetWidth
|
|
@@ -220,6 +222,10 @@ function onOpenReport(report) {
|
|
|
220
222
|
})
|
|
221
223
|
}
|
|
222
224
|
}
|
|
225
|
+
|
|
226
|
+
function toHome() {
|
|
227
|
+
emit('toHome')
|
|
228
|
+
}
|
|
223
229
|
</script>
|
|
224
230
|
<style>
|
|
225
231
|
.grid-stack-item-content {
|