Skip to content

Commit 8c40a69

Browse files
author
a-jie
committed
update v0.3.5
update v0.3.5
1 parent 5383b4d commit 8c40a69

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@angular/platform-browser": "^4.2.4",
2424
"@angular/platform-browser-dynamic": "^4.2.4",
2525
"@angular/router": "^4.2.4",
26-
"angular-infinite-list": "^0.2.8",
26+
"angular-infinite-list": "^0.3.5",
2727
"bootstrap": "^3.3.7",
2828
"core-js": "^2.4.1",
2929
"rxjs": "^5.4.2",

demo/src/app/app.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import {
1010
MatInputModule
1111
} from '@angular/material';
1212

13-
//import { InfiniteListModule } from 'angular-infinite-list';
14-
import { InfiniteListModule } from './__src';
13+
import { InfiniteListModule } from 'angular-infinite-list';
14+
//import { InfiniteListModule } from './__src';
1515

1616
import { AppRoutingModule } from './app-routing.module';
1717

demo/src/app/components/demo/demo2.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Component, NgModule, ChangeDetectorRef } from '@angular/core';
22
import { CommonService } from './common.service';
33
import { Subscription } from 'rxjs/Subscription';
4-
import { Subject } from 'rxjs/subject';
4+
import { Subject } from 'rxjs/Subject';
55

66
@Component({
77
selector: 'app-demo2',

demo/src/app/components/demo/demo3.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Component, NgModule, ChangeDetectorRef } from '@angular/core';
22
import { CommonService } from './common.service';
33
import { Subscription } from 'rxjs/Subscription';
4-
import { Subject } from 'rxjs/subject';
4+
import { Subject } from 'rxjs/Subject';
55

66
@Component({
77
selector: 'app-demo3',

demo/src/app/components/demo/demo4.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Component, NgModule, ChangeDetectorRef } from '@angular/core';
22
import { CommonService } from './common.service';
33
import { Subscription } from 'rxjs/Subscription';
4-
import { Subject } from 'rxjs/subject';
4+
import { Subject } from 'rxjs/Subject';
55

66
@Component({
77
selector: 'app-demo4',

demo/src/app/components/demo/demo5.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Component, NgModule, ChangeDetectorRef } from '@angular/core';
2-
import { Subject } from 'rxjs/subject';
2+
import { Subject } from 'rxjs/Subject';
33
import { Subscription } from 'rxjs/Subscription';
44
import { CommonService } from './common.service';
55

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-infinite-list",
3-
"version": "0.3.3",
3+
"version": "0.3.5",
44
"description": "A tiny but mighty 3k list virtualization library for angular, with zero dependencies",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",

rollup.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ export default {
88
'@angular/core',
99
'@angular/platform-browser',
1010
'@angular/common',
11-
'rxjs/subject'
11+
'rxjs/Subject'
1212
],
1313
globals: {
1414
'@angular/core': 'ng.core',
1515
'@angular/platform-browser': 'ng.platform-browser',
1616
'@angular/common': 'ng.common',
17-
"rxjs/subject": "Rx"
17+
"rxjs/Subject": "Rx"
1818
},
1919
name: 'angular-infinite-list'
2020
}

src/infinite-list.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ItemStyle, StyleCache, ItemInfo, RenderedRows } from './infinite-list.i
44
import { SizeAndPositionManager, ItemSize } from './size-and-position-manager';
55
import { InfinitelistService } from './infinite-list.service';
66
import { ILEvent } from './il-event';
7-
import { Subject } from 'rxjs/subject';
7+
import { Subject } from 'rxjs/Subject';
88

99
import {
1010
ALIGN_AUTO,

0 commit comments

Comments
 (0)