Fix: Capas desaparecen al deseleccionar en mapa principal - corregir manejo de parámetros Livewire en event listener layersUpdated; actualizar configuración Tailwind para DaisyUI

This commit is contained in:
2026-05-11 11:54:19 +02:00
parent b708e41d6f
commit 472a1fdee0
3 changed files with 241 additions and 276 deletions
+28 -1
View File
@@ -8,6 +8,8 @@ export default {
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.js',
'./app/Http/Livewire/**/*.php',
],
theme: {
@@ -18,5 +20,30 @@ export default {
},
},
plugins: [forms, daisyui],
daisyui: {
themes: [
{
mytheme: {
"primary": "#ff6b6b",
"secondary": "#f0b90b",
"accent": "#36b37e",
"neutral": "#2d3748",
"base-100": "#ffffff",
"info": "#3b82f6",
"success": "#10b981",
"warning": "#f59e0b",
"error": "#ef4444",
},
},
],
darkTheme: "dark",
base: true,
styled: true,
utils: true,
prefix: "",
logs: false,
themeRoot: ":root",
},
plugins: [daisyui, forms],
};