Dialog
---import { Dialog, DialogTrigger, DialogContent, DialogHeader, DialogFooter, DialogTitle, DialogDescription, DialogClose } from "@/components/starwind/dialog";import { Button } from "@/components/starwind/button";---
<Dialog> <DialogTrigger asChild> <Button>Open Dialog</Button> </DialogTrigger> <DialogContent> <DialogHeader> <DialogTitle>Example Dialog</DialogTitle> <DialogDescription> This is a simple dialog example that demonstrates the basic functionality. </DialogDescription> </DialogHeader> <div class="py-4">Your dialog content goes here.</div> <DialogFooter> <DialogClose asChild> <Button variant="outline">Cancel</Button> </DialogClose> <Button>Save Changes</Button> </DialogFooter> </DialogContent></Dialog>
Installation
pnpx starwind@latest add dialog
npx starwind@latest add dialog
yarn dlx starwind@latest add dialog
Usage
General Notes
All you really need is the Dialog
,DialogTrigger
, and DialogContent
. The rest is up to you. As examples, the search feature and mobile navbar of this site are built on top of the Dialog component.
With Form
Dialogs are commonly used with forms for data input.
Tip
Open up the dev tools console to see the form data on submission.
---import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DialogClose,} from "@/components/starwind/dialog";
import { Input } from "@/components/starwind/input";
import { Label } from "@/components/starwind/label";
import { Button } from "@/components/starwind/button";---
<Dialog> <DialogTrigger asChild> <Button variant="outline">Edit Profile</Button> </DialogTrigger> <DialogContent class="sm:max-w-[450px]" animationDuration={200}> <form id="edit-profile-form" method="dialog" class="flex flex-col gap-4"> <DialogHeader> <DialogTitle>Edit profile</DialogTitle> <DialogDescription> Make changes to your profile here. Click save when you're done. </DialogDescription> </DialogHeader> <div class="grid gap-6 py-4"> <div class="grid md:grid-cols-4 items-center gap-2 md:gap-4"> <Label for="name-edit" class="md:text-right"> Name </Label> <Input id="name-edit" placeholder="Pedro Duarte" class="md:col-span-3" /> </div> <div class="grid md:grid-cols-4 items-center gap-2 md:gap-4"> <Label for="username" class="md:text-right"> Username </Label> <Input id="username" placeholder="@peduarte" class="md:col-span-3" /> </div> </div> <DialogFooter> <DialogClose asChild> <Button type="button" variant="outline">Cancel</Button> </DialogClose> <Button type="submit">Save changes</Button> </DialogFooter> </form> </DialogContent></Dialog>
<script> const setupForm = () => { const form = document.getElementById("edit-profile-form") as HTMLFormElement; if (!form) return;
form.addEventListener("submit", (e) => { e.preventDefault();
console.log("Form submission data:", { name: (form.querySelector("#name-edit") as HTMLInputElement)?.value, username: (form.querySelector("#username") as HTMLInputElement)?.value, }); }); };
setupForm();
document.addEventListener("astro:after-swap", setupForm);</script>
API Reference
Dialog
The root component that serves as a container for all dialog-related components. It manages the state of the dialog and handles keyboard interactions.
The component accepts all standard HTML attributes for <div>
elements.
DialogTrigger
The button that opens the dialog. When clicked, it shows the dialog content.
asChild
: When true, the component will render its child element instead of a button component.
Prop | Type | Default |
---|---|---|
asChild | boolean | false |
The component accepts all standard HTML attributes for <button>
elements.
DialogContent
The container for dialog content. This component renders the actual modal dialog with animation effects.
animationDuration
: Open and close animation duration in milliseconds.
Prop | Type | Default |
---|---|---|
animationDuration | number | 200 |
The component accepts all standard HTML attributes for <dialog>
elements.
DialogHeader
A container for dialog header content, typically containing a title and description.
The component accepts all standard HTML attributes for <div>
elements.
DialogFooter
A container for dialog footer content, typically containing action buttons.
The component accepts all standard HTML attributes for <div>
elements.
DialogTitle
A component for rendering the dialog title with appropriate styling.
The component accepts all standard HTML attributes for <h2>
elements except for id
, which is managed internally.
DialogDescription
A component for rendering the dialog description with appropriate styling.
The component accepts all standard HTML attributes for <p>
elements.
DialogClose
A button that closes the dialog when clicked.
asChild
: When true, the component will render its child element instead of a button component.
Prop | Type | Default |
---|---|---|
asChild | boolean | false |
The component accepts all standard HTML attributes for <button>
elements.
Changelog
v1.1.0
tailwind-variants
now implemented. This usestailwind-merge
under the hood to merge Tailwind classes without style conflicts, allowing you to override any existing classes using the “class” prop.