Skip to content

Commit

Permalink
chore(version): bump to v0.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Jul 24, 2018
1 parent f5b6f30 commit c0320ac
Show file tree
Hide file tree
Showing 11 changed files with 9,536 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .bmp.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: 0.6.5
version: 0.6.6
commit: 'chore(version): bump to v%.%.%'
files:
src/core.js: 'version: "%.%.%"'
Expand Down
2 changes: 1 addition & 1 deletion c3.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*-- Chart --*/
.c3 svg {
font: 10px sans-serif;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
-webkit-tap-highlight-color: transparent; }

.c3 path, .c3 line {
fill: none;
Expand Down
11 changes: 6 additions & 5 deletions c3.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* @license C3.js v0.6.5 | (c) C3 Team and other contributors | http://c3js.org/ */
/* @license C3.js v0.6.6 | (c) C3 Team and other contributors | http://c3js.org/ */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
Expand Down Expand Up @@ -1008,7 +1008,7 @@
};

var c3 = {
version: "0.6.5",
version: "0.6.6",
chart: {
fn: Chart.prototype,
internal: {
Expand Down Expand Up @@ -5022,7 +5022,6 @@
main = $$.main,
arcs,
mainArc,
backgroundArc,
arcLabelLines,
mainArcLabelLine,
hasGaugeType = $$.hasType('gauge');
Expand Down Expand Up @@ -5167,10 +5166,11 @@

if (hasGaugeType) {
var index = 0;
backgroundArc = $$.arcs.select('g.' + CLASS.chartArcsBackground).selectAll('path.' + CLASS.chartArcsBackground).data($$.data.targets);
var backgroundArc = $$.arcs.select('g.' + CLASS.chartArcsBackground).selectAll('path.' + CLASS.chartArcsBackground).data($$.data.targets);

backgroundArc.enter().append("path").attr("class", function (d, i) {
return CLASS.chartArcsBackground + ' ' + CLASS.chartArcsBackground + '-' + i;
}).attr("d", function (d1) {
}).merge(backgroundArc).attr("d", function (d1) {
if ($$.hiddenTargetIds.indexOf(d1.id) >= 0) {
return "M 0 0";
}
Expand All @@ -5183,6 +5183,7 @@
};
return $$.getArc(d, true, true);
});

backgroundArc.exit().remove();

$$.arcs.select('.' + CLASS.chartArcsGaugeUnit).attr("dy", ".75em").text(config.gauge_label_show ? config.gauge_units : '');
Expand Down
4 changes: 2 additions & 2 deletions c3.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "c3",
"repo": "masayuki0812/c3",
"description": "A D3-based reusable chart library",
"version": "0.6.5",
"version": "0.6.6",
"keywords": [],
"dependencies": {
"mbostock/d3": "v5.0.0"
Expand Down
2 changes: 1 addition & 1 deletion docs/css/c3.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*-- Chart --*/
.c3 svg {
font: 10px sans-serif;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
-webkit-tap-highlight-color: transparent; }

.c3 path, .c3 line {
fill: none;
Expand Down
1 change: 1 addition & 0 deletions docs/css/c3.min.css

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

Loading

0 comments on commit c0320ac

Please sign in to comment.