Skip to content

Commit 93ce706

Browse files
authored
Merge pull request #91 from coreui/fix-query-params-handling
v2.7.1
2 parents 6b1fe22 + 5c2c3d4 commit 93ce706

File tree

10 files changed

+1797
-1633
lines changed

10 files changed

+1797
-1633
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
### [@coreui/angular](https://coreui.io/) changelog
22

3+
##### `v2.7.1`
4+
- fix(sidebar-nav): @angular/router has no exported member QueryParamsHandling, see:
5+
- https://github.com/angular/angular/issues/30925
6+
- https://github.com/angular/angular/issues/30816
7+
8+
###### dependencies update
9+
- update `@angular/animations` to `^9.0.0-rc.5`
10+
- update `@angular/common` to `^9.0.0-rc.5`
11+
- update `@angular/compiler` to `^9.0.0-rc.5`
12+
- update `@angular/core` to `^9.0.0-rc.5`
13+
- update `@angular/forms` to `^9.0.0-rc.5`
14+
- update `@angular/platform-browser` to `^9.0.0-rc.5`
15+
- update `@angular/platform-browser-dynamic` to `^9.0.0-rc.5`
16+
- update `@angular/router` to `^9.0.0-rc.5`
17+
- update `core-js` to `^2.6.11`
18+
- update `@angular-devkit/build-angular` to `^0.900.0-rc.5`
19+
- update `@angular-devkit/build-ng-packagr` to `^0.900.0-rc.5`
20+
- update `@angular/cli` to `^9.0.0-rc.5`
21+
- update `@angular/compiler-cli` to `^9.0.0-rc.5`
22+
- update `@angular/language-service` to `^9.0.0-rc.5`
23+
- update `@types/jasmine` to `^3.5.0`
24+
- update `@types/node` to `^12.12.17`
25+
- update `karma-coverage-istanbul-reporter` to `^2.1.1`
26+
- update `ng-packagr` to `^9.0.0-rc.3`
27+
- update `ts-node` to `^8.5.4`
28+
- update `tslint` to `^5.20.1`
29+
330
##### `v2.7.0`
431
- chore: upgrade to Angular 9 - see also:
532
- `https://next.angular.io/guide/updating-to-version-9`

README.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
# [@coreui/angular](https://coreui.io/angular)
22

3-
[![@coreui angular](https://img.shields.io/badge/@coreui%20-angular-lightgrey.svg?style=flat-square)](https://github.com/coreui/angular)
4-
[![npm package][npm-coreui-angular-badge]][npm-coreui-angular]
5-
[![NPM downloads][npm-coreui-angular-download]][npm-coreui-angular]
6-
[![@coreui angular-next](https://img.shields.io/badge/@coreui%20-angular@next-lightgrey.svg?style=flat-square)](https://github.com/coreui/coreui-angular)
7-
[![npm-coreui-angular-next][npm-coreui-angular-next]][npm-coreui-angular]
3+
[![npm package][npm-coreui-angular-badge-latest]][npm-coreui-angular]
4+
[![NPM downloads][npm-coreui-angular-download]][npm-coreui-angular]
5+
[![npm-coreui-angular-next][npm-coreui-angular-badge-next]][npm-coreui-angular]
86
[![@coreui coreui](https://img.shields.io/badge/@coreui%20-coreui-lightgrey.svg?style=flat-square)](https://github.com/coreui/coreui)
97
[![npm package][npm-coreui-badge]][npm-coreui]
108
[![NPM downloads][npm-coreui-download]][npm-coreui]
11-
![angular](https://img.shields.io/badge/angular-^9.0.0%20rc.0-lightgrey.svg?style=flat-square)
9+
![angular](https://img.shields.io/badge/angular-^9.0.0--rc.5-lightgrey.svg?style=flat-square&logo=angular)
1210

1311
[npm-coreui-angular]: https://www.npmjs.com/package/@coreui/angular
14-
[npm-coreui-angular-badge]: https://img.shields.io/npm/v/@coreui/angular.png?style=flat-square
12+
[npm-coreui-angular-badge-latest]: https://img.shields.io/npm/v/@coreui/angular/latest?style=flat-square&color=red
13+
[npm-coreui-angular-badge-next]: https://img.shields.io/npm/v/@coreui/angular/next?style=flat-square&color=red
1514
[npm-coreui-angular-download]: https://img.shields.io/npm/dm/@coreui/angular.svg?style=flat-square
16-
[npm-coreui-angular-next]: https://img.shields.io/npm/v/@coreui/angular/next.png?style=flat-square
15+
[npm-coreui-angular-next]: https://img.shields.io/npm/v/@coreui/angular/next?style=flat-square
1716
[npm-coreui]: https://www.npmjs.com/package/@coreui/coreui
1817
[npm-coreui-badge]: https://img.shields.io/npm/v/@coreui/coreui.png?style=flat-square
1918
[npm-coreui-download]: https://img.shields.io/npm/dm/@coreui/coreui.svg?style=flat-square
@@ -57,7 +56,7 @@ CoreUI is an Open Source UI Kit built on top of Bootstrap 4. CoreUI is the faste
5756
Before you begin, make sure your development environment includes `Node.js®` and an `npm` package manager.
5857

5958
###### Node.js
60-
Angular 8 requires `Node.js` version 12.x
59+
Angular 9 requires `Node.js` version 12.x
6160

6261
- To check your version, run `node -v` in a terminal/console window.
6362
- To get `Node.js`, go to [nodejs.org](https://nodejs.org/).
@@ -68,7 +67,7 @@ Install the Angular CLI globally using a terminal/console window.
6867
npm install -g @angular/cli
6968
```
7069

71-
##### Update to Angular 8
70+
##### Update to Angular 9
7271
see: [https://update.angular.io](https://update.angular.io)
7372

7473
## CoreUI Installation

dist/@coreui/angular/esm2015/lib/sidebar/app-sidebar-nav.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/@coreui/angular/esm5/lib/sidebar/app-sidebar-nav.js

Lines changed: 1 addition & 1 deletion
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.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { QueryParamsHandling } from '@angular/router';
21
export interface INavAttributes {
32
[propName: string]: any;
43
}
@@ -20,7 +19,7 @@ export interface INavLinkProps {
2019
[k: string]: any;
2120
};
2221
fragment?: string;
23-
queryParamsHandling?: QueryParamsHandling;
22+
queryParamsHandling?: 'merge' | 'preserve' | '';
2423
preserveFragment?: boolean;
2524
skipLocationChange?: boolean;
2625
replaceUrl?: boolean;

dist/@coreui/angular/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/angular",
3-
"version": "2.7.0",
3+
"version": "2.7.1",
44
"description": "CoreUI Angular Bootstrap 4 components",
55
"license": "MIT",
66
"homepage": "https://coreui.io/angular",
@@ -17,9 +17,9 @@
1717
}
1818
],
1919
"peerDependencies": {
20-
"@angular/common": "^9.0.0-rc.0",
21-
"@angular/core": "^9.0.0-rc.0",
22-
"@angular/router": "^9.0.0-rc.0",
20+
"@angular/common": "^9.0.0-rc.5",
21+
"@angular/core": "^9.0.0-rc.5",
22+
"@angular/router": "^9.0.0-rc.5",
2323
"@coreui/coreui": "^2.1.16",
2424
"tslib": "^1.10.0"
2525
},

0 commit comments

Comments
 (0)