flexmonster 2.9.33 → 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 +4 -1
  2. package/flexmonster.es5.full.js +2610 -2602
  3. package/flexmonster.es5.js +2761 -2752
  4. package/flexmonster.full.js +2267 -2258
  5. package/flexmonster.js +2418 -2408
  6. package/flexmonster.min.css +1 -1
  7. package/package.json +1 -1
  8. package/theme/accessible/flexmonster.css +4 -1
  9. package/theme/accessible/flexmonster.min.css +1 -1
  10. package/theme/blackorange/flexmonster.css +4 -1
  11. package/theme/blackorange/flexmonster.min.css +1 -1
  12. package/theme/brightorange/flexmonster.css +4 -1
  13. package/theme/brightorange/flexmonster.min.css +1 -1
  14. package/theme/dark/flexmonster.css +4 -1
  15. package/theme/dark/flexmonster.min.css +1 -1
  16. package/theme/flexmonster-base.less +7 -1
  17. package/theme/green/flexmonster.css +4 -1
  18. package/theme/green/flexmonster.min.css +1 -1
  19. package/theme/lightblue/flexmonster.css +4 -1
  20. package/theme/lightblue/flexmonster.min.css +1 -1
  21. package/theme/macos/flexmonster.css +4 -1
  22. package/theme/macos/flexmonster.min.css +1 -1
  23. package/theme/midnight/flexmonster.css +4 -1
  24. package/theme/midnight/flexmonster.min.css +1 -1
  25. package/theme/old/flexmonster.css +4 -1
  26. package/theme/old/flexmonster.min.css +1 -1
  27. package/theme/orange/flexmonster.css +4 -1
  28. package/theme/orange/flexmonster.min.css +1 -1
  29. package/theme/purple/flexmonster.css +4 -1
  30. package/theme/purple/flexmonster.min.css +1 -1
  31. package/theme/softdefault/flexmonster.css +4 -1
  32. package/theme/softdefault/flexmonster.min.css +1 -1
  33. package/theme/stripedblue/flexmonster.css +4 -1
  34. package/theme/stripedblue/flexmonster.min.css +1 -1
  35. package/theme/stripedteal/flexmonster.css +4 -1
  36. package/theme/stripedteal/flexmonster.min.css +1 -1
  37. package/theme/teal/flexmonster.css +4 -1
  38. package/theme/teal/flexmonster.min.css +1 -1
  39. package/theme/yellow/flexmonster.css +4 -1
  40. package/theme/yellow/flexmonster.min.css +1 -1
  41. package/toolbar/flexmonster.toolbar.js +2 -8
  42. package/types/flexmonster.d.ts +2 -2
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
3
- * September 2022 (v. 2.9.33)
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),
@@ -73,7 +73,6 @@ declare namespace Flexmonster {
73
73
  ready?: () => void;
74
74
  reportchange?: () => void;
75
75
  reportcomplete?: () => void;
76
- reportfileloaded?: () => void;
77
76
  reportfilecancelled?: () => void;
78
77
  reportfileerror?: () => void;
79
78
  runningquery?: () => void;
@@ -84,7 +83,6 @@ declare namespace Flexmonster {
84
83
  interface Pivot {
85
84
  addCalculatedMeasure(measure: Measure): void;
86
85
  addCondition(condition: ConditionalFormat): void;
87
- addJSON(json: object[]): void;
88
86
  alert(options: { title?: string; message?: string; type?: string; buttons?: Array<{ label: string; handler?: () => void; }>; blocking?: boolean; }): void;
89
87
  clear(): void;
90
88
  clearFilter(hierarchyName: string): void;
@@ -274,6 +272,7 @@ declare namespace Flexmonster {
274
272
  withCredentials?: boolean;
275
273
  singleEndpoint?: boolean;
276
274
  useGranularityNamesForDateFilters?: boolean;
275
+ concurrentRequests?: boolean;
277
276
  }
278
277
 
279
278
  interface SliceHierarchy {
@@ -487,6 +486,7 @@ declare namespace Flexmonster {
487
486
  requestHeaders?: { [header: string]: string | number };
488
487
  fontUrl?: string;
489
488
  alwaysEnclose?: boolean;
489
+ pageFormat?: string;
490
490
  }
491
491
 
492
492
  interface Hierarchy {