Skip to content

Commit fce5b23

Browse files
committed
Ship: v2.4.0
1 parent b2e95ed commit fce5b23

File tree

6 files changed

+62
-30
lines changed

6 files changed

+62
-30
lines changed

CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
## [angular](./README.md) version `changelog`
22

3+
###### `v2.4.0`
4+
- fix(sidebar): navItems reassignment bug #126, #42
5+
- refactor(default-layout): use `cui-breadcrumb` instead of deprecated `app-breadcrumb` (migrate when ready)
6+
- fix(polyfills.ts): ie issues add `core-js/es7/array` and `core-js/es7/object`
7+
- update: `@angular/animations` to `^7.2.5`
8+
- update: `@angular/common` to `^7.2.5`
9+
- update: `@angular/compiler` to `^7.2.5`
10+
- update: `@angular/core` to `^7.2.5`
11+
- update: `@angular/forms` to `^7.2.5`
12+
- update: `@angular/http` to `^7.2.5`
13+
- update: `@angular/platform-browser` to `^7.2.5`
14+
- update: `@angular/platform-browser-dynamic` to `^7.2.5`
15+
- update: `@angular/router` to `^7.2.5`
16+
- update: `@coreui/angular` to `^2.4.1`
17+
- update: `bootstrap` to `^4.3.1`
18+
- update: `core-js` to `^2.6.5`
19+
- update: `moment` to `^2.24.0`
20+
- update: `ngx-bootstrap` to `^3.2.0`
21+
- update: `rxjs` to `^6.4.0`
22+
- update: `tsickle` to `^0.34.3`
23+
- update: `zone.js` to `^0.8.29`
24+
- update: `@angular-devkit/build-angular` to `^0.13.2`
25+
- update: `@angular/cli` to `^7.3.2`
26+
- update: `@angular/compiler-cli` to `^7.2.5`
27+
- update: `@angular/language-service` to `^7.2.5`
28+
- update: `@types/jasmine` to `^3.3.9`
29+
- update: `@types/node` to `^10.12.26`
30+
- update: `karma` to `^4.0.0`
31+
- update: `karma-coverage-istanbul-reporter` to `^2.0.5`
32+
333
###### `v2.2.4`
434
- refactor(colors): use 'DOCUMENT' of '@angular/common'
535
- refactor(default-layout): use 'DOCUMENT' of '@angular/common' #133 - thanks @damingerdai

e2e/app.po.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ export class CoreUIPage {
66
}
77

88
getParagraphText() {
9-
return element(by.tagName('footer')).getText();
9+
return element(by.className('app-footer')).getText();
1010
}
1111
}

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/coreui-free-angular-admin-template",
3-
"version": "2.2.4",
3+
"version": "2.4.0",
44
"description": "CoreUI Free Angular 2+ Admin Template",
55
"author": {
66
"name": "Łukasz Holeczek",
@@ -36,7 +36,7 @@
3636
"@angular/platform-browser": "^7.2.5",
3737
"@angular/platform-browser-dynamic": "^7.2.5",
3838
"@angular/router": "^7.2.5",
39-
"@coreui/angular": "^2.4.0",
39+
"@coreui/angular": "^2.4.1",
4040
"@coreui/coreui": "^2.1.6",
4141
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.2.0",
4242
"@coreui/icons": "0.3.0",

src/app/views/dashboard/dashboard.component.html

+26-26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
<div class="animated fadeIn">
22
<div class="row">
3+
<div class="col-sm-6 col-lg-3">
4+
<div class="card text-white bg-info">
5+
<div class="card-body pb-0">
6+
<button type="button" class="btn btn-transparent p-0 float-right">
7+
<i class="icon-location-pin"></i>
8+
</button>
9+
<div class="text-value">9.823</div>
10+
<div>Members online</div>
11+
</div>
12+
<div class="chart-wrapper mt-3 mx-3" style="height:70px;">
13+
<canvas baseChart class="chart"
14+
[datasets]="lineChart2Data"
15+
[labels]="lineChart2Labels"
16+
[options]="lineChart2Options"
17+
[colors]="lineChart2Colours"
18+
[legend]="lineChart2Legend"
19+
[chartType]="lineChart2Type"></canvas>
20+
</div>
21+
</div>
22+
</div><!--/.col-->
323
<div class="col-sm-6 col-lg-3">
424
<div class="card text-white bg-primary">
525
<div class="card-body pb-0">
@@ -19,32 +39,12 @@
1939
</div>
2040
<div class="chart-wrapper mt-3 mx-3" style="height:70px;">
2141
<canvas baseChart class="chart"
22-
[datasets]="lineChart1Data"
23-
[labels]="lineChart1Labels"
24-
[options]="lineChart1Options"
25-
[colors]="lineChart1Colours"
26-
[legend]="lineChart1Legend"
27-
[chartType]="lineChart1Type"></canvas>
28-
</div>
29-
</div>
30-
</div><!--/.col-->
31-
<div class="col-sm-6 col-lg-3">
32-
<div class="card text-white bg-info">
33-
<div class="card-body pb-0">
34-
<button type="button" class="btn btn-transparent p-0 float-right">
35-
<i class="icon-location-pin"></i>
36-
</button>
37-
<div class="text-value">9.823</div>
38-
<div>Members online</div>
39-
</div>
40-
<div class="chart-wrapper mt-3 mx-3" style="height:70px;">
41-
<canvas baseChart class="chart"
42-
[datasets]="lineChart2Data"
43-
[labels]="lineChart2Labels"
44-
[options]="lineChart2Options"
45-
[colors]="lineChart2Colours"
46-
[legend]="lineChart2Legend"
47-
[chartType]="lineChart2Type"></canvas>
42+
[datasets]="lineChart1Data"
43+
[labels]="lineChart1Labels"
44+
[options]="lineChart1Options"
45+
[colors]="lineChart1Colours"
46+
[legend]="lineChart1Legend"
47+
[chartType]="lineChart1Type"></canvas>
4848
</div>
4949
</div>
5050
</div><!--/.col-->

src/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
* CoreUI - Free Angular Admin Template
3-
* @version v2.2.1
3+
* @version v2.4.0
44
* @link https://coreui.io/angular/
55
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
66
* Licensed under MIT (https://coreui.io/license)

src/polyfills.ts

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ import 'core-js/es6/regexp';
3333
import 'core-js/es6/map';
3434
import 'core-js/es6/weak-map';
3535
import 'core-js/es6/set';
36+
import "core-js/es7/array";
37+
import "core-js/es7/object";
3638

3739
/** IE10 and IE11 requires the following for NgClass support on SVG elements */
3840
// import 'classlist.js'; // Run `npm install --save classlist.js`.

0 commit comments

Comments
 (0)