@coreui/angular
Version:
CoreUI for Angular UI components library
32 lines (31 loc) • 1.23 kB
TypeScript
import { AfterViewInit, ChangeDetectorRef, ElementRef } from '@angular/core';
import { CarouselState } from '../carousel-state';
import * as i0 from "@angular/core";
export declare class CarouselControlComponent implements AfterViewInit {
private changeDetector;
private carouselState;
constructor(changeDetector: ChangeDetectorRef, carouselState: CarouselState);
private _caption?;
/**
* Carousel control caption. [docs]
* @type string
*/
set caption(value: string);
get caption(): string;
/**
* Carousel control direction. [docs]
* @type {'next' | 'prev'}
*/
direction: 'prev' | 'next';
get hostRole(): string;
get hostClasses(): string;
get carouselControlIconClass(): string;
content?: ElementRef;
hasContent: boolean;
onKeyUp($event: KeyboardEvent): void;
onClick($event: MouseEvent): void;
ngAfterViewInit(): void;
private play;
static ɵfac: i0.ɵɵFactoryDeclaration<CarouselControlComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<CarouselControlComponent, "c-carousel-control", never, { "caption": "caption"; "direction": "direction"; }, {}, never, ["*"], false>;
}