open=false, 5000); alert=$event.detail[0];"
x-transition:enter="animate-alert-show"
x-transition:leave="animate-alert-hide"
class="fixed bg-gray-100 border border-gray-300 rounded-md p-4 shadow-sm max-w-xl z-50"
:class="{
'bg-green-100 border-green-300 text-green-700': alert.type === 'success',
'bg-red-100 border-red-300 text-red-700': alert.type === 'error',
'bg-yellow-100 border-yellow-300 text-yellow-700': alert.type === 'warning',
'bg-blue-100 border-blue-300 text-blue-700': alert.type === 'info',
'top-20 left-20 ml-30': alert.position === 'top-left',
'top-10 left-1/2': alert.position === 'top-center',
'top-20 right-20': alert.position === 'top-right',
'top-1/2 left-1/2': alert.position === 'middle-center',
'bottom-0 left-30 mb-20': alert.position === 'bottom-left',
'bottom-0 left-1/2 mb-20': alert.position === 'bottom-center',
'bottom-0 right-0 mb-20 mr-20': alert.position === 'bottom-right'
}"
>