@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.
Files changed (39) hide show
  1. package/README.md +2 -2
  2. package/dist/{FilterConditions-55d68355-C5NIJbY6-xW04mYhu-DRN4eEO4.js → FilterConditions-55d68355-C5NIJbY6-BIYJFxA1-ChzU0yno.js} +4 -4
  3. package/dist/{FilterField-59a73e38-DO8nYLqs-Da7H_Fvj-ZuLwDGOM.js → FilterField-59a73e38-DO8nYLqs-BlMX75HQ-DcD79wEB.js} +3 -3
  4. package/dist/{FilterSubcategories-a9b32cc9-DlkHni1L-BXid_sIn-BvoU3OqZ.js → FilterSubcategories-a9b32cc9-DlkHni1L-DbepEYoC-4bY4RGa1.js} +10 -10
  5. package/dist/css/fonts.css +83 -83
  6. package/dist/gsc-reports.css +1 -1
  7. package/dist/gsc-reports.es.js +1 -1
  8. package/dist/gsc-reports.umd.js +292 -283
  9. package/dist/icons/icn-report.svg +10 -10
  10. package/dist/{index-B1R4W2EC.js → index-Cdmd9KsD.js} +100076 -88052
  11. package/package.json +2 -2
  12. package/src/App.vue +5 -0
  13. package/src/components/elementsTemplates/ModalCreateTemplate.vue +9 -2
  14. package/src/components/elementsTemplates/ModalDeleteReport.vue +239 -231
  15. package/src/components/elementsTemplates/ModalDeleteTemplate.vue +242 -234
  16. package/src/components/elementsTemplates/ModalGenerarReporte.vue +18 -5
  17. package/src/components/elementsTemplates/ModalRenameReporte.vue +323 -315
  18. package/src/components/elementsTemplates/ModalRenameTemplate.vue +330 -320
  19. package/src/components/elementsTemplates/ModalSoloEscritorio.vue +83 -83
  20. package/src/components/elementsTemplates/ModalduplicateTemplate.vue +293 -283
  21. package/src/components/elementsTemplates/TooltipReportOptions.vue +85 -85
  22. package/src/components/elementsTemplates/TooltipTemplateOptions.vue +141 -141
  23. package/src/components/filters.vue +935 -935
  24. package/src/components/gsc-reports.vue +7 -1
  25. package/src/components/template-report-maker/CoverPage.vue +636 -636
  26. package/src/components/template-report-maker/CoverSelector.vue +165 -165
  27. package/src/components/template-report-maker/ReportView.vue +66 -66
  28. package/src/components/template-report-maker/TemplateReportPage.vue +398 -398
  29. package/src/components/thumbnails-reports/AnalisisPostMatchType1.vue +741 -741
  30. package/src/components/thumbnails-reports/AnalisisPostMatchType2.vue +743 -743
  31. package/src/components/thumbnails-reports/AnalisisPostMatchType3.vue +463 -463
  32. package/src/components/thumbnails-reports/AnalisisPostMatchType4.vue +462 -462
  33. package/src/components/thumbnails-reports/AnalisisPrematchType1.vue +164 -164
  34. package/src/components/thumbnails-reports/AnalisisPrematchType2.vue +163 -163
  35. package/src/components/thumbnails-reports/AnalisisPrematchType3.vue +173 -173
  36. package/src/components/thumbnails-reports/AnalisisPrematchType4.vue +173 -173
  37. package/src/index.js +4 -4
  38. package/src/types.d.ts +45 -45
  39. package/src/utils/dateUtils.js +52 -52
