Browse Source

chore(version): bump to v0.4.24 [skip ci]

v0.4 v0.4.24
Yoshiya Hinosawa 6 years ago
parent
commit
2b7f8d96f8
  1. 4
      .bmp.yml
  2. 2
      c3.css
  3. 10
      c3.js
  4. 4
      c3.min.js
  5. 2
      component.json
  6. 2
      package.json
  7. 2
      src/core.js

4
.bmp.yml

@ -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": "%.%.%"'

2
c3.css

@ -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;

10
c3.js

@ -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) :
@ -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;
@ -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)) ;
});
});
};
@ -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,

4
c3.min.js vendored

File diff suppressed because one or more lines are too long

2
component.json

@ -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"

2
package.json

@ -1,6 +1,6 @@
{
"name": "c3",
"version": "0.4.23",
"version": "0.4.24",
"description": "D3-based reusable chart library",
"main": "c3.js",
"scripts": {

2
src/core.js

@ -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;

Loading…
Cancel
Save