flexmonster 2.9.66 → 2.9.68
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.
- package/flexmonster.css +1 -1
- package/flexmonster.full.js +2368 -2407
- package/flexmonster.js +2367 -2406
- package/flexmonster.min.css +1 -1
- package/package.json +1 -1
- package/theme/accessible/flexmonster.css +1 -1
- package/theme/accessible/flexmonster.min.css +1 -1
- package/theme/blackorange/flexmonster.css +1 -1
- package/theme/blackorange/flexmonster.min.css +1 -1
- package/theme/brightorange/flexmonster.css +1 -1
- package/theme/brightorange/flexmonster.min.css +1 -1
- package/theme/dark/flexmonster.css +1 -1
- package/theme/dark/flexmonster.min.css +1 -1
- package/theme/flexmonster-base.less +1 -1
- package/theme/green/flexmonster.css +1 -1
- package/theme/green/flexmonster.min.css +1 -1
- package/theme/lightblue/flexmonster.css +1 -1
- package/theme/lightblue/flexmonster.min.css +1 -1
- package/theme/macos/flexmonster.css +1 -1
- package/theme/macos/flexmonster.min.css +1 -1
- package/theme/midnight/flexmonster.css +1 -1
- package/theme/midnight/flexmonster.min.css +1 -1
- package/theme/old/flexmonster.css +1 -1
- package/theme/old/flexmonster.min.css +1 -1
- package/theme/orange/flexmonster.css +1 -1
- package/theme/orange/flexmonster.min.css +1 -1
- package/theme/purple/flexmonster.css +1 -1
- package/theme/purple/flexmonster.min.css +1 -1
- package/theme/softdefault/flexmonster.css +1 -1
- package/theme/softdefault/flexmonster.min.css +1 -1
- package/theme/stripedblue/flexmonster.css +1 -1
- package/theme/stripedblue/flexmonster.min.css +1 -1
- package/theme/stripedteal/flexmonster.css +1 -1
- package/theme/stripedteal/flexmonster.min.css +1 -1
- package/theme/teal/flexmonster.css +1 -1
- package/theme/teal/flexmonster.min.css +1 -1
- package/theme/yellow/flexmonster.css +1 -1
- package/theme/yellow/flexmonster.min.css +1 -1
- package/toolbar/flexmonster.toolbar.js +2 -2
- package/types/flexmonster.d.ts +4 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
|
|
3
|
-
*
|
|
4
|
-
* Copyright (c)
|
|
3
|
+
* January 2024 (v. 2.9.68)
|
|
4
|
+
* Copyright (c) 2024 Flexmonster. All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* Flexmonster Pivot Table & Charts commercial licenses may be obtained at
|
|
7
7
|
* https://www.flexmonster.com/pivot-table-editions-and-pricing/
|
package/types/flexmonster.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ declare namespace Flexmonster {
|
|
|
26
26
|
container?: string | Element;
|
|
27
27
|
height?: string | number;
|
|
28
28
|
global?: Report;
|
|
29
|
-
licenseKey?: string;
|
|
29
|
+
licenseKey?: string | string[];
|
|
30
30
|
licenseFilePath?: string;
|
|
31
31
|
report?: Report | string;
|
|
32
32
|
shareReportConnection?: APIClientOptions;
|
|
@@ -691,6 +691,7 @@ declare namespace Flexmonster {
|
|
|
691
691
|
measure?: MeasureObject;
|
|
692
692
|
rows?: Member[];
|
|
693
693
|
value?: number;
|
|
694
|
+
chartType?: string;
|
|
694
695
|
}
|
|
695
696
|
|
|
696
697
|
interface ChartLegendItemData {
|
|
@@ -704,6 +705,7 @@ declare namespace Flexmonster {
|
|
|
704
705
|
isCollapsed?: boolean;
|
|
705
706
|
isDrilledUp?: boolean;
|
|
706
707
|
isDrilledDown?: boolean;
|
|
708
|
+
chartType?: string;
|
|
707
709
|
}
|
|
708
710
|
|
|
709
711
|
interface FlatSort {
|
|
@@ -799,6 +801,7 @@ declare namespace Flexmonster {
|
|
|
799
801
|
rightGroup?: boolean;
|
|
800
802
|
title?: string;
|
|
801
803
|
visible?: boolean;
|
|
804
|
+
divider?: boolean;
|
|
802
805
|
}
|
|
803
806
|
|
|
804
807
|
interface GetDataValueObject {
|