flexmonster 2.9.4 → 2.9.8

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 (61) hide show
  1. package/flexmonster.css +4 -0
  2. package/flexmonster.es5.full.js +2578 -2569
  3. package/flexmonster.es5.js +2577 -2568
  4. package/flexmonster.full.js +2225 -2216
  5. package/flexmonster.js +2224 -2215
  6. package/flexmonster.min.css +1 -1
  7. package/lib/flexmonster.fusioncharts.js +2 -2
  8. package/lib/flexmonster.googlecharts.js +2 -2
  9. package/lib/flexmonster.highcharts.js +1 -1
  10. package/package.json +1 -1
  11. package/theme/accessible/flexmonster.css +4 -0
  12. package/theme/accessible/flexmonster.min.css +1 -1
  13. package/theme/blackorange/flexmonster.css +10 -6
  14. package/theme/blackorange/flexmonster.less +3 -2
  15. package/theme/blackorange/flexmonster.min.css +1 -1
  16. package/theme/brightorange/flexmonster.css +4 -0
  17. package/theme/brightorange/flexmonster.less +1 -0
  18. package/theme/brightorange/flexmonster.min.css +1 -1
  19. package/theme/dark/flexmonster.css +4 -0
  20. package/theme/dark/flexmonster.less +1 -0
  21. package/theme/dark/flexmonster.min.css +1 -1
  22. package/theme/default/flexmonster.less +1 -0
  23. package/theme/flexmonster-base.less +6 -0
  24. package/theme/green/flexmonster.css +4 -0
  25. package/theme/green/flexmonster.less +1 -0
  26. package/theme/green/flexmonster.min.css +1 -1
  27. package/theme/lightblue/flexmonster.css +4 -0
  28. package/theme/lightblue/flexmonster.less +1 -0
  29. package/theme/lightblue/flexmonster.min.css +1 -1
  30. package/theme/macos/flexmonster.css +4 -0
  31. package/theme/macos/flexmonster.less +1 -0
  32. package/theme/macos/flexmonster.min.css +1 -1
  33. package/theme/midnight/flexmonster.css +7 -0
  34. package/theme/midnight/flexmonster.less +5 -0
  35. package/theme/midnight/flexmonster.min.css +1 -1
  36. package/theme/old/flexmonster.css +4 -0
  37. package/theme/old/flexmonster.less +1 -0
  38. package/theme/old/flexmonster.min.css +1 -1
  39. package/theme/orange/flexmonster.css +4 -0
  40. package/theme/orange/flexmonster.less +1 -0
  41. package/theme/orange/flexmonster.min.css +1 -1
  42. package/theme/purple/flexmonster.css +4 -0
  43. package/theme/purple/flexmonster.less +1 -0
  44. package/theme/purple/flexmonster.min.css +1 -1
  45. package/theme/softdefault/flexmonster.css +4 -0
  46. package/theme/softdefault/flexmonster.less +1 -0
  47. package/theme/softdefault/flexmonster.min.css +1 -1
  48. package/theme/stripedblue/flexmonster.css +4 -0
  49. package/theme/stripedblue/flexmonster.less +1 -0
  50. package/theme/stripedblue/flexmonster.min.css +1 -1
  51. package/theme/stripedteal/flexmonster.css +4 -0
  52. package/theme/stripedteal/flexmonster.less +1 -0
  53. package/theme/stripedteal/flexmonster.min.css +1 -1
  54. package/theme/teal/flexmonster.css +4 -0
  55. package/theme/teal/flexmonster.less +1 -0
  56. package/theme/teal/flexmonster.min.css +1 -1
  57. package/theme/yellow/flexmonster.css +4 -0
  58. package/theme/yellow/flexmonster.less +1 -0
  59. package/theme/yellow/flexmonster.min.css +1 -1
  60. package/toolbar/flexmonster.toolbar.js +1 -1
  61. package/types/flexmonster.d.ts +5 -0
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
3
- * July 2021 (v. 2.9.4)
3
+ * September 2021 (v. 2.9.8)
4
4
  * Copyright (c) 2021 Flexmonster. All rights reserved.
5
5
  *
6
6
  * Flexmonster Pivot Table & Charts commercial licenses may be obtained at
@@ -91,13 +91,18 @@ declare namespace Flexmonster {
91
91
  username?: string, password?: string): void;
92
92
  closeFieldsList(): void;
93
93
  collapseAllData(): void;
94
+ collapseCell(axisName: string, tuple: string[], measure: string): void;
94
95
  collapseData(hierarchyName: string): void;
95
96
  connectTo(object: DataSource): void;
97
+ customizeAPIRequest(customizeAPIRequestFunction: (request: object) => object): void;
96
98
  customizeCell(customizeCellFunction: (cell: CellBuilder, data: CellData) => void): void;
97
99
  customizeChartElement(customizeChartElementFunction: (element: Element, data: ChartData | ChartLegendItemData) => void): void;
98
100
  customizeContextMenu(customizeFunction: (items: ContextMenuItem[], data: CellData | ChartData, viewType: string) => ContextMenuItem[]): void;
99
101
  dispose(): void;
102
+ drillDownCell(axisName: string, tuple: string[], measure: string, member: string): void;
103
+ drillUpCell(axisName: string, tuple: string[], measure: string, member: string): void;
100
104
  expandAllData(withAllChildren?: boolean): void;
105
+ expandCell(axisName: string, tuple: string[], measure: string): void;
101
106
  expandData(hierarchyName: string): void;
102
107
  exportTo(type: string, exportOptions?: ExportOptions, callbackHandler?: ((result: object) => void) | string): void;
103
108
  getAllConditions(): ConditionalFormat[];