forked from CirclonGroup/angular-tree-component
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed lint errors Not mandatory to supply getChildren method Calling 'closest' using invokeElementMethod Removed onActiveChanged method Added 3rd party licenses
- Loading branch information
1 parent
cfdc20a
commit 4f8e9d6
Showing
9 changed files
with
919 additions
and
17 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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
* https://github.com/ayamflow/virtual-scroll/ | ||
// The MIT License (MIT) | ||
|
||
// Copyright (c) 2014 Florian Morel | ||
|
||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
|
||
// The above copyright notice and this permission notice shall be included in all | ||
// copies or substantial portions of the Software. | ||
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
// SOFTWARE. |
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 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 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,6 +1,6 @@ | ||
{ | ||
"name": "angular2-tree-component", | ||
"version": "2.8.1", | ||
"version": "2.8.2", | ||
"description": "A simple yet powerful tree component for Angular2", | ||
"author": "Adam Klein <[email protected]>", | ||
"homepage": "https://github.com/500tech/angular2-tree-component", | ||
|
@@ -24,7 +24,7 @@ | |
"lint": "tslint lib/**/*.ts", | ||
"rollup": "rollup -c rollup.config.js dist/angular2-tree-component.js > dist/angular2-tree-component.umd.js", | ||
"build": "npm run lint && npm run clean:typescript && ngc && npm run rollup", | ||
"example:cli": "npm run build && cp -rf dist example/cli/node_modules/angular2-tree-component/ && cd example/cli && ng serve", | ||
"example:cli": "ngc && cp -rf dist example/cli/node_modules/angular2-tree-component/ && cd example/cli && ng serve", | ||
"example:cli:build": "cd example/cli && ng build --aot" | ||
}, | ||
"files": [ | ||
|
@@ -35,8 +35,8 @@ | |
"Adam Klein <[email protected]>" | ||
], | ||
"peerDependencies": { | ||
"@angular/core": "^2.0.0", | ||
"@angular/common": "^2.0.0" | ||
"@angular/common": "^2.0.0", | ||
"@angular/core": "^2.0.0" | ||
}, | ||
"dependencies": { | ||
"lodash": "^4.6.1", | ||
|
@@ -53,25 +53,22 @@ | |
"@angular/platform-browser-dynamic": "^2.3.0", | ||
"@angular/platform-server": "^2.3.0", | ||
"@types/jasmine": "2.5.38", | ||
"@types/lodash": "4.14.40", | ||
"@types/lodash": "^4.14.52", | ||
"@types/node": "^6.0.38", | ||
"@types/rx": "2.5.34", | ||
"@types/webpack": "^1.12.29", | ||
"codelyzer": "2.0.0-beta.4", | ||
"core-js": "^2.4.0", | ||
"lodash": "^4.6.1", | ||
"rimraf": "^2.5.1", | ||
"rollup": "0.41.4", | ||
"rollup": "^0.41.4", | ||
"rxjs": "^5.0.0", | ||
"tslint": "4.4.2", | ||
"typedoc": "^0.3.12", | ||
"typescript": "^2.1.4", | ||
"zone.js": "^0.7.2" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/500tech/angular2-tree-component.git" | ||
}, | ||
"repository": "https://github.com/500tech/angular2-tree-component.git", | ||
"bugs": { | ||
"url": "https://github.com/500tech/angular2-tree-component/issues" | ||
}, | ||
|
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
Oops, something went wrong.