|
| 1 | +import { AlertDialog as AlertDialogPrimitive } from "bits-ui"; |
| 2 | +import Trigger from "./alert-dialog-trigger.svelte"; |
| 3 | +import Title from "./alert-dialog-title.svelte"; |
| 4 | +import Action from "./alert-dialog-action.svelte"; |
| 5 | +import Cancel from "./alert-dialog-cancel.svelte"; |
| 6 | +import Footer from "./alert-dialog-footer.svelte"; |
| 7 | +import Header from "./alert-dialog-header.svelte"; |
| 8 | +import Overlay from "./alert-dialog-overlay.svelte"; |
| 9 | +import Content from "./alert-dialog-content.svelte"; |
| 10 | +import Description from "./alert-dialog-description.svelte"; |
| 11 | + |
| 12 | +const Root = AlertDialogPrimitive.Root; |
| 13 | +const Portal = AlertDialogPrimitive.Portal; |
| 14 | + |
| 15 | +export { |
| 16 | + Root, |
| 17 | + Title, |
| 18 | + Action, |
| 19 | + Cancel, |
| 20 | + Portal, |
| 21 | + Footer, |
| 22 | + Header, |
| 23 | + Trigger, |
| 24 | + Overlay, |
| 25 | + Content, |
| 26 | + Description, |
| 27 | + // |
| 28 | + Root as AlertDialog, |
| 29 | + Title as AlertDialogTitle, |
| 30 | + Action as AlertDialogAction, |
| 31 | + Cancel as AlertDialogCancel, |
| 32 | + Portal as AlertDialogPortal, |
| 33 | + Footer as AlertDialogFooter, |
| 34 | + Header as AlertDialogHeader, |
| 35 | + Trigger as AlertDialogTrigger, |
| 36 | + Overlay as AlertDialogOverlay, |
| 37 | + Content as AlertDialogContent, |
| 38 | + Description as AlertDialogDescription, |
| 39 | +}; |
0 commit comments