Skip to content

Commit

Permalink
v9.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
TorsteinHonsi committed Feb 1, 2022
1 parent 643171c commit 4e5bfb5
Show file tree
Hide file tree
Showing 410 changed files with 540 additions and 515 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "highcharts",
"version": "9.3.2",
"version": "9.3.3",
"main": "highcharts.js",
"license": "https://www.highcharts.com/license",
"types": "highcharts.d.ts"
Expand Down
11 changes: 11 additions & 0 deletions es-modules/Accessibility/Components/MenuComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,19 @@ var MenuComponent = /** @class */ (function (_super) {
* proxy overlay.
*/
MenuComponent.prototype.onChartRender = function () {
var chart = this.chart, focusEl = chart.focusElement, a11y = chart.accessibility;
this.proxyProvider.clearGroup('chartMenu');
this.proxyMenuButton();
if (this.exportButtonProxy &&
focusEl &&
focusEl === chart.exportingGroup) {
if (focusEl.focusBorder) {
chart.setFocusToElement(focusEl, this.exportButtonProxy.buttonElement);
}
else if (a11y) {
a11y.keyboardNavigation.tabindexContainer.focus();
}
}
};
/**
* @private
Expand Down
2 changes: 1 addition & 1 deletion es-modules/Core/Globals.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var Globals;
* Constants
*
* */
Globals.SVG_NS = 'http://www.w3.org/2000/svg', Globals.product = 'Highcharts', Globals.version = '9.3.2', Globals.win = w, Globals.doc = Globals.win.document, Globals.svg = (Globals.doc &&
Globals.SVG_NS = 'http://www.w3.org/2000/svg', Globals.product = 'Highcharts', Globals.version = '9.3.3', Globals.win = w, Globals.doc = Globals.win.document, Globals.svg = (Globals.doc &&
Globals.doc.createElementNS &&
!!Globals.doc.createElementNS(Globals.SVG_NS, 'svg').createSVGRect), Globals.userAgent = (Globals.win.navigator && Globals.win.navigator.userAgent) || '', Globals.isChrome = Globals.userAgent.indexOf('Chrome') !== -1, Globals.isFirefox = Globals.userAgent.indexOf('Firefox') !== -1, Globals.isMS = /(edge|msie|trident)/i.test(Globals.userAgent) && !Globals.win.opera, Globals.isSafari = !Globals.isChrome && Globals.userAgent.indexOf('Safari') !== -1, Globals.isTouchDevice = /(Mobile|Android|Windows Phone)/.test(Globals.userAgent), Globals.isWebKit = Globals.userAgent.indexOf('AppleWebKit') !== -1, Globals.deg2rad = Math.PI * 2 / 360, Globals.hasBidiBug = (Globals.isFirefox &&
parseInt(Globals.userAgent.split('Firefox/')[1], 10) < 4 // issue #38
Expand Down
2 changes: 1 addition & 1 deletion es-modules/Core/Renderer/SVG/SVGRenderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ var SVGRenderer = /** @class */ (function () {
this.url = this.getReferenceURL();
// Add description
var desc = this.createElement('desc').add();
desc.element.appendChild(doc.createTextNode('Created with Highcharts 9.3.2'));
desc.element.appendChild(doc.createTextNode('Created with Highcharts 9.3.3'));
renderer.defs = this.createElement('defs').add();
renderer.allowHTML = allowHTML;
renderer.forExport = forExport;
Expand Down
2 changes: 1 addition & 1 deletion es-modules/Extensions/Annotations/NavigationBindings.js
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,7 @@ setOptions({
* from a different server.
*
* @type {string}
* @default https://code.highcharts.com/9.3.2/gfx/stock-icons/
* @default https://code.highcharts.com/9.3.3/gfx/stock-icons/
* @since 7.1.3
* @apioption navigation.iconsURL
*/
Expand Down
2 changes: 1 addition & 1 deletion es-modules/Extensions/Annotations/Popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -1111,7 +1111,7 @@ addEvent(NavigationBindings, 'showPopup', function (config) {
this.popup = new H.Popup(this.chart.container, (this.chart.options.navigation.iconsURL ||
(this.chart.options.stockTools &&
this.chart.options.stockTools.gui.iconsURL) ||
'https://code.highcharts.com/9.3.2/gfx/stock-icons/'), this.chart);
'https://code.highcharts.com/9.3.3/gfx/stock-icons/'), this.chart);
}
this.popup.showForm(config.formType, this.chart, config.options, config.onSubmit);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*
* */
var OfflineExportingDefaults = {
libURL: 'https://code.highcharts.com/9.3.2/lib/',
libURL: 'https://code.highcharts.com/9.3.3/lib/',
// When offline-exporting is loaded, redefine the menu item definitions
// related to download.
menuItemDefinitions: {
Expand Down
2 changes: 1 addition & 1 deletion es-modules/Extensions/Oldie/Oldie.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var VMLRenderer, VMLElement;
* @apioption global.VMLRadialGradientURL
*/
getOptions().global.VMLRadialGradientURL =
'http://code.highcharts.com/9.3.2/gfx/vml-radial-gradient.png';
'http://code.highcharts.com/9.3.3/gfx/vml-radial-gradient.png';
// Utilites
if (doc && !doc.defaultView) {
H.getStyle = U.getStyle = function getStyle(el, prop) {
Expand Down
2 changes: 1 addition & 1 deletion es-modules/Stock/StockToolsGui.js
Original file line number Diff line number Diff line change
Expand Up @@ -1697,7 +1697,7 @@ var Toolbar = /** @class */ (function () {
Toolbar.prototype.getIconsURL = function () {
return this.chart.options.navigation.iconsURL ||
this.options.iconsURL ||
'https://code.highcharts.com/9.3.2/gfx/stock-icons/';
'https://code.highcharts.com/9.3.3/gfx/stock-icons/';
};
return Toolbar;
}());
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/highcharts-3d.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highcharts JS v9.3.2 (2021-11-29)
* @license Highcharts JS v9.3.3 (2022-02-01)
* @module highcharts/highcharts-3d
* @requires highcharts
*
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/highcharts-gantt.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highcharts Gantt JS v9.3.2 (2021-11-29)
* @license Highcharts Gantt JS v9.3.3 (2022-02-01)
* @module highcharts/highcharts-gantt
*
* (c) 2017-2021 Lars Cabrera, Torstein Honsi, Jon Arild Nygard & Oystein Moseng
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/highcharts-more.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highcharts JS v9.3.2 (2021-11-29)
* @license Highcharts JS v9.3.3 (2022-02-01)
* @module highcharts/highcharts-more
* @requires highcharts
*
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/highcharts.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highcharts JS v9.3.2 (2021-11-29)
* @license Highcharts JS v9.3.3 (2022-02-01)
* @module highcharts/highcharts
*
* (c) 2009-2021 Torstein Honsi
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/highmaps.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highmaps JS v9.3.2 (2021-11-29)
* @license Highmaps JS v9.3.3 (2022-02-01)
* @module highcharts/highmaps
*
* (c) 2011-2021 Torstein Honsi
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/highstock.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/highstock
*
* (c) 2009-2021 Torstein Honsi
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/acceleration-bands.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/acceleration-bands
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/accumulation-distribution
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/ao.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/ao
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/apo.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/apo
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/aroon-oscillator.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/aroon-oscillator
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/aroon.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/aroon
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/atr.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/atr
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/bollinger-bands.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/bollinger-bands
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/cci.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/cci
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/chaikin.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/chaikin
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/cmf.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/cmf
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/cmo.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/cmo
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/dema.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/dema
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/disparity-index.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/disparity-index
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/dmi.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/dmi
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/dpo.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/dpo
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/ichimoku-kinko-hyo.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/ichimoku-kinko-hyo
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/indicators-all.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/indicators-all
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/indicators.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/indicators
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/keltner-channels.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/keltner-channels
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/klinger.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highcharts Stock JS v9.3.2 (2021-11-29)
* @license Highcharts Stock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/klinger
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/macd.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/macd
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/mfi.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/mfi
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/momentum.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/momentum
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/natr.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/natr
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/obv.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/obv
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/pivot-points.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/pivot-points
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/ppo.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/ppo
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/price-channel.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/price-channel
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/price-envelopes.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/price-envelopes
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/psar.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/psar
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/regressions.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/regressions
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/roc.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/roc
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/rsi.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/rsi
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/slow-stochastic.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/indicators
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/stochastic.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/stochastic
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/supertrend.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/supertrend
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down
2 changes: 1 addition & 1 deletion es-modules/masters/indicators/tema.src.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Highstock JS v9.3.2 (2021-11-29)
* @license Highstock JS v9.3.3 (2022-02-01)
* @module highcharts/indicators/tema
* @requires highcharts
* @requires highcharts/modules/stock
Expand Down

0 comments on commit 4e5bfb5

Please sign in to comment.