Skip to content
This repository has been archived by the owner on Aug 6, 2022. It is now read-only.

Commit

Permalink
Bumped up the version for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
sconix committed Feb 24, 2020
1 parent 69753b7 commit 7ee4b4a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion projects/lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ngx-swiper-wrapper",
"description": "Angular wrapper library for Swiper",
"bugs": "https://github.com/zefoy/ngx-swiper-wrapper/issues",
"version": "9.0.0",
"version": "9.0.1",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions projects/lib/src/lib/swiper.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ export class SwiperComponent implements AfterViewInit, OnDestroy {
@Output('afterResize' ) S_AFTERRESIZE = new EventEmitter<any>();
@Output('beforeResize' ) S_BEFORERESIZE = new EventEmitter<any>();

@Output('beforeLoopFix' ) S_BEFORELOOPFIX = new EventEmitter<any>();
@Output('loopFix' ) S_LOOPFIX = new EventEmitter<any>();

@Output('sliderMove' ) S_SLIDERMOVE = new EventEmitter<any>();
@Output('slideChange' ) S_SLIDECHANGE = new EventEmitter<any>();

Expand Down Expand Up @@ -112,9 +115,6 @@ export class SwiperComponent implements AfterViewInit, OnDestroy {
@Output('slideChangeTransitionEnd' ) S_SLIDECHANGETRANSITIONEND = new EventEmitter<any>();
@Output('slideChangeTransitionStart' ) S_SLIDECHANGETRANSITIONSTART = new EventEmitter<any>();

@Output('beforeLoopFix' ) S_BEFORELOOPFIX = new EventEmitter<any>();
@Output('loopFix' ) S_LOOPFIX = new EventEmitter<any>();

constructor(private zone: NgZone, private cdRef: ChangeDetectorRef,
@Inject(PLATFORM_ID) private platformId: Object,
@Optional() @Inject(SWIPER_CONFIG) private defaults: SwiperConfigInterface) {}
Expand Down
6 changes: 3 additions & 3 deletions projects/lib/src/lib/swiper.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ export class SwiperDirective implements AfterViewInit, OnDestroy, DoCheck, OnCha
@Output('afterResize' ) S_AFTERRESIZE = new EventEmitter<any>();
@Output('beforeResize' ) S_BEFORERESIZE = new EventEmitter<any>();

@Output('loopFix' ) S_LOOPFIX = new EventEmitter<any>();
@Output('beforeLoopFix' ) S_BEFORELOOPFIX = new EventEmitter<any>();

@Output('sliderMove' ) S_SLIDERMOVE = new EventEmitter<any>();
@Output('slideChange' ) S_SLIDECHANGE = new EventEmitter<any>();

Expand Down Expand Up @@ -94,9 +97,6 @@ export class SwiperDirective implements AfterViewInit, OnDestroy, DoCheck, OnCha
@Output('slideNextTransitionStart' ) S_SLIDENEXTTRANSITIONSTART = new EventEmitter<any>();
@Output('slideChangeTransitionEnd' ) S_SLIDECHANGETRANSITIONEND = new EventEmitter<any>();
@Output('slideChangeTransitionStart' ) S_SLIDECHANGETRANSITIONSTART = new EventEmitter<any>();

@Output('beforeLoopFix' ) S_BEFORELOOPFIX = new EventEmitter<any>();
@Output('loopFix' ) S_LOOPFIX = new EventEmitter<any>();

constructor(@Inject(PLATFORM_ID) private platformId: Object, private zone: NgZone,
private elementRef: ElementRef, private differs: KeyValueDiffers,
Expand Down

0 comments on commit 7ee4b4a

Please sign in to comment.