File tree 8 files changed +19
-23
lines changed
8 files changed +19
-23
lines changed Original file line number Diff line number Diff line change 1
1
## [ vue] ( ./README.md ) version ` changelog `
2
2
3
+ ##### ` v2.0.0-beta.3 `
4
+ - refactor: ` getStyles() ` back to ` @coreui/coreui ` version ` ^2.0.2 `
5
+ - fix(Dashboard): ` width ` card-line* -chart-example ` ie ` issue
6
+
3
7
##### ` v2.0.0-beta.2 `
4
8
- refactor: ` HeaderDropdown ` with new slots ` header ` and ` dropdown ` * breaking change*
5
9
- chore: update ` @coreui/vue ` to ` 2.0.0-beta.1 `
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @coreui/coreui-free-vue-admin-template" ,
3
- "version" : " 2.0.0-beta.2 " ,
3
+ "version" : " 2.0.0-beta.3 " ,
4
4
"description" : " Open Source Bootstrap Admin Template" ,
5
5
"author" : " Łukasz Holeczek" ,
6
6
"homepage" : " http://coreui.io" ,
17
17
"build" : " node build/build.js"
18
18
},
19
19
"dependencies" : {
20
- "@coreui/coreui" : " ^2.0.1 " ,
20
+ "@coreui/coreui" : " ^2.0.2 " ,
21
21
"@coreui/coreui-plugin-chartjs-custom-tooltips" : " ^1.2.0" ,
22
22
"@coreui/icons" : " ^0.2.0" ,
23
23
"@coreui/vue" : " ^2.0.0-beta.1" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 16
16
<h4 class =" mb-0" >9.823</h4 >
17
17
<p >Members online</p >
18
18
</b-card-body >
19
- <card-line1-chart-example chartId =" card-chart-01" class =" chart-wrapper px-3" style =" height :70px ;" height =" 70" />
19
+ <card-line1-chart-example chartId =" card-chart-01" class =" chart-wrapper px-3" style =" height :70px ;" : height =" 70" />
20
20
</b-card >
21
21
</b-col >
22
22
<b-col sm =" 6" lg =" 3" >
34
34
<h4 class =" mb-0" >9.823</h4 >
35
35
<p >Members online</p >
36
36
</b-card-body >
37
- <card-line2-chart-example chartId =" card-chart-02" class =" chart-wrapper px-3" style =" height :70px ;" height =" 70" />
37
+ <card-line2-chart-example chartId =" card-chart-02" class =" chart-wrapper px-3" style =" height :70px ;" : height =" 70" />
38
38
</b-card >
39
39
</b-col >
40
40
<b-col sm =" 6" lg =" 3" >
@@ -568,3 +568,10 @@ export default {
568
568
}
569
569
}
570
570
</script >
571
+
572
+ <style >
573
+ /* IE fix */
574
+ #card-chart-01 , #card-chart-02 {
575
+ width : 100% !important ;
576
+ }
577
+ </style >
Original file line number Diff line number Diff line change 1
1
<script >
2
2
import { Line } from ' vue-chartjs'
3
3
import { CustomTooltips } from ' @coreui/coreui-plugin-chartjs-custom-tooltips'
4
- // import { getStyle } from '@coreui/coreui/dist/js/coreui-utilities'
5
- import getStyle from ' ../../utils/getStyle'
4
+ import { getStyle } from ' @coreui/coreui/dist/js/coreui-utilities'
6
5
7
6
export default {
8
7
components: {
Original file line number Diff line number Diff line change 1
1
<script >
2
2
import { Line } from ' vue-chartjs'
3
3
import { CustomTooltips } from ' @coreui/coreui-plugin-chartjs-custom-tooltips'
4
- // import { getStyle } from '@coreui/coreui/dist/js/coreui-utilities'
5
- import getStyle from ' ../../utils/getStyle'
4
+ import { getStyle } from ' @coreui/coreui/dist/js/coreui-utilities'
6
5
7
6
export default {
8
7
extends: Line,
Original file line number Diff line number Diff line change 1
1
<script >
2
2
import { Line } from ' vue-chartjs'
3
3
import { CustomTooltips } from ' @coreui/coreui-plugin-chartjs-custom-tooltips'
4
- // import { getStyle } from '@coreui/coreui/dist/js/coreui-utilities'
5
- import getStyle from ' ../../utils/getStyle'
4
+ import { getStyle } from ' @coreui/coreui/dist/js/coreui-utilities'
6
5
7
6
export default {
8
7
extends: Line,
Original file line number Diff line number Diff line change 1
1
<script >
2
2
import { Line } from ' vue-chartjs'
3
- // import { getStyle, hexToRgba } from '@coreui/coreui/dist/js/coreui-utilities'
4
- import { hexToRgba } from ' @coreui/coreui/dist/js/coreui-utilities'
3
+ import { getStyle , hexToRgba } from ' @coreui/coreui/dist/js/coreui-utilities'
5
4
import { CustomTooltips } from ' @coreui/coreui-plugin-chartjs-custom-tooltips'
6
- import getStyle from ' ../../utils/getStyle'
7
5
8
6
function random (min , max ) {
9
7
return Math .floor (Math .random () * (max - min + 1 ) + min)
You can’t perform that action at this time.
0 commit comments