diff --git a/projects/app/src/app/app.component.ts b/projects/app/src/app/app.component.ts
new file mode 100644
index 0000000..3194e38
--- /dev/null
+++ b/projects/app/src/app/app.component.ts
@@ -0,0 +1,116 @@
+import { Component, ViewChild } from '@angular/core';
+
+import { SwiperComponent, SwiperDirective, SwiperConfigInterface,
+ SwiperScrollbarInterface, SwiperPaginationInterface } from 'ngx-swiper-wrapper';
+
+@Component({
+ selector: 'my-app',
+ moduleId: 'src/app/app.component',
+ templateUrl: 'app.component.html',
+ styleUrls: [ 'app.component.css' ]
+})
+export class AppComponent {
+ public show: boolean = true;
+
+ public slides = [
+ 'First slide',
+ 'Second slide',
+ 'Third slide',
+ 'Fourth slide',
+ 'Fifth slide',
+ 'Sixth slide'
+ ];
+
+ public type: string = 'component';
+
+ public disabled: boolean = false;
+
+ public config: SwiperConfigInterface = {
+ a11y: true,
+ direction: 'horizontal',
+ slidesPerView: 1,
+ keyboard: true,
+ mousewheel: true,
+ scrollbar: false,
+ navigation: true,
+ pagination: false
+ };
+
+ private scrollbar: SwiperScrollbarInterface = {
+ el: '.swiper-scrollbar',
+ hide: false,
+ draggable: true
+ };
+
+ private pagination: SwiperPaginationInterface = {
+ el: '.swiper-pagination',
+ clickable: true,
+ hideOnClick: false
+ };
+
+ @ViewChild(SwiperComponent, { static: false }) componentRef?: SwiperComponent;
+ @ViewChild(SwiperDirective, { static: false }) directiveRef?: SwiperDirective;
+
+ constructor() {}
+
+ public toggleType(): void {
+ this.type = (this.type === 'component') ? 'directive' : 'component';
+ }
+
+ public toggleDisabled(): void {
+ this.disabled = !this.disabled;
+ }
+
+ public toggleDirection(): void {
+ this.config.direction = (this.config.direction === 'horizontal') ? 'vertical' : 'horizontal';
+ }
+
+ public toggleSlidesPerView(): void {
+ if (this.config.slidesPerView !== 1) {
+ this.config.slidesPerView = 1;
+ } else {
+ this.config.slidesPerView = 2;
+ }
+ }
+
+ public toggleOverlayControls(): void {
+ if (this.config.navigation) {
+ this.config.scrollbar = false;
+ this.config.navigation = false;
+
+ this.config.pagination = this.pagination;
+ } else if (this.config.pagination) {
+ this.config.navigation = false;
+ this.config.pagination = false;
+
+ this.config.scrollbar = this.scrollbar;
+ } else {
+ this.config.scrollbar = false;
+ this.config.pagination = false;
+
+ this.config.navigation = true;
+ }
+
+ if (this.type === 'directive' && this.directiveRef) {
+ this.directiveRef.setIndex(0);
+ } else if (this.type === 'component' && this.componentRef && this.componentRef.directiveRef) {
+ this.componentRef.directiveRef.setIndex(0);
+ }
+ }
+
+ public toggleKeyboardControl(): void {
+ this.config.keyboard = !this.config.keyboard;
+ }
+
+ public toggleMouseWheelControl(): void {
+ this.config.mousewheel = !this.config.mousewheel;
+ }
+
+ public onIndexChange(index: number): void {
+ console.log('Swiper index: ', index);
+ }
+
+ public onSwiperEvent(event: string): void {
+ console.log('Swiper event: ', event);
+ }
+}
diff --git a/projects/app/src/app/app.module.ts b/projects/app/src/app/app.module.ts
new file mode 100644
index 0000000..f1f9d08
--- /dev/null
+++ b/projects/app/src/app/app.module.ts
@@ -0,0 +1,42 @@
+import { NgModule } from '@angular/core';
+
+import { BrowserModule } from '@angular/platform-browser';
+
+import { FlexLayoutModule } from '@angular/flex-layout';
+
+import { SwiperModule, SwiperConfigInterface,
+ SWIPER_CONFIG } from 'ngx-swiper-wrapper';
+
+import { AppComponent } from './app.component';
+
+const DEFAULT_SWIPER_CONFIG: SwiperConfigInterface = {
+ observer: true,
+ direction: 'horizontal',
+ threshold: 50,
+ spaceBetween: 5,
+ slidesPerView: 1,
+ centeredSlides: true
+};
+
+@NgModule({
+ bootstrap: [
+ AppComponent
+ ],
+ declarations: [
+ AppComponent
+ ],
+ imports: [
+ SwiperModule,
+ BrowserModule,
+ FlexLayoutModule
+ ],
+ exports: [
+ ],
+ providers: [
+ {
+ provide: SWIPER_CONFIG,
+ useValue: DEFAULT_SWIPER_CONFIG
+ }
+ ]
+})
+export class AppModule {}
diff --git a/projects/app/src/environments/environment.prod.ts b/projects/app/src/environments/environment.prod.ts
new file mode 100644
index 0000000..3612073
--- /dev/null
+++ b/projects/app/src/environments/environment.prod.ts
@@ -0,0 +1,3 @@
+export const environment = {
+ production: true
+};
diff --git a/projects/app/src/environments/environment.ts b/projects/app/src/environments/environment.ts
new file mode 100644
index 0000000..7b4f817
--- /dev/null
+++ b/projects/app/src/environments/environment.ts
@@ -0,0 +1,16 @@
+// This file can be replaced during build by using the `fileReplacements` array.
+// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`.
+// The list of file replacements can be found in `angular.json`.
+
+export const environment = {
+ production: false
+};
+
+/*
+ * For easier debugging in development mode, you can import the following file
+ * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
+ *
+ * This import should be commented out in production mode because it will have a negative impact
+ * on performance if an error is thrown.
+ */
+// import 'zone.js/dist/zone-error'; // Included with Angular CLI.
diff --git a/projects/app/src/favicon.ico b/projects/app/src/favicon.ico
new file mode 100644
index 0000000..997406a
Binary files /dev/null and b/projects/app/src/favicon.ico differ
diff --git a/projects/app/src/index.html b/projects/app/src/index.html
new file mode 100644
index 0000000..57715c8
--- /dev/null
+++ b/projects/app/src/index.html
@@ -0,0 +1,72 @@
+
+
+
+
+
+
+ Example app
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/projects/app/src/main.ts b/projects/app/src/main.ts
new file mode 100644
index 0000000..311c44b
--- /dev/null
+++ b/projects/app/src/main.ts
@@ -0,0 +1,5 @@
+import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
+
+import { AppModule } from './app/app.module';
+
+platformBrowserDynamic().bootstrapModule(AppModule);
diff --git a/projects/app/src/polyfills.ts b/projects/app/src/polyfills.ts
new file mode 100644
index 0000000..741c886
--- /dev/null
+++ b/projects/app/src/polyfills.ts
@@ -0,0 +1 @@
+import 'zone.js/dist/zone';
diff --git a/projects/app/src/styles.css b/projects/app/src/styles.css
new file mode 100644
index 0000000..90d4ee0
--- /dev/null
+++ b/projects/app/src/styles.css
@@ -0,0 +1 @@
+/* You can add global styles to this file, and also import other style files */
diff --git a/projects/app/stylelint.json b/projects/app/stylelint.json
new file mode 100644
index 0000000..f76cdce
--- /dev/null
+++ b/projects/app/stylelint.json
@@ -0,0 +1,230 @@
+{
+ "plugins": [
+ "stylelint-order"
+ ],
+ "extends": [
+ "stylelint-config-standard"
+ ],
+ "rules": {
+ "color-hex-case": "lower",
+ "color-no-invalid-hex": true,
+
+ "font-family-no-missing-generic-family-keyword": null,
+ "function-calc-no-unspaced-operator": true,
+ "function-comma-space-after": "always-single-line",
+ "function-comma-space-before": "never",
+ "function-name-case": "lower",
+ "function-url-quotes": "always",
+ "function-whitespace-after": "always",
+
+ "number-leading-zero": "always",
+ "number-no-trailing-zeros": true,
+ "length-zero-no-unit": true,
+
+ "string-no-newline": true,
+ "string-quotes": "single",
+
+ "unit-case": "lower",
+ "unit-no-unknown": true,
+ "unit-whitelist": [
+ "px",
+ "%",
+ "deg",
+ "ms",
+ "em"
+ ],
+
+ "value-list-comma-space-after": "always-single-line",
+ "value-list-comma-space-before": "never",
+
+ "shorthand-property-no-redundant-values": true,
+
+ "property-case": "lower",
+
+ "at-rule-empty-line-before": [
+ "always",
+ {
+ "ignore": [
+ "blockless-after-blockless"
+ ]
+ }
+ ],
+
+ "at-rule-no-unknown": null,
+
+ "declaration-block-no-duplicate-properties": true,
+ "declaration-block-trailing-semicolon": "always",
+ "declaration-block-single-line-max-declarations": 1,
+ "declaration-block-semicolon-space-before": "never",
+ "declaration-block-semicolon-space-after": "always-single-line",
+ "declaration-block-semicolon-newline-before": "never-multi-line",
+ "declaration-block-semicolon-newline-after": "always-multi-line",
+
+ "block-closing-brace-newline-after": "always",
+ "block-closing-brace-newline-before": "always-multi-line",
+ "block-no-empty": true,
+ "block-opening-brace-newline-after": "always-multi-line",
+ "block-opening-brace-space-before": "always-multi-line",
+
+ "selector-attribute-brackets-space-inside": "never",
+ "selector-attribute-operator-space-after": "never",
+ "selector-attribute-operator-space-before": "never",
+ "selector-combinator-space-after": "always",
+ "selector-combinator-space-before": "always",
+ "selector-pseudo-class-case": "lower",
+ "selector-pseudo-class-parentheses-space-inside": "never",
+ "selector-pseudo-element-case": "lower",
+ "selector-pseudo-element-colon-notation": "double",
+ "selector-pseudo-element-no-unknown": true,
+ "selector-type-no-unknown": null,
+ "selector-type-case": "lower",
+ "selector-max-id": 0,
+
+ "declaration-empty-line-before": null,
+
+ "no-descending-specificity": null,
+
+ "order/properties-order": [
+ [
+ {
+ "properties": [
+ "content",
+ "direction"
+ ]
+ }, {
+ "emptyLineBefore": "always",
+ "properties": [
+ "float",
+ "position",
+ "z-index",
+ "top",
+ "right",
+ "bottom",
+ "left"
+ ]
+ }, {
+ "emptyLineBefore": "always",
+ "properties": [
+ "visibility",
+ "opacity",
+ "display",
+ "overflow",
+ "box-sizing",
+ "flex",
+ "flex-basis",
+ "flex-direction",
+ "flex-flow",
+ "flex-grow",
+ "flex-shrink",
+ "flex-wrap",
+ "align-self",
+ "align-items",
+ "align-content",
+ "justify-content",
+ "order",
+ "width",
+ "height",
+ "min-width",
+ "min-height",
+ "max-width",
+ "max-height",
+ "padding",
+ "padding-top",
+ "padding-right",
+ "padding-bottom",
+ "padding-left",
+ "margin",
+ "margin-top",
+ "margin-right",
+ "margin-bottom",
+ "margin-left",
+ "border",
+ "border-top",
+ "border-right",
+ "border-bottom",
+ "border-left",
+ "border-width",
+ "border-top-width",
+ "border-right-width",
+ "border-bottom-width",
+ "border-left-width",
+ "border-style",
+ "border-top-style",
+ "border-right-style",
+ "border-bottom-style",
+ "border-left-style",
+ "border-color",
+ "border-top-color",
+ "border-right-color",
+ "border-bottom-color",
+ "border-left-color",
+ "border-radius",
+ "border-top-left-radius",
+ "border-top-right-radius",
+ "border-bottom-right-radius",
+ "border-bottom-left-radius",
+ "outline"
+ ]
+ }, {
+ "emptyLineBefore": "always",
+ "properties": [
+ "cursor",
+ "resize",
+ "user-select",
+ "touch-action",
+ "pointer-events",
+ "font-size",
+ "font-style",
+ "font-weight",
+ "font-family",
+ "line-height",
+ "white-space",
+ "text-align",
+ "text-shadow",
+ "text-decoration",
+ "text-transform",
+ "text-overflow",
+ "letter-spacing",
+ "list-style-type",
+ "object-fit",
+ "vertical-align",
+ "color",
+ "background",
+ "background-size",
+ "background-color",
+ "background-image",
+ "background-repeat",
+ "background-position",
+ "background-attachment",
+ "box-shadow"
+ ]
+ }, {
+ "emptyLineBefore": "always",
+ "properties": [
+ "filter",
+ "animation",
+ "animation-name",
+ "animation-delay",
+ "animation-duration",
+ "animation-direction",
+ "animation-fill-mode",
+ "animation-play-state",
+ "animation-iteration-count",
+ "animation-timing-function",
+ "transform",
+ "transform-style",
+ "transform-origin",
+ "transition",
+ "transition-delay",
+ "transition-duration",
+ "transition-property",
+ "transition-timing-function"
+ ]
+ }
+ ],
+ {
+ "unspecified": "bottomAlphabetical"
+ }
+ ]
+ }
+}
diff --git a/projects/app/tsconfig.json b/projects/app/tsconfig.json
new file mode 100644
index 0000000..809c09c
--- /dev/null
+++ b/projects/app/tsconfig.json
@@ -0,0 +1,14 @@
+{
+ "extends": "../../tsconfig.json",
+ "compilerOptions": {
+ "outDir": "../../out-tsc/app",
+ "types": []
+ },
+ "files": [
+ "src/main.ts",
+ "src/polyfills.ts"
+ ],
+ "include": [
+ "src/**/*.d.ts"
+ ]
+}
diff --git a/projects/app/tslint.json b/projects/app/tslint.json
new file mode 100644
index 0000000..0946f20
--- /dev/null
+++ b/projects/app/tslint.json
@@ -0,0 +1,3 @@
+{
+ "extends": "../../tslint.json"
+}
diff --git a/projects/lib/README.md b/projects/lib/README.md
new file mode 100644
index 0000000..56551a6
--- /dev/null
+++ b/projects/lib/README.md
@@ -0,0 +1,174 @@
+# Angular Swiper Wrapper
+
+
+
+This is an Angular wrapper library for the [Swiper](http://idangero.us/swiper/). To use this library you should get familiar with the Swiper documentation as well since this documentation only explains details specific to this wrapper.
+
+This documentation is for the latest 6.x.x version which requires Angular 5 or newer. For Angular 4 you need to use the latest 4.x.x version. Documentation for the 4.x.x can be found from here.
+
+### Quick links
+
+[Example application](https://zefoy.github.io/ngx-swiper-wrapper/)
+ |
+[StackBlitz example](https://stackblitz.com/github/zefoy/ngx-swiper-wrapper/tree/master)
+ |
+[Swiper documentation](http://idangero.us/swiper/api/)
+
+### Building the library
+
+```bash
+npm install
+npm run build
+```
+
+### Running the example
+
+```bash
+npm install
+npm run start
+```
+
+### Installing and usage
+
+```bash
+npm install ngx-swiper-wrapper --save
+```
+
+##### Load the module for your app (with global configuration):
+
+Providing the global configuration is optional and when used you should only provide the configuration in your root module.
+
+```javascript
+import { SwiperModule } from 'ngx-swiper-wrapper';
+import { SWIPER_CONFIG } from 'ngx-swiper-wrapper';
+import { SwiperConfigInterface } from 'ngx-swiper-wrapper';
+
+const DEFAULT_SWIPER_CONFIG: SwiperConfigInterface = {
+ direction: 'horizontal',
+ slidesPerView: 'auto'
+};
+
+@NgModule({
+ ...
+ imports: [
+ ...
+ SwiperModule
+ ],
+ providers: [
+ {
+ provide: SWIPER_CONFIG,
+ useValue: DEFAULT_SWIPER_CONFIG
+ }
+ ]
+})
+```
+
+##### Use it in your HTML template (with custom configuration):
+
+This library provides two ways to create a Swiper element, component for simple use cases and directive for more custom use cases.
+
+**COMPONENT USAGE**
+
+Simply replace the element that would ordinarily be passed to `Swiper` with the swiper component.
+
+**NOTE:** Component provides default elements for the scrollbar, navigation and pagination which you can enable by setting the appropriate configuration to 'true' or by using the default selector. If you want to use custom elements then you might want to use the directive instead.
+
+```html
+
+
+ Swiper slide content
+
+
+```
+
+```javascript
+[config] // Custom config to override the global defaults.
+
+[index] // Can be used to set the active slide index.
+[disabled] // Disables changing of slides (locks the Swiper).
+
+[useSwiperClass] // Use 'swiper' class (use provided default styles).
+
+(indexChange) // Event handler for the Swiper index change event.
+
+() // All Swiper events / callbacks work as bindings.
+ // Conflicting events are prefixed with 'swiper':
+ // click, tap, doubleTap, touch*, transition*
+ // Example: touchStart -> swiperTouchStart
+```
+
+**DIRECTIVE USAGE**
+
+When using only the directive you need to provide your own theming or import the default theme:
+
+```css
+@import '~swiper/dist/css/swiper.min.css';
+```
+
+Swiper directive can be used in correctly structured div element with optional custom configuration:
+
+```html
+
+
+
+ Swiper slide content
+
+
+
+
+
+
+
+
+
+```
+
+```javascript
+[swiper] // Can be used to provide optional custom config.
+
+[index] // Can be used to set the active slide index.
+[disabled] // Disables changing of slides (locks the Swiper).
+[performance] // Emit all Swiper events outside the Angular zone.
+
+(indexChange) // Event handler for the Swiper index change event.
+
+() // All Swiper events / callbacks work as bindings.
+ // Conflicting events are prefixed with 'swiper':
+ // click, tap, doubleTap, touch*, transition*
+ // Example: touchStart -> swiperTouchStart
+```
+
+##### Available configuration options (custom / global configuration):
+
+This library supports all Swiper configuration options and few extra options for easier usage.
+
+```javascript
+observer // Set to to true to enable automatic update calls.
+direction // Direction of the Swiper (Default: 'horizontal').
+threshold // Distance needed for the swipe action (Default: 0).
+spaceBetween // Space in pixels between the Swiper items (Default: 0).
+slidesPerView // Number of the items per view or 'auto' (Default: 1).
+centeredSlides // Align active item on center not left (Default: false).
+```
+
+For more detailed documentation with all the supported events / options see the Swiper documentation.
+
+##### Available control / helper functions (provided by the directive):
+
+```javascript
+swiper() // Returns reference to the Swiper instance.
+
+init() // Starts Swiper (when init set to false).
+update() // Updates Swiper elements / classes / etc.
+
+getIndex(real?) // Returns the active or real slide index.
+setIndex(index, speed?, silent?) // Runs transition to slide with given index.
+
+nextSlide(speed?, silent?) // Runs transition to the next slide index.
+prevSlide(speed?, silent?) // Runs transition to the previous slide index.
+
+stopAutoplay(reset?) // Stops and optionally resets the autoplay.
+startAutoplay(reset?) // Starts and optionally resets the autoplay.
+```
+
+Above functions can be accessed through the directive reference (available as directiveRef in the component).
diff --git a/projects/lib/ng-package.json b/projects/lib/ng-package.json
new file mode 100644
index 0000000..4eb2631
--- /dev/null
+++ b/projects/lib/ng-package.json
@@ -0,0 +1,10 @@
+{
+ "$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
+ "dest": "../../dist/lib",
+ "lib": {
+ "entryFile": "src/public-api.ts",
+ "umdModuleIds": {
+ "swiper": "Swiper"
+ }
+ }
+}
diff --git a/projects/lib/package.json b/projects/lib/package.json
new file mode 100644
index 0000000..baa9ca4
--- /dev/null
+++ b/projects/lib/package.json
@@ -0,0 +1,12 @@
+{
+ "name": "ngx-swiper-wrapper",
+ "description": "Angular wrapper library for Swiper",
+ "bugs": "https://github.com/zefoy/ngx-swiper-wrapper/issues",
+ "version": "9.0.0-1",
+ "license": "MIT",
+ "peerDependencies": {
+ "@angular/common": "^9.0.0",
+ "@angular/core": "^9.0.0",
+ "tslib": "^1.10.0"
+ }
+}
diff --git a/projects/lib/src/lib/swiper.component.css b/projects/lib/src/lib/swiper.component.css
new file mode 100644
index 0000000..00d07f3
--- /dev/null
+++ b/projects/lib/src/lib/swiper.component.css
@@ -0,0 +1,120 @@
+swiper[fxflex] {
+ display: flex;
+ flex-direction: inherit;
+ min-width: 0;
+ min-height: 0;
+
+ -webkit-box-direction: inherit;
+ -webkit-box-orient: inherit;
+}
+
+swiper[fxflex] > .swiper.s-wrapper {
+ -ms-flex: 1 1 auto;
+
+ flex: 1 1 auto;
+ min-width: 0;
+ min-height: 0;
+
+ -webkit-box-flex: 1;
+}
+
+swiper > .swiper.s-wrapper {
+ width: 100%;
+ height: 100%;
+}
+
+swiper > .swiper.s-wrapper .swiper-wrapper .swiper-slide {
+ will-change: transform;
+ overflow: auto;
+ width: 100%;
+ height: 100%;
+ max-width: 100%;
+ max-height: 100%;
+}
+
+swiper > .swiper.s-wrapper .swiper-pagination {
+ pointer-events: none;
+}
+
+swiper > .swiper.s-wrapper .swiper-pagination .swiper-pagination-handle {
+ position: relative;
+
+ display: inline-block;
+ padding: 4px;
+ margin: 2px;
+
+ cursor: pointer;
+ pointer-events: all;
+}
+
+swiper > .swiper.s-wrapper .swiper-pagination .swiper-pagination-handle .swiper-pagination-bullet {
+ display: inline-block;
+
+ margin: 0;
+
+ pointer-events: none;
+}
+
+swiper > .swiper.s-wrapper .swiper-pagination .swiper-pagination-handle .swiper-pagination-bullet.swiper-pagination-bullet-last,
+swiper > .swiper.s-wrapper .swiper-pagination .swiper-pagination-handle .swiper-pagination-bullet.swiper-pagination-bullet-first {
+ border: 1px solid rgba(0, 0, 0, 0.5);
+}
+
+swiper > .swiper.s-wrapper.swiper-container-vertical > .swiper-button-prev {
+ top: 10px;
+ left: 50%;
+
+ margin-top: 0;
+ margin-left: -13px;
+
+ transform: rotate(90deg);
+}
+
+swiper > .swiper.s-wrapper.swiper-container-vertical > .swiper-button-next {
+ top: auto;
+ bottom: 10px;
+ left: 50%;
+
+ margin-top: 0;
+ margin-left: -13px;
+
+ transform: rotate(90deg);
+}
+
+swiper > .swiper.s-wrapper.swiper-container-vertical > .swiper-scrollbar {
+ width: 8px;
+
+ transition: width 250ms ease-in-out;
+}
+
+swiper > .swiper.s-wrapper.swiper-container-vertical > .swiper-scrollbar:hover {
+ width: 16px;
+}
+
+swiper > .swiper.s-wrapper.swiper-container-vertical > .swiper-pagination .swiper-pagination-handle {
+ display: block;
+}
+
+swiper > .swiper.s-wrapper.swiper-container-vertical > .swiper-pagination .swiper-pagination-handle .swiper-pagination-bullet {
+ display: inline-block;
+}
+
+swiper > .swiper.s-wrapper.swiper-container-vertical > .swiper-pagination .swiper-pagination-handle .swiper-pagination-bullet.swiper-pagination-bullet-last,
+swiper > .swiper.s-wrapper.swiper-container-vertical > .swiper-pagination .swiper-pagination-handle .swiper-pagination-bullet.swiper-pagination-bullet-first {
+ margin: 0 -1px;
+}
+
+swiper > .swiper.s-wrapper.swiper-container-horizontal > .swiper-scrollbar {
+ height: 8px;
+
+ transition: height 250ms ease-in-out;
+}
+
+swiper > .swiper.s-wrapper.swiper-container-horizontal > .swiper-scrollbar:hover {
+ height: 16px;
+}
+
+swiper > .swiper.s-wrapper.swiper-container-horizontal > .swiper-pagination .swiper-pagination-handle .swiper-pagination-bullet.swiper-pagination-bullet-last,
+swiper > .swiper.s-wrapper.swiper-container-horizontal > .swiper-pagination .swiper-pagination-handle .swiper-pagination-bullet.swiper-pagination-bullet-first {
+ margin: -1px 0;
+}
diff --git a/projects/lib/src/lib/swiper.component.html b/projects/lib/src/lib/swiper.component.html
new file mode 100644
index 0000000..793377e
--- /dev/null
+++ b/projects/lib/src/lib/swiper.component.html
@@ -0,0 +1,12 @@
+