Skip to main content

AlertDialog

Example

import {
AlertDialog,
AlertDialogAction,
AlertDialogCancel,
AlertDialogContent,
AlertDialogDescription,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogTitle,
AlertDialogTrigger,
Button,
} from "@databricks/appkit-ui/react"

export default function AlertDialogExample() {
return (
<AlertDialog>
<AlertDialogTrigger asChild>
<Button variant="outline">Show Dialog</Button>
</AlertDialogTrigger>
<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>Are you absolutely sure?</AlertDialogTitle>
<AlertDialogDescription>
This action cannot be undone. This will permanently delete your
account and remove your data from our servers.
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel>Cancel</AlertDialogCancel>
<AlertDialogAction>Continue</AlertDialogAction>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
)
}

AlertDialog

Source: packages/appkit-ui/src/react/ui/alert-dialog.tsx

Props

PropTypeRequiredDefaultDescription
defaultOpenboolean--
openboolean--
onOpenChange((open: boolean) => void)--

Usage

import { AlertDialog } from '@databricks/appkit-ui';

<AlertDialog /* props */ />

AlertDialogAction

Source: packages/appkit-ui/src/react/ui/alert-dialog.tsx

Props

PropTypeRequiredDefaultDescription
asChildboolean--

Usage

import { AlertDialogAction } from '@databricks/appkit-ui';

<AlertDialogAction /* props */ />

AlertDialogCancel

Source: packages/appkit-ui/src/react/ui/alert-dialog.tsx

Props

PropTypeRequiredDefaultDescription
asChildboolean--

Usage

import { AlertDialogCancel } from '@databricks/appkit-ui';

<AlertDialogCancel /* props */ />

AlertDialogContent

Source: packages/appkit-ui/src/react/ui/alert-dialog.tsx

Props

PropTypeRequiredDefaultDescription
asChildboolean--
forceMounttrue-Used to force mounting when more control is needed. Useful when controlling animation with React animation libraries.
onEscapeKeyDown((event: KeyboardEvent) => void)-Event handler called when the escape key is down. Can be prevented.
onFocusOutside((event: FocusOutsideEvent) => void)-Event handler called when the focus moves outside of the DismissableLayer. Can be prevented.
onOpenAutoFocus((event: Event) => void)-Event handler called when auto-focusing on open. Can be prevented.
onCloseAutoFocus((event: Event) => void)-Event handler called when auto-focusing on close. Can be prevented.

Usage

import { AlertDialogContent } from '@databricks/appkit-ui';

<AlertDialogContent /* props */ />

AlertDialogDescription

Source: packages/appkit-ui/src/react/ui/alert-dialog.tsx

Props

PropTypeRequiredDefaultDescription
asChildboolean--

Usage

import { AlertDialogDescription } from '@databricks/appkit-ui';

<AlertDialogDescription /* props */ />

AlertDialogFooter

Source: packages/appkit-ui/src/react/ui/alert-dialog.tsx

Props

This component extends standard HTML element attributes.

Usage

import { AlertDialogFooter } from '@databricks/appkit-ui';

<AlertDialogFooter /* props */ />

AlertDialogHeader

Source: packages/appkit-ui/src/react/ui/alert-dialog.tsx

Props

This component extends standard HTML element attributes.

Usage

import { AlertDialogHeader } from '@databricks/appkit-ui';

<AlertDialogHeader /* props */ />

AlertDialogOverlay

Source: packages/appkit-ui/src/react/ui/alert-dialog.tsx

Props

PropTypeRequiredDefaultDescription
asChildboolean--
forceMounttrue-Used to force mounting when more control is needed. Useful when controlling animation with React animation libraries.

Usage

import { AlertDialogOverlay } from '@databricks/appkit-ui';

<AlertDialogOverlay /* props */ />

AlertDialogPortal

Source: packages/appkit-ui/src/react/ui/alert-dialog.tsx

Props

PropTypeRequiredDefaultDescription
containerElement | DocumentFragment | null-Specify a container element to portal the content into.
forceMounttrue-Used to force mounting when more control is needed. Useful when controlling animation with React animation libraries.

Usage

import { AlertDialogPortal } from '@databricks/appkit-ui';

<AlertDialogPortal /* props */ />

AlertDialogTitle

Source: packages/appkit-ui/src/react/ui/alert-dialog.tsx

Props

PropTypeRequiredDefaultDescription
asChildboolean--

Usage

import { AlertDialogTitle } from '@databricks/appkit-ui';

<AlertDialogTitle /* props */ />

AlertDialogTrigger

Source: packages/appkit-ui/src/react/ui/alert-dialog.tsx

Props

PropTypeRequiredDefaultDescription
asChildboolean--

Usage

import { AlertDialogTrigger } from '@databricks/appkit-ui';

<AlertDialogTrigger /* props */ />