igniteui-angular-sovn
Version:
Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps
18 lines (15 loc) • 770 B
text/typescript
import { IgxCarouselComponent } from './carousel.component';
import { IgxCarouselIndicatorDirective, IgxCarouselNextButtonDirective, IgxCarouselPrevButtonDirective } from './carousel.directives';
import { IgxSlideComponent } from './slide.component';
export { Direction, HorizontalAnimationType, CarouselAnimationSettings } from './carousel-base';
export * from './carousel.component';
export * from './slide.component';
export * from './carousel.directives';
/* NOTE: Carousel directives collection for ease-of-use import in standalone components scenario */
export const IGX_CAROUSEL_DIRECTIVES = [
IgxCarouselComponent,
IgxSlideComponent,
IgxCarouselIndicatorDirective,
IgxCarouselNextButtonDirective,
IgxCarouselPrevButtonDirective
] as const;