@golstats/gsc-reports 1.0.117 → 1.0.119
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/{FilterConditions-55d68355-DMqzcKBO-DiCaJm2s-CRj2iubZ.js → FilterConditions-55d68355-DMqzcKBO-DkE7hA3u-BxpW5ZU7.js} +1 -1
- package/dist/{FilterField-59a73e38-CNaE03Ge-z-Jq_8K2-0rKxuUMg.js → FilterField-59a73e38-CNaE03Ge-WYlJrE51-AcJHMlFT.js} +1 -1
- package/dist/{FilterSubcategories-a9b32cc9-_h5FCZ4r-BqB9lEJs-BYURCuXi.js → FilterSubcategories-a9b32cc9-_h5FCZ4r-DSvGxaAE-DhwXb_7k.js} +1 -1
- package/dist/gsc-reports.css +1 -1
- package/dist/gsc-reports.es.js +1 -1
- package/dist/gsc-reports.umd.js +111 -111
- package/dist/{index-CSRZcDfN.js → index-BQIBIC8z.js} +9922 -9922
- package/package.json +2 -2
- package/src/components/elementsTemplates/ModalConfigurarContenido.vue +4 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@golstats/gsc-reports",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.119",
|
|
4
4
|
"main": "dist/gsc-reports.umd.js",
|
|
5
5
|
"module": "dist/gsc-reports.es.js",
|
|
6
6
|
"exports": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@golstats/gsc-checkbox": "^1.0.13",
|
|
50
|
-
"@golstats/gsc-template-report-maker": "^1.0.
|
|
50
|
+
"@golstats/gsc-template-report-maker": "^1.0.151",
|
|
51
51
|
"axios": "^1.10.0",
|
|
52
52
|
"gridstack": "^12.1.1",
|
|
53
53
|
"tiny-emitter": "^2.1.0",
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
</template>
|
|
132
132
|
|
|
133
133
|
<template
|
|
134
|
-
v-if="specificPlaysDetails.homeTeamViews.length > 0"
|
|
134
|
+
v-if="specificPlaysDetails && specificPlaysDetails.homeTeamViews.length > 0"
|
|
135
135
|
>
|
|
136
136
|
<div v-show="buildStepMap()[currentStep] === 'cornersEquipo'" class="step-content">
|
|
137
137
|
<TirosEsquinaView
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
</template>
|
|
151
151
|
|
|
152
152
|
<template
|
|
153
|
-
v-if="specificPlaysDetails.homeTeamAgainstViews.length > 0"
|
|
153
|
+
v-if="specificPlaysDetails && specificPlaysDetails.homeTeamAgainstViews.length > 0"
|
|
154
154
|
>
|
|
155
155
|
<div v-show="buildStepMap()[currentStep] === 'cornersEquipoAgainst'" class="step-content">
|
|
156
156
|
<TirosEsquinaView
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
</template>
|
|
170
170
|
|
|
171
171
|
<template
|
|
172
|
-
v-if="specificPlaysDetails.awayTeamViews.length > 0"
|
|
172
|
+
v-if="specificPlaysDetails && specificPlaysDetails.awayTeamViews.length > 0"
|
|
173
173
|
>
|
|
174
174
|
<div v-show="buildStepMap()[currentStep] === 'cornersRival'" class="step-content">
|
|
175
175
|
<TirosEsquinaView
|
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
</template>
|
|
189
189
|
|
|
190
190
|
<template
|
|
191
|
-
v-if="specificPlaysDetails.awayTeamAgainstViews.length > 0"
|
|
191
|
+
v-if="specificPlaysDetails && specificPlaysDetails.awayTeamAgainstViews.length > 0"
|
|
192
192
|
>
|
|
193
193
|
<div v-show="buildStepMap()[currentStep] === 'cornersRivalAgainst'" class="step-content">
|
|
194
194
|
<TirosEsquinaView
|
|
@@ -741,10 +741,6 @@ function cancelGoBack() {
|
|
|
741
741
|
}
|
|
742
742
|
|
|
743
743
|
async function continueToNext() {
|
|
744
|
-
console.log('continueToNext, currentStep:', currentStep.value)
|
|
745
|
-
console.log('canContinue:', canContinue.value)
|
|
746
|
-
console.log('specificPlaysDetails:', specificPlaysDetails.value)
|
|
747
|
-
console.log('tirosEsquinaOption:', tirosEsquinaOption.value)
|
|
748
744
|
if (currentStep.value === 0) {
|
|
749
745
|
// Validar que al menos una opción esté seleccionada
|
|
750
746
|
if (!canContinue.value) {
|