Skip to content

Commit b9e1f86

Browse files
committed
Merge v2.9.1
2 parents e649e03 + c9b8ae1 commit b9e1f86

13 files changed

+501
-316
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
### [@coreui/angular](https://coreui.io/) changelog
22

3+
##### `v2.9.1`
4+
- fix: downgrade TypeScript to ~3.6.4 - thanks @jrocha closes #103
5+
6+
###### dependencies update
7+
- update `typescript` to `~3.6.4`
8+
- update `@angular/animations` to `~9.0.5`
9+
- update `@angular/common` to `~9.0.5`
10+
- update `@angular/compiler` to `~9.0.5`
11+
- update `@angular/core` to `~9.0.5`
12+
- update `@angular/forms` to `~9.0.5`
13+
- update `@angular/localize` to `^9.0.5`
14+
- update `@angular/platform-browser` to `~9.0.5`
15+
- update `@angular/platform-browser-dynamic` to `~9.0.5`
16+
- update `@angular/router` to `~9.0.5`
17+
- update `tslib` to `^1.11.1`
18+
- update `@angular-devkit/build-angular` to `~0.900.5`
19+
- update `@angular-devkit/build-ng-packagr` to `~0.900.5`
20+
- update `@angular/cli` to `~9.0.5`
21+
- update `@angular/compiler-cli` to `~9.0.5`
22+
- update `@angular/language-service` to `~9.0.5`
23+
- update `@types/jasmine` to `^3.5.7`
24+
- update `@types/node` to `^12.12.29`
25+
- update `ng-packagr` to `^9.0.2`
26+
- update `ngx-perfect-scrollbar` to `^9.0.0`
27+
328
##### `v2.9.0`
429
- chore: update to `Angular 9.0.0`
530
- [https://update.angular.io/](https://update.angular.io/#8.0:9.0)

dist/@coreui/angular/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![@coreui coreui](https://img.shields.io/badge/@coreui%20-coreui-lightgrey.svg?style=flat-square)](https://github.com/coreui/coreui)
77
[![npm package][npm-coreui-badge]][npm-coreui]
88
[![NPM downloads][npm-coreui-download]][npm-coreui]
9-
![angular](https://img.shields.io/badge/angular-^9.0.0--rc.9-lightgrey.svg?style=flat-square&logo=angular)
9+
![angular](https://img.shields.io/badge/angular-^9.0.0-lightgrey.svg?style=flat-square&logo=angular)
1010

1111
[npm-coreui-angular]: https://www.npmjs.com/package/@coreui/angular
1212
[npm-coreui-angular-badge-latest]: https://img.shields.io/npm/v/@coreui/angular/latest?style=flat-square&color=red
@@ -25,7 +25,7 @@
2525
Before you begin, make sure your development environment includes `Node.js®` and an `npm` package manager.
2626

2727
###### Node.js
28-
Angular 9 requires `Node.js` version 12.x
28+
Angular 9 requires `Node.js` version 10.13 or later.
2929

3030
- To check your version, run `node -v` in a terminal/console window.
3131
- To get `Node.js`, go to [nodejs.org](https://nodejs.org/).

dist/@coreui/angular/bundles/coreui-angular.umd.js

+20-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/@coreui/angular/bundles/coreui-angular.umd.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/@coreui/angular/bundles/coreui-angular.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/@coreui/angular/lib/sidebar/app-sidebar-nav/app-sidebar-nav-items.component.d.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ export declare class AppSidebarNavItemsComponent {
88
router: Router;
99
helper: SidebarNavHelper;
1010
protected _items: INavData[];
11-
set items(items: INavData[]);
12-
get items(): INavData[];
11+
items: INavData[];
1312
constructor(document: any, renderer: Renderer2, router: Router, helper: SidebarNavHelper);
1413
hideMobile(): void;
1514
}

dist/@coreui/angular/lib/sidebar/app-sidebar-nav/app-sidebar-nav-link.component.d.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ export declare class AppSidebarNavLinkContentComponent implements OnInit, OnDest
1212
export declare class AppSidebarNavLinkComponent implements OnInit, OnDestroy {
1313
router: Router;
1414
protected _Item: INavData;
15-
set item(item: INavData);
16-
get item(): INavData;
15+
item: INavData;
1716
linkClick: EventEmitter<any>;
1817
linkType: string;
1918
href: string;

dist/@coreui/angular/lib/sidebar/app-sidebar.component.d.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ export declare class AppSidebarComponent implements OnInit, OnDestroy {
1010
display: any;
1111
fixed: boolean;
1212
offCanvas: boolean;
13-
get minimized(): boolean;
14-
set minimized(value: boolean);
13+
minimized: boolean;
1514
/**
1615
* Emits whenever the minimized state of the sidebar changes.
1716
* Primarily used to facilitate two-way binding.

dist/@coreui/angular/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/angular",
3-
"version": "2.9.0",
3+
"version": "2.9.1",
44
"description": "CoreUI Angular Bootstrap 4 components",
55
"license": "MIT",
66
"homepage": "https://coreui.io/angular",

0 commit comments

Comments
 (0)