Skip to content

Commit

Permalink
chore(version): bump to v0.4.24 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Jul 23, 2018
1 parent 5ea8240 commit 2b7f8d9
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .bmp.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
version: 0.4.23
commit: 'chore(version): bump to v%.%.%'
version: 0.4.24
commit: 'chore(version): bump to v%.%.% [skip ci]'
files:
src/core.js: 'version: "%.%.%"'
package.json: '"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: transparent; }
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.c3 path, .c3 line {
fill: none;
Expand Down
10 changes: 4 additions & 6 deletions c3.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* @license C3.js v0.4.23 | (c) C3 Team and other contributors | http://c3js.org/ */
/* @license C3.js v0.4.24 | (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 @@ -1012,7 +1012,7 @@
transitions.axisSubX.call($$.subXAxis);
};

var c3 = { version: "0.4.23" };
var c3 = { version: "0.4.24" };

var c3_chart_fn;
var c3_chart_internal_fn;
Expand Down Expand Up @@ -4574,9 +4574,7 @@
return;
}
$$.d3.select(this).selectAll('path').transition().duration($$.expandDuration(d.data.id)).attr("d", $$.svgArcExpanded).transition().duration($$.expandDuration(d.data.id) * 2).attr("d", $$.svgArcExpandedSub).each(function (d) {
if ($$.isDonutType(d.data)) {
// callback here
}
if ($$.isDonutType(d.data)) ;
});
});
};
Expand Down Expand Up @@ -8164,7 +8162,7 @@
}
return function (d) {
var values = config.line_connectNull ? $$.filterRemoveNull(d.values) : d.values,
x = isSub ? $$.x : $$.subX,
x = isSub ? $$.subX : $$.x,
y = yScaleGetter.call($$, d.id),
x0 = 0,
y0 = 0,
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.4.23",
"version": "0.4.24",
"keywords": [],
"dependencies": {
"mbostock/d3": "v3.5.6"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "c3",
"version": "0.4.23",
"version": "0.4.24",
"description": "D3-based reusable chart library",
"main": "c3.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Axis from './axis';
import CLASS from './class';
import { isValue, isFunction, isString, isUndefined, isDefined, ceil10, asHalfPixel, diffDomain, isEmpty, notEmpty, getOption, hasValue, sanitise, getPathBox } from './util';

export var c3 = { version: "0.4.23" };
export var c3 = { version: "0.4.24" };

export var c3_chart_fn;
export var c3_chart_internal_fn;
Expand Down

0 comments on commit 2b7f8d9

Please sign in to comment.