- inserito il componente per scegliere il colore e la trasparenza, dello sfondo della pagina introduttiva

- corretto i margini del testo e la dimensione del font.
This commit is contained in:
Surya Paolo
2025-06-29 18:33:20 +02:00
parent 99fab39c4b
commit 4b65400d50
13 changed files with 1247 additions and 211 deletions

View File

@@ -96,6 +96,8 @@ export default defineComponent({
const rigeneraLibri = ref(false);
const search = ref('');
const showColorPicker = ref(false);
const optauthors = ref(<any>[]);
const strout = ref('');
@@ -2691,9 +2693,10 @@ export default defineComponent({
updateCatalogoPadre();
}
function updatecatalogmodif(field: string, val: any) {
async function updatecatalogmodif(field: string, val: any) {
if (field) {
myCatalog.value[field] = val;
await saveCatalog();
}
}
@@ -2792,6 +2795,8 @@ export default defineComponent({
updatecatalogmodif,
tabgen,
generaListaTempLibri,
globalStore,
showColorPicker,
};
},
});