Skip to main content
Design system

Drawer

A drawer is a panel that is typically overlaid on top of a page and slides in from off-canvas (tied to a side of the screen). It contains a set of information or actions. Since the user can interact with the Drawer without leaving the current page, tasks can be achieved more efficiently within the same context.

Bundle size: 140.9 kB
Install:
npm install @washingtonpost/wpds-ui-kit
|Copy
Usage:
import { Drawer } from "@washingtonpost/wpds-ui-kit"
|Copy
Storybook:  View on Storybook
Source:  View on Github

Anatomy

Note: Image is not to scale

  1. Container
  2. Button icon
  3. Scrim

Options

Position

The drawer can be attached to any side of the screen.

Optional Close

The drawer close button icon can be optional.

Optional Scrim

The scrim is optional when using the drawer. Should note that without a scrim, it is recommended to have a close button to ensure users can close the drawer if that is desired.

Optional Scrim color

The scrim color can be changed by defining the color using one of our background colors from our tokens

Drawer color

The drawer color can be changed by defining the color using one of our background colors from our tokens.

Height and Width

Drawer width and height can be defined. Height can be defined if the position is top or bottom and width can be defined if the position is right or left.


Behavior

Closing

When the close button icon is rendered, the drawer can be closed by either clicking the scrim or the close button. Note: The drawer can be set to open and will remain open even if the scrim is clicked on.

Content overflow

Content will overflow, both vertically and horizontally, in the drawer by default.


Guidance

Content should be accessible

Do not combine colors of the drawer where text is not accessible to the user. Read more about WCAG accessible contrast requirements.

Avoid full screen

A drawer should never take the fullscreen of the viewer window. The drawer should always leave at least 1/3 of the screen available.


API Reference

DrawerRoot

PropDescriptionTypeDefaultRequired
idcontent id used for a11y
string
----
True
onOpenChangecallback to respond to open state
(boolean: any) => void
----False
zIndexCss z-index of drawer @default theme.zIndices.shell
ZIndex | Token<"shell", string, "zIndices", "wpds">
300 False
opencontrolled drawer open state, used with onOpenChange
boolean
----False
defaultOpenuncontrolled drawer open on mount
boolean
----False

DrawerContent

PropDescriptionTypeDefaultRequired
heightHeight for a top or bottom positioned drawer @default 500
number | "auto"
500 False
positioncontrols which side of the screen the drawer comes from @default bottom
"bottom" | "left" | "right" | "top" | ({ "@sm"?: "bottom" | "left" | "right" | "top"; "@md"?: "bottom" | "left" | "right" | "top"; "@lg"?: "bottom" | "left" | "right" | "top"; "@xl"?: "bottom" | "left" | "right" | "top"; ... 20 more ...; "@initial"?: "bottom" | ... 2 more ... | "top"; } & { ...; })
bottom False
widthWidth for a left or right positioned drawer @default 400
number | "auto"
400 False
cssWPDS provides a css prop for overriding styles easily. It’s like the style attribute, but it supports tokens, media queries, nesting and token-aware values. All WPDS Components include a css prop. Use it to pass in overrides.
CSS
----False
innerClassNameAdditional class names for inner drawer element
string
----False
loopFocusWhen `true`, tabbing from last item will focus first tabbable and shift+tab from first item will focus last tababble. @defaultValue true
boolean
true False
trapFocusWhen `true`, focus cannot escape the `Content` via keyboard, pointer, or a programmatic focus @defaultValue false
boolean
false False

DrawerTrigger

