Skip to content

Commit

Permalink
Merge pull request #23 from vdanyliv/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
vdanyliv authored May 13, 2020
2 parents 8672b36 + 7802e51 commit 16acf5f
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 14 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ Angular component that gives you possibility to use tiny slider library.
2. Import NgxTinySliderModule into your shared / root module
3. Use in your component template use <ngx-tiny-slider>

# Whats new on 1.0.0?
1. Angular 9 support
2. Interface export update
# Whats new on 1.0.1?
1. Possibility to import NgxTinySliderService in your component

# Usage example
Your module definition example
Expand Down
9 changes: 4 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-tiny-slider-wrapper",
"version": "0.0.6",
"version": "0.0.7",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand All @@ -25,7 +25,7 @@
"rxjs": "~6.5.5",
"tslib": "^1.10.0",
"zone.js": "~0.10.2",
"ngx-tiny-slider": "0.0.6"
"ngx-tiny-slider": "1.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.1",
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-tiny-slider/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-tiny-slider",
"version": "1.0.0",
"version": "1.0.1",
"dependencies": {
"tiny-slider": "^2.9.1"
},
Expand Down
1 change: 1 addition & 0 deletions projects/ngx-tiny-slider/src/public_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*/

export * from './lib/ngx-tiny-slider.module';
export * from './lib/ngx-tiny-slider.service';
export * from './lib/ngx-tiny-slider.component';
export * from './lib/interfaces/ngx-tiny-slider-settings.interface';
export * from './lib/interfaces/ngx-tiny-slider-instanse.interface';
Expand Down
3 changes: 1 addition & 2 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import {Component, OnInit, ViewChild} from '@angular/core';
import {NgxTinySliderSettingsInterface} from '../../projects/ngx-tiny-slider/src/lib/interfaces/ngx-tiny-slider-settings.interface';
import {NgxTinySliderInstance} from '../../projects/ngx-tiny-slider/src/lib/interfaces/ngx-tiny-slider-instanse.interface';
import {NgxTinySliderSettingsInterface, NgxTinySliderInstance} from 'ngx-tiny-slider';

@Component({
selector: 'app-root',
Expand Down
2 changes: 1 addition & 1 deletion src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';

import {AppComponent} from './app.component';
import {NgxTinySliderModule} from '../../projects/ngx-tiny-slider/src/lib/ngx-tiny-slider.module';
import {NgxTinySliderModule} from 'ngx-tiny-slider';

@NgModule({
imports: [
Expand Down

0 comments on commit 16acf5f

Please sign in to comment.