Skip to content

Commit 054dd6e

Browse files
committed
chore(version): bump to v0.7.7
1 parent 7f49040 commit 054dd6e

9 files changed

+32
-14
lines changed

.bmp.yml

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

c3.js

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* @license C3.js v0.7.6 | (c) C3 Team and other contributors | http://c3js.org/ */
1+
/* @license C3.js v0.7.7 | (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) :
@@ -1199,7 +1199,7 @@
11991199
};
12001200

12011201
var c3 = {
1202-
version: "0.7.6",
1202+
version: "0.7.7",
12031203
chart: {
12041204
fn: Chart.prototype,
12051205
internal: {
@@ -6108,7 +6108,14 @@
61086108
};
61096109

61106110
ChartInternal.prototype.getTargetSelectorSuffix = function (targetId) {
6111-
return this.generateTargetClass(targetId).replace(/([?!@#$%^&*()_=+,.<>'":;\[\]\/|~`{}\\])/g, '\\$1');
6111+
var targetClass = this.generateTargetClass(targetId);
6112+
6113+
if (window.CSS && window.CSS.escape) {
6114+
return window.CSS.escape(targetClass);
6115+
} // fallback on imperfect method for old browsers (does not handles unicode)
6116+
6117+
6118+
return targetClass.replace(/([?!@#$%^&*()=+,.<>'":;\[\]\/|~`{}\\])/g, '\\$1');
61126119
};
61136120

61146121
ChartInternal.prototype.selectorTarget = function (id, prefix) {

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.7.6",
5+
"version": "0.7.7",
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.7.7">v0.7.7</a><span class="gray">&nbsp;-&nbsp;2019-08-25</span>
43+
%ul
44+
%li Fix a bug.
4145
%li
4246
<a href="https://github.com/c3js/c3/releases/tag/v0.7.6">v0.7.6</a><span class="gray">&nbsp;-&nbsp;2019-08-20</span>
4347
%ul

docs/js/c3.js

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* @license C3.js v0.7.6 | (c) C3 Team and other contributors | http://c3js.org/ */
1+
/* @license C3.js v0.7.7 | (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) :
@@ -1199,7 +1199,7 @@
11991199
};
12001200

12011201
var c3 = {
1202-
version: "0.7.6",
1202+
version: "0.7.7",
12031203
chart: {
12041204
fn: Chart.prototype,
12051205
internal: {
@@ -6108,7 +6108,14 @@
61086108
};
61096109

61106110
ChartInternal.prototype.getTargetSelectorSuffix = function (targetId) {
6111-
return this.generateTargetClass(targetId).replace(/([?!@#$%^&*()_=+,.<>'":;\[\]\/|~`{}\\])/g, '\\$1');
6111+
var targetClass = this.generateTargetClass(targetId);
6112+
6113+
if (window.CSS && window.CSS.escape) {
6114+
return window.CSS.escape(targetClass);
6115+
} // fallback on imperfect method for old browsers (does not handles unicode)
6116+
6117+
6118+
return targetClass.replace(/([?!@#$%^&*()=+,.<>'":;\[\]\/|~`{}\\])/g, '\\$1');
61126119
};
61136120

61146121
ChartInternal.prototype.selectorTarget = function (id, prefix) {

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.7.6",
3+
"version": "0.7.7",
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.7.6",
23+
version: "0.7.7",
2424
chart: {
2525
fn: Chart.prototype,
2626
internal: {

0 commit comments

Comments
 (0)