PropDescriptionTypeDefaultRequired
icon
"left" | "right" | "center" | "none" | ({ "@sm"?: "left" | "right" | "center" | "none"; "@md"?: "left" | "right" | "center" | "none"; "@lg"?: "left" | "right" | "center" | "none"; "@xl"?: "left" | "right" | "center" | "none"; ... 20 more ...; "@initial"?: "left" | ... 2 more ... | "none"; } & { ...; })
----False
cssWPDS provides a css prop for overriding styles easily. It’s like the style attribute, but it supports tokens, media queries, nesting and token-aware values. All WPDS Components include a css prop. Use it to pass in overrides.
CSS<{ sm: `(max-width: ${string})`; md: `(min-width: calc(${string} + 1px)) and (max-width: ${string})`; lg: `(min-width: calc(${string} + 1px)) and (max-width: ${string})`; xl: `(min-width: calc(${string} + 1px)) and (max-width: ${string})`; xxl: `(min-width: calc(${string} + 1px)) and (max-width: ${string})`; notS...
----False
variant
"cta" | "secondary" | "primary" | ({ "@sm"?: "cta" | "secondary" | "primary"; "@md"?: "cta" | "secondary" | "primary"; "@lg"?: "cta" | "secondary" | "primary"; "@xl"?: "cta" | "secondary" | "primary"; ... 20 more ...; "@initial"?: "cta" | ... 1 more ... | "primary"; } & { ...; })
----False
density
"default" | "compact" | ({ "@sm"?: "default" | "compact"; "@md"?: "default" | "compact"; "@lg"?: "default" | "compact"; "@xl"?: "default" | "compact"; "@xxl"?: "default" | "compact"; "@notSm"?: "default" | "compact"; ... 18 more ...; "@initial"?: "default" | "compact"; } & { ...; })
----False
isOutline
boolean | "true" | "false" | ({ "@sm"?: boolean | "true" | "false"; "@md"?: boolean | "true" | "false"; "@lg"?: boolean | "true" | "false"; "@xl"?: boolean | "true" | "false"; "@xxl"?: boolean | "true" | "false"; ... 19 more ...; "@initial"?: boolean | ... 1 more ... | "false"; } & { ...; })
----False

DrawerClose

PropDescriptionTypeDefaultRequired
sticky
(boolean | "true" | ({ "@sm"?: boolean | "true"; "@md"?: boolean | "true"; "@lg"?: boolean | "true"; "@xl"?: boolean | "true"; "@xxl"?: boolean | "true"; "@notSm"?: boolean | "true"; "@notMd"?: boolean | "true"; ... 17 more ...; "@initial"?: boolean | "true"; } & { ...; })) & boolean
true False
icon
("left" | "right" | "center" | "none" | ({ "@sm"?: "left" | "right" | "center" | "none"; "@md"?: "left" | "right" | "center" | "none"; "@lg"?: "left" | "right" | "center" | "none"; "@xl"?: "left" | ... 2 more ... | "none"; ... 20 more ...; "@initial"?: "left" | ... 2 more ... | "none"; } & { ...; })) & ("left" | ......
center False
cssWPDS provides a css prop for overriding styles easily. It’s like the style attribute, but it supports tokens, media queries, nesting and token-aware values. All WPDS Components include a css prop. Use it to pass in overrides.
CSS<{ sm: `(max-width: ${string})`; md: `(min-width: calc(${string} + 1px)) and (max-width: ${string})`; lg: `(min-width: calc(${string} + 1px)) and (max-width: ${string})`; xl: `(min-width: calc(${string} + 1px)) and (max-width: ${string})`; xxl: `(min-width: calc(${string} + 1px)) and (max-width: ${string})`; notS...
----False
variant
("cta" | "secondary" | "primary" | ({ "@sm"?: "cta" | "secondary" | "primary"; "@md"?: "cta" | "secondary" | "primary"; "@lg"?: "cta" | "secondary" | "primary"; "@xl"?: "cta" | "secondary" | "primary"; ... 20 more ...; "@initial"?: "cta" | ... 1 more ... | "primary"; } & { ...; })) & ("cta" | ... 1 more ... | "prima...
secondary False
density
("default" | "compact" | ({ "@sm"?: "default" | "compact"; "@md"?: "default" | "compact"; "@lg"?: "default" | "compact"; "@xl"?: "default" | "compact"; "@xxl"?: "default" | "compact"; "@notSm"?: "default" | "compact"; ... 18 more ...; "@initial"?: "default" | "compact"; } & { ...; })) & ("default" | "compact")
compact False
isOutline
boolean | "true" | "false" | ({ "@sm"?: boolean | "true" | "false"; "@md"?: boolean | "true" | "false"; "@lg"?: boolean | "true" | "false"; "@xl"?: boolean | "true" | "false"; "@xxl"?: boolean | "true" | "false"; ... 19 more ...; "@initial"?: boolean | ... 1 more ... | "false"; } & { ...; })
----False

DrawerCustomTrigger

PropDescriptionTypeDefaultRequired
cssWPDS provides a css prop for overriding styles easily. It’s like the style attribute, but it supports tokens, media queries, nesting and token-aware values. All WPDS Components include a css prop. Use it to pass in overrides.
CSS<{ sm: `(max-width: ${string})`; md: `(min-width: calc(${string} + 1px)) and (max-width: ${string})`; lg: `(min-width: calc(${string} + 1px)) and (max-width: ${string})`; xl: `(min-width: calc(${string} + 1px)) and (max-width: ${string})`; xxl: `(min-width: calc(${string} + 1px)) and (max-width: ${string})`; notS...
----False
asWPDS provides an as prop for changing which tag a component outputs.
string
----False

DrawerScrim

PropDescriptionTypeDefaultRequired
cssWPDS provides a css prop for overriding styles easily. It’s like the style attribute, but it supports tokens, media queries, nesting and token-aware values. All WPDS Components include a css prop. Use it to pass in overrides.
CSS
----False
lockScrollWhether scrollbars should be hidden and scroll locked when the scrim is shown @default true
boolean
----False
Edit this page on GitHub.