@golstats/gsc-reports 1.0.44 → 1.0.46
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-DgmObXIt-DEf9DwkD-BTgCrQ2P.js → FilterConditions-55d68355-DgmObXIt-Bz584YpY-B9PZsVmL.js} +9 -9
- package/dist/{FilterField-59a73e38-09cJ-DRW-DJuikEa2-068_3dWc.js → FilterField-59a73e38-09cJ-DRW-CZNIEIf1-DH4RLjQp.js} +5 -5
- package/dist/{FilterSubcategories-a9b32cc9-DNpw7zPl-DAwYH-cF-F4OtPk2u.js → FilterSubcategories-a9b32cc9-DNpw7zPl-niIgRAye-Ds2E2HM6.js} +1 -1
- 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 +232 -232
- package/dist/{index-lMKMX8NB.js → index-GqU5hh0R.js} +66365 -65252
- package/package.json +2 -2
- package/src/components/elementsTemplates/ModalDeleteReport.vue +246 -246
- package/src/components/elementsTemplates/ModalDeleteTemplate.vue +249 -249
- package/src/components/elementsTemplates/ModalRenameReporte.vue +330 -330
- package/src/components/elementsTemplates/ModalRenameTemplate.vue +337 -337
- package/src/components/elementsTemplates/ModalSoloEscritorio.vue +83 -83
- package/src/components/elementsTemplates/ModalduplicateTemplate.vue +300 -300
- package/src/components/elementsTemplates/TooltipReportOptions.vue +97 -97
- package/src/components/elementsTemplates/TooltipTemplateOptions.vue +168 -168
- package/src/components/filters.vue +935 -935
- package/src/components/gsc-reports.vue +10 -1
- 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,5 +1,10 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<GSCTemplateReportMaker
|
|
2
|
+
<GSCTemplateReportMaker
|
|
3
|
+
ref="reportTemplateMaker"
|
|
4
|
+
:token="token"
|
|
5
|
+
:user-team-id="team"
|
|
6
|
+
@close="closeReport"
|
|
7
|
+
/>
|
|
3
8
|
<div ref="containerRef" class="reports-container">
|
|
4
9
|
<ModalSoloEscritorio v-if="showMobileWarning" @toHome="toHome" />
|
|
5
10
|
<h1 class="title">Mis reportes</h1>
|
|
@@ -102,6 +107,7 @@
|
|
|
102
107
|
:token="token"
|
|
103
108
|
:team="team"
|
|
104
109
|
:searchQuery="searchQuery"
|
|
110
|
+
:key="templatesSectionKey"
|
|
105
111
|
@switch-to-reports="activeTab = 'reports'"
|
|
106
112
|
@open-modal-new-template="onOpenModalNewTemplate"
|
|
107
113
|
@edit-template="onEditTemplate"
|
|
@@ -164,6 +170,7 @@ const searchQuery = ref('')
|
|
|
164
170
|
const searchQueryReports = ref('')
|
|
165
171
|
const reportTemplateMaker = ref(null)
|
|
166
172
|
const templatesSectionRef = ref(null)
|
|
173
|
+
const templatesSectionKey = ref(0) // Key to force re-render of TemplatesSection
|
|
167
174
|
|
|
168
175
|
const emit = defineEmits(['toHome', 'download-report'])
|
|
169
176
|
|
|
@@ -246,7 +253,9 @@ function closeReport() {
|
|
|
246
253
|
if (templatesSectionRef.value) {
|
|
247
254
|
templatesSectionRef.value.obtenerTemplates()
|
|
248
255
|
}
|
|
256
|
+
templatesSectionKey.value += 1 // Force re-render of TemplatesSection
|
|
249
257
|
}
|
|
258
|
+
|
|
250
259
|
</script>
|
|
251
260
|
<style>
|
|
252
261
|
.grid-stack-item-content {
|