Skip to content

Commit

Permalink
0.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dhilt committed Mar 25, 2018
1 parent 24e715c commit 7586847
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 19 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 Denis Alexanov (https://github.com/dhilt)
Copyright (c) 2018 Denis Alexanov (https://github.com/dhilt)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
43 changes: 27 additions & 16 deletions package-dist.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,42 @@
{
"name": "ngx-ui-scroll",
"version": "0.0.0",
"description": "",
"version": "0.0.1",
"description": "Infinite/virtual scroll for Angular",
"main": "./bundles/ngx-ui-scroll.umd.js",
"module": "./esm5/ngx-ui-scroll.js",
"es2015": "./esm2015/ngx-ui-scroll.js",
"typings": "./ngx-ui-scroll.d.ts",
"keywords": [
"angular",
"javascript",
"typescript"
],
"author": {
"name": "",
"email": ""
"name": "dhilt",
"email": "[email protected]"
},
"license": "",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
"url": "git+https://github.com/dhilt/ngx-ui-scroll.git"
},
"homepage": "",
"homepage": "https://github.com/dhilt/ngx-ui-scroll",
"bugs": {
"url": ""
"url": "https://github.com/dhilt/ngx-ui-scroll/issues"
},
"deprecated": false,
"bundleDependencies": false,
"peerDependencies": {
"@angular/core": "^5.2.0",
"@angular/common": "^5.2.0"
}
"@angular/core": ">= 5.0.0",
"@angular/common": ">= 5.0.0"
},
"keywords": [
"angular",
"javascript",
"typescript",
"scroll",
"scroller",
"scrolling",
"infinite",
"virtual",
"ui-scroll",
"angular-ui-scroll",
"ngx-ui-scroll",
"ui component"
]
}
4 changes: 2 additions & 2 deletions src/component/utils/assignSettings.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const assignBoolean = (target, source, token, defaults) => {
let param = source[token];
const param = source[token];
if (typeof param === 'undefined') {
return;
}
Expand All @@ -12,7 +12,7 @@ const assignBoolean = (target, source, token, defaults) => {
};

const assignNumeric = (target, source, token, defaults, integer = false) => {
let param = source[token];
const param = source[token];
if (typeof param === 'undefined') {
return;
}
Expand Down

0 comments on commit 7586847

Please sign in to comment.