UNPKG

carousel-angular

Version:

A simple carousel component for Angular 14+ based on 'angular-responsive-carousel' by Ivy Laboratory http://ivylab.space

22 lines (21 loc) 832 B
import { Properties as CarouselProperties } from './interfaces'; export declare class Cells { private carouselProperties; private utils; cells: HTMLCollection | undefined; element: HTMLElement; visibleWidth: number | undefined; counter: number; get cellLength(): number; get fullCellWidth(): number; get cellLengthInLightDOMMode(): number; get numberOfVisibleCells(): any; get overflowCellsLimit(): any; constructor(carouselProperties: CarouselProperties, utils: any); updateProperties(carouselProperties: CarouselProperties): void; lineUp(): void; ifSequenceOfCellsIsChanged(): boolean; getCellPositionInContainer(cellIndexInDOMTree: number): number; setCounter(value: number): void; init(carouselProperties: CarouselProperties): void; }