
Confirm is a standardized confirmation dialog for a short binary decision before an important action. Use it through ConfirmManager.open({ title, description }) when users must confirm or cancel a destructive, irreversible, or high-impact operation.
Use it for:
- Delete, unpublish, archive, reset, discard changes, leave with unsaved changes, or bulk actions.
- Short confirm/cancel decisions with one title and one description.
- Handling the result through
confirmed,canceled, andclosedevents onConfirmRef. - Showing confirmations from pages, tables, action bars, or even inside an existing dialog flow.
Do not use Confirm for long forms, custom modal layouts, wizards, informational dialogs, settings panels, or choices with more than two outcomes. Use Dialog for custom modal content.