Skip to main content

Starwind UI v1.3.1 is now available! Get started

Dialog

Example Dialog

This is a simple dialog example that demonstrates the basic functionality.

Your dialog content goes here.

Installation

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.

Edit profile

Make changes to your profile here. Click save when you're done.

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.
PropTypeDefault
asChildbooleanfalse

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.
PropTypeDefault
animationDurationnumber200

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.
PropTypeDefault
asChildbooleanfalse

The component accepts all standard HTML attributes for <button> elements.

Changelog

v1.1.0

  • tailwind-variants now implemented. This uses tailwind-merge under the hood to merge Tailwind classes without style conflicts, allowing you to override any existing classes using the “class” prop.