Skip to content

Commit

Permalink
jui-chart library version updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
seogi1004 committed Mar 4, 2019
1 parent 68c23ff commit 196b5a5
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 19 deletions.
3 changes: 2 additions & 1 deletion dist/vue-graph.js
Expand Up @@ -22820,7 +22820,8 @@ exports.default = {
var style = this.getBarStyle(),
color = this.color(targetIndex),
value = this.getData(dataIndex)[this.brush.target[targetIndex]],
opacity = dataIndex === this.brush.active ? 1 : style.disableOpacity;
active = this.brush.active,
opacity = active === null || dataIndex === active ? 1 : style.disableOpacity;

return {
fill: color,
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-graph.min.js

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "vue-graph",
"productionName": "Vue Graph",
"version": "0.8.3",
"version": "0.8.4",
"description": "A library that provides various visualization elements for Vue.js",
"main": "src/main.js",
"files": [
Expand Down Expand Up @@ -61,7 +61,7 @@
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"juijs-chart": "2.5.8",
"juijs-chart": "2.5.9",
"vue": "^2.6.7"
}
}

0 comments on commit 196b5a5

Please sign in to comment.