flexmonster 2.9.38 → 2.9.40

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 +1 -1
  2. package/flexmonster.full.js +2430 -2426
  3. package/flexmonster.js +2427 -2423
  4. package/flexmonster.min.css +1 -1
  5. package/package.json +1 -1
  6. package/theme/accessible/flexmonster.css +1 -1
  7. package/theme/accessible/flexmonster.min.css +1 -1
  8. package/theme/blackorange/flexmonster.css +1 -1
  9. package/theme/blackorange/flexmonster.min.css +1 -1
  10. package/theme/brightorange/flexmonster.css +1 -1
  11. package/theme/brightorange/flexmonster.min.css +1 -1
  12. package/theme/dark/flexmonster.css +1 -1
  13. package/theme/dark/flexmonster.min.css +1 -1
  14. package/theme/flexmonster-base.less +1 -1
  15. package/theme/green/flexmonster.css +1 -1
  16. package/theme/green/flexmonster.min.css +1 -1
  17. package/theme/lightblue/flexmonster.css +1 -1
  18. package/theme/lightblue/flexmonster.min.css +1 -1
  19. package/theme/macos/flexmonster.css +1 -1
  20. package/theme/macos/flexmonster.min.css +1 -1
  21. package/theme/midnight/flexmonster.css +1 -1
  22. package/theme/midnight/flexmonster.min.css +1 -1
  23. package/theme/old/flexmonster.css +1 -1
  24. package/theme/old/flexmonster.min.css +1 -1
  25. package/theme/orange/flexmonster.css +1 -1
  26. package/theme/orange/flexmonster.min.css +1 -1
  27. package/theme/purple/flexmonster.css +1 -1
  28. package/theme/purple/flexmonster.min.css +1 -1
  29. package/theme/softdefault/flexmonster.css +1 -1
  30. package/theme/softdefault/flexmonster.min.css +1 -1
  31. package/theme/stripedblue/flexmonster.css +1 -1
  32. package/theme/stripedblue/flexmonster.min.css +1 -1
  33. package/theme/stripedteal/flexmonster.css +1 -1
  34. package/theme/stripedteal/flexmonster.min.css +1 -1
  35. package/theme/teal/flexmonster.css +1 -1
  36. package/theme/teal/flexmonster.min.css +1 -1
  37. package/theme/yellow/flexmonster.css +1 -1
  38. package/theme/yellow/flexmonster.min.css +1 -1
  39. package/toolbar/flexmonster.toolbar.js +9 -1
  40. package/types/flexmonster.d.ts +5 -1
  41. package/flexmonster.es5.full.js +0 -3701
  42. package/flexmonster.es5.js +0 -3088
  43. package/lib/promise.min.js +0 -2
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
3
- * November 2022 (v. 2.9.38)
3
+ * December 2022 (v. 2.9.40)
4
4
  * Copyright (c) 2022 Flexmonster. All rights reserved.
5
5
  *
6
6
  * Flexmonster Pivot Table & Charts commercial licenses may be obtained at
@@ -1277,6 +1277,14 @@ FlexmonsterToolbar.prototype.defaults.numberFormatting = {
1277
1277
  label: "(1$)",
1278
1278
  value: "(1$)"
1279
1279
  },
1280
+ {
1281
+ label: "$(1)",
1282
+ value: "$(1)"
1283
+ },
1284
+ {
1285
+ label: "(1)$",
1286
+ value: "(1)$"
1287
+ }
1280
1288
  ],
1281
1289
  negativeNumberFormats: [{
1282
1290
  label: "-1",
@@ -100,7 +100,7 @@ declare namespace Flexmonster {
100
100
  dispose(): void;
101
101
  drillDownCell(axisName: string, tuple: string[], measure: string, member: string): void;
102
102
  drillUpCell(axisName: string, tuple: string[], measure: string, member: string): void;
103
- expandAllData(withAllChildren?: boolean): void;
103
+ expandAllData(withAllChildren?: boolean, type?: "all" | "rows" | "columns"): void;
104
104
  expandCell(axisName: string, tuple: string[], measure: string): void;
105
105
  expandData(hierarchyName: string): void;
106
106
  exportTo(type: string, exportOptions?: ExportOptions, callbackHandler?: ((result: object) => void) | string): void;
@@ -306,11 +306,15 @@ declare namespace Flexmonster {
306
306
  rows?: SliceHierarchy[];
307
307
  drills?: {
308
308
  drillAll?: boolean;
309
+ drillAllRows?: boolean;
310
+ drillAllColumns?: boolean;
309
311
  columns?: Array<{ tuple: string[]; measure?: MeasureObject; }>;
310
312
  rows?: Array<{ tuple: string[]; measure?: MeasureObject; }>;
311
313
  };
312
314
  expands?: {
313
315
  expandAll?: boolean;
316
+ expandAllRows?: boolean;
317
+ expandAllColumns?: boolean;
314
318
  columns?: Array<{ tuple: string[]; measure?: MeasureObject; }>;
315
319
  rows?: Array<{ tuple: string[]; measure?: MeasureObject; }>;
316
320
  };