Skip to content

Commit c0320ac

Browse files
committed
chore(version): bump to v0.6.6
1 parent f5b6f30 commit c0320ac

File tree

11 files changed

+9536
-15
lines changed

11 files changed

+9536
-15
lines changed

.bmp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
version: 0.6.5
2+
version: 0.6.6
33
commit: 'chore(version): bump to v%.%.%'
44
files:
55
src/core.js: 'version: "%.%.%"'

c3.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*-- Chart --*/
22
.c3 svg {
33
font: 10px sans-serif;
4-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
4+
-webkit-tap-highlight-color: transparent; }
55

66
.c3 path, .c3 line {
77
fill: none;

c3.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* @license C3.js v0.6.5 | (c) C3 Team and other contributors | http://c3js.org/ */
1+
/* @license C3.js v0.6.6 | (c) C3 Team and other contributors | http://c3js.org/ */
22
(function (global, factory) {
33
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
44
typeof define === 'function' && define.amd ? define(factory) :
@@ -1008,7 +1008,7 @@
10081008
};
10091009

10101010
var c3 = {
1011-
version: "0.6.5",
1011+
version: "0.6.6",
10121012
chart: {
10131013
fn: Chart.prototype,
10141014
internal: {
@@ -5022,7 +5022,6 @@
50225022
main = $$.main,
50235023
arcs,
50245024
mainArc,
5025-
backgroundArc,
50265025
arcLabelLines,
50275026
mainArcLabelLine,
50285027
hasGaugeType = $$.hasType('gauge');
@@ -5167,10 +5166,11 @@
51675166

51685167
if (hasGaugeType) {
51695168
var index = 0;
5170-
backgroundArc = $$.arcs.select('g.' + CLASS.chartArcsBackground).selectAll('path.' + CLASS.chartArcsBackground).data($$.data.targets);
5169+
var backgroundArc = $$.arcs.select('g.' + CLASS.chartArcsBackground).selectAll('path.' + CLASS.chartArcsBackground).data($$.data.targets);
5170+
51715171
backgroundArc.enter().append("path").attr("class", function (d, i) {
51725172
return CLASS.chartArcsBackground + ' ' + CLASS.chartArcsBackground + '-' + i;
5173-
}).attr("d", function (d1) {
5173+
}).merge(backgroundArc).attr("d", function (d1) {
51745174
if ($$.hiddenTargetIds.indexOf(d1.id) >= 0) {
51755175
return "M 0 0";
51765176
}
@@ -5183,6 +5183,7 @@
51835183
};
51845184
return $$.getArc(d, true, true);
51855185
});
5186+
51865187
backgroundArc.exit().remove();
51875188

51885189
$$.arcs.select('.' + CLASS.chartArcsGaugeUnit).attr("dy", ".75em").text(config.gauge_label_show ? config.gauge_units : '');

c3.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "c3",
33
"repo": "masayuki0812/c3",
44
"description": "A D3-based reusable chart library",
5-
"version": "0.6.5",
5+
"version": "0.6.6",
66
"keywords": [],
77
"dependencies": {
88
"mbostock/d3": "v5.0.0"

docs/css/c3.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*-- Chart --*/
22
.c3 svg {
33
font: 10px sans-serif;
4-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
4+
-webkit-tap-highlight-color: transparent; }
55

66
.c3 path, .c3 line {
77
fill: none;

docs/css/c3.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)