Skip to content

Commit 17bf2d9

Browse files
committed
- Update dependency
- Fix animation class - Fix Echart Donut Chart in charts page - Update changelog
1 parent 0704b85 commit 17bf2d9

File tree

6 files changed

+189
-322
lines changed

6 files changed

+189
-322
lines changed

changelog.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# Changelog
2+
## [v2.1.1]
3+
4+
### Updated
5+
6+
- Update dependency
7+
- Fix animation class
8+
- Fix Echart Donut Chart in charts page
29

310
## [v2.1.0]
411

package.json

+19-19
Original file line numberDiff line numberDiff line change
@@ -9,33 +9,33 @@
99
"start": "node server.js"
1010
},
1111
"dependencies": {
12-
"animate.css": "^3.6.1",
13-
"apexcharts": "^3.8.6",
12+
"animate.css": "^4.1.0",
13+
"apexcharts": "^3.19.3",
1414
"awesome-bootstrap-checkbox": "^1.0.1",
15-
"bootstrap": "^4.1.1",
16-
"bootstrap-vue": "2.0.3",
17-
"css-loader": "^1.0.0",
18-
"echarts": "^4.3.0",
15+
"bootstrap": "^4.5.0",
16+
"bootstrap-vue": "2.15.0",
17+
"css-loader": "^1.0.1",
18+
"echarts": "^4.8.0",
1919
"expose-loader": "^0.7.5",
2020
"font-awesome": "4.7.0",
2121
"glyphicons-halflings": "^1.9.1",
22-
"highcharts": "^7.2.0",
22+
"highcharts": "^7.2.1",
2323
"highcharts-vue": "^1.3.5",
2424
"imports-loader": "^0.8.0",
2525
"line-awesome": "1.3.0",
26-
"node-sass": "^4.9.0",
27-
"rickshaw": "1.6.6",
28-
"sass-loader": "^7.0.1",
29-
"vue": "^2.5.17",
30-
"vue-apexcharts": "^1.5.0",
31-
"vue-echarts": "^4.0.4",
32-
"vue-router": "^3.0.1",
33-
"vue-toasted": "^1.1.27",
26+
"node-sass": "^4.14.1",
27+
"rickshaw": "1.7.1",
28+
"sass-loader": "^7.3.1",
29+
"vue": "^2.6.11",
30+
"vue-apexcharts": "^1.6.0",
31+
"vue-echarts": "^4.1.0",
32+
"vue-router": "^3.3.4",
33+
"vue-toasted": "^1.1.28",
3434
"vue-touch": "2.0.0-beta.4",
35-
"vue2-google-maps": "^0.10.2",
36-
"vuetrend": "^0.3.2",
37-
"vuex": "^3.0.1",
38-
"webpack-cli": "^3.1.2"
35+
"vue2-google-maps": "^0.10.7",
36+
"vuetrend": "^0.3.4",
37+
"vuex": "^3.5.1",
38+
"webpack-cli": "^3.3.12"
3939
},
4040
"devDependencies": {
4141
"@babel/plugin-proposal-optional-chaining": "^7.7.5",

src/components/Header/Header.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<b-nav class="ml-auto">
4545
<b-nav-item-dropdown
4646
class="notificationsMenu d-md-down-none mr-2"
47-
menu-class="notificationsWrapper py-0 animated animated-fast fadeIn"
47+
menu-class="notificationsWrapper py-0 animate__animated animate__animated-fast animate__fadeIn"
4848
right>
4949
<template slot="button-content">
5050
<span class="avatar rounded-circle thumb-sm float-left mr-2">
@@ -63,7 +63,7 @@
6363
<b-dropdown-divider />
6464
<b-dropdown-item>Calendar</b-dropdown-item>
6565
<b-dropdown-item>
66-
Inbox &nbsp;&nbsp;<b-badge variant="danger" pill class="animated bounceIn">9</b-badge>
66+
Inbox &nbsp;&nbsp;<b-badge variant="danger" pill class="animate__animated animate__bounceIn">9</b-badge>
6767
</b-dropdown-item>
6868
<b-dropdown-divider />
6969
<b-dropdown-item-button @click="logout">

src/components/Helper/Helper.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
</a>
3434
<a role="button"
3535
target="_blank"
36-
href="https://github.com/flatlogic/sing-app"
36+
href="https://github.com/flatlogic/sing-app-vue-dashboard"
3737
class="btn btn-outline-default btn-rounded-f fs-mini text-muted d-flex align-items-center">
3838
<i class="fa fa-github mr-xs"></i>
3939
Github

src/pages/Charts/Charts.vue

+1
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ import Widget from "@/components/Widget/Widget";
102102
import {chartData, liveChart, liveChartInterval} from './mock';
103103
104104
import ECharts from 'vue-echarts/components/ECharts';
105+
import 'echarts/lib/chart/pie';
105106
import 'echarts/lib/chart/line';
106107
import 'echarts/lib/chart/themeRiver';
107108
import 'echarts/lib/component/tooltip';

0 commit comments

Comments
 (0)