Carousel Primitive
Carousel is a Starwind Runtime primitive in the viewport-measurement contract family. Astro and React share one semantic component API. React coordinates reactive state through controlled and default props plus callbacks. Astro renders initial state and coordinates later changes through DOM events and Runtime methods. Raw HTML uses Runtime attributes, DOM events, and imperative methods.
Anatomy
Use the Astro primitive adapter to render Carousel anatomy with the Runtime wiring included.
---import { Carousel } from "@starwind-ui/astro/carousel";---
<Carousel.Root> <Carousel.Viewport> <Carousel.Container> <Carousel.Item>Slide 1</Carousel.Item> </Carousel.Container> </Carousel.Viewport> <Carousel.Previous>Previous</Carousel.Previous> <Carousel.Next>Next</Carousel.Next></Carousel.Root>Use the React primitive adapter when Carousel state participates in React rendering.
import { Carousel } from "@starwind-ui/react/carousel";
export function Example() { return ( <Carousel.Root> <Carousel.Viewport> <Carousel.Container> <Carousel.Item>Slide 1</Carousel.Item> </Carousel.Container> </Carousel.Viewport> <Carousel.Previous>Previous</Carousel.Previous> <Carousel.Next>Next</Carousel.Next> </Carousel.Root> );}Render the Carousel data-sw-* contract yourself, then initialize createCarousel.
<div data-sw-carousel role="region" aria-roledescription="carousel"> <div data-sw-carousel-viewport> <div data-sw-carousel-container> <div data-sw-carousel-item role="group" aria-roledescription="slide">Slide 1</div> </div> </div> <button data-sw-carousel-previous type="button">Previous</button> <button data-sw-carousel-next type="button">Next</button></div>
<script type="module"> import { createCarousel } from "@starwind-ui/runtime/carousel";
const root = document.querySelector("[data-sw-carousel]"); if (root) { createCarousel(root); }</script>API Reference
Root
The main element that owns the Carousel Runtime instance.
- Default element
- div
- Discovery hook
- data-sw-carousel
- Role
- region
Props
orientation "horizontal" | "vertical" "horizontal"
- Description
- Sets the Carousel orientation.
- Kind
- option
- Targets
- root
- Full type
- "horizontal" | "vertical"
opts CarouselOptions["opts"] {}
- Description
- Passes options to the underlying carousel engine.
- Kind
- option
- Targets
- root
- Full type
- CarouselOptions["opts"]
plugins CarouselOptions["plugins"] -
- Description
- Passes plugins to the underlying carousel engine.
- Kind
- option
- Targets
- root
- Full type
- CarouselOptions["plugins"]
setApi (api: CarouselInstance["api"]) => void -
- Description
- Receives the carousel API instance when it is ready.
- Kind
- callback
- Targets
- root
- Full type
- (api: CarouselInstance["api"]) => void
autoInit boolean true
- Description
- Initializes the carousel automatically when the page loads.
- Kind
- option
- Targets
- root
- Full type
- boolean
Data Attributes
Runtime hooks
Metadata
Viewport
The visible viewport for Carousel content.
- Default element
- div
- Discovery hook
- data-sw-carousel-viewport
- Role
- -
Data Attributes
Runtime hooks
Container
Groups the scrolling or moving content for Carousel.
- Default element
- div
- Discovery hook
- data-sw-carousel-container
- Role
- -
Data Attributes
Runtime hooks
Item
An interactive item inside the Carousel collection.
- Default element
- div
- Discovery hook
- data-sw-carousel-item
- Role
- group
Data Attributes
Runtime hooks
Previous
Moves Carousel to the previous item or slide.
- Default element
- button
- Discovery hook
- data-sw-carousel-previous
- Role
- -
Data Attributes
Runtime hooks
State
Next
Moves Carousel to the next item or slide.
- Default element
- button
- Discovery hook
- data-sw-carousel-next
- Role
- -
Data Attributes
Runtime hooks
State
Runtime API
- Factory
createCarousel- Import
@starwind-ui/runtime/carousel- Root hook
- root
data-sw-carousel - Option props
- orientation, opts, plugins, setApi
Option Lifecycles
| Option | Lifecycle |
|---|---|
| orientation | refresh-required |
| opts | refresh-required |
| plugins | refresh-required |
| setApi | constructor-only |
Related Styled Components
Changelog
View version history v1.0.0 3 releases
v1.0.0
- Promoted this Primitive's vendoring version to the stable 1.0.0 baseline. Its existing API and Runtime behavior carry forward from the previous release.
v0.1.1
- Marked generated React Primitive files as client modules so vendored installs preserve client boundaries in React server frameworks.
v0.1.0
- Introduced carousel navigation, orientation, looping, slide state, and plugin lifecycle coordination.