← Back to Docs

Modal Dialog Patterns

Accessible overlay windows for confirmations, forms, and focused workflows.

Basic Confirmation

Delete project?

This action cannot be undone. All data will be permanently removed.

Form Modal

Create API Key

Keys are scoped to your current project.

Implementation Notes

• Trap focus within the modal while open. Use a hidden sentinel element at each end.

• Close on Escape keydown. Close on backdrop click unless the modal contains unsaved state.

• Render into a portal container appended to document.body to avoid z-index stacking context issues.

• Apply aria-modal="true" and role="dialog" with a descriptive aria-label.

• Animate entrance with a brief scale+fade. Keep it under 200ms — snappy, not sluggish.