2026-04-06 18:22:01 +02:00
|
|
|
import Root from "./alert-dialog.svelte";
|
|
|
|
|
import Portal from "./alert-dialog-portal.svelte";
|
2025-06-21 21:07:36 +02:00
|
|
|
import Trigger from "./alert-dialog-trigger.svelte";
|
2024-07-15 13:19:56 +02:00
|
|
|
import Title from "./alert-dialog-title.svelte";
|
|
|
|
|
import Action from "./alert-dialog-action.svelte";
|
|
|
|
|
import Cancel from "./alert-dialog-cancel.svelte";
|
|
|
|
|
import Footer from "./alert-dialog-footer.svelte";
|
|
|
|
|
import Header from "./alert-dialog-header.svelte";
|
|
|
|
|
import Overlay from "./alert-dialog-overlay.svelte";
|
|
|
|
|
import Content from "./alert-dialog-content.svelte";
|
|
|
|
|
import Description from "./alert-dialog-description.svelte";
|
2026-04-06 18:22:01 +02:00
|
|
|
import Media from "./alert-dialog-media.svelte";
|
2024-07-15 13:19:56 +02:00
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
Root,
|
|
|
|
|
Title,
|
|
|
|
|
Action,
|
|
|
|
|
Cancel,
|
|
|
|
|
Portal,
|
|
|
|
|
Footer,
|
|
|
|
|
Header,
|
|
|
|
|
Trigger,
|
|
|
|
|
Overlay,
|
|
|
|
|
Content,
|
|
|
|
|
Description,
|
2026-04-06 18:22:01 +02:00
|
|
|
Media,
|
2024-07-15 13:19:56 +02:00
|
|
|
//
|
|
|
|
|
Root as AlertDialog,
|
|
|
|
|
Title as AlertDialogTitle,
|
|
|
|
|
Action as AlertDialogAction,
|
|
|
|
|
Cancel as AlertDialogCancel,
|
|
|
|
|
Portal as AlertDialogPortal,
|
|
|
|
|
Footer as AlertDialogFooter,
|
|
|
|
|
Header as AlertDialogHeader,
|
|
|
|
|
Trigger as AlertDialogTrigger,
|
|
|
|
|
Overlay as AlertDialogOverlay,
|
|
|
|
|
Content as AlertDialogContent,
|
|
|
|
|
Description as AlertDialogDescription,
|
2026-04-06 18:22:01 +02:00
|
|
|
Media as AlertDialogMedia,
|
2024-07-15 13:19:56 +02:00
|
|
|
};
|