@golstats/gsc-reports 1.0.73 → 1.0.74
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-DMqzcKBO-DetRyeQp-D-SFJTPh.js → FilterConditions-55d68355-DMqzcKBO-BUsV1uff-BqhmhIO7.js} +20 -20
- package/dist/{FilterField-59a73e38-CNaE03Ge-y0TJhKzn-DmW2Nen2.js → FilterField-59a73e38-CNaE03Ge-5Ufd6Qjm-CLmzz8wD.js} +3 -3
- package/dist/{FilterSubcategories-a9b32cc9-_h5FCZ4r-s9tf4U0t-D2WRoC-O.js → FilterSubcategories-a9b32cc9-_h5FCZ4r-DcLxx26Q-CEyuCb0o.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 +342 -334
- package/dist/{index-DlP73Y2z.js → index-BlybwR5p.js} +99666 -94932
- package/package.json +2 -2
- package/src/App.vue +28 -0
- package/src/components/TemplatesSection.vue +113 -0
- package/src/components/elementsTemplates/FortalezasView.vue +1193 -0
- package/src/components/elementsTemplates/ModalConfigurarContenido.vue +1229 -0
- package/src/components/elementsTemplates/ModalDeleteTemplate.vue +249 -249
- package/src/components/elementsTemplates/ModalGenerarReporte.vue +39 -1
- package/src/components/elementsTemplates/ModalSoloEscritorio.vue +83 -83
- package/src/components/elementsTemplates/ModalduplicateTemplate.vue +300 -300
- package/src/components/elementsTemplates/TirosEsquinaView.vue +1071 -0
- 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/thumbnails-reports/AnalisisPostMatchType1.vue +741 -741
- package/src/components/thumbnails-reports/AnalisisPostMatchType2.vue +743 -743
- 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,83 +1,83 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="modal-overlay">
|
|
3
|
-
<div class="modal-content">
|
|
4
|
-
<div class="modal-icon">
|
|
5
|
-
<svg
|
|
6
|
-
width="48"
|
|
7
|
-
height="48"
|
|
8
|
-
viewBox="0 0 48 48"
|
|
9
|
-
fill="none"
|
|
10
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
-
>
|
|
12
|
-
<rect x="8" y="10" width="32" height="20" rx="2" stroke="#C0CBE0" stroke-width="2" />
|
|
13
|
-
<rect x="16" y="34" width="16" height="2" rx="1" fill="#C0CBE0" />
|
|
14
|
-
</svg>
|
|
15
|
-
</div>
|
|
16
|
-
<div class="modal-text">
|
|
17
|
-
Esta sección solo está disponible para<br />
|
|
18
|
-
escritorio. Utiliza tu computadora <br />para ingresar.
|
|
19
|
-
</div>
|
|
20
|
-
<button class="modal-btn" @click="$emit('toHome')">OK</button>
|
|
21
|
-
</div>
|
|
22
|
-
</div>
|
|
23
|
-
</template>
|
|
24
|
-
|
|
25
|
-
<script setup>
|
|
26
|
-
// No necesita lógica interna
|
|
27
|
-
</script>
|
|
28
|
-
|
|
29
|
-
<style scoped>
|
|
30
|
-
.modal-overlay {
|
|
31
|
-
position: fixed;
|
|
32
|
-
top: 0;
|
|
33
|
-
left: 0;
|
|
34
|
-
width: 100vw;
|
|
35
|
-
height: 100vh;
|
|
36
|
-
background: rgba(0, 0, 0, 0.65);
|
|
37
|
-
display: flex;
|
|
38
|
-
align-items: center;
|
|
39
|
-
justify-content: center;
|
|
40
|
-
z-index: 9999;
|
|
41
|
-
}
|
|
42
|
-
.modal-content {
|
|
43
|
-
background: #26323c;
|
|
44
|
-
border-radius: 18px;
|
|
45
|
-
padding: 36px 32px 28px 32px;
|
|
46
|
-
display: flex;
|
|
47
|
-
flex-direction: column;
|
|
48
|
-
align-items: center;
|
|
49
|
-
max-width: 340px;
|
|
50
|
-
width: 100%;
|
|
51
|
-
box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.25);
|
|
52
|
-
}
|
|
53
|
-
.modal-icon {
|
|
54
|
-
margin-bottom: 8px;
|
|
55
|
-
}
|
|
56
|
-
.modal-text {
|
|
57
|
-
font-family: Poppins-Light, Arial, sans-serif;
|
|
58
|
-
font-size: 14px;
|
|
59
|
-
font-weight: 300;
|
|
60
|
-
font-stretch: normal;
|
|
61
|
-
font-style: normal;
|
|
62
|
-
line-height: 1.63;
|
|
63
|
-
letter-spacing: normal;
|
|
64
|
-
text-align: center;
|
|
65
|
-
color: #fff;
|
|
66
|
-
margin-bottom: 28px;
|
|
67
|
-
}
|
|
68
|
-
.modal-btn {
|
|
69
|
-
background: #cbee6b;
|
|
70
|
-
color: #26323c;
|
|
71
|
-
font-family: Poppins-Bold, Arial, sans-serif;
|
|
72
|
-
font-size: 18px;
|
|
73
|
-
border: none;
|
|
74
|
-
border-radius: 24px;
|
|
75
|
-
padding: 7px 48px;
|
|
76
|
-
cursor: pointer;
|
|
77
|
-
width: 321px;
|
|
78
|
-
transition: opacity 0.2s;
|
|
79
|
-
}
|
|
80
|
-
.modal-btn:hover {
|
|
81
|
-
opacity: 0.85;
|
|
82
|
-
}
|
|
83
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="modal-overlay">
|
|
3
|
+
<div class="modal-content">
|
|
4
|
+
<div class="modal-icon">
|
|
5
|
+
<svg
|
|
6
|
+
width="48"
|
|
7
|
+
height="48"
|
|
8
|
+
viewBox="0 0 48 48"
|
|
9
|
+
fill="none"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
>
|
|
12
|
+
<rect x="8" y="10" width="32" height="20" rx="2" stroke="#C0CBE0" stroke-width="2" />
|
|
13
|
+
<rect x="16" y="34" width="16" height="2" rx="1" fill="#C0CBE0" />
|
|
14
|
+
</svg>
|
|
15
|
+
</div>
|
|
16
|
+
<div class="modal-text">
|
|
17
|
+
Esta sección solo está disponible para<br />
|
|
18
|
+
escritorio. Utiliza tu computadora <br />para ingresar.
|
|
19
|
+
</div>
|
|
20
|
+
<button class="modal-btn" @click="$emit('toHome')">OK</button>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
</template>
|
|
24
|
+
|
|
25
|
+
<script setup>
|
|
26
|
+
// No necesita lógica interna
|
|
27
|
+
</script>
|
|
28
|
+
|
|
29
|
+
<style scoped>
|
|
30
|
+
.modal-overlay {
|
|
31
|
+
position: fixed;
|
|
32
|
+
top: 0;
|
|
33
|
+
left: 0;
|
|
34
|
+
width: 100vw;
|
|
35
|
+
height: 100vh;
|
|
36
|
+
background: rgba(0, 0, 0, 0.65);
|
|
37
|
+
display: flex;
|
|
38
|
+
align-items: center;
|
|
39
|
+
justify-content: center;
|
|
40
|
+
z-index: 9999;
|
|
41
|
+
}
|
|
42
|
+
.modal-content {
|
|
43
|
+
background: #26323c;
|
|
44
|
+
border-radius: 18px;
|
|
45
|
+
padding: 36px 32px 28px 32px;
|
|
46
|
+
display: flex;
|
|
47
|
+
flex-direction: column;
|
|
48
|
+
align-items: center;
|
|
49
|
+
max-width: 340px;
|
|
50
|
+
width: 100%;
|
|
51
|
+
box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.25);
|
|
52
|
+
}
|
|
53
|
+
.modal-icon {
|
|
54
|
+
margin-bottom: 8px;
|
|
55
|
+
}
|
|
56
|
+
.modal-text {
|
|
57
|
+
font-family: Poppins-Light, Arial, sans-serif;
|
|
58
|
+
font-size: 14px;
|
|
59
|
+
font-weight: 300;
|
|
60
|
+
font-stretch: normal;
|
|
61
|
+
font-style: normal;
|
|
62
|
+
line-height: 1.63;
|
|
63
|
+
letter-spacing: normal;
|
|
64
|
+
text-align: center;
|
|
65
|
+
color: #fff;
|
|
66
|
+
margin-bottom: 28px;
|
|
67
|
+
}
|
|
68
|
+
.modal-btn {
|
|
69
|
+
background: #cbee6b;
|
|
70
|
+
color: #26323c;
|
|
71
|
+
font-family: Poppins-Bold, Arial, sans-serif;
|
|
72
|
+
font-size: 18px;
|
|
73
|
+
border: none;
|
|
74
|
+
border-radius: 24px;
|
|
75
|
+
padding: 7px 48px;
|
|
76
|
+
cursor: pointer;
|
|
77
|
+
width: 321px;
|
|
78
|
+
transition: opacity 0.2s;
|
|
79
|
+
}
|
|
80
|
+
.modal-btn:hover {
|
|
81
|
+
opacity: 0.85;
|
|
82
|
+
}
|
|
83
|
+
</style>
|