Skip to content

Commit

Permalink
skip: 3.10.2-nightly-20231028004619 build [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
netil committed Oct 28, 2023
1 parent adfcc3c commit 1fa5117
Show file tree
Hide file tree
Showing 42 changed files with 194 additions and 172 deletions.
22 changes: 12 additions & 10 deletions dist-esm/billboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* billboard.js, JavaScript chart library
* https://naver.github.io/billboard.js/
*
* @version 3.10.0-nightly-20231027004619
* @version 3.10.2-nightly-20231028004619
*/
import { timeParse, utcParse, timeFormat, utcFormat } from 'd3-time-format';
import { pointer, select, namespaces, selectAll } from 'd3-selection';
Expand Down Expand Up @@ -48,18 +48,20 @@ function getGlobal() {
* @private
*/
function getFallback(w) {
var hasRAF = typeof (w === null || w === void 0 ? void 0 : w.requestAnimationFrame) === "function";
var hasRIC = typeof (w === null || w === void 0 ? void 0 : w.requestIdleCallback) === "function";
var hasRAF = typeof (w === null || w === void 0 ? void 0 : w.requestAnimationFrame) === "function" && typeof (w === null || w === void 0 ? void 0 : w.cancelAnimationFrame) === "function";
var hasRIC = typeof (w === null || w === void 0 ? void 0 : w.requestIdleCallback) === "function" && typeof (w === null || w === void 0 ? void 0 : w.cancelIdleCallback) === "function";
var request = function (cb) { return setTimeout(cb, 1); };
var cancel = function (id) { return clearTimeout(id); };
return [
hasRAF ? w.requestAnimationFrame : (function (cb) { return setTimeout(cb, 1); }),
hasRAF ? w.cancelAnimationFrame : (function (id) { return clearTimeout(id); }),
hasRIC ? w.requestIdleCallback : requestAnimationFrame,
hasRIC ? w.cancelIdleCallback : cancelAnimationFrame
hasRAF ? w.requestAnimationFrame : request,
hasRAF ? w.cancelAnimationFrame : cancel,
hasRIC ? w.requestIdleCallback : request,
hasRIC ? w.cancelIdleCallback : cancel
];
}
var win = getGlobal();
var doc = win === null || win === void 0 ? void 0 : win.document;
var _a = getFallback(win), requestAnimationFrame = _a[0], cancelAnimationFrame = _a[1], requestIdleCallback = _a[2];
var _a = getFallback(win), requestAnimationFrame = _a[0], requestIdleCallback = _a[2];

/**
* Copyright (c) 2017 ~ present NAVER Corp.
Expand Down Expand Up @@ -23021,7 +23023,7 @@ var zoomModule = function () {
var defaults = {};
/**
* @namespace bb
* @version 3.10.0-nightly-20231027004619
* @version 3.10.2-nightly-20231028004619
*/
var bb = {
/**
Expand All @@ -23031,7 +23033,7 @@ var bb = {
* bb.version; // "1.0.0"
* @memberof bb
*/
version: "3.10.0-nightly-20231027004619",
version: "3.10.2-nightly-20231028004619",
/**
* Generate chart
* - **NOTE:** Bear in mind for the possiblity of ***throwing an error***, during the generation when:
Expand Down
4 changes: 2 additions & 2 deletions dist-esm/plugin/billboardjs-plugin-bubblecompare.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* billboard.js, JavaScript chart library
* https://naver.github.io/billboard.js/
*
* @version 3.10.0-nightly-20231027004619
* @version 3.10.2-nightly-20231028004619
* @requires billboard.js
* @summary billboard.js plugin
*/
Expand Down Expand Up @@ -104,7 +104,7 @@ var Plugin = /** @class */ (function () {
delete _this[key];
});
};
Plugin.version = "3.10.0-nightly-20231027004619";
Plugin.version = "3.10.2-nightly-20231028004619";
return Plugin;
}());
var Plugin$1 = Plugin;
Expand Down
4 changes: 2 additions & 2 deletions dist-esm/plugin/billboardjs-plugin-sparkline.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* billboard.js, JavaScript chart library
* https://naver.github.io/billboard.js/
*
* @version 3.10.0-nightly-20231027004619
* @version 3.10.2-nightly-20231028004619
* @requires billboard.js
* @summary billboard.js plugin
*/
Expand Down Expand Up @@ -279,7 +279,7 @@ var Plugin = /** @class */ (function () {
delete _this[key];
});
};
Plugin.version = "3.10.0-nightly-20231027004619";
Plugin.version = "3.10.2-nightly-20231028004619";
return Plugin;
}());
var Plugin$1 = Plugin;
Expand Down
4 changes: 2 additions & 2 deletions dist-esm/plugin/billboardjs-plugin-stanford.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* billboard.js, JavaScript chart library
* https://naver.github.io/billboard.js/
*
* @version 3.10.0-nightly-20231027004619
* @version 3.10.2-nightly-20231028004619
* @requires billboard.js
* @summary billboard.js plugin
*/
Expand Down Expand Up @@ -493,7 +493,7 @@ var Plugin = /** @class */ (function () {
delete _this[key];
});
};
Plugin.version = "3.10.0-nightly-20231027004619";
Plugin.version = "3.10.2-nightly-20231028004619";
return Plugin;
}());
var Plugin$1 = Plugin;
Expand Down
4 changes: 2 additions & 2 deletions dist-esm/plugin/billboardjs-plugin-tableview.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* billboard.js, JavaScript chart library
* https://naver.github.io/billboard.js/
*
* @version 3.10.0-nightly-20231027004619
* @version 3.10.2-nightly-20231028004619
* @requires billboard.js
* @summary billboard.js plugin
*/
Expand Down Expand Up @@ -121,7 +121,7 @@ var Plugin = /** @class */ (function () {
delete _this[key];
});
};
Plugin.version = "3.10.0-nightly-20231027004619";
Plugin.version = "3.10.2-nightly-20231028004619";
return Plugin;
}());
var Plugin$1 = Plugin;
Expand Down
4 changes: 2 additions & 2 deletions dist-esm/plugin/billboardjs-plugin-textoverlap.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* billboard.js, JavaScript chart library
* https://naver.github.io/billboard.js/
*
* @version 3.10.0-nightly-20231027004619
* @version 3.10.2-nightly-20231028004619
* @requires billboard.js
* @summary billboard.js plugin
*/
Expand Down Expand Up @@ -269,7 +269,7 @@ var Plugin = /** @class */ (function () {
delete _this[key];
});
};
Plugin.version = "3.10.0-nightly-20231027004619";
Plugin.version = "3.10.2-nightly-20231028004619";
return Plugin;
}());
var Plugin$1 = Plugin;
Expand Down
2 changes: 1 addition & 1 deletion dist/billboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* billboard.js, JavaScript chart library
* https://naver.github.io/billboard.js/
*
* @version 3.10.0-nightly-20231027004619
* @version 3.10.2-nightly-20231028004619
*/
/*-- Chart --*/
.bb svg {
Expand Down
26 changes: 14 additions & 12 deletions dist/billboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* billboard.js, JavaScript chart library
* https://naver.github.io/billboard.js/
*
* @version 3.10.0-nightly-20231027004619
* @version 3.10.2-nightly-20231028004619
*/
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
Expand Down Expand Up @@ -246,15 +246,17 @@ function getGlobal() {
*/
function getFallback(w) {
var _this = this;
const hasRAF = typeof (w == null ? void 0 : w.requestAnimationFrame) === "function",
hasRIC = typeof (w == null ? void 0 : w.requestIdleCallback) === "function";
return [hasRAF ? w.requestAnimationFrame : function (cb) {
_newArrowCheck(this, _this);
return setTimeout(cb, 1);
}.bind(this), hasRAF ? w.cancelAnimationFrame : function (id) {
_newArrowCheck(this, _this);
return clearTimeout(id);
}.bind(this), hasRIC ? w.requestIdleCallback : requestAnimationFrame, hasRIC ? w.cancelIdleCallback : cancelAnimationFrame];
const hasRAF = typeof (w == null ? void 0 : w.requestAnimationFrame) === "function" && typeof (w == null ? void 0 : w.cancelAnimationFrame) === "function",
hasRIC = typeof (w == null ? void 0 : w.requestIdleCallback) === "function" && typeof (w == null ? void 0 : w.cancelIdleCallback) === "function",
request = function (cb) {
_newArrowCheck(this, _this);
return setTimeout(cb, 1);
}.bind(this),
cancel = function (id) {
_newArrowCheck(this, _this);
return clearTimeout(id);
}.bind(this);
return [hasRAF ? w.requestAnimationFrame : request, hasRAF ? w.cancelAnimationFrame : cancel, hasRIC ? w.requestIdleCallback : request, hasRIC ? w.cancelIdleCallback : cancel];
}
const win = getGlobal(),
browser_doc = win == null ? void 0 : win.document,
Expand Down Expand Up @@ -25543,7 +25545,7 @@ let _defaults = {};

/**
* @namespace bb
* @version 3.10.0-nightly-20231027004619
* @version 3.10.2-nightly-20231028004619
*/
const bb = {
/**
Expand All @@ -25553,7 +25555,7 @@ const bb = {
* bb.version; // "1.0.0"
* @memberof bb
*/
version: "3.10.0-nightly-20231027004619",
version: "3.10.2-nightly-20231028004619",
/**
* Generate chart
* - **NOTE:** Bear in mind for the possiblity of ***throwing an error***, during the generation when:
Expand Down
2 changes: 1 addition & 1 deletion dist/billboard.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/billboard.min.js

Large diffs are not rendered by default.

26 changes: 14 additions & 12 deletions dist/billboard.pkgd.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* billboard.js, JavaScript chart library
* https://naver.github.io/billboard.js/
*
* @version 3.10.0-nightly-20231027004619
* @version 3.10.2-nightly-20231028004619
*
* All-in-one packaged file for ease use of 'billboard.js' with dependant d3.js modules & polyfills.
* - @types/d3-selection ^3.0.8
Expand Down Expand Up @@ -21069,15 +21069,17 @@ function getGlobal() {
*/
function getFallback(w) {
var _this = this;
const hasRAF = typeof (w == null ? void 0 : w.requestAnimationFrame) === "function",
hasRIC = typeof (w == null ? void 0 : w.requestIdleCallback) === "function";
return [hasRAF ? w.requestAnimationFrame : function (cb) {
_newArrowCheck(this, _this);
return setTimeout(cb, 1);
}.bind(this), hasRAF ? w.cancelAnimationFrame : function (id) {
_newArrowCheck(this, _this);
return clearTimeout(id);
}.bind(this), hasRIC ? w.requestIdleCallback : requestAnimationFrame, hasRIC ? w.cancelIdleCallback : cancelAnimationFrame];
const hasRAF = typeof (w == null ? void 0 : w.requestAnimationFrame) === "function" && typeof (w == null ? void 0 : w.cancelAnimationFrame) === "function",
hasRIC = typeof (w == null ? void 0 : w.requestIdleCallback) === "function" && typeof (w == null ? void 0 : w.cancelIdleCallback) === "function",
request = function (cb) {
_newArrowCheck(this, _this);
return setTimeout(cb, 1);
}.bind(this),
cancel = function (id) {
_newArrowCheck(this, _this);
return clearTimeout(id);
}.bind(this);
return [hasRAF ? w.requestAnimationFrame : request, hasRAF ? w.cancelAnimationFrame : cancel, hasRIC ? w.requestIdleCallback : request, hasRIC ? w.cancelIdleCallback : cancel];
}
const win = getGlobal(),
browser_doc = win == null ? void 0 : win.document,
Expand Down Expand Up @@ -53627,7 +53629,7 @@ let _defaults = {};

/**
* @namespace bb
* @version 3.10.0-nightly-20231027004619
* @version 3.10.2-nightly-20231028004619
*/
const bb = {
/**
Expand All @@ -53637,7 +53639,7 @@ const bb = {
* bb.version; // "1.0.0"
* @memberof bb
*/
version: "3.10.0-nightly-20231027004619",
version: "3.10.2-nightly-20231028004619",
/**
* Generate chart
* - **NOTE:** Bear in mind for the possiblity of ***throwing an error***, during the generation when:
Expand Down
4 changes: 2 additions & 2 deletions dist/billboard.pkgd.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/plugin/billboardjs-plugin-bubblecompare.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* billboard.js, JavaScript chart library
* https://naver.github.io/billboard.js/
*
* @version 3.10.0-nightly-20231027004619
* @version 3.10.2-nightly-20231028004619
* @requires billboard.js
* @summary billboard.js plugin
*/
Expand Down Expand Up @@ -186,7 +186,7 @@ let Plugin = /*#__PURE__*/function () {
};
return Plugin;
}();
Plugin.version = "3.10.0-nightly-20231027004619";
Plugin.version = "3.10.2-nightly-20231028004619";

;// CONCATENATED MODULE: ./src/Plugin/bubblecompare/index.ts

Expand Down
4 changes: 2 additions & 2 deletions dist/plugin/billboardjs-plugin-bubblecompare.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1fa5117

Please sign in to comment.