Bootstrap

API carousel

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


CarouselComponent

class

CarouselComponent is an Angular Component that extends BaseWidgetDirective<CarouselWidget> to create a customizable carousel widget. It provides various inputs (see CarouselProps) to configure the appearance and behavior of the carousel.

Type Parameters
SlideData

SlideData extends object

Properties
align

readonly align: InputSignal<undefined | "start" | "end" | "center">

Align the slides relative to the carousel viewport

See

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

Default Value

'center'


ariaIndicatorLabel

readonly ariaIndicatorLabel: InputSignal<undefined | (index) => string>

Aria label for navigation indicators


ariaLive

readonly ariaLive: InputSignal<undefined | string>

The aria-live attribute value for the carousel container.

Default Value

'polite'


ariaNextLabel

readonly ariaNextLabel: InputSignal<undefined | string>

Aria label for next button


ariaPrevLabel

readonly ariaPrevLabel: InputSignal<undefined | string>

Aria label for previous button


className

readonly className: InputSignal<undefined | string>

CSS classes to be applied on the widget main container

Default Value

''


container

readonly container: InputSignal<undefined | 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


containerClass

readonly containerClass: InputSignal<undefined | string>

Class name to apply to the container of the carousel.

Default Value

''


containScroll

readonly containScroll: InputSignal<undefined | 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

readonly direction: InputSignal<undefined | "ltr" | "rtl">

Choose content direction between ltr and rtl

See

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

Default Value

'ltr'


dragFree

readonly dragFree: InputSignalWithTransform<undefined | boolean, unknown>

Enables momentum scrolling

See

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

Default Value

false


dragThreshold

readonly dragThreshold: InputSignalWithTransform<undefined | number, unknown>

Drag threshold in pixels

See

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

Default Value

10


duration

readonly duration: InputSignalWithTransform<undefined | number, unknown>

Set scroll duration when triggered by any of the API methods

See

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

Default Value

25


loop

readonly loop: InputSignalWithTransform<undefined | boolean, unknown>

Enables infinite looping

See

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

Default Value

false


navigation

readonly navigation: InputSignal<SlotContent<CarouselContext<SlideData>>>

The navigation layer of the carousel.

Default Value

undefined


plugins

readonly plugins: InputSignal<undefined | CreatePluginType<LoosePluginType, {}>[]>

Plugins to extend the carousel with additional features

Default Value

[]


showNavigationArrows

readonly showNavigationArrows: InputSignalWithTransform<undefined | boolean, unknown>

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


showNavigationIndicators

readonly showNavigationIndicators: InputSignalWithTransform<undefined | boolean, unknown>

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


skipSnaps

readonly skipSnaps: InputSignalWithTransform<undefined | boolean, unknown>

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

See

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

Default Value

false


slide

readonly slide: InputSignal<SlotContent<CarouselSlideContext<SlideData>>>

The content of each slide in the carousel.

Default Value

undefined


slideClass

readonly slideClass: InputSignal<undefined | string | (slideContext) => string>

Class name to apply to each slide in the carousel.

Default Value

''


slidesData

readonly slidesData: InputSignal<undefined | SlideData[]>

The data for each slide in the carousel.

Default Value

[]


structure

readonly structure: InputSignal<SlotContent<CarouselContext<SlideData>>>

The structure of the carousel.

Default Value

undefined

Accessors
api
Get Signature

get api(): W["api"]

Retrieves the widget api

Returns

W["api"]

the widget api


directives
Get Signature

get directives(): W["directives"]

Retrieves the widget directives

Returns

W["directives"]

the widget directives


state
Get Signature

get state(): AngularState<W>

Retrieves the widget state. Each property of the state is exposed through an Angular Signal

Returns

AngularState<W>

the widget state


CarouselContext

type alias

CarouselContext<SlideData> = WidgetSlotContext<CarouselWidget<SlideData>>

Represents the context for a carousel.

Type Parameters
SlideData

SlideData extends object

The type of data used by each slide in the carousel.


carouselDefaultSlotNavigation

constant

const carouselDefaultSlotNavigation: SlotContent<CarouselContext<any>>

