flexmonster 2.9.34 → 2.9.35
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.es5.full.js +2764 -2756
- package/flexmonster.es5.js +2589 -2580
- package/flexmonster.full.js +2253 -2246
- package/flexmonster.js +2404 -2396
- package/flexmonster.min.css +1 -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 +2 -8
- package/types/flexmonster.d.ts +1 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
|
|
3
|
-
*
|
|
3
|
+
* October 2022 (v. 2.9.35)
|
|
4
4
|
* Copyright (c) 2022 Flexmonster. All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* Flexmonster Pivot Table & Charts commercial licenses may be obtained at
|
|
@@ -24,7 +24,6 @@ FlexmonsterToolbar.prototype.getTabs = function () {
|
|
|
24
24
|
title: Labels.connect,
|
|
25
25
|
id: "fm-tab-connect",
|
|
26
26
|
icon: this.icons.connect,
|
|
27
|
-
kibana: false,
|
|
28
27
|
menu: [{
|
|
29
28
|
title: Labels.connect_local_csv,
|
|
30
29
|
id: "fm-tab-connect-local-csv",
|
|
@@ -73,7 +72,6 @@ FlexmonsterToolbar.prototype.getTabs = function () {
|
|
|
73
72
|
title: Labels.open,
|
|
74
73
|
id: "fm-tab-open",
|
|
75
74
|
icon: this.icons.open,
|
|
76
|
-
kibana: false,
|
|
77
75
|
menu: [{
|
|
78
76
|
title: Labels.local_report,
|
|
79
77
|
id: "fm-tab-open-local-report",
|
|
@@ -96,7 +94,6 @@ FlexmonsterToolbar.prototype.getTabs = function () {
|
|
|
96
94
|
id: "fm-tab-save",
|
|
97
95
|
handler: this.saveHandler,
|
|
98
96
|
mobile: false,
|
|
99
|
-
kibana: false,
|
|
100
97
|
icon: this.icons.save
|
|
101
98
|
});
|
|
102
99
|
|
|
@@ -3271,7 +3268,7 @@ FlexmonsterToolbar.prototype.createMenuDivider = function () {
|
|
|
3271
3268
|
}
|
|
3272
3269
|
FlexmonsterToolbar.prototype.isDisabled = function (data) {
|
|
3273
3270
|
if (this.nullOrUndefined(data)) return true;
|
|
3274
|
-
return (data.visible === false) || (data.ios === false && this.osUtils.isIOS) || (data.android === false && this.osUtils.isAndroid) || (data.mobile === false && this.osUtils.isMobile)
|
|
3271
|
+
return (data.visible === false) || (data.ios === false && this.osUtils.isIOS) || (data.android === false && this.osUtils.isAndroid) || (data.mobile === false && this.osUtils.isMobile);
|
|
3275
3272
|
}
|
|
3276
3273
|
FlexmonsterToolbar.prototype.filterConnectMenu = function () {
|
|
3277
3274
|
var menu = [];
|
|
@@ -3341,9 +3338,6 @@ FlexmonsterToolbar.prototype.getElementById = function (id, parent) {
|
|
|
3341
3338
|
};
|
|
3342
3339
|
return find(parent || this.toolbarWrapper, id);
|
|
3343
3340
|
}
|
|
3344
|
-
FlexmonsterToolbar.prototype.envUtils = {
|
|
3345
|
-
isKibana: document.getElementById('kibana_body') != null
|
|
3346
|
-
};
|
|
3347
3341
|
FlexmonsterToolbar.prototype.osUtils = {
|
|
3348
3342
|
isIOS: navigator.userAgent.match(/iPhone|iPad|iPod/i) || navigator.platform.match(/iPhone|iPad|iPod/i) ? true : false,
|
|
3349
3343
|
isMac: /Mac/i.test(navigator.platform),
|
package/types/flexmonster.d.ts
CHANGED