This repository was archived by the owner on Nov 20, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +10
-6
lines changed
Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -270,6 +270,10 @@ At the end do not forget to add this effects to your app.
270270
271271## Changes
272272
273+ ### v3.1.1
274+ * fix Item template error
275+ * update bootstrap to 4.1.3
276+
273277### v3.1.0
274278* change tree model initialize and injecting NodeService
275279* add NestJS server with new _ TreeTwoNodeBackendService_ angular service to show how Tree works with real backend (details in _ Demo_ section)
Original file line number Diff line number Diff line change 11{
22 "name" : " @rign/angular2-tree" ,
3- "version" : " 3.1.0 " ,
3+ "version" : " 3.1.1 " ,
44 "license" : " MIT" ,
55 "angular-cli" : {},
66 "scripts" : {
3535 "@ngrx/store" : " ^5.1.0" ,
3636 "@ngrx/store-devtools" : " ^4.0.0" ,
3737 "angular2-uuid" : " ^1.1.1" ,
38- "bootstrap" : " ^3.3.7 " ,
38+ "bootstrap" : " ^4.1.3 " ,
3939 "core-js" : " ^2.4.1" ,
4040 "font-awesome" : " ^4.6.3" ,
4141 "ng2-dnd" : " ^2.2.2" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @rign/angular2-tree" ,
3- "version" : " 3.1.0 " ,
3+ "version" : " 3.1.1 " ,
44 "license" : " MIT" ,
55 "angular-cli" : {},
66 "scripts" : {
4949 "@ngrx/store" : " ^5.1.0" ,
5050 "@ngrx/store-devtools" : " ^4.0.0" ,
5151 "angular2-uuid" : " ^1.1.1" ,
52- "bootstrap" : " ^3.3.7 " ,
52+ "bootstrap" : " ^4.1.3 " ,
5353 "core-js" : " ^2.4.1" ,
5454 "font-awesome" : " ^4.6.3" ,
5555 "lodash.isequal" : " ^4.5.0" ,
Original file line number Diff line number Diff line change 11< div class ="tree-item "
2- [ngClass] ="{'tree-item-selected': isSelected && !wasPreviouslySelected} "
2+ [ngClass] ="{'tree-item-selected': isSelected && !treeModel. wasPreviouslySelected(node.id) } "
33 (contextmenu) ="onContextMenu($event) "
44 riDroppable
55 riDraggable
Original file line number Diff line number Diff line change 11< div class ="tree ">
2- < button *ngIf ="treeModel.configuration.showAddButton " class ="btn btn-default add-node-button " (click) ="onAdd() ">
2+ < button *ngIf ="treeModel.configuration.showAddButton " class ="btn btn-dark add-node-button " (click) ="onAdd() ">
33 < i class ="fa fa-plus "> </ i > {{'RI_TREE_LBL_ADD_NODE' | translate}}
44 </ button >
55 <!--@formatter:off-->
You can’t perform that action at this time.
0 commit comments