@golstats/gsc-top-player 1.0.8 → 1.0.10
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-DgmObXIt.js → FilterConditions-55d68355-zHMe0Dyg.js} +1 -1
- package/dist/{FilterField-59a73e38-09cJ-DRW.js → FilterField-59a73e38-DtNZKbqt.js} +1 -1
- package/dist/{FilterSubcategories-a9b32cc9-DNpw7zPl.js → FilterSubcategories-a9b32cc9-BjvvEE_X.js} +1 -1
- package/dist/gsc-top-player.css +1 -1
- package/dist/gsc-top-player.es.js +1 -1
- package/dist/gsc-top-player.umd.js +11 -11
- package/dist/{index-BUTX2R4X.js → index-Cctg5U4Y.js} +1318 -1260
- package/package.json +1 -1
- package/src/App.vue +3 -85
- package/src/components/comparative/dummy-top-players.js +28 -28
- package/src/components/comparative/gsc-header-tops.vue +165 -1
- package/src/components/comparative/gsc-row.vue +390 -38
- package/src/components/comparative/gsc-top.vue +1 -2
- package/src/components/gsc-top-player.vue +1 -1
|
@@ -1428,9 +1428,8 @@ export default {
|
|
|
1428
1428
|
padding: 0px 0px 2px;
|
|
1429
1429
|
align-items: center;
|
|
1430
1430
|
justify-content: flex-end;
|
|
1431
|
-
z-index: 1;
|
|
1432
1431
|
text-align: center;
|
|
1433
|
-
font-size:
|
|
1432
|
+
font-size: 11px;
|
|
1434
1433
|
font-family: Montserrat-SemiBold;
|
|
1435
1434
|
height: 33px;
|
|
1436
1435
|
display: flex;
|
|
@@ -68,7 +68,7 @@ const props = defineProps({
|
|
|
68
68
|
},
|
|
69
69
|
})
|
|
70
70
|
|
|
71
|
-
// Si useDummyData es true, usa datos dummy, si es false busca datos reales
|
|
71
|
+
// Si useDummyData es true, usa datos dummy, si es false busca datos reales
|
|
72
72
|
const dummyData = props.useDummyData ? dummyTopPlayers : null
|
|
73
73
|
</script>
|
|
74
74
|
|