Skip to content

Commit 71bfd46

Browse files
authored
Merge pull request #832 from epicmaxco/develop
2 parents 057d548 + 951e518 commit 71bfd46

File tree

8 files changed

+1916
-3031
lines changed

8 files changed

+1916
-3031
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
"leaflet-map": "^0.2.1",
2525
"medium-editor": "^5.23.3",
2626
"register-service-worker": "^1.7.1",
27-
"vue": "^3.0.0",
27+
"vue": "^3.2.0",
2828
"vue-chartjs": "^3.5.1",
2929
"vue-gtm": "^3.2.1",
3030
"vue-i18n": "^9.0.0",
3131
"vue-router": "^4.0.0-0",
3232
"vue-yandex-maps": "^0.10.9",
33-
"vuestic-ui": "^1.1.0",
33+
"vuestic-ui": "^1.2.8",
3434
"vuex": "^4.0.0-0"
3535
},
3636
"devDependencies": {
@@ -46,15 +46,15 @@
4646
"@vue/cli-plugin-unit-jest": "~4.5.0",
4747
"@vue/cli-plugin-vuex": "~4.5.0",
4848
"@vue/cli-service": "~4.5.0",
49-
"@vue/compiler-sfc": "^3.0.0",
49+
"@vue/compiler-sfc": "^3.2.0",
5050
"@vue/eslint-config-typescript": "^5.0.2",
5151
"@vue/test-utils": "^2.0.0-0",
5252
"eslint": "^6.7.2",
5353
"eslint-plugin-vue": "^7.0.0-0",
5454
"lint-staged": "^9.5.0",
55-
"node-sass": "^4.12.0",
56-
"sass-loader": "^7.3.1",
57-
"typescript": "~3.9.3",
55+
"sass": "^1.41.1",
56+
"sass-loader": "^8.0.2",
57+
"typescript": "^4.3.5",
5858
"vue-jest": "^5.0.0-0"
5959
},
6060
"lint-staged": {

src/components/va-charts/chart-types/BubbleChart.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import { Bubble } from 'vue-chartjs'
22
import chartMixin from './chartMixin'
33

44
export default {
5-
mixins: [chartMixin, Bubble],
5+
mixins: [Bubble, chartMixin],
66
}

src/components/va-charts/chart-types/DonutChart.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import { Doughnut } from 'vue-chartjs'
22
import chartMixin from './chartMixin'
33

44
export default {
5-
mixins: [chartMixin, Doughnut],
5+
mixins: [Doughnut, chartMixin],
66
}

src/components/va-charts/chart-types/HorizontalBarChart.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import { HorizontalBar } from 'vue-chartjs'
22
import chartMixin from './chartMixin'
33

44
export default {
5-
mixins: [chartMixin, HorizontalBar],
5+
mixins: [HorizontalBar, chartMixin],
66
}

src/components/va-charts/chart-types/LineChart.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import { Line } from 'vue-chartjs'
22
import chartMixin from './chartMixin.js'
33

44
export default {
5-
mixins: [chartMixin, Line],
5+
mixins: [Line, chartMixin],
66
}

src/components/va-charts/chart-types/PieChart.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import { Pie } from 'vue-chartjs'
22
import chartMixin from './chartMixin.js'
33

44
export default {
5-
mixins: [chartMixin, Pie],
5+
mixins: [Pie, chartMixin],
66
}

src/components/va-charts/chart-types/VerticalBarChart.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import { Bar } from 'vue-chartjs'
22
import chartMixin from './chartMixin.js'
33

44
export default {
5-
mixins: [chartMixin, Bar],
5+
mixins: [Bar, chartMixin],
66
}

yarn.lock

Lines changed: 1904 additions & 3019 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)