Skip to content

Commit ada9236

Browse files
committed
chore: update [email protected] imports
- app.module - chartjs.module - dashboard.module - widgets.module
1 parent 6a07bb0 commit ada9236

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- refactor(app.routing): lazy loading via dynamic import()
55
- refactor(modals): `ViewChild` second parameter
66
- refactor(tsconfig): "module: "esnext", "target": "es6"
7+
- chore: update `[email protected]` imports
78
- chore(tslint): remove undefined rules
89
- update: Angular to `v8.0.0`
910
- update: `@angular/animations` to `^8.0.0`
@@ -17,6 +18,7 @@
1718
- update: `@angular/router` to `^8.0.0`
1819
- update: `@coreui/coreui` to `^2.1.11`
1920
- update: `core-js` to `^2.6.9`
21+
- update: `ng2-charts` to `^2.3.0`
2022
- update: `rxjs` to `^6.5.2`
2123
- update: `tsickle` to `^0.35.0`
2224
- update: `tslib` to `^1.9.3`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"font-awesome": "^4.7.0",
4848
"moment": "^2.24.0",
4949
"mutationobserver-shim": "^0.3.3",
50-
"ng2-charts": "^1.6.0",
50+
"ng2-charts": "^2.3.0",
5151
"ngx-bootstrap": "^3.3.0",
5252
"ngx-perfect-scrollbar": "^7.2.1",
5353
"rxjs": "^6.5.2",

src/app/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import { AppRoutingModule } from './app.routing';
3838
// Import 3rd party components
3939
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
4040
import { TabsModule } from 'ngx-bootstrap/tabs';
41-
import { ChartsModule } from 'ng2-charts/ng2-charts';
41+
import { ChartsModule } from 'ng2-charts';
4242

4343
@NgModule({
4444
imports: [

src/app/views/chartjs/chartjs.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { NgModule } from '@angular/core';
2-
import { ChartsModule } from 'ng2-charts/ng2-charts';
2+
import { ChartsModule } from 'ng2-charts';
33

44
import { ChartJSComponent } from './chartjs.component';
55
import { ChartJSRoutingModule } from './chartjs-routing.module';

src/app/views/dashboard/dashboard.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { NgModule } from '@angular/core';
22
import { FormsModule } from '@angular/forms';
3-
import { ChartsModule } from 'ng2-charts/ng2-charts';
3+
import { ChartsModule } from 'ng2-charts';
44
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
55
import { ButtonsModule } from 'ngx-bootstrap/buttons';
66

src/app/views/widgets/widgets.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { NgModule } from '@angular/core';
2-
import { ChartsModule } from 'ng2-charts/ng2-charts';
2+
import { ChartsModule } from 'ng2-charts';
33
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
44

55
import { WidgetsComponent } from './widgets.component';

0 commit comments

Comments
 (0)