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.
Files changed (42) hide show
  1. package/flexmonster.css +1 -1
  2. package/flexmonster.es5.full.js +2764 -2756
  3. package/flexmonster.es5.js +2589 -2580
  4. package/flexmonster.full.js +2253 -2246
  5. package/flexmonster.js +2404 -2396
  6. package/flexmonster.min.css +1 -1
  7. package/package.json +1 -1
  8. package/theme/accessible/flexmonster.css +1 -1
  9. package/theme/accessible/flexmonster.min.css +1 -1
  10. package/theme/blackorange/flexmonster.css +1 -1
  11. package/theme/blackorange/flexmonster.min.css +1 -1
  12. package/theme/brightorange/flexmonster.css +1 -1
  13. package/theme/brightorange/flexmonster.min.css +1 -1
  14. package/theme/dark/flexmonster.css +1 -1
  15. package/theme/dark/flexmonster.min.css +1 -1
  16. package/theme/flexmonster-base.less +1 -1
  17. package/theme/green/flexmonster.css +1 -1
  18. package/theme/green/flexmonster.min.css +1 -1
  19. package/theme/lightblue/flexmonster.css +1 -1
  20. package/theme/lightblue/flexmonster.min.css +1 -1
  21. package/theme/macos/flexmonster.css +1 -1
  22. package/theme/macos/flexmonster.min.css +1 -1
  23. package/theme/midnight/flexmonster.css +1 -1
  24. package/theme/midnight/flexmonster.min.css +1 -1
  25. package/theme/old/flexmonster.css +1 -1
  26. package/theme/old/flexmonster.min.css +1 -1
  27. package/theme/orange/flexmonster.css +1 -1
  28. package/theme/orange/flexmonster.min.css +1 -1
  29. package/theme/purple/flexmonster.css +1 -1
  30. package/theme/purple/flexmonster.min.css +1 -1
  31. package/theme/softdefault/flexmonster.css +1 -1
  32. package/theme/softdefault/flexmonster.min.css +1 -1
  33. package/theme/stripedblue/flexmonster.css +1 -1
  34. package/theme/stripedblue/flexmonster.min.css +1 -1
  35. package/theme/stripedteal/flexmonster.css +1 -1
  36. package/theme/stripedteal/flexmonster.min.css +1 -1
  37. package/theme/teal/flexmonster.css +1 -1
  38. package/theme/teal/flexmonster.min.css +1 -1
  39. package/theme/yellow/flexmonster.css +1 -1
  40. package/theme/yellow/flexmonster.min.css +1 -1
  41. package/toolbar/flexmonster.toolbar.js +2 -8
  42. package/types/flexmonster.d.ts +1 -0
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
3
- * September 2022 (v. 2.9.34)
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) || (data.kibana === false && this.envUtils.isKibana);
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),
@@ -272,6 +272,7 @@ declare namespace Flexmonster {
272
272
  withCredentials?: boolean;
273
273
  singleEndpoint?: boolean;
274
274
  useGranularityNamesForDateFilters?: boolean;
275
+ concurrentRequests?: boolean;
275
276
  }
276
277
 
277
278
  interface SliceHierarchy {