ngx-infinite-scroll
Advanced tools
Comparing version 0.4.0 to 0.4.1-0
{ | ||
"name": "ngx-infinite-scroll", | ||
"version": "0.4.0", | ||
"version": "0.4.1-0", | ||
"description": "Build an Angular library compatible with AoT compilation and Tree shaking", | ||
@@ -38,10 +38,10 @@ "main": "./bundles/ngx-infinite-scroll.umd.js", | ||
"devDependencies": { | ||
"@angular/common": "4.0.0", | ||
"@angular/compiler": "4.0.0", | ||
"@angular/compiler-cli": "4.0.0", | ||
"@angular/core": "4.0.0", | ||
"@angular/platform-browser": "4.0.0", | ||
"@angular/platform-browser-dynamic": "4.0.0", | ||
"@angular/platform-server": "4.0.0", | ||
"@angular/animations": "4.0.0", | ||
"@angular/common": "^4.0.0", | ||
"@angular/compiler": "^4.0.0", | ||
"@angular/compiler-cli": "^4.0.0", | ||
"@angular/core": "^4.0.0", | ||
"@angular/platform-browser": "^4.0.0", | ||
"@angular/platform-browser-dynamic": "^4.0.0", | ||
"@angular/platform-server": "^4.0.0", | ||
"@angular/animations": "^4.0.0", | ||
"@types/jasmine": "2.5.46", | ||
@@ -48,0 +48,0 @@ "@types/node": "7.0.10", |
@@ -7,3 +7,3 @@ [![Build Status](https://travis-ci.org/orizens/angular2-infinite-scroll.svg?branch=master)](https://travis-ci.org/orizens/angular2-infinite-scroll) | ||
## Angular Support | ||
Supports in Angular **> +2, 4** | ||
Supports in Angular **> +2, 4 etc..** | ||
@@ -20,3 +20,3 @@ ## Angular Consulting Services | ||
``` | ||
npm install angular2-infinite-scroll --save | ||
npm install ngx-infinite-scroll --save | ||
``` | ||
@@ -52,3 +52,3 @@ | ||
import { BrowserModule } from '@angular/platform-browser'; | ||
import { InfiniteScrollModule } from 'angular2-infinite-scroll'; | ||
import { InfiniteScrollModule } from 'ngx-infinite-scroll'; | ||
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; | ||
@@ -123,3 +123,3 @@ import { AppComponent } from './app'; | ||
import { Component } from '@angular/core'; | ||
import { InfiniteScroll } from 'angular2-infinite-scroll'; | ||
import { InfiniteScroll } from 'ngx-infinite-scroll'; | ||
@@ -126,0 +126,0 @@ @Component({ |
204421