Documentation
Feedback
Guides
Storefront Development

Storefront Development
Storefront development

SlideOver

Represents an additional view that complements the information on the screen.

The SlideOver component presents complementary content in a panel that slides over the current view, keeping the user's context visible while enabling focused, short-lived interactions. Typical use cases include:
  • Opening a cart or order summary.
  • Adjusting filters or settings in a side panel
  • Previewing product details or media.
Example
Code
Open partial

Usage

Import the component


_10
import { SlideOver, SlideOverHeader } from "@faststore/ui";

Import styles

To apply styles, include the following in your stylesheet:

_10
@import "@faststore/ui/src/components/organisms/SlideOver/styles.scss";


Examples

Open partial: left

Open a partial-width SlideOver from the left side. This mirrors the open partial: right example shown at the beginning of this guide.
Example
Code
Open partial

Open full: right

Open a full-width SlideOver from the right side, covering the viewport for focused tasks.
Example
Code
Open full

Open full: left

Open a full-width SlideOver from the left side, covering the viewport for focused tasks.
Example
Code
Open full

Design tokens

Local tokenDefault value/Global token linked
--fs-slide-over-bkg-color
var(--fs-color-body-bkg)
--fs-slide-over-transition-timingvar(--fs-transition-timing)

Design tokens: Header

SlideOver header tokens control spacing, colors, and structure to ensure titles, actions, and icons align with the store brand.
Local tokenDefault value/Global token linked
--fs-slide-over-header-paddingvar(--fs-spacing-2) var(--fs-spacing-3) var(--fs-spacing-2)
--fs-slide-over-header-bkg-color
var(--fs-color-neutral-0)

Design tokens: Partial

Partial variant tokens define panel width and gap at each breakpoint, keeping the panel lightweight and preserving page context.
Local tokenDefault value/Global token linked
--fs-slide-over-partial-gapcalc(2 * var(--fs-grid-padding))
--fs-slide-over-partial-width-mobilecalc(100vw - var(--fs-slide-over-partial-gap))
--fs-slide-over-partial-width-notebookcalc(100% / 3)
--fs-slide-over-partial-max-width-notebookcalc(var(--fs-grid-breakpoint-notebook) / 3)

Data attributes

You can target and override SlideOver styles using the following data attributes:
data-fs-slide-over
data-fs-slide-over-size="full" | "partial"
data-fs-slide-over-state="in" | "out"
data-fs-slide-over-header
data-fs-slide-over-header-icon

Props

SlideOver

NameTypeDescriptionDefault
testIdstringID to find this component in testing tools (e.g.: cypress, testing library, and jest).fs-slide-over
isOpen*false | trueA boolean value that represents the state of the SlideOver
direction"leftSide" | "rightSide"Represents the side that the SlideOver comes from.leftSide
size"full" | "partial"Represents the size of the SlideOver.full
fade"in" | "out"Represents the fade effect of the SlideOver.out
children*string | number | false | true | {} | ReactElement<any, string | JSXElementConstructor<any>> | Iterable<ReactNode> | ReactPortalChildren or function as a children.
overlayPropsPropsProps forwarded to the `Overlay` component.
onDismiss() => voidThis function is called whenever the user clicks outside. the modal content
aria-labelledbystringIdentifies the element (or elements) that labels the current element. @see aria-labelledby https://www.w3.org/TR/wai-aria-1.1/#aria-labelledby
onEntered() => voidCallback function when the modal is opened.
disableEscapeKeyDownfalse | trueDisable being closed using the Escape key.

SlideOverHeader

NameTypeDescriptionDefault
childrenstring | number | false | true | {} | ReactElement<any, string | JSXElementConstructor<any>> | Iterable<ReactNode> | ReactPortalA react component to be used as the title in the header.
closeBtnPropsPartial<Omit<IconButtonProps, "onClick">>Props for the Close Button component.{}
onClose*() => voidFunction called when Close Button is clicked.

Contributors
2
Photo of the contributor
Photo of the contributor
Was this helpful?
Yes
No
Suggest Edits (GitHub)
Contributors
2
Photo of the contributor
Photo of the contributor
Was this helpful?
Suggest edits (GitHub)
On this page