Skip to content

Commit f8b8949

Browse files
authored
Merge pull request #8 from Zicrael/dev-branch
initial dev-branch & add support angular 7
2 parents 3c85bca + 15f8ff1 commit f8b8949

File tree

5 files changed

+24
-23
lines changed

5 files changed

+24
-23
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Node
22
node_modules/*
3+
projects/ngx-tree-dnd/node_modules
34
npm-debug.log
45

56
# JetBrains

README.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ngx-tree-dnd [![npm version](https://badge.fury.io/js/ngx-tree-dnd.svg)](https://badge.fury.io/js/ngx-tree-dnd) [![npm downloads](https://img.shields.io/npm/dt/ngx-tree-dnd.svg)](https://www.npmjs.com/package/ngx-tree-dnd)
22

3-
Angular 6 support tree with drag-and-drop sortable data tree. It`s fast and smart.
3+
Angular 7 support tree with drag-and-drop sortable data tree. It`s fast and smart.
44

55
[![Dependency Status](https://david-dm.org/zicrael/ngx-tree-dnd.svg)](https://david-dm.org/zicrael/ngx-tree-dnd) [![Build status](https://api.travis-ci.org/Zicrael/ngx-tree-dnd.svg?branch=master)](https://travis-ci.org/Zicrael/ngx-tree-dnd)
66
[![codecov](https://codecov.io/gh/zicrael/ngx-tree-dnd/badge.svg)](https://codecov.io/gh/zicrael/ngx-tree-dnd)

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,34 +11,34 @@
1111
},
1212
"private": true,
1313
"dependencies": {
14-
"@angular/animations": "^6.0.3",
15-
"@angular/common": "^6.0.3",
16-
"@angular/compiler": "^6.0.3",
17-
"@angular/core": "^6.0.3",
18-
"@angular/forms": "^6.0.3",
19-
"@angular/http": "^6.0.3",
20-
"@angular/platform-browser": "^6.0.3",
21-
"@angular/platform-browser-dynamic": "^6.0.3",
22-
"@angular/router": "^6.0.3",
14+
"@angular/animations": "^7.0.4",
15+
"@angular/common": "^7.0.4",
16+
"@angular/compiler": "^7.0.4",
17+
"@angular/core": "^7.0.4",
18+
"@angular/forms": "^7.0.4",
19+
"@angular/http": "^7.0.4",
20+
"@angular/platform-browser": "^7.0.4",
21+
"@angular/platform-browser-dynamic": "^7.0.4",
22+
"@angular/router": "^7.0.4",
2323
"@fortawesome/angular-fontawesome": "^0.1.1",
24-
"@fortawesome/fontawesome-svg-core": "^1.2.0",
25-
"@fortawesome/free-solid-svg-icons": "^5.1.0",
24+
"@fortawesome/fontawesome-svg-core": "^1.2.8",
25+
"@fortawesome/free-solid-svg-icons": "^5.5.0",
2626
"core-js": "^2.5.4",
2727
"karma-phantomjs-launcher": "^1.0.4",
2828
"ngx-tree-dnd": "^2.0.1",
2929
"rxjs": "^6.0.0",
3030
"zone.js": "^0.8.26"
3131
},
3232
"devDependencies": {
33-
"@angular/compiler-cli": "^6.0.3",
33+
"@angular/compiler-cli": "^7.0.4",
3434
"@angular-devkit/build-ng-packagr": "~0.6.8",
3535
"@angular-devkit/build-angular": "~0.6.8",
3636
"ng-packagr": "^3.0.0-rc.2",
3737
"tsickle": ">=0.25.5",
3838
"tslib": "^1.7.1",
39-
"typescript": "~2.7.2",
40-
"@angular/cli": "~6.0.8",
41-
"@angular/language-service": "^6.0.3",
39+
"typescript": "~3.1.6",
40+
"@angular/cli": "~7.0.6",
41+
"@angular/language-service": "^7.0.4",
4242
"@types/jasmine": "~2.8.6",
4343
"@types/jasminewd2": "~2.0.3",
4444
"@types/node": "~8.9.4",

projects/ngx-tree-dnd/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ngx-tree-dnd [![npm version](https://badge.fury.io/js/ngx-tree-dnd.svg)](https://badge.fury.io/js/ngx-tree-dnd) [![npm downloads](https://img.shields.io/npm/dt/ngx-tree-dnd.svg)](https://www.npmjs.com/package/ngx-tree-dnd)
22

3-
Angular 6 support tree with drag-and-drop sortable data tree. It`s fast and smart.
3+
Angular 7 support tree with drag-and-drop sortable data tree. It`s fast and smart.
44

55
[![Dependency Status](https://david-dm.org/zicrael/ngx-tree-dnd.svg)](https://david-dm.org/zicrael/ngx-tree-dnd) [![Build status](https://api.travis-ci.org/Zicrael/ngx-tree-dnd.svg?branch=master)](https://travis-ci.org/Zicrael/ngx-tree-dnd)
66
[![codecov](https://codecov.io/gh/zicrael/ngx-tree-dnd/badge.svg)](https://codecov.io/gh/zicrael/ngx-tree-dnd)

projects/ngx-tree-dnd/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-tree-dnd",
3-
"version": "2.2.5",
3+
"version": "2.3.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/Zicrael/ngx-tree-dnd"
@@ -17,12 +17,12 @@
1717
"url": "https://github.com/Zicrael/ngx-tree-dnd/issues"
1818
},
1919
"peerDependencies": {
20-
"@angular/common": "^6.1.9 || ^6.0.0",
21-
"@angular/core": "^6.1.9 || ^6.0.0"
20+
"@angular/common": "^7.0.4",
21+
"@angular/core": "^7.0.4"
2222
},
2323
"dependencies": {
24-
"@fortawesome/angular-fontawesome": "^0.2.0",
25-
"@fortawesome/fontawesome-svg-core": "^1.2.4",
26-
"@fortawesome/free-solid-svg-icons": "^5.3.1"
24+
"@fortawesome/angular-fontawesome": "^0.2.1",
25+
"@fortawesome/fontawesome-svg-core": "^1.2.8",
26+
"@fortawesome/free-solid-svg-icons": "^5.5.0"
2727
}
2828
}

0 commit comments

Comments
 (0)