The default slot for the navigation


carouselDefaultSlotStructure

constant

const carouselDefaultSlotStructure: SlotContent<CarouselContext<any>>

The default slot for the structure


CarouselDirectives

interface

Represents the directives for a carousel component.

Properties
container

container: Directive

A directive to be applied to container of the carousel.


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.


CarouselNavigationDirective

class

Directive that provides a template reference for the carousel navigation using the CarouselContext.

Type Parameters
SlideData

SlideData extends object


CarouselProps

interface

Interface representing the properties for a carousel component.

Type Parameters
SlideData

SlideData extends object

The type of data used by each slide in the carousel.

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


ariaLive

ariaLive: string

The aria-live attribute value for the carousel container.

Default Value

'polite'


ariaNextLabel

ariaNextLabel: string

Aria label for next button


ariaPrevLabel

ariaPrevLabel: string

Aria label for previous button


className

className: string

CSS classes to be applied on the widget main container

Default Value

''


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


containerClass

containerClass: string

Class name to apply to the container of the carousel.

Default Value

''


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


navigation

navigation: SlotContent<CarouselContext<SlideData>>

The navigation layer of the carousel.

Default Value

undefined


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


slide

slide: SlotContent<CarouselSlideContext<SlideData>>

The content of each slide in the carousel.

Default Value

undefined


slideClass

slideClass: string | (slideContext) => string

Class name to apply to each slide in the carousel.

Default Value

''


slidesData

slidesData: SlideData[]

The data for each slide in the carousel.

Default Value

[]


structure

structure: SlotContent<CarouselContext<SlideData>>

The structure of the carousel.

Default Value

undefined


CarouselSlideContext

type alias

CarouselSlideContext<SlideData> = WidgetSlotContext<CarouselWidget<SlideData>> & SlideData

Represents the context for a carousel slide.

Type Parameters
SlideData

SlideData extends object

The type of data used by each slide in the carousel.


CarouselSlideDirective

class

Directive that provides a template reference for the carousel slide using the CarouselSlideContext.

Type Parameters
SlideData

SlideData extends object


CarouselState

interface

Represents the state of a carousel component.

Type Parameters
SlideData

SlideData extends object

The type of data used by each slide in the carousel.

Properties
ariaLive

ariaLive: string

The aria-live attribute value for the carousel container.

Default Value

'polite'


canScrollNext

canScrollNext: boolean

can carousel scroll to next slide


canScrollPrev

canScrollPrev: boolean

can carousel scroll to previous slide


className

className: string

CSS classes to be applied on the widget main container

Default Value

''


containerClass

containerClass: string

Class name to apply to the container of the carousel.

Default Value

''


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


navigation

navigation: SlotContent<CarouselContext<SlideData>>

The navigation layer of the carousel.

Default Value

undefined


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.


slide

slide: SlotContent<CarouselSlideContext<SlideData>>

The content of each slide in the carousel.

Default Value

undefined


slideClass

slideClass: string | (slideContext) => string

Class name to apply to each slide in the carousel.

Default Value

''


slidesData

slidesData: SlideData[]

The data for each slide in the carousel.

Default Value

[]


structure

structure: SlotContent<CarouselContext<SlideData>>

The structure of the carousel.

Default Value

undefined


CarouselStructureDirective

class

Directive that provides a template reference for the carousel structure using the CarouselContext.

Type Parameters
SlideData

SlideData extends object


CarouselWidget

type alias

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

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

Type Parameters
SlideData

SlideData extends object

The type of the data for each slide.


createCarousel

constant

const createCarousel: <SlideData>(config?) => CarouselWidget<SlideData>

Create a Carousel with given config props

Type Parameters
SlideData

SlideData extends object

The type of the data for each slide.

Parameters
config?

PropsConfig<CarouselProps<SlideData>>

an optional carousel config

Returns

CarouselWidget<SlideData>

a CarouselWidget


getCarouselDefaultConfig

constant

const getCarouselDefaultConfig: () => CarouselProps<any>

Retrieve a shallow copy of the default Carousel config

Returns

CarouselProps<any>

the default Carousel config