Skip to content

Commit a9cb2e4

Browse files
authored
Merge pull request #95 from coreui/dev-v2.7.2
v2.7.2
2 parents e745894 + 581e7d4 commit a9cb2e4

23 files changed

+461
-400
lines changed

CHANGELOG.md

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

3+
##### `v2.7.2`
4+
- fix(sidebar-nav): AppSidebarNavLabelComponent is not exported in the AppSidebarModule - thanks @zwiras #63
5+
6+
###### dependencies update
7+
- update `@angular/animations` to `^9.0.0-rc.7`
8+
- update `@angular/common` to `^9.0.0-rc.7`
9+
- update `@angular/compiler` to `^9.0.0-rc.7`
10+
- update `@angular/core` to `^9.0.0-rc.7`
11+
- update `@angular/forms` to `^9.0.0-rc.7`
12+
- update `@angular/platform-browser` to `^9.0.0-rc.7`
13+
- update `@angular/platform-browser-dynamic` to `^9.0.0-rc.7`
14+
- update `@angular/router` to `^9.0.0-rc.7`
15+
- update `@angular-devkit/build-angular` to `^0.900.0-rc.7`
16+
- update `@angular-devkit/build-ng-packagr` to `^0.900.0-rc.7`
17+
- update `@angular/cli` to `^9.0.0-rc.7`
18+
- update `@angular/compiler-cli` to `^9.0.0-rc.7`
19+
- update `@angular/language-service` to `^9.0.0-rc.7`
20+
- update `@types/node` to `^12.12.21`
21+
- update `codelyzer` to `^5.2.1`
22+
323
##### `v2.7.1`
424
- fix(sidebar-nav): @angular/router has no exported member QueryParamsHandling, see:
525
- https://github.com/angular/angular/issues/30925

dist/@coreui/angular/README.md

Lines changed: 41 additions & 13 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-^8.2.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
@@ -26,7 +25,7 @@
2625
Before you begin, make sure your development environment includes `Node.js®` and an `npm` package manager.
2726

2827
###### Node.js
29-
Angular requires `Node.js` version 8.x or 10.x.
28+
Angular 9 requires `Node.js` version 12.x
3029

3130
- To check your version, run `node -v` in a terminal/console window.
3231
- To get `Node.js`, go to [nodejs.org](https://nodejs.org/).
@@ -37,10 +36,39 @@ Install the Angular CLI globally using a terminal/console window.
3736
npm install -g @angular/cli
3837
```
3938

40-
### Installation
41-
Go to the workspace folder and install `@coreui/angular` as a dependency.
42-
```bash
43-
npm install @coreui/angular
39+
##### Update to Angular 9
40+
see: [https://update.angular.io](https://update.angular.io)
41+
42+
## CoreUI Installation
43+
44+
Several options are available:
45+
46+
### Clone repo
47+
48+
``` bash
49+
$ git clone https://github.com/coreui/coreui-angular.git
50+
```
51+
52+
### NPM
53+
54+
``` bash
55+
$ npm install @coreui/angular --save
56+
```
57+
58+
### Yarn
59+
60+
``` bash
61+
$ yarn add @coreui/angular
62+
```
63+
64+
## Usage
65+
66+
### CSS
67+
68+
Copy-paste the stylesheet `<link>` into your `<head>` before all other stylesheets to load our CSS.
69+
70+
``` html
71+
<link rel="stylesheet" href="node_modules/@coreui/coreui/dist/css/coreui.min.css">
4472
```
4573

4674
### Changelog

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

Lines changed: 7 additions & 6 deletions
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

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/bundles/coreui-angular.umd.min.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/bundles/coreui-angular.umd.min.js.map

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/coreui-angular.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ export { AppSidebarFormComponent as ɵm } from './lib/sidebar/app-sidebar-form.c
1111
export { AppSidebarHeaderComponent as ɵn } from './lib/sidebar/app-sidebar-header.component';
1212
export { AppSidebarMinimizerComponent as ɵo } from './lib/sidebar/app-sidebar-minimizer.component';
1313
export { AppSidebarNavComponent as ɵr } from './lib/sidebar/app-sidebar-nav.component';
14-
export { NavDropdownDirective as ɵx, NavDropdownToggleDirective as ɵy } from './lib/sidebar/app-sidebar-nav.directive';
14+
export { NavDropdownDirective as ɵy, NavDropdownToggleDirective as ɵz } from './lib/sidebar/app-sidebar-nav.directive';
1515
export { SidebarNavHelper as ɵq } from './lib/sidebar/app-sidebar-nav.service';
1616
export { AppSidebarNavBadgePipe as ɵbb } from './lib/sidebar/app-sidebar-nav/app-sidebar-nav-badge.pipe';
1717
export { AppSidebarNavDividerComponent as ɵs } from './lib/sidebar/app-sidebar-nav/app-sidebar-nav-divider.component';
1818
export { AppSidebarNavDropdownComponent as ɵt } from './lib/sidebar/app-sidebar-nav/app-sidebar-nav-dropdown.component';
1919
export { AppSidebarNavIconPipe as ɵba } from './lib/sidebar/app-sidebar-nav/app-sidebar-nav-icon.pipe';
2020
export { AppSidebarNavItemClassPipe as ɵbd } from './lib/sidebar/app-sidebar-nav/app-sidebar-nav-item-class.pipe';
2121
export { AppSidebarNavItemsComponent as ɵp } from './lib/sidebar/app-sidebar-nav/app-sidebar-nav-items.component';
22-
export { AppSidebarNavLabelComponent as ɵz } from './lib/sidebar/app-sidebar-nav/app-sidebar-nav-label.component';
23-
export { AppSidebarNavLinkComponent as ɵv, AppSidebarNavLinkContentComponent as ɵu } from './lib/sidebar/app-sidebar-nav/app-sidebar-nav-link.component';
22+
export { AppSidebarNavLabelComponent as ɵu } from './lib/sidebar/app-sidebar-nav/app-sidebar-nav-label.component';
23+
export { AppSidebarNavLinkComponent as ɵw, AppSidebarNavLinkContentComponent as ɵv } from './lib/sidebar/app-sidebar-nav/app-sidebar-nav-link.component';
2424
export { AppSidebarNavLinkPipe as ɵbc } from './lib/sidebar/app-sidebar-nav/app-sidebar-nav-link.pipe';
25-
export { AppSidebarNavTitleComponent as ɵw } from './lib/sidebar/app-sidebar-nav/app-sidebar-nav-title.component';
25+
export { AppSidebarNavTitleComponent as ɵx } from './lib/sidebar/app-sidebar-nav/app-sidebar-nav-title.component';
2626
export { AppSidebarService as ɵk } from './lib/sidebar/app-sidebar.service';

dist/@coreui/angular/coreui-angular.metadata.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)