Skip to content

Commit dee4b77

Browse files
committed
v0.0.5
1 parent 37c41bd commit dee4b77

File tree

7 files changed

+147
-29
lines changed

7 files changed

+147
-29
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# NgxUiScroll
55

6-
Unlimited bidirectional scrolling over limited viewport. A directive for [Angular](https://angular.io/) framework (version 5). Built with [angular-library-starter](https://github.com/robisim74/angular-library-starter). Inspired by [angular-ui-scroll](https://github.com/angular-ui/ui-scroll) (AngularJS, since 2013). Demo is available at [dhilt.github.io/ngx-ui-scroll](https://dhilt.github.io/ngx-ui-scroll/).
6+
Unlimited bidirectional scrolling over limited viewport. A directive for [Angular](https://angular.io/) framework. Built with [angular-library-starter](https://github.com/robisim74/angular-library-starter). Inspired by [angular-ui-scroll](https://github.com/angular-ui/ui-scroll) (AngularJS, since 2013). Demo is available at [dhilt.github.io/ngx-ui-scroll](https://dhilt.github.io/ngx-ui-scroll/).
77

88
- [Motivation](#motivation)
99
- [Features](#features)

karma.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ module.exports = function (config) {
5353
port: 9876,
5454
colors: true,
5555
logLevel: config.LOG_ERROR,
56-
autoWatch: process.env.TRAVIS ? false : true,
56+
autoWatch: !process.env.TRAVIS,
5757
browsers: process.env.TRAVIS ?
5858
['Firefox'] :
5959
[process.platform === 'linux' ? 'Chromium' : 'Chrome'],
60-
singleRun: process.env.TRAVIS ? true : false
60+
singleRun: !!process.env.TRAVIS
6161
});
6262
};

package-dist.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-ui-scroll",
3-
"version": "0.0.5-rc.2",
3+
"version": "0.0.5",
44
"description": "Infinite/virtual scroll for Angular",
55
"main": "./bundles/ngx-ui-scroll.umd.js",
66
"module": "./esm5/ngx-ui-scroll.js",

package-lock.json

Lines changed: 140 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"start": "ng serve",
77
"build": "node build.js",
88
"test": "karma start",
9-
"install-package": "npm run build && npm pack ./dist && npm install ngx-ui-scroll-0.0.5-rc.2.tgz --no-save",
9+
"install-package": "npm run build && npm pack ./dist && npm install ngx-ui-scroll-0.0.5.tgz --no-save",
1010
"start-package": "npm run install-package && npm start",
1111
"build-app": "ng build"
1212
},

src/component/interfaces/state.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export interface PreviousClip {
1212

1313
export interface State {
1414
process: Process;
15+
wfCycleCount: number;
1516
cycleCount: number;
1617
countDone: number;
1718
pending: boolean;

src/ui-scroll.version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export default '0.0.5-rc.2';
1+
export default '0.0.5';

0 commit comments

Comments
 (0)