@golstats/gsc-lineups-reports 1.0.9 → 1.1.0
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/css/fonts.css +91 -91
- package/dist/gsc-lineups-reports.css +1 -1
- package/dist/gsc-lineups-reports.es.js +2946 -2675
- package/dist/gsc-lineups-reports.umd.js +10 -7
- package/dist/images/canchaRPH.svg +30 -30
- package/dist/images/events/atajada.svg +56 -56
- package/dist/images/events/fin-del-partido.svg +43 -43
- package/dist/images/events/fuera-de-lugar.svg +57 -57
- package/dist/images/events/gol.svg +48 -48
- package/dist/images/events/icn-cambio.svg +6 -6
- package/dist/images/events/icn-falta.svg +4 -4
- package/dist/images/events/icn-play.svg +3 -3
- package/dist/images/events/icn-tarjeta-amarilla.svg +3 -3
- package/dist/images/events/icn-tarjeta-roja.svg +3 -3
- package/dist/images/events/icn-tiro-a-porteria.svg +36 -36
- package/dist/images/events/icn-tiros-de-esquina.svg +18 -18
- package/dist/images/events/inicia-el-partido.svg +45 -45
- package/dist/images/events/jugada-peligrosa.svg +90 -90
- package/dist/images/events/penal-fallado.svg +194 -194
- package/dist/images/events/penal-marcado.svg +189 -189
- package/dist/images/events/tiempo-agregado.svg +74 -74
- package/dist/images/events/tiro-a-porteria.svg +80 -80
- package/dist/images/events/var.svg +30 -30
- package/package.json +7 -3
- package/src/components/Lineup2D/CheckBox.vue +42 -42
- package/src/components/Lineup2D/FilterEmpty.vue +48 -48
- package/src/components/Lineup2D/Icons.vue +29 -29
- package/src/components/Lineup2D/LineupField.vue +274 -274
- package/src/components/Lineup2D/LineupFilter.vue +285 -285
- package/src/components/Lineup2D/LineupMainHeader.vue +222 -222
- package/src/components/Lineup2D/LineupRecentItem.vue +110 -110
- package/src/components/Lineup2D/MatchDetails.vue +66 -66
- package/src/components/gsc-filter.vue +286 -286
- package/src/components/gsc-header-historico-lineup.vue +1064 -1064
- package/src/components/gsc-header-postmatch-lineup.vue +1017 -1017
- package/src/components/gsc-header-probables-lineup.vue +1044 -1044
- package/src/components/gsc-header-recientes-lineup.vue +2337 -2337
- package/src/components/gsc-lineup-dosd.vue +3777 -3752
- package/src/components/gsc-lineup-main.vue +81 -65
- package/src/components/gsc-lineups-reports.vue +10 -0
- package/src/components/gsc-lineups.vue +46 -12
- package/src/components/gsc-player-card.vue +166 -166
- package/src/index.js +4 -4
- package/src/main-test.js +42 -0
- package/src/types.d.ts +45 -45
- package/src/utils/apiUrl.js +33 -0
- package/src/utils/socketConnection.js +29 -29
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="match-details">
|
|
3
|
-
<ul class="match-details__list">
|
|
4
|
-
<li v-for="detail in localDetails">
|
|
5
|
-
<Icons class="icon" :icon="detail.icon" />
|
|
6
|
-
<span>{{ detail.description }}</span>
|
|
7
|
-
</li>
|
|
8
|
-
</ul>
|
|
9
|
-
<ul class="match-details__list right">
|
|
10
|
-
<li v-for="detail in foreignDetails">
|
|
11
|
-
<span>{{ detail.description }}</span>
|
|
12
|
-
<Icons class="icon" :icon="detail.icon" />
|
|
13
|
-
</li>
|
|
14
|
-
</ul>
|
|
15
|
-
</div>
|
|
16
|
-
</template>
|
|
17
|
-
<script setup>
|
|
18
|
-
import Icons from '@/components/Lineup2D/Icons.vue'
|
|
19
|
-
defineProps({
|
|
20
|
-
localDetails: {
|
|
21
|
-
type: Array,
|
|
22
|
-
default: () => []
|
|
23
|
-
},
|
|
24
|
-
foreignDetails: {
|
|
25
|
-
type: Array,
|
|
26
|
-
default: () => []
|
|
27
|
-
}
|
|
28
|
-
})
|
|
29
|
-
</script>
|
|
30
|
-
<style lang="scss" scoped>
|
|
31
|
-
.match-details {
|
|
32
|
-
max-width: 195px;
|
|
33
|
-
widows: 100%;
|
|
34
|
-
margin: auto;
|
|
35
|
-
display: flex;
|
|
36
|
-
justify-content: space-between;
|
|
37
|
-
&__list {
|
|
38
|
-
list-style: none;
|
|
39
|
-
padding: 0;
|
|
40
|
-
margin: 0;
|
|
41
|
-
li {
|
|
42
|
-
color: rgba(255, 255, 255, 0.70);
|
|
43
|
-
font-family: Poppins, sans-serif;
|
|
44
|
-
font-size: 9px;
|
|
45
|
-
display: flex;
|
|
46
|
-
align-items: center;
|
|
47
|
-
font-weight: 500;
|
|
48
|
-
text-align: right;
|
|
49
|
-
line-height: 19.5px; /* 216.667% */
|
|
50
|
-
letter-spacing: -0.09px;
|
|
51
|
-
text-transform: capitalize;
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
.icon {
|
|
55
|
-
margin-right: 9px;
|
|
56
|
-
width: 9px;
|
|
57
|
-
}
|
|
58
|
-
&__list.right li {
|
|
59
|
-
text-align: left;
|
|
60
|
-
justify-content: flex-end;
|
|
61
|
-
}
|
|
62
|
-
&__list.right .icon {
|
|
63
|
-
margin-right: unset;
|
|
64
|
-
margin-left: 9px;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
1
|
+
<template>
|
|
2
|
+
<div class="match-details">
|
|
3
|
+
<ul class="match-details__list">
|
|
4
|
+
<li v-for="detail in localDetails">
|
|
5
|
+
<Icons class="icon" :icon="detail.icon" />
|
|
6
|
+
<span>{{ detail.description }}</span>
|
|
7
|
+
</li>
|
|
8
|
+
</ul>
|
|
9
|
+
<ul class="match-details__list right">
|
|
10
|
+
<li v-for="detail in foreignDetails">
|
|
11
|
+
<span>{{ detail.description }}</span>
|
|
12
|
+
<Icons class="icon" :icon="detail.icon" />
|
|
13
|
+
</li>
|
|
14
|
+
</ul>
|
|
15
|
+
</div>
|
|
16
|
+
</template>
|
|
17
|
+
<script setup>
|
|
18
|
+
import Icons from '@/components/Lineup2D/Icons.vue'
|
|
19
|
+
defineProps({
|
|
20
|
+
localDetails: {
|
|
21
|
+
type: Array,
|
|
22
|
+
default: () => []
|
|
23
|
+
},
|
|
24
|
+
foreignDetails: {
|
|
25
|
+
type: Array,
|
|
26
|
+
default: () => []
|
|
27
|
+
}
|
|
28
|
+
})
|
|
29
|
+
</script>
|
|
30
|
+
<style lang="scss" scoped>
|
|
31
|
+
.match-details {
|
|
32
|
+
max-width: 195px;
|
|
33
|
+
widows: 100%;
|
|
34
|
+
margin: auto;
|
|
35
|
+
display: flex;
|
|
36
|
+
justify-content: space-between;
|
|
37
|
+
&__list {
|
|
38
|
+
list-style: none;
|
|
39
|
+
padding: 0;
|
|
40
|
+
margin: 0;
|
|
41
|
+
li {
|
|
42
|
+
color: rgba(255, 255, 255, 0.70);
|
|
43
|
+
font-family: Poppins, sans-serif;
|
|
44
|
+
font-size: 9px;
|
|
45
|
+
display: flex;
|
|
46
|
+
align-items: center;
|
|
47
|
+
font-weight: 500;
|
|
48
|
+
text-align: right;
|
|
49
|
+
line-height: 19.5px; /* 216.667% */
|
|
50
|
+
letter-spacing: -0.09px;
|
|
51
|
+
text-transform: capitalize;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
.icon {
|
|
55
|
+
margin-right: 9px;
|
|
56
|
+
width: 9px;
|
|
57
|
+
}
|
|
58
|
+
&__list.right li {
|
|
59
|
+
text-align: left;
|
|
60
|
+
justify-content: flex-end;
|
|
61
|
+
}
|
|
62
|
+
&__list.right .icon {
|
|
63
|
+
margin-right: unset;
|
|
64
|
+
margin-left: 9px;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
67
|
</style>
|