flexmonster 2.9.79 → 2.9.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/flexmonster.css +1 -1
- package/flexmonster.full.js +2420 -2416
- package/flexmonster.js +2308 -2304
- package/flexmonster.min.css +1 -1
- package/localizations/de.json +2 -0
- package/localizations/en.json +516 -506
- package/localizations/es.json +10 -8
- package/localizations/fr.json +3 -1
- package/localizations/hu.json +3 -1
- package/localizations/id.json +2 -0
- package/localizations/it.json +3 -1
- package/localizations/nl.json +2 -0
- package/localizations/pt.json +3 -1
- package/localizations/th.json +2 -0
- package/localizations/tr.json +2 -0
- package/localizations/uk.json +572 -570
- package/localizations/zh.json +3 -1
- package/package.json +1 -1
- package/theme/accessible/flexmonster.css +1 -1
- package/theme/accessible/flexmonster.min.css +1 -1
- package/theme/blackorange/flexmonster.css +1 -1
- package/theme/blackorange/flexmonster.min.css +1 -1
- package/theme/brightorange/flexmonster.css +1 -1
- package/theme/brightorange/flexmonster.min.css +1 -1
- package/theme/dark/flexmonster.css +1 -1
- package/theme/dark/flexmonster.min.css +1 -1
- package/theme/flexmonster-base.less +1 -1
- package/theme/green/flexmonster.css +1 -1
- package/theme/green/flexmonster.min.css +1 -1
- package/theme/lightblue/flexmonster.css +1 -1
- package/theme/lightblue/flexmonster.min.css +1 -1
- package/theme/macos/flexmonster.css +1 -1
- package/theme/macos/flexmonster.min.css +1 -1
- package/theme/midnight/flexmonster.css +1 -1
- package/theme/midnight/flexmonster.min.css +1 -1
- package/theme/old/flexmonster.css +1 -1
- package/theme/old/flexmonster.min.css +1 -1
- package/theme/orange/flexmonster.css +1 -1
- package/theme/orange/flexmonster.min.css +1 -1
- package/theme/purple/flexmonster.css +1 -1
- package/theme/purple/flexmonster.min.css +1 -1
- package/theme/softdefault/flexmonster.css +1 -1
- package/theme/softdefault/flexmonster.min.css +1 -1
- package/theme/stripedblue/flexmonster.css +1 -1
- package/theme/stripedblue/flexmonster.min.css +1 -1
- package/theme/stripedteal/flexmonster.css +1 -1
- package/theme/stripedteal/flexmonster.min.css +1 -1
- package/theme/teal/flexmonster.css +1 -1
- package/theme/teal/flexmonster.min.css +1 -1
- package/theme/yellow/flexmonster.css +1 -1
- package/theme/yellow/flexmonster.min.css +1 -1
- package/toolbar/flexmonster.toolbar.js +16 -6
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
|
|
3
|
-
*
|
|
3
|
+
* July 2024 (v. 2.9.81)
|
|
4
4
|
* Copyright (c) 2024 Flexmonster. All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* Flexmonster Pivot Table & Charts commercial licenses may be obtained at
|
|
@@ -3098,6 +3098,7 @@ FlexmonsterToolbar.prototype.createTab = function (data, parent) {
|
|
|
3098
3098
|
if (data.hasOwnProperty("class_attr")) {
|
|
3099
3099
|
tabLink.setAttribute("class", data.class_attr);
|
|
3100
3100
|
}
|
|
3101
|
+
tabLink.setAttribute("href", "#");
|
|
3101
3102
|
|
|
3102
3103
|
if (data.icon) {
|
|
3103
3104
|
var svgIcon = document.createElement("div");
|
|
@@ -3113,14 +3114,23 @@ FlexmonsterToolbar.prototype.createTab = function (data, parent) {
|
|
|
3113
3114
|
tabLink.appendChild(title);
|
|
3114
3115
|
var _this = this;
|
|
3115
3116
|
var _handler = typeof data.handler == "function" ? data.handler : this[data.handler];
|
|
3117
|
+
var _args = data.args;
|
|
3116
3118
|
var _onShowHandler = typeof data.onShowHandler == "function" ? data.onShowHandler : this[data.onShowHandler];
|
|
3117
3119
|
if (!this.nullOrUndefined(_handler)) {
|
|
3118
|
-
tabLink.onclick =
|
|
3119
|
-
|
|
3120
|
+
tabLink.onclick = function (event) {
|
|
3121
|
+
event.preventDefault();
|
|
3122
|
+
return function () {
|
|
3123
|
+
_handler.call(_this, _args);
|
|
3124
|
+
}();
|
|
3125
|
+
};
|
|
3126
|
+
tabLink.onkeydown = function (event) {
|
|
3127
|
+
if (event.key == "Enter" || event.code == "Space") {
|
|
3128
|
+
event.preventDefault();
|
|
3120
3129
|
return function () {
|
|
3121
|
-
|
|
3122
|
-
}
|
|
3123
|
-
}
|
|
3130
|
+
_handler.call(_this, _args);
|
|
3131
|
+
}();
|
|
3132
|
+
}
|
|
3133
|
+
}
|
|
3124
3134
|
}
|
|
3125
3135
|
if (!this.nullOrUndefined(_onShowHandler)) {
|
|
3126
3136
|
tabLink.onmouseover =
|