@@ -1,85 +1,85 @@
1
- <template>
2
- <div class="tooltip-report-options">
3
- <ul>
4
- <li class="option" @click="$emit('renombrar')">
5
- <img src="/icons/icn-rename.svg" alt="Renombrar reporte" class="icon" />
6
- Renombrar reporte
7
- </li>
8
- <li class="option" @click="$emit('descargar')">
9
- <img src="/icons/icn-download.svg" alt="Descargar reporte" class="icon" />
10
- Descargar reporte
11
- </li>
12
- <li class="option" @click="$emit('eliminar')">
13
- <img src="/icons/icn-delete.svg" alt="Eliminar reporte" class="icon" />
14
- Eliminar reporte
15
- </li>
16
- </ul>
17
- </div>
18
- </template>
19
-
20
- <script setup>
21
- const emit = defineEmits([
22
- 'ver-reporte',
23
- 'renombrar',
24
- 'editar',
25
- 'duplicar',
26
- 'descargar',
27
- 'eliminar',
28
- ])
29
- </script>
30
-
31
- <style scoped>
32
- .tooltip-report-options {
33
- position: absolute;
34
- top: 44px;
35
- right: 20px;
36
- width: 215px;
37
- height: 115px;
38
- background: #2e3b46;
39
- border-radius: 10px;
40
- box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
41
- padding: 8px 0 0 0;
42
- z-index: 3000;
43
- font-family: Poppins-Regular;
44
- }
45
-
46
- ul {
47
- list-style: none;
48
- margin: 0;
49
- padding: 0;
50
- }
51
-
52
- .option {
53
- display: flex;
54
- align-items: center;
55
- color: #fff;
56
- font-family: Poppins-Regular;
57
- font-size: 13px;
58
- font-weight: normal;
59
- font-stretch: normal;
60
- font-style: normal;
61
- line-height: 1.5;
62
- letter-spacing: normal;
63
- text-align: left;
64
- padding: 8px 16px 8px 14px;
65
- cursor: pointer;
66
- transition:
67
- background 0.2s,
68
- color 0.2s;
69
- gap: 14px;
70
- }
71
-
72
- .option:hover {
73
- background: #434f59;
74
- color: #cbee6b;
75
- }
76
-
77
- .icon {
78
- width: 17px;
79
- height: 17px;
80
- display: inline-block;
81
- background-size: contain;
82
- background-repeat: no-repeat;
83
- object-fit: contain;
84
- }
85
- </style>
1
+ <template>
2
+ <div class="tooltip-report-options">
3
+ <ul>
4
+ <li class="option" @click="$emit('renombrar')">
5
+ <img src="/icons/icn-rename.svg" alt="Renombrar reporte" class="icon" />
6
+ Renombrar reporte
7
+ </li>
8
+ <li class="option" @click="$emit('descargar')">
9
+ <img src="/icons/icn-download.svg" alt="Descargar reporte" class="icon" />
10
+ Descargar reporte
11
+ </li>
12
+ <li class="option" @click="$emit('eliminar')">
13
+ <img src="/icons/icn-delete.svg" alt="Eliminar reporte" class="icon" />
14
+ Eliminar reporte
15
+ </li>
16
+ </ul>
17
+ </div>
18
+ </template>
19
+
20
+ <script setup>
21
+ const emit = defineEmits([
22
+ 'ver-reporte',
23
+ 'renombrar',
24
+ 'editar',
25
+ 'duplicar',
26
+ 'descargar',
27
+ 'eliminar',
28
+ ])
29
+ </script>
30
+
31
+ <style scoped>
32
+ .tooltip-report-options {
33
+ position: absolute;
34
+ top: 44px;
35
+ right: 20px;
36
+ width: 215px;
37
+ height: 115px;
38
+ background: #2e3b46;
39
+ border-radius: 10px;
40
+ box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
41
+ padding: 8px 0 0 0;
42
+ z-index: 3000;
43
+ font-family: Poppins-Regular;
44
+ }
45
+
46
+ ul {
47
+ list-style: none;
48
+ margin: 0;
49
+ padding: 0;
50
+ }
51
+
52
+ .option {
53
+ display: flex;
54
+ align-items: center;
55
+ color: #fff;
56
+ font-family: Poppins-Regular;
57
+ font-size: 13px;
58
+ font-weight: normal;
59
+ font-stretch: normal;
60
+ font-style: normal;
61
+ line-height: 1.5;
62
+ letter-spacing: normal;
63
+ text-align: left;
64
+ padding: 8px 16px 8px 14px;
65
+ cursor: pointer;
66
+ transition:
67
+ background 0.2s,
68
+ color 0.2s;
69
+ gap: 14px;
70
+ }
71
+
72
+ .option:hover {
73
+ background: #434f59;
74
+ color: #cbee6b;
75
+ }
76
+
77
+ .icon {
78
+ width: 17px;
79
+ height: 17px;
80
+ display: inline-block;
81
+ background-size: contain;
82
+ background-repeat: no-repeat;
83
+ object-fit: contain;
84
+ }
85
+ </style>
@@ -1,141 +1,141 @@
1
- <template>
2
- <div class="tooltip-template-options">
3
- <ul>
4
- <li class="option" @click="$emit('generar-reporte')">
5
- <img src="/icons/icn-report.svg" alt="Generar reporte" class="icon" />
6
- Generar reporte
7
- </li>
8
- <li class="option" @click="$emit('renombrar')">
9
- <img src="/icons/icn-rename.svg" alt="Renombrar template" class="icon" />
10
- Renombrar template
11
- </li>
12
- <li class="option" @click="$emit('editar')">
13
- <img src="/icons/icn-edit.svg" alt="Editar template" class="icon" />
14
- Editar template
15
- </li>
16
- <li class="option" @click="$emit('duplicar')">
17
- <img src="/icons/icn-duplicate.svg" alt="Duplicar template" class="icon" />
18
- Duplicar template
19
- </li>
20
- <li class="option" @click="$emit('eliminar')">
21
- <img src="/icons/icn-delete.svg" alt="Eliminar template" class="icon" />
22
- Eliminar template
23
- </li>
24
- </ul>
25
- </div>
26
- </template>
27
-
28
- <script setup>
29
- const emit = defineEmits(['generar-reporte', 'renombrar', 'editar', 'duplicar', 'eliminar'])
30
- </script>
31
-
32
- <style scoped>
33
- .tooltip-template-options {
34
- position: absolute;
35
- top: 48px;
36
- right: 20px;
37
- width: 215px;
38
- height: 185px;
39
- background: #2e3b46;
40
- border-radius: 10px;
41
- box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
42
- padding: 8px 0 0 0;
43
- z-index: 3000;
44
- font-family: Poppins-Regular;
45
- }
46
- ul {
47
- list-style: none;
48
- margin: 0;
49
- padding: 0;
50
- }
51
- .option {
52
- display: flex;
53
- align-items: center;
54
- color: #fff;
55
- font-family: Poppins-Regular;
56
- font-size: 13px;
57
- font-weight: normal;
58
- font-stretch: normal;
59
- font-style: normal;
60
- line-height: 1.5;
61
- letter-spacing: normal;
62
- text-align: left;
63
- padding: 8px 16px 8px 14px;
64
- cursor: pointer;
65
- transition:
66
- background 0.2s,
67
- color 0.2s;
68
- gap: 14px;
69
- }
70
- .option:hover {
71
- background: #434f59;
72
- color: #cbee6b;
73
- }
74
- .icon {
75
- width: 17px;
76
- height: 17px;
77
- display: inline-block;
78
- background-size: contain;
79
- background-repeat: no-repeat;
80
- object-fit: contain;
81
- }
82
- .icon-doc {
83
- background-image: url('https://img.icons8.com/ios-filled/24/cbee6b/document--v1.png');
84
- }
85
- .icon-rename {
86
- background-image: url('https://img.icons8.com/ios-filled/24/cbee6b/replace.png');
87
- }
88
-
89
- .divider {
90
- width: 100%;
91
- height: 1px;
92
- background: #3d4a54;
93
- margin: 6px 0 0 0;
94
- }
95
- .autogen-row {
96
- display: flex;
97
- align-items: center;
98
- gap: 10px;
99
- margin-top: 7px;
100
- padding: 10px 14px 12px 14px;
101
- }
102
- .switch {
103
- display: flex;
104
- align-items: center;
105
- cursor: pointer;
106
- }
107
- .switch-track {
108
- width: 28px;
109
- height: 16px;
110
- background: transparent;
111
- border-radius: 10px;
112
- position: relative;
113
- transition: background 0.2s;
114
- border: 1px solid #fff;
115
- }
116
- .switch-thumb {
117
- width: 12px;
118
- height: 12px;
119
- background: #cbee6b;
120
- border-radius: 50%;
121
- position: absolute;
122
- top: 2px;
123
- left: 1px;
124
- transition: left 0.2s;
125
- box-shadow: 0 1px 4px 0 rgba(203, 238, 107, 0.15);
126
- }
127
- .switch-thumb.on {
128
- left: 14px;
129
- }
130
- .autogen-label {
131
- color: #fff;
132
- font-family: Poppins-Regular;
133
- font-size: 13px;
134
- font-weight: normal;
135
- font-stretch: normal;
136
- font-style: normal;
137
- line-height: 1.5;
138
- letter-spacing: normal;
139
- text-align: left;
140
- }
141
- </style>
1
+ <template>
2
+ <div class="tooltip-template-options">
3
+ <ul>
4
+ <li class="option" @click="$emit('generar-reporte')">
5
+ <img src="/icons/icn-report.svg" alt="Generar reporte" class="icon" />
6
+ Generar reporte
7
+ </li>
8
+ <li class="option" @click="$emit('renombrar')">
9
+ <img src="/icons/icn-rename.svg" alt="Renombrar template" class="icon" />
10
+ Renombrar template
11
+ </li>
12
+ <li class="option" @click="$emit('editar')">
13
+ <img src="/icons/icn-edit.svg" alt="Editar template" class="icon" />
14
+ Editar template
15
+ </li>
16
+ <li class="option" @click="$emit('duplicar')">
17
+ <img src="/icons/icn-duplicate.svg" alt="Duplicar template" class="icon" />
18
+ Duplicar template
19
+ </li>
20
+ <li class="option" @click="$emit('eliminar')">
21
+ <img src="/icons/icn-delete.svg" alt="Eliminar template" class="icon" />
22
+ Eliminar template
23
+ </li>
24
+ </ul>
25
+ </div>
26
+ </template>
27
+
28
+ <script setup>
29
+ const emit = defineEmits(['generar-reporte', 'renombrar', 'editar', 'duplicar', 'eliminar'])
30
+ </script>
31
+
32
+ <style scoped>
33
+ .tooltip-template-options {
34
+ position: absolute;
35
+ top: 48px;
36
+ right: 20px;
37
+ width: 215px;
38
+ height: 185px;
39
+ background: #2e3b46;
40
+ border-radius: 10px;
41
+ box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
42
+ padding: 8px 0 0 0;
43
+ z-index: 3000;
44
+ font-family: Poppins-Regular;
45
+ }
46
+ ul {
47
+ list-style: none;
48
+ margin: 0;
49
+ padding: 0;
50
+ }
51
+ .option {
52
+ display: flex;
53
+ align-items: center;
54
+ color: #fff;
55
+ font-family: Poppins-Regular;
56
+ font-size: 13px;
57
+ font-weight: normal;
58
+ font-stretch: normal;
59
+ font-style: normal;
60
+ line-height: 1.5;
61
+ letter-spacing: normal;
62
+ text-align: left;
63
+ padding: 8px 16px 8px 14px;
64
+ cursor: pointer;
65
+ transition:
66
+ background 0.2s,
67
+ color 0.2s;
68
+ gap: 14px;
69
+ }
70
+ .option:hover {
71
+ background: #434f59;
72
+ color: #cbee6b;
73
+ }
74
+ .icon {
75
+ width: 17px;
76
+ height: 17px;
77
+ display: inline-block;
78
+ background-size: contain;
79
+ background-repeat: no-repeat;
80
+ object-fit: contain;
81
+ }
82
+ .icon-doc {
83
+ background-image: url('https://img.icons8.com/ios-filled/24/cbee6b/document--v1.png');
84
+ }
85
+ .icon-rename {
86
+ background-image: url('https://img.icons8.com/ios-filled/24/cbee6b/replace.png');
87
+ }
88
+
89
+ .divider {
90
+ width: 100%;
91
+ height: 1px;
92
+ background: #3d4a54;
93
+ margin: 6px 0 0 0;
94
+ }
95
+ .autogen-row {
96
+ display: flex;
97
+ align-items: center;
98
+ gap: 10px;
99
+ margin-top: 7px;
100
+ padding: 10px 14px 12px 14px;
101
+ }
102
+ .switch {
103
+ display: flex;
104
+ align-items: center;
105
+ cursor: pointer;
106
+ }
107
+ .switch-track {
108
+ width: 28px;
109
+ height: 16px;
110
+ background: transparent;
111
+ border-radius: 10px;
112
+ position: relative;
113
+ transition: background 0.2s;
114
+ border: 1px solid #fff;
115
+ }
116
+ .switch-thumb {
117
+ width: 12px;
118
+ height: 12px;
119
+ background: #cbee6b;
120
+ border-radius: 50%;
121
+ position: absolute;
122
+ top: 2px;
123
+ left: 1px;
124
+ transition: left 0.2s;
125
+ box-shadow: 0 1px 4px 0 rgba(203, 238, 107, 0.15);
126
+ }
127
+ .switch-thumb.on {
128
+ left: 14px;
129
+ }
130
+ .autogen-label {
131
+ color: #fff;
132
+ font-family: Poppins-Regular;
133
+ font-size: 13px;
134
+ font-weight: normal;
135
+ font-stretch: normal;
136
+ font-style: normal;
137
+ line-height: 1.5;
138
+ letter-spacing: normal;
139
+ text-align: left;
140
+ }
141
+ </style>