Skip to content

Commit c571a13

Browse files
committed
chore: version bump 2.5.0-beta.0
1 parent 0abb162 commit c571a13

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
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`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

src/app/views/buttons/dropdowns.component.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)