forked from orizens/ngx-infinite-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
attempt to fix orizens#147 (no an NgModule)
- Loading branch information
Showing
8 changed files
with
54 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,34 @@ | ||
## Angular library starter Changelog | ||
## v 0.4.1 (2017/04/13) | ||
* Fixes #147 - (__InfiniteScrollModule is not an NgModule__) | ||
|
||
<a name="Mar 25, 2017"></a> | ||
### Mar 25, 2017 | ||
* Upgrade to Angular 4 configuration | ||
## v 0.4.0 (2017/04/12) | ||
* Added Angular 4 support | ||
* New starter code base ([based on angular-library-starter](https://github.com/robisim74/angular-library-starter)) | ||
|
||
<a name="Mar 6, 2017"></a> | ||
### Mar 6, 2017 | ||
* Add _compodoc_ for generating documentation | ||
## v 0.3.3 (2017/03/01) | ||
|
||
### Updates | ||
* reverted the fix of #126 | ||
|
||
## v 0.3.2 (2017/03/01) | ||
|
||
### Updates | ||
* fixes [#126](https://github.com/orizens/angular2-infinite-scroll/issues/126) | ||
|
||
## v 0.3.1 (2017/02/15) | ||
|
||
### Updates | ||
* added custom scrollable container from [#108](https://github.com/orizens/angular2-infinite-scroll/pull/108/files) | ||
|
||
## v 0.3.0 (2017/01/31) | ||
|
||
### Updates | ||
* refactored infinite scroller to smaller modules with composition | ||
* added "models" - includes interfaces for development | ||
|
||
## v 0.2.9 (2017/01/13) | ||
|
||
### Updates | ||
* added changelog.md | ||
* ([refactor(scroll): replaces throttle with debounce](https://github.com/orizens/angular2-infinite-scroll/pull/82)) | ||
|
||
<a name="Feb 5, 2017"></a> | ||
### Feb 5, 2017 | ||
* Create library |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export * from './public_api'; | ||
import { InfiniteScrollModule } from './src/ngx-infinite-scroll'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
// Public classes. | ||
// export { SumService } from './services/sum-service'; | ||
// export { ArithmeticModule } from './modules/arithmetic-module'; | ||
|
||
export { InfiniteScroll } from './modules/infinite-scroll'; | ||
export { PositionResolver, PositionResolverFactory } from './services/position-resolver'; | ||
export { AxisResolver, AxisResolverFactory } from './services/axis-resolver'; | ||
export { ScrollRegister } from './services/scroll-register'; | ||
export { ScrollResolver } from './services/scroll-resolver'; | ||
export { InfiniteScrollModule } from './modules'; | ||
export { InfiniteScrollModule } from './modules/ngx-infinite-scroll.module'; | ||
|
||
export { ContainerRef, InfiniteScrollEvent, PositionElements, PositionStats, ScrollStats, ScrollerConfig} from './models'; | ||
export { | ||
ContainerRef, InfiniteScrollEvent, | ||
PositionElements, PositionStats, ScrollStats, ScrollerConfig | ||
} from './models'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters