@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.
Files changed (48) hide show
  1. package/README.md +2 -2
  2. package/dist/css/fonts.css +91 -91
  3. package/dist/gsc-lineups-reports.css +1 -1
  4. package/dist/gsc-lineups-reports.es.js +2946 -2675
  5. package/dist/gsc-lineups-reports.umd.js +10 -7
  6. package/dist/images/canchaRPH.svg +30 -30
  7. package/dist/images/events/atajada.svg +56 -56
  8. package/dist/images/events/fin-del-partido.svg +43 -43
  9. package/dist/images/events/fuera-de-lugar.svg +57 -57
  10. package/dist/images/events/gol.svg +48 -48
  11. package/dist/images/events/icn-cambio.svg +6 -6
  12. package/dist/images/events/icn-falta.svg +4 -4
  13. package/dist/images/events/icn-play.svg +3 -3
  14. package/dist/images/events/icn-tarjeta-amarilla.svg +3 -3
  15. package/dist/images/events/icn-tarjeta-roja.svg +3 -3
  16. package/dist/images/events/icn-tiro-a-porteria.svg +36 -36
  17. package/dist/images/events/icn-tiros-de-esquina.svg +18 -18
  18. package/dist/images/events/inicia-el-partido.svg +45 -45
  19. package/dist/images/events/jugada-peligrosa.svg +90 -90
  20. package/dist/images/events/penal-fallado.svg +194 -194
  21. package/dist/images/events/penal-marcado.svg +189 -189
  22. package/dist/images/events/tiempo-agregado.svg +74 -74
  23. package/dist/images/events/tiro-a-porteria.svg +80 -80
  24. package/dist/images/events/var.svg +30 -30
  25. package/package.json +7 -3
  26. package/src/components/Lineup2D/CheckBox.vue +42 -42
  27. package/src/components/Lineup2D/FilterEmpty.vue +48 -48
  28. package/src/components/Lineup2D/Icons.vue +29 -29
  29. package/src/components/Lineup2D/LineupField.vue +274 -274
  30. package/src/components/Lineup2D/LineupFilter.vue +285 -285
  31. package/src/components/Lineup2D/LineupMainHeader.vue +222 -222
  32. package/src/components/Lineup2D/LineupRecentItem.vue +110 -110
  33. package/src/components/Lineup2D/MatchDetails.vue +66 -66
  34. package/src/components/gsc-filter.vue +286 -286
  35. package/src/components/gsc-header-historico-lineup.vue +1064 -1064
  36. package/src/components/gsc-header-postmatch-lineup.vue +1017 -1017
  37. package/src/components/gsc-header-probables-lineup.vue +1044 -1044
  38. package/src/components/gsc-header-recientes-lineup.vue +2337 -2337
  39. package/src/components/gsc-lineup-dosd.vue +3777 -3752
  40. package/src/components/gsc-lineup-main.vue +81 -65
  41. package/src/components/gsc-lineups-reports.vue +10 -0
  42. package/src/components/gsc-lineups.vue +46 -12
  43. package/src/components/gsc-player-card.vue +166 -166
  44. package/src/index.js +4 -4
  45. package/src/main-test.js +42 -0
  46. package/src/types.d.ts +45 -45
  47. package/src/utils/apiUrl.js +33 -0
  48. 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>