CarouselApi

interface

Represents the API for a carousel component.

Properties
emblaApi

emblaApi: () => undefined | EmblaCarouselType

Retrieve the inner EmblaApi object

Returns

undefined | EmblaCarouselType


plugins

plugins: () => undefined | EmblaPluginsType

Retrieve the enabled plugins

Returns

undefined | EmblaPluginsType


scrollNext

scrollNext: (jump?) => void

Scroll to the next snap point if possible.

Parameters
jump?

boolean

scroll instantly

Returns

void


scrollPrev

scrollPrev: (jump?) => void

Scroll to the previous snap point if possible.

Parameters
jump?

boolean

scroll instantly

Returns

void


scrollTo

scrollTo: (index, jump?) => void

Scroll to a snap point by index

Parameters
index

number

the snap point index

jump?

boolean

scroll instantly

Returns

void


CarouselDirectives

interface

Represents the directives for a carousel component.

Properties
root

root: Directive

the root directive


scrollNext

scrollNext: Directive

A directive to be applied to a navigation button allowing to scroll to the next slide.


scrollPrev

scrollPrev: Directive

A directive to be applied to a navigation button allowing to scroll to the previous slide.


slide

slide: Directive<{ id: string; index: number; }>

A directive to be applied to each slide in the carousel.


tabIndicator

tabIndicator: Directive<{ id: string; index: number; jump: boolean; }>

A directive to be applied to a navigation indicator allowing to scroll to the corresponding slide. As this directive adds the role tab to the element, it is recommended to use it on a button or a link and the parent element should have the tabList directive attached.


tabList

tabList: Directive

A directive to be applied to a tab list allowing to navigate to the corresponding slide. This directive adds the role tablist and is recommended to be used together with tabIndicator.


CarouselProps

interface

Represents the properties for the carousel component.

Properties
align

align: "start" | "end" | "center"

Align the slides relative to the carousel viewport

See

https://www.embla-carousel.com/api/options/#align

Default Value

'center'


ariaIndicatorLabel

ariaIndicatorLabel: (index) => string

Aria label for navigation indicators

Parameters
index

number

Returns

string


ariaNextLabel

ariaNextLabel: string

Aria label for next button


ariaPrevLabel

ariaPrevLabel: string

Aria label for previous button


container

container: null | string

Enables choosing a custom container element which holds the slides. By default, Embla will choose the first direct child element of the root element. Provide a valid CSS selector string.

See

https://www.embla-carousel.com/api/options/#container


containScroll

containScroll: false | "trimSnaps" | "keepSnaps"

Clear leading and trailing empty space that causes excessive scrolling

See

https://www.embla-carousel.com/api/options/#containScroll

Default Value

'trimSnaps'


direction

direction: "ltr" | "rtl"

Choose content direction between ltr and rtl

See

https://www.embla-carousel.com/api/options/#direction

Default Value

'ltr'


dragFree

dragFree: boolean

Enables momentum scrolling

See

https://www.embla-carousel.com/api/options/#dragFree

Default Value

false


dragThreshold

dragThreshold: number

Drag threshold in pixels

See

https://www.embla-carousel.com/api/options/#dragThreshold

Default Value

10


duration

duration: number

Set scroll duration when triggered by any of the API methods

See

https://www.embla-carousel.com/api/options/#duration

Default Value

25


loop

loop: boolean

Enables infinite looping

See

https://www.embla-carousel.com/api/options/#loop

Default Value

false


plugins

plugins: CreatePluginType<LoosePluginType, {}>[]

Plugins to extend the carousel with additional features

Default Value

[]


showNavigationArrows

showNavigationArrows: boolean

If true, 'previous' and 'next' navigation arrows will be visible.


showNavigationIndicators

showNavigationIndicators: boolean

If true, navigation indicators at the bottom of the slide will be visible.


skipSnaps

skipSnaps: boolean

Allow the carousel to skip scroll snaps if it's dragged vigorously

See

https://www.embla-carousel.com/api/options/#skipsnaps

Default Value

false


CarouselState

interface

Represents the state of a carousel component.

Properties
canScrollNext

canScrollNext: boolean

can carousel scroll to next slide


canScrollPrev

canScrollPrev: boolean

can carousel scroll to previous slide


direction

direction: "ltr" | "rtl"

Choose content direction between ltr and rtl

See

https://www.embla-carousel.com/api/options/#direction

Default Value

'ltr'


initialized

initialized: boolean

is the carousel initialized


scrolling

scrolling: boolean

is the carousel currently scrolling


selectedScrollSnap

selectedScrollSnap: number

selected scroll snap


showNavigationArrows

showNavigationArrows: boolean

If true, 'previous' and 'next' navigation arrows will be visible.


showNavigationIndicators

showNavigationIndicators: boolean

If true, navigation indicators at the bottom of the slide will be visible.


CarouselWidget

type alias

CarouselWidget = Widget<CarouselProps, CarouselState, CarouselApi, CarouselDirectives>

Represents a carousel widget with specific properties, state, API, and directives.


createCarousel

function

createCarousel(config?): CarouselWidget

Create an CarouselWidget with given config props

Parameters
config?

PropsConfig<CarouselProps>

an optional carousel config

Returns

CarouselWidget

a CarouselWidget


getCarouselDefaultConfig

function

getCarouselDefaultConfig(): CarouselProps

Retrieve a shallow copy of the default Carousel config

Returns

CarouselProps

the default Carousel config