Sheet

A panel that slides in from an edge.

Usage

import { Sheet } from "@voila.dev/ui/sheet";
<Sheet.Root>
	<Sheet.Trigger render={<Button variant="outline" />}>Details</Sheet.Trigger>
	<Sheet.Content side="right" size="lg">
		<Sheet.Header>
			<Sheet.Title>Project details</Sheet.Title>
			<Sheet.Description>Design sprint starting Saturday.</Sheet.Description>
		</Sheet.Header>
		<Sheet.Footer>
			<Button>Confirm booking</Button>
		</Sheet.Footer>
	</Sheet.Content>
</Sheet.Root>

A panel that slides in from an edge and keeps the page visible behind it. That is the difference from Dialog: a sheet is for working alongside what is on screen — a detail panel, a filter column — where a centred modal would say "stop everything". If the panel wants to be dragged and thrown like a native surface, that is Drawer. If it is a detail panel that will also be read on a phone, use ResponsiveSheet, which becomes a bottom drawer on small screens.

Recipes

Every edge

side picks the edge and size measures across it — so size is a width on left/right and a height on top/bottom. full covers the axis entirely, which is the honest choice on a narrow viewport when a partial panel would leave an unusable sliver.

API

Sheet.Root

PropTypeDefault
actionsRefRefObject<DialogRootActions | null>A ref to imperative actions.
childrenPayloadChildRenderFunction<unknown> | ReactNodeThe content of the dialog. This can be a regular React node or a render function that receives the payload of the active trigger.
defaultOpenbooleanWhether the dialog is initially open. To render a controlled dialog, use the open prop instead.
defaultTriggerIdstring | nullID of the trigger that the dialog is associated with. This is useful in conjunction with the defaultOpen prop to create an initially open dialog.
disablePointerDismissalbooleanWhether to prevent the dialog from closing on outside presses. For non-modal dialogs, this also prevents the dialog from closing when focus moves outside of it.
handleDialogHandle<unknown>A handle to associate the dialog with a trigger. If specified, allows external triggers to control the dialog's open state. Can be created with the Dialog.createHandle() method.
modal"trap-focus" | booleanDetermines if the dialog enters a modal state when open. When modal is true or 'trap-focus', render <Dialog.Close> inside <Dialog.Popup> so touch screen readers can escape the popup.
onOpenChange((open: boolean, eventDetails: DialogRootChangeEventDetails) => void)Event handler called when the dialog is opened or closed.
onOpenChangeComplete((open: boolean) => void)Event handler called after any animations complete when the dialog is opened or closed.
openbooleanWhether the dialog is currently open.
triggerIdstring | nullID of the trigger that the dialog is associated with. This is useful in conjunction with the open prop to create a controlled dialog. There's no need to specify this prop when the dialog is uncontrolled (that is, when the open prop is not set).

Plus the DOM props of the element it renders. Source: sheet/components/sheet-root.tsx.

Sheet.Close

PropTypeDefault
classNamestring | ((state: DialogCloseState) => string | undefined)CSS class applied to the element, or a function that returns a class based on the component's state.
nativeButtonbooleanWhether the component renders a native <button> element when replacing it via the render prop. Set to false if the rendered element is not a button (for example, <div>).
renderComponentRenderFn<HTMLProps, DialogCloseState> | ReactElement<unknown, string | JSXElementConstructor<any>>Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a ReactElement or a function that returns the element to render.
styleCSSProperties | ((state: DialogCloseState) => CSSProperties | undefined)Style applied to the element, or a function that returns a style object based on the component's state.

Plus the DOM props of the element it renders. Source: sheet/components/sheet-close.tsx.

Sheet.Content

PropTypeDefault
closeButtonLabelstring"Close"Accessible name for that X. This package ships no translations.
overlayClassNamestringClasses for the backdrop behind the panel. className styles the panel itself.
showCloseButtonbooleantrueDraws the X in the corner.
side"bottom" | "left" | "right" | "top""right"Edge the panel slides in from.
sizeSheetContentSize"default"Thickness of the panel along the axis it slides on, sm through full.
classNamestring | ((state: DialogPopupState) => string | undefined)CSS class applied to the element, or a function that returns a class based on the component's state.
finalFocusboolean | RefObject<HTMLElement | null> | ((closeType: InteractionType) => void | boolean | HTMLElement | null)Determines the element to focus when the dialog is closed.
initialFocusboolean | RefObject<HTMLElement | null> | ((openType: InteractionType) => void | boolean | HTMLElement | null)Determines the element to focus when the dialog is opened. By default, focus moves to the first tabbable element inside the popup, except when the dialog is opened by touch — then the popup itself is focused to avoid opening the virtual keyboard.
renderComponentRenderFn<HTMLProps, DialogPopupState> | ReactElement<unknown, string | JSXElementConstructor<any>>Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a ReactElement or a function that returns the element to render.
styleCSSProperties | ((state: DialogPopupState) => CSSProperties | undefined)Style applied to the element, or a function that returns a style object based on the component's state.

