flexmonster 2.9.18 → 2.9.19

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 (43) hide show
  1. package/flexmonster.css +99 -1
  2. package/flexmonster.es5.full.js +2553 -2549
  3. package/flexmonster.es5.js +2552 -2548
  4. package/flexmonster.full.js +2366 -2364
  5. package/flexmonster.js +2365 -2363
  6. package/flexmonster.min.css +1 -1
  7. package/lib/flexmonster.highcharts.js +6 -0
  8. package/package.json +1 -1
  9. package/theme/accessible/flexmonster.css +99 -1
  10. package/theme/accessible/flexmonster.min.css +1 -1
  11. package/theme/blackorange/flexmonster.css +99 -1
  12. package/theme/blackorange/flexmonster.min.css +1 -1
  13. package/theme/brightorange/flexmonster.css +99 -1
  14. package/theme/brightorange/flexmonster.min.css +1 -1
  15. package/theme/dark/flexmonster.css +99 -1
  16. package/theme/dark/flexmonster.min.css +1 -1
  17. package/theme/flexmonster-base.less +116 -1
  18. package/theme/green/flexmonster.css +99 -1
  19. package/theme/green/flexmonster.min.css +1 -1
  20. package/theme/lightblue/flexmonster.css +99 -1
  21. package/theme/lightblue/flexmonster.min.css +1 -1
  22. package/theme/macos/flexmonster.css +99 -1
  23. package/theme/macos/flexmonster.min.css +1 -1
  24. package/theme/midnight/flexmonster.css +99 -1
  25. package/theme/midnight/flexmonster.min.css +1 -1
  26. package/theme/old/flexmonster.css +99 -1
  27. package/theme/old/flexmonster.min.css +1 -1
  28. package/theme/orange/flexmonster.css +99 -1
  29. package/theme/orange/flexmonster.min.css +1 -1
  30. package/theme/purple/flexmonster.css +99 -1
  31. package/theme/purple/flexmonster.min.css +1 -1
  32. package/theme/softdefault/flexmonster.css +99 -1
  33. package/theme/softdefault/flexmonster.min.css +1 -1
  34. package/theme/stripedblue/flexmonster.css +99 -1
  35. package/theme/stripedblue/flexmonster.min.css +1 -1
  36. package/theme/stripedteal/flexmonster.css +99 -1
  37. package/theme/stripedteal/flexmonster.min.css +1 -1
  38. package/theme/teal/flexmonster.css +99 -1
  39. package/theme/teal/flexmonster.min.css +1 -1
  40. package/theme/yellow/flexmonster.css +99 -1
  41. package/theme/yellow/flexmonster.min.css +1 -1
  42. package/toolbar/flexmonster.toolbar.js +1 -1
  43. package/types/flexmonster.d.ts +7 -3
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
3
- * February 2022 (v. 2.9.18)
3
+ * February 2022 (v. 2.9.19)
4
4
  * Copyright (c) 2022 Flexmonster. All rights reserved.
5
5
  *
6
6
  * Flexmonster Pivot Table & Charts commercial licenses may be obtained at
@@ -46,7 +46,7 @@ declare namespace Flexmonster {
46
46
  celldoubleclick?: (cell: CellData) => void;
47
47
  chartclick?: (data: ChartData) => void;
48
48
  datachanged?: (param: object) => void;
49
- dataerror?: (param: object) => void;
49
+ dataerror?: (event?: ErrorEvent) => void;
50
50
  datafilecancelled?: () => void;
51
51
  dataloaded?: () => void;
52
52
  drillthroughclose?: () => void;
@@ -63,13 +63,13 @@ declare namespace Flexmonster {
63
63
  loadingreportfile?: () => void;
64
64
  localizationerror?: () => void;
65
65
  localizationloaded?: () => void;
66
- olapstructureerror?: () => void;
66
+ olapstructureerror?: (event?: ErrorEvent) => void;
67
67
  olapstructureloaded?: () => void;
68
68
  openingreportfile?: () => void;
69
69
  printcomplete?: () => void;
70
70
  printstart?: () => void;
71
71
  querycomplete?: () => void;
72
- queryerror?: () => void;
72
+ queryerror?: (event?: ErrorEvent) => void;
73
73
  ready?: () => void;
74
74
  reportchange?: () => void;
75
75
  reportcomplete?: () => void;
@@ -815,4 +815,8 @@ declare namespace Flexmonster {
815
815
  [header: string]: string | number;
816
816
  }
817
817
  }
818
+
819
+ interface ErrorEvent {
820
+ error?: string;
821
+ }
818
822
  }