chore: add class in close slot props

This commit is contained in:
Benjamin Canac
2024-06-10 18:57:18 +02:00
parent 90bcc23576
commit c630625e83
4 changed files with 4 additions and 4 deletions

View File

@@ -35,7 +35,7 @@ export interface AlertSlots {
title(): any title(): any
description(): any description(): any
actions(): any actions(): any
close(): any close(props: { class: string }): any
} }
</script> </script>

View File

@@ -32,7 +32,7 @@ export interface ModalSlots {
header(): any header(): any
title(): any title(): any
description(): any description(): any
close(): any close(props: { class: string }): any
body(): any body(): any
footer(): any footer(): any
} }

View File

@@ -34,7 +34,7 @@ export interface SlideoverSlots {
header(): any header(): any
title(): any title(): any
description(): any description(): any
close(): any close(props: { class: string }): any
body(): any body(): any
footer(): any footer(): any
} }

View File

@@ -32,7 +32,7 @@ export interface ToastSlots {
title(): any title(): any
description(): any description(): any
actions(): any actions(): any
close(): any close(props: { class: string }): any
} }
</script> </script>