Browse Source

chore(version): bump to v0.4.16

pull/1328/merge v0.4.16
Yoshiya Hinosawa 7 years ago
parent
commit
6332b4690e
  1. 2
      .bmp.yml
  2. 4
      c3.js
  3. 2
      c3.min.js
  4. 2
      component.json
  5. 2
      package.json
  6. 2
      src/core.js

2
.bmp.yml

@ -1,5 +1,5 @@
---
version: 0.4.15
version: 0.4.16
commit: 'chore(version): bump to v%.%.%'
files:
src/core.js: 'version: "%.%.%"'

4
c3.js

@ -896,7 +896,7 @@ Axis.prototype.redraw = function redraw(transitions, isHidden) {
transitions.axisSubX.call($$.subXAxis);
};
var c3$1 = { version: "0.4.15" };
var c3$1 = { version: "0.4.16" };
var c3_chart_fn;
var c3_chart_internal_fn;
@ -7702,7 +7702,7 @@ c3_chart_internal_fn.updateBar = function (durationForExit) {
$$.mainBar.exit().transition().duration(durationForExit).remove();
};
c3_chart_internal_fn.redrawBar = function (drawBar, withTransition) {
return [(withTransition ? this.mainBar.transition(Math.random().toString()) : this.mainBar).attr('d', drawBar).style("fill", this.color).style("opacity", 1)];
return [(withTransition ? this.mainBar.transition(Math.random().toString()) : this.mainBar).attr('d', drawBar).style("stroke", this.color).style("fill", this.color).style("opacity", 1)];
};
c3_chart_internal_fn.getBarW = function (axis, barTargetsNum) {
var $$ = this,

2
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.15",
"version": "0.4.16",
"keywords": [],
"dependencies": {
"mbostock/d3": "v3.5.6"

2
package.json

@ -1,6 +1,6 @@
{
"name": "c3",
"version": "0.4.15",
"version": "0.4.16",
"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.15" };
export var c3 = { version: "0.4.16" };
export var c3_chart_fn;
export var c3_chart_internal_fn;

Loading…
Cancel
Save