Skip to content

Commit

Permalink
chore(version): bump to v0.7.18
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Jun 16, 2020
1 parent 9b233bf commit 12dee8d
Show file tree
Hide file tree
Showing 11 changed files with 48 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .bmp.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: 0.7.17
version: 0.7.18
commit: 'chore(version): bump to v%.%.%'
files:
src/core.js: 'version: ''%.%.%'''
Expand Down
19 changes: 11 additions & 8 deletions c3.esm.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* @license C3.js v0.7.17 | (c) C3 Team and other contributors | http://c3js.org/ */
/* @license C3.js v0.7.18 | (c) C3 Team and other contributors | http://c3js.org/ */
import * as d3 from 'd3';

function ChartInternal(api) {
Expand Down Expand Up @@ -1407,7 +1407,7 @@ Axis.prototype.redraw = function redraw(duration, isHidden) {
};

var c3 = {
version: '0.7.17',
version: '0.7.18',
chart: {
fn: Chart.prototype,
internal: {
Expand Down Expand Up @@ -9341,10 +9341,10 @@ ChartInternal.prototype.drag = function(mouse) {
main
.selectAll('.' + CLASS.shapes)
.selectAll('.' + CLASS.shape)
.filter(function(d) {
return config.data_selection_isselectable(d)
})
.each(function(d, i) {
if (!config.data_selection_isselectable(d)) {
return
}
var shape = d3.select(this),
isSelected = shape.classed(CLASS.SELECTED),
isIncluded = shape.classed(CLASS.INCLUDED),
Expand Down Expand Up @@ -10524,7 +10524,8 @@ ChartInternal.prototype.updateLegend = function(
.style('cursor', function() {
return config.interaction_enabled ? 'pointer' : 'auto'
})
.on('click',
.on(
'click',
config.interaction_enabled
? function(id) {
if (config.legend_item_onclick) {
Expand All @@ -10541,7 +10542,8 @@ ChartInternal.prototype.updateLegend = function(
}
: null
)
.on('mouseover',
.on(
'mouseover',
config.interaction_enabled
? function(id) {
if (config.legend_item_onmouseover) {
Expand All @@ -10555,7 +10557,8 @@ ChartInternal.prototype.updateLegend = function(
}
: null
)
.on('mouseout',
.on(
'mouseout',
config.interaction_enabled
? function(id) {
if (config.legend_item_onmouseout) {
Expand Down
12 changes: 7 additions & 5 deletions c3.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* @license C3.js v0.7.17 | (c) C3 Team and other contributors | http://c3js.org/ */
/* @license C3.js v0.7.18 | (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 @@ -1294,7 +1294,7 @@
};

var c3 = {
version: '0.7.17',
version: '0.7.18',
chart: {
fn: Chart.prototype,
internal: {
Expand Down Expand Up @@ -8354,9 +8354,11 @@
maxY = config.data_selection_grouped ? $$.height : Math.max(sy, my);
main.select('.' + CLASS.dragarea).attr('x', minX).attr('y', minY).attr('width', maxX - minX).attr('height', maxY - minY); // TODO: binary search when multiple xs

main.selectAll('.' + CLASS.shapes).selectAll('.' + CLASS.shape).filter(function (d) {
return config.data_selection_isselectable(d);
}).each(function (d, i) {
main.selectAll('.' + CLASS.shapes).selectAll('.' + CLASS.shape).each(function (d, i) {
if (!config.data_selection_isselectable(d)) {
return;
}

var shape = d3.select(this),
isSelected = shape.classed(CLASS.SELECTED),
isIncluded = shape.classed(CLASS.INCLUDED),
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.7.17",
"version": "0.7.18",
"keywords": [],
"dependencies": {
"mbostock/d3": "v5.0.0"
Expand Down
4 changes: 4 additions & 0 deletions docs/index.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@

%h3 Change Log
%ul
%li
<a href="https://github.com/c3js/c3/releases/tag/v0.7.18">v0.7.18</a><span class="gray">&nbsp;-&nbsp;2020-06-17</span>
%ul
%li Bug fixes.
%li
<a href="https://github.com/c3js/c3/releases/tag/v0.7.17">v0.7.17</a><span class="gray">&nbsp;-&nbsp;2020-06-15</span>
%ul
Expand Down
19 changes: 11 additions & 8 deletions docs/js/c3.esm.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* @license C3.js v0.7.17 | (c) C3 Team and other contributors | http://c3js.org/ */
/* @license C3.js v0.7.18 | (c) C3 Team and other contributors | http://c3js.org/ */
import * as d3 from 'd3';

function ChartInternal(api) {
Expand Down Expand Up @@ -1407,7 +1407,7 @@ Axis.prototype.redraw = function redraw(duration, isHidden) {
};

var c3 = {
version: '0.7.17',
version: '0.7.18',
chart: {
fn: Chart.prototype,
internal: {
Expand Down Expand Up @@ -9341,10 +9341,10 @@ ChartInternal.prototype.drag = function(mouse) {
main
.selectAll('.' + CLASS.shapes)
.selectAll('.' + CLASS.shape)
.filter(function(d) {
return config.data_selection_isselectable(d)
})
.each(function(d, i) {
if (!config.data_selection_isselectable(d)) {
return
}
var shape = d3.select(this),
isSelected = shape.classed(CLASS.SELECTED),
isIncluded = shape.classed(CLASS.INCLUDED),
Expand Down Expand Up @@ -10524,7 +10524,8 @@ ChartInternal.prototype.updateLegend = function(
.style('cursor', function() {
return config.interaction_enabled ? 'pointer' : 'auto'
})
.on('click',
.on(
'click',
config.interaction_enabled
? function(id) {
if (config.legend_item_onclick) {
Expand All @@ -10541,7 +10542,8 @@ ChartInternal.prototype.updateLegend = function(
}
: null
)
.on('mouseover',
.on(
'mouseover',
config.interaction_enabled
? function(id) {
if (config.legend_item_onmouseover) {
Expand All @@ -10555,7 +10557,8 @@ ChartInternal.prototype.updateLegend = function(
}
: null
)
.on('mouseout',
.on(
'mouseout',
config.interaction_enabled
? function(id) {
if (config.legend_item_onmouseout) {
Expand Down
12 changes: 7 additions & 5 deletions docs/js/c3.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* @license C3.js v0.7.17 | (c) C3 Team and other contributors | http://c3js.org/ */
/* @license C3.js v0.7.18 | (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 @@ -1294,7 +1294,7 @@
};

var c3 = {
version: '0.7.17',
version: '0.7.18',
chart: {
fn: Chart.prototype,
internal: {
Expand Down Expand Up @@ -8354,9 +8354,11 @@
maxY = config.data_selection_grouped ? $$.height : Math.max(sy, my);
main.select('.' + CLASS.dragarea).attr('x', minX).attr('y', minY).attr('width', maxX - minX).attr('height', maxY - minY); // TODO: binary search when multiple xs

main.selectAll('.' + CLASS.shapes).selectAll('.' + CLASS.shape).filter(function (d) {
return config.data_selection_isselectable(d);
}).each(function (d, i) {
main.selectAll('.' + CLASS.shapes).selectAll('.' + CLASS.shape).each(function (d, i) {
if (!config.data_selection_isselectable(d)) {
return;
}

var shape = d3.select(this),
isSelected = shape.classed(CLASS.SELECTED),
isIncluded = shape.classed(CLASS.INCLUDED),
Expand Down
4 changes: 2 additions & 2 deletions docs/js/c3.min.js

Large diffs are not rendered by default.

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.7.17",
"version": "0.7.18",
"description": "D3-based reusable chart library",
"main": "c3.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
} from './util'

var c3 = {
version: '0.7.17',
version: '0.7.18',
chart: {
fn: Chart.prototype,
internal: {
Expand Down

0 comments on commit 12dee8d

Please sign in to comment.