Skip to content

Commit a5532b3

Browse files
committed
chore(version): bump to v0.6.11
1 parent 89ef108 commit a5532b3

9 files changed

+20
-22
lines changed

.bmp.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
version: 0.6.10
2+
version: 0.6.11
33
commit: 'chore(version): bump to v%.%.%'
44
files:
55
src/core.js: 'version: "%.%.%"'

c3.js

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* @license C3.js v0.6.10 | (c) C3 Team and other contributors | http://c3js.org/ */
1+
/* @license C3.js v0.6.11 | (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) :
@@ -1147,7 +1147,7 @@
11471147
};
11481148

11491149
var c3 = {
1150-
version: "0.6.10",
1150+
version: "0.6.11",
11511151
chart: {
11521152
fn: Chart.prototype,
11531153
internal: {
@@ -2028,9 +2028,7 @@
20282028
$$.svg.selectAll(['#' + $$.clipId, '#' + $$.clipIdForGrid]).select('rect').attr('width', $$.width).attr('height', $$.height);
20292029
$$.svg.select('#' + $$.clipIdForXAxis).select('rect').attr('x', $$.getXAxisClipX.bind($$)).attr('y', $$.getXAxisClipY.bind($$)).attr('width', $$.getXAxisClipWidth.bind($$)).attr('height', $$.getXAxisClipHeight.bind($$));
20302030
$$.svg.select('#' + $$.clipIdForYAxis).select('rect').attr('x', $$.getYAxisClipX.bind($$)).attr('y', $$.getYAxisClipY.bind($$)).attr('width', $$.getYAxisClipWidth.bind($$)).attr('height', $$.getYAxisClipHeight.bind($$));
2031-
$$.svg.select('#' + $$.clipIdForSubchart).select('rect').attr('width', $$.width).attr('height', brush.size() ? brush.attr('height') : 0); // MEMO: parent div's height will be bigger than svg when <!DOCTYPE html>
2032-
2033-
$$.selectChart.style('max-height', $$.currentHeight + "px");
2031+
$$.svg.select('#' + $$.clipIdForSubchart).select('rect').attr('width', $$.width).attr('height', brush.size() ? brush.attr('height') : 0);
20342032
};
20352033

20362034
ChartInternal.prototype.updateDimension = function (withoutAxis) {
@@ -9689,8 +9687,7 @@
96899687
};
96909688

96919689
ChartInternal.prototype.getParentHeight = function () {
9692-
var h = this.selectChart.style('height');
9693-
return h.indexOf('px') > 0 ? +h.replace('px', '') : 0;
9690+
return this.getParentRectValue('height');
96949691
};
96959692

96969693
ChartInternal.prototype.getSvgLeft = function (withoutRecompute) {

c3.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

component.json

+1-1
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.10",
5+
"version": "0.6.11",
66
"keywords": [],
77
"dependencies": {
88
"mbostock/d3": "v5.0.0"

docs/index.html.haml

+4
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@
3838

3939
%h3 Change Log
4040
%ul
41+
%li
42+
<a href="https://github.com/c3js/c3/releases/tag/v0.6.11">v0.6.11</a><span class="gray">&nbsp;-&nbsp;2018-12-08</span>
43+
%ul
44+
%li Fix a bug of resizing.
4145
%li
4246
<a href="https://github.com/c3js/c3/releases/tag/v0.6.10">v0.6.10</a><span class="gray">&nbsp;-&nbsp;2018-12-04</span>
4347
%ul

docs/js/c3.js

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* @license C3.js v0.6.10 | (c) C3 Team and other contributors | http://c3js.org/ */
1+
/* @license C3.js v0.6.11 | (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) :
@@ -1147,7 +1147,7 @@
11471147
};
11481148

11491149
var c3 = {
1150-
version: "0.6.10",
1150+
version: "0.6.11",
11511151
chart: {
11521152
fn: Chart.prototype,
11531153
internal: {
@@ -2028,9 +2028,7 @@
20282028
$$.svg.selectAll(['#' + $$.clipId, '#' + $$.clipIdForGrid]).select('rect').attr('width', $$.width).attr('height', $$.height);
20292029
$$.svg.select('#' + $$.clipIdForXAxis).select('rect').attr('x', $$.getXAxisClipX.bind($$)).attr('y', $$.getXAxisClipY.bind($$)).attr('width', $$.getXAxisClipWidth.bind($$)).attr('height', $$.getXAxisClipHeight.bind($$));
20302030
$$.svg.select('#' + $$.clipIdForYAxis).select('rect').attr('x', $$.getYAxisClipX.bind($$)).attr('y', $$.getYAxisClipY.bind($$)).attr('width', $$.getYAxisClipWidth.bind($$)).attr('height', $$.getYAxisClipHeight.bind($$));
2031-
$$.svg.select('#' + $$.clipIdForSubchart).select('rect').attr('width', $$.width).attr('height', brush.size() ? brush.attr('height') : 0); // MEMO: parent div's height will be bigger than svg when <!DOCTYPE html>
2032-
2033-
$$.selectChart.style('max-height', $$.currentHeight + "px");
2031+
$$.svg.select('#' + $$.clipIdForSubchart).select('rect').attr('width', $$.width).attr('height', brush.size() ? brush.attr('height') : 0);
20342032
};
20352033

20362034
ChartInternal.prototype.updateDimension = function (withoutAxis) {
@@ -9689,8 +9687,7 @@
96899687
};
96909688

96919689
ChartInternal.prototype.getParentHeight = function () {
9692-
var h = this.selectChart.style('height');
9693-
return h.indexOf('px') > 0 ? +h.replace('px', '') : 0;
9690+
return this.getParentRectValue('height');
96949691
};
96959692

96969693
ChartInternal.prototype.getSvgLeft = function (withoutRecompute) {

docs/js/c3.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "c3",
3-
"version": "0.6.10",
3+
"version": "0.6.11",
44
"description": "D3-based reusable chart library",
55
"main": "c3.js",
66
"files": [

src/core.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import {
2020
} from './util';
2121

2222
var c3 = {
23-
version: "0.6.10",
23+
version: "0.6.11",
2424
chart: {
2525
fn: Chart.prototype,
2626
internal: {

0 commit comments

Comments
 (0)