Plus the DOM props of the element it renders. Source: sheet/components/sheet-content.tsx.

Sheet.Description

PropTypeDefault
classNamestring | ((state: DialogDescriptionState) => string | undefined)CSS class applied to the element, or a function that returns a class based on the component's state.
renderComponentRenderFn<HTMLProps, DialogDescriptionState> | ReactElement<unknown, string | JSXElementConstructor<any>>Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a ReactElement or a function that returns the element to render.
styleCSSProperties | ((state: DialogDescriptionState) => CSSProperties | undefined)Style applied to the element, or a function that returns a style object based on the component's state.

Plus the DOM props of the element it renders. Source: sheet/components/sheet-description.tsx.

Sheet.Footer

PropTypeDefault
renderComponentRenderFn<HTMLProps, {}> | ReactElement<unknown, string | JSXElementConstructor<any>>Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a ReactElement or a function that returns the element to render.

Plus every <div> prop. Source: sheet/components/sheet-footer.tsx.

Sheet.Header

PropTypeDefault
renderComponentRenderFn<HTMLProps, {}> | ReactElement<unknown, string | JSXElementConstructor<any>>Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a ReactElement or a function that returns the element to render.

Plus every <div> prop. Source: sheet/components/sheet-header.tsx.

Sheet.Overlay

PropTypeDefault
classNamestring | ((state: DialogBackdropState) => string | undefined)CSS class applied to the element, or a function that returns a class based on the component's state.
forceRenderbooleanWhether the backdrop is forced to render even when nested.
renderComponentRenderFn<HTMLProps, DialogBackdropState> | ReactElement<unknown, string | JSXElementConstructor<any>>Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a ReactElement or a function that returns the element to render.
styleCSSProperties | ((state: DialogBackdropState) => CSSProperties | undefined)Style applied to the element, or a function that returns a style object based on the component's state.

Plus the DOM props of the element it renders. Source: sheet/components/sheet-overlay.tsx.

Sheet.Portal

PropTypeDefault
classNamestring | ((state: DialogPortalState) => string | undefined)CSS class applied to the element, or a function that returns a class based on the component's state.
containerHTMLElement | RefObject<HTMLElement | ShadowRoot | null> | ShadowRoot | nullA parent element to render the portal element into.
keepMountedbooleanWhether to keep the portal mounted in the DOM while the popup is hidden.
renderComponentRenderFn<HTMLProps, DialogPortalState> | ReactElement<unknown, string | JSXElementConstructor<any>>Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a ReactElement or a function that returns the element to render.
styleCSSProperties | ((state: DialogPortalState) => CSSProperties | undefined)Style applied to the element, or a function that returns a style object based on the component's state.

Plus the DOM props of the element it renders. Source: sheet/components/sheet-portal.tsx.

Sheet.Title

PropTypeDefault
classNamestring | ((state: DialogTitleState) => string | undefined)CSS class applied to the element, or a function that returns a class based on the component's state.
renderComponentRenderFn<HTMLProps, DialogTitleState> | ReactElement<unknown, string | JSXElementConstructor<any>>Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a ReactElement or a function that returns the element to render.
styleCSSProperties | ((state: DialogTitleState) => CSSProperties | undefined)Style applied to the element, or a function that returns a style object based on the component's state.

Plus the DOM props of the element it renders. Source: sheet/components/sheet-title.tsx.

Sheet.Trigger

PropTypeDefault
classNamestring | ((state: DialogTriggerState) => string | undefined)CSS class applied to the element, or a function that returns a class based on the component's state.
handleDialogHandle<unknown>A handle to associate the trigger with a dialog. Can be created with the Dialog.createHandle() method.
idstringID of the trigger. In addition to being forwarded to the rendered element, it is also used to specify the active trigger for the dialog in controlled mode (with the DialogRoot triggerId prop).
nativeButtonbooleanWhether the component renders a native <button> element when replacing it via the render prop. Set to false if the rendered element is not a button (for example, <div>).
payloadunknownA payload to pass to the dialog when it is opened.
renderComponentRenderFn<HTMLProps, DialogTriggerState> | ReactElement<unknown, string | JSXElementConstructor<any>>Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a ReactElement or a function that returns the element to render.
styleCSSProperties | ((state: DialogTriggerState) => CSSProperties | undefined)Style applied to the element, or a function that returns a style object based on the component's state.

Plus the DOM props of the element it renders. Source: sheet/components/sheet-trigger.tsx.

ResponsiveSheet · Drawer · Dialog · Popover