Skip to content

Commit

Permalink
✅ Arreglar tipos y limpiar advertencias de Typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
1cgonza committed Dec 17, 2024
1 parent 93491e5 commit 5ecabcb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
8 changes: 4 additions & 4 deletions aplicaciones/www/src/componentes/Dona.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import type { DonaProcesada, IDona } from '@/tipos';
import { onMounted, Ref, ref, toRefs, watch } from 'vue';
import { onMounted, ref, toRefs, watch } from 'vue';
interface Esquema {
secciones: IDona[];
Expand Down Expand Up @@ -79,9 +79,9 @@ function actualizarDonas() {
}
// Esto si quisiéramos adelgazar la línea del círculo para que coincida con el hover
.donaCentro {
//fill: var(--azulOscuroCuenco);
}
// .donaCentro {
// //fill: var(--azulOscuroCuenco);
// }
circle {
fill: transparent;
Expand Down
4 changes: 2 additions & 2 deletions aplicaciones/www/src/componentes/ListaNodos.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { usarCerebroDatos } from '@/cerebros/datos';
import { usarCerebroFicha } from '@/cerebros/ficha';
import type { TiposNodo } from '@/tipos';
import type { Colectivo, ElementoLista, Publicacion } from '@/tipos/compartidos';
import { storeToRefs } from 'pinia';
// import { storeToRefs } from 'pinia';
interface Esquema {
tipo: TiposNodo;
Expand All @@ -12,7 +12,7 @@ interface Esquema {
}
const cerebroDatos = usarCerebroDatos();
const { publicaciones } = storeToRefs(cerebroDatos);
// const { publicaciones } = storeToRefs(cerebroDatos);
defineProps<Esquema>();
const cerebroFicha = usarCerebroFicha();
Expand Down
6 changes: 4 additions & 2 deletions aplicaciones/www/src/componentes/Mapa.vue
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,8 @@ function crearTextoSede(datos: PropiedadesGeoColectivos) {
} else if (props.pagina === 'inicio') {
return `<p class="nombre">${nombre}</p>`;
}
return nombre;
}
</script>

Expand Down Expand Up @@ -215,7 +217,7 @@ function crearTextoSede(datos: PropiedadesGeoColectivos) {
}
@media screen and (min-width: $minPantalla) {
#contenedorMapa {
}
// #contenedorMapa {
// }
}
</style>
3 changes: 3 additions & 0 deletions aplicaciones/www/src/tipos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ export interface DatosFicha {
indicadores?: ELementoFicha[];
sedes?: ELementoFicha[];
tipos?: ELementoFicha[];
tiposSede?: ELementoFicha[];
roles?: ELementoFicha[];
cargos?: ELementoFicha[];
autores?: ELementoFicha[];
años?: ELementoFicha[];
colectivos?: ELementoFicha[];
Expand Down

0 comments on commit 5ecabcb

Please sign in to comment.