Skip to content

Commit e3f1f80

Browse files
committed
chore(dependencies): update @coreui/utils to version ^2.0.0
imports update required 💥 ❗ - from `import {getStyle, ...} from '@coreui/utils/src` - to `import {getStyle, ...} from '@coreui/utils`
1 parent a4ded38 commit e3f1f80

File tree

8 files changed

+22
-18
lines changed

8 files changed

+22
-18
lines changed

Diff for: CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
---
44

5+
#### `4.3.next`
6+
7+
chore(dependencies): update `@coreui/utils` to version `^2.0.0`
8+
9+
imports update required :boom: :exclamation:
10+
- from `import {getStyle, ...} from '@coreui/utils/src`
11+
- to `import {getStyle, ...} from '@coreui/utils`
12+
13+
---
14+
515
#### `4.3.9`
616

717
- chore: dependencies update

Diff for: package-lock.json

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

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@coreui/coreui": "~4.2.6",
3131
"@coreui/icons": "^3.0.0",
3232
"@coreui/icons-angular": "~4.3.9",
33-
"@coreui/utils": "^1.3.1",
33+
"@coreui/utils": "^2.0.0",
3434
"chart.js": "^3.9.1",
3535
"ngx-perfect-scrollbar": "^10.1.1",
3636
"rxjs": "~7.8.0",

Diff for: src/app/views/dashboard/dashboard-charts-data.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Injectable } from '@angular/core';
2-
import { getStyle, hexToRgba } from '@coreui/utils/src';
2+
import { getStyle, hexToRgba } from '@coreui/utils';
33

44
export interface IChartProps {
55
data?: any;

Diff for: src/app/views/theme/colors.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { AfterViewInit, Component, HostBinding, Inject, Input, OnInit, Renderer2 } from '@angular/core';
22
import { DOCUMENT } from '@angular/common';
33

4-
import { getStyle, rgbToHex } from '@coreui/utils/src';
4+
import { getStyle, rgbToHex } from '@coreui/utils';
55

66
@Component({
77
templateUrl: 'colors.component.html'

Diff for: src/app/views/widgets/widgets-dropdown/widgets-dropdown.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
OnInit,
88
ViewChild
99
} from '@angular/core';
10-
import { getStyle } from '@coreui/utils/src';
10+
import { getStyle } from '@coreui/utils';
1111
import { ChartjsComponent } from '@coreui/angular-chartjs';
1212

1313
@Component({

Diff for: src/app/views/widgets/widgets-e/widgets-e.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { AfterContentInit, ChangeDetectionStrategy, ChangeDetectorRef, Component } from '@angular/core';
2-
import { getStyle } from '@coreui/utils/src';
2+
import { getStyle } from '@coreui/utils';
33

44
@Component({
55
selector: 'app-widgets-e',

Diff for: src/declarations.d.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
declare module '@coreui/utils/src';
2-
31
declare module '@coreui/chartjs/dist/js/coreui-chartjs.js';
42

53
declare module '*.json' {

0 commit comments

Comments
 (0)