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 1
1
## [ angular] ( ./README.md ) version ` changelog `
2
2
3
3
###### ` v2.Next `
4
+ - refactor(app.routing): lazy loading via dynamic import()
5
+ - refactor(tsconfig): "module: "esnext", "target": "es6"
4
6
- update: Angular to ` v8.0.0-rc-2 `
5
7
- update: ` @angular/animations ` to ` ^8.0.0-rc.2 `
6
8
- update: ` @angular/common ` to ` ^8.0.0-rc.2 `
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @coreui/coreui-free-angular-admin-template" ,
3
- "version" : " 2.4.5 " ,
3
+ "version" : " 2.5.0-beta.0 " ,
4
4
"description" : " CoreUI Free Angular 2+ Admin Template" ,
5
5
"author" : {
6
6
"name" : " Łukasz Holeczek" ,
Original file line number Diff line number Diff line change @@ -11,18 +11,18 @@ export class DropdownsComponent implements OnDestroy {
11
11
isDropup : boolean = true ;
12
12
autoClose : boolean = false ;
13
13
14
- constructor ( ) { }
15
-
16
- ngOnDestroy ( ) {
17
- this . status . isOpen = false ;
18
- }
19
-
20
14
items : string [ ] = [
21
15
'The first choice!' ,
22
16
'And another choice for you.' ,
23
17
'but wait! A third!'
24
18
] ;
25
19
20
+ constructor ( ) { }
21
+
22
+ ngOnDestroy ( ) {
23
+ this . status . isOpen = false ;
24
+ }
25
+
26
26
onHidden ( ) : void {
27
27
console . log ( 'Dropdown is hidden' ) ;
28
28
}
You can’t perform that action at this time.
0 commit comments