diff --git a/projects/lib/src/lib/swiper.component.ts b/projects/lib/src/lib/swiper.component.ts index 1fe37f0..c52b45d 100644 --- a/projects/lib/src/lib/swiper.component.ts +++ b/projects/lib/src/lib/swiper.component.ts @@ -91,6 +91,10 @@ export class SwiperComponent implements AfterViewInit, OnDestroy { @Output('scrollDragMove' ) S_SCROLLDRAGMOVE = new EventEmitter(); @Output('scrollDragStart' ) S_SCROLLDRAGSTART = new EventEmitter(); + @Output('scrollbarDragEnd' ) S_SCROLLBARDRAGEND = new EventEmitter(); + @Output('scrollbarDragMove' ) S_SCROLLBARDRAGMOVE = new EventEmitter(); + @Output('scrollbarDragStart' ) S_SCROLLBARDRAGSTART = new EventEmitter(); + @Output('navigationHide' ) S_NAVIGATIONHIDE = new EventEmitter(); @Output('navigationShow' ) S_NAVIGATIONSHOW = new EventEmitter(); diff --git a/projects/lib/src/lib/swiper.directive.ts b/projects/lib/src/lib/swiper.directive.ts index 4ab8b17..483c7eb 100644 --- a/projects/lib/src/lib/swiper.directive.ts +++ b/projects/lib/src/lib/swiper.directive.ts @@ -73,6 +73,10 @@ export class SwiperDirective implements AfterViewInit, OnDestroy, DoCheck, OnCha @Output('scrollDragMove' ) S_SCROLLDRAGMOVE = new EventEmitter(); @Output('scrollDragStart' ) S_SCROLLDRAGSTART = new EventEmitter(); + @Output('scrollbarDragEnd' ) S_SCROLLBARDRAGEND = new EventEmitter(); + @Output('scrollbarDragMove' ) S_SCROLLBARDRAGMOVE = new EventEmitter(); + @Output('scrollbarDragStart' ) S_SCROLLBARDRAGSTART = new EventEmitter(); + @Output('navigationHide' ) S_NAVIGATIONHIDE = new EventEmitter(); @Output('navigationShow' ) S_NAVIGATIONSHOW = new EventEmitter();