Skip to content
This repository was archived by the owner on May 27, 2021. It is now read-only.

Commit e948382

Browse files
committed
feat: add nzShiftSelectedMulti property, close #13
1 parent 9a9662e commit e948382

File tree

6 files changed

+27
-487
lines changed

6 files changed

+27
-487
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ the `nzNodes` is array of the tree, and each node may contain the following fil
9898
| nzOptions | `TreeOptions` | | see [options](https://angular2-tree.readme.io/docs/options) |
9999
| nzTitle | `TemplateRef` | | Custom title |
100100
| nzLoading | `TemplateRef` | | Custom Loading |
101+
| nzShiftSelectedMulti | `boolean` | `true` | selected multi when shift key |
101102
| nzToggleExpanded | `EventEmitter` | | see [events](https://angular2-tree.readme.io/docs/events) |
102103
| nzActivate | `EventEmitter` | | |
103104
| nzDeactivate | `EventEmitter` | | |

demo/src/tsconfig.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
"target": "es5",
1717
"typeRoots": [
1818
"../node_modules/@types"
19-
]
19+
],
20+
"baseUrl": "./",
21+
"paths": {
22+
"ng-tree-antd": [ "../../src/index" ]
23+
}
2024
}
2125
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng-tree-antd",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"main": "index.js",
55
"typings": "index.d.ts",
66
"description": "A antd style of based on angular-tree-component.",
@@ -26,7 +26,7 @@
2626
"homepage": "https://github.com/cipchk/ng-tree-antd#readme",
2727
"scripts": {
2828
"demo.serve": "run-s build link demo.build",
29-
"demo.gh-pages": "run-s build demo.build demo.deploy",
29+
"demo.gh-pages": "run-s demo.build demo.deploy",
3030
"demo.build": "ng build -prod",
3131
"demo.deploy": "gh-pages -d demo/dist",
3232
"link": "ngm link -p src --here",

0 commit comments

Comments
 (0)