File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed
Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 11## [ angular] ( ./README.md ) version ` changelog `
22
33###### ` v2.Next `
4+ - refactor(app.routing): lazy loading via dynamic import()
5+ - refactor(tsconfig): "module: "esnext", "target": "es6"
46- update: Angular to ` v8.0.0-rc-2 `
57- update: ` @angular/animations ` to ` ^8.0.0-rc.2 `
68- update: ` @angular/common ` to ` ^8.0.0-rc.2 `
Original file line number Diff line number Diff line change 11{
22 "name" : " @coreui/coreui-free-angular-admin-template" ,
3- "version" : " 2.4.5 " ,
3+ "version" : " 2.5.0-beta.0 " ,
44 "description" : " CoreUI Free Angular 2+ Admin Template" ,
55 "author" : {
66 "name" : " Łukasz Holeczek" ,
Original file line number Diff line number Diff line change @@ -11,18 +11,18 @@ export class DropdownsComponent implements OnDestroy {
1111 isDropup : boolean = true ;
1212 autoClose : boolean = false ;
1313
14- constructor ( ) { }
15-
16- ngOnDestroy ( ) {
17- this . status . isOpen = false ;
18- }
19-
2014 items : string [ ] = [
2115 'The first choice!' ,
2216 'And another choice for you.' ,
2317 'but wait! A third!'
2418 ] ;
2519
20+ constructor ( ) { }
21+
22+ ngOnDestroy ( ) {
23+ this . status . isOpen = false ;
24+ }
25+
2626 onHidden ( ) : void {
2727 console . log ( 'Dropdown is hidden' ) ;
2828 }
You can’t perform that action at this time.
0 commit comments