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

Commit 7ee4b4a

Browse files
committed
Bumped up the version for new release
1 parent 69753b7 commit 7ee4b4a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

projects/lib/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ngx-swiper-wrapper",
33
"description": "Angular wrapper library for Swiper",
44
"bugs": "https://github.com/zefoy/ngx-swiper-wrapper/issues",
5-
"version": "9.0.0",
5+
"version": "9.0.1",
66
"license": "MIT",
77
"repository": {
88
"type": "git",

projects/lib/src/lib/swiper.component.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ export class SwiperComponent implements AfterViewInit, OnDestroy {
6565
@Output('afterResize' ) S_AFTERRESIZE = new EventEmitter<any>();
6666
@Output('beforeResize' ) S_BEFORERESIZE = new EventEmitter<any>();
6767

68+
@Output('beforeLoopFix' ) S_BEFORELOOPFIX = new EventEmitter<any>();
69+
@Output('loopFix' ) S_LOOPFIX = new EventEmitter<any>();
70+
6871
@Output('sliderMove' ) S_SLIDERMOVE = new EventEmitter<any>();
6972
@Output('slideChange' ) S_SLIDECHANGE = new EventEmitter<any>();
7073

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

115-
@Output('beforeLoopFix' ) S_BEFORELOOPFIX = new EventEmitter<any>();
116-
@Output('loopFix' ) S_LOOPFIX = new EventEmitter<any>();
117-
118118
constructor(private zone: NgZone, private cdRef: ChangeDetectorRef,
119119
@Inject(PLATFORM_ID) private platformId: Object,
120120
@Optional() @Inject(SWIPER_CONFIG) private defaults: SwiperConfigInterface) {}

projects/lib/src/lib/swiper.directive.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ export class SwiperDirective implements AfterViewInit, OnDestroy, DoCheck, OnCha
4848
@Output('afterResize' ) S_AFTERRESIZE = new EventEmitter<any>();
4949
@Output('beforeResize' ) S_BEFORERESIZE = new EventEmitter<any>();
5050

51+
@Output('loopFix' ) S_LOOPFIX = new EventEmitter<any>();
52+
@Output('beforeLoopFix' ) S_BEFORELOOPFIX = new EventEmitter<any>();
53+
5154
@Output('sliderMove' ) S_SLIDERMOVE = new EventEmitter<any>();
5255
@Output('slideChange' ) S_SLIDECHANGE = new EventEmitter<any>();
5356

@@ -94,9 +97,6 @@ export class SwiperDirective implements AfterViewInit, OnDestroy, DoCheck, OnCha
9497
@Output('slideNextTransitionStart' ) S_SLIDENEXTTRANSITIONSTART = new EventEmitter<any>();
9598
@Output('slideChangeTransitionEnd' ) S_SLIDECHANGETRANSITIONEND = new EventEmitter<any>();
9699
@Output('slideChangeTransitionStart' ) S_SLIDECHANGETRANSITIONSTART = new EventEmitter<any>();
97-
98-
@Output('beforeLoopFix' ) S_BEFORELOOPFIX = new EventEmitter<any>();
99-
@Output('loopFix' ) S_LOOPFIX = new EventEmitter<any>();
100100

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

0 commit comments

Comments
 (0)