Fix: Eliminar componentes duplicados que causaban conflicto en el build
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 1m4s
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 1m4s
- Eliminar CataResumenMuestra.vue y CataFormularioMuestra.vue duplicados - Usar componentes existentes en components/cata/ que ya se auto-registran como CataResumenMuestra y CataFormularioMuestra - Resolver conflicto de nombres en Nuxt que impedía el build
This commit is contained in:
@@ -161,5 +161,48 @@ export default defineAppConfig({
|
||||
root: 'bg-transparent border border-primary/50 dark:border-primary focus:ring-2 focus:ring-primary dark:font-mono',
|
||||
},
|
||||
},
|
||||
|
||||
// Notifications (Toast): Estilo outline con los colores de la app
|
||||
notification: {
|
||||
slots: {
|
||||
root: 'bg-transparent border-2 border-primary/50 dark:border-primary backdrop-blur-sm',
|
||||
wrapper: 'w-full',
|
||||
title: 'text-foreground font-semibold dark:font-mono dark:text-shadow',
|
||||
description: 'text-foreground/80 dark:font-mono dark:font-light',
|
||||
icon: 'shrink-0',
|
||||
avatar: 'shrink-0',
|
||||
actions: 'flex gap-1.5 shrink-0',
|
||||
close: 'shrink-0',
|
||||
progress: 'absolute inset-x-0 bottom-0 h-1 z-10',
|
||||
},
|
||||
variants: {
|
||||
color: {
|
||||
primary: {
|
||||
root: 'dark:shadow-[0_0_12px_rgba(0,255,0,0.3)]',
|
||||
progress: 'bg-primary',
|
||||
},
|
||||
success: {
|
||||
root: 'border-green-500/50 dark:border-green-500 dark:shadow-[0_0_12px_rgba(0,255,0,0.3)]',
|
||||
progress: 'bg-green-500',
|
||||
},
|
||||
error: {
|
||||
root: 'border-red-500/50 dark:border-red-500 dark:shadow-[0_0_12px_rgba(255,0,0,0.3)]',
|
||||
progress: 'bg-red-500',
|
||||
},
|
||||
warning: {
|
||||
root: 'border-yellow-500/50 dark:border-yellow-500 dark:shadow-[0_0_12px_rgba(255,255,0,0.3)]',
|
||||
progress: 'bg-yellow-500',
|
||||
},
|
||||
info: {
|
||||
root: 'border-blue-500/50 dark:border-blue-500 dark:shadow-[0_0_12px_rgba(0,150,255,0.3)]',
|
||||
progress: 'bg-blue-500',
|
||||
},
|
||||
neutral: {
|
||||
root: 'dark:shadow-[0_0_12px_rgba(100,100,100,0.3)]',
|
||||
progress: 'bg-gray-500',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user