flexmonster 2.9.86 → 2.9.88
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/LICENSE.md +4 -3
- package/flexmonster.css +16 -1
- package/flexmonster.full.js +2457 -2425
- package/flexmonster.js +2451 -2400
- package/flexmonster.min.css +16 -1
- package/lib/canvg.min.js +1 -1
- package/lib/d3.v3.min.js +1 -1
- package/lib/flexmonster.amcharts.js +13 -3
- package/lib/flexmonster.fusioncharts.js +18 -8
- package/lib/flexmonster.googlecharts.js +13 -3
- package/lib/flexmonster.highcharts.js +18 -6
- package/lib/html2canvas.v1.min.js +1 -1
- package/lib/jspdf.min.js +1 -1
- package/lib/sha1.min.js +1 -20
- package/package.json +1 -1
- package/theme/accessible/flexmonster.css +16 -1
- package/theme/accessible/flexmonster.less +16 -1
- package/theme/accessible/flexmonster.min.css +16 -1
- package/theme/blackorange/flexmonster.css +16 -1
- package/theme/blackorange/flexmonster.less +16 -1
- package/theme/blackorange/flexmonster.min.css +16 -1
- package/theme/brightorange/flexmonster.css +16 -1
- package/theme/brightorange/flexmonster.less +16 -1
- package/theme/brightorange/flexmonster.min.css +16 -1
- package/theme/dark/flexmonster.css +16 -1
- package/theme/dark/flexmonster.less +16 -1
- package/theme/dark/flexmonster.min.css +16 -1
- package/theme/default/flexmonster.less +16 -1
- package/theme/flexmonster-base.less +17 -2
- package/theme/green/flexmonster.css +16 -1
- package/theme/green/flexmonster.less +16 -1
- package/theme/green/flexmonster.min.css +16 -1
- package/theme/lightblue/flexmonster.css +16 -1
- package/theme/lightblue/flexmonster.less +16 -1
- package/theme/lightblue/flexmonster.min.css +16 -1
- package/theme/macos/flexmonster.css +16 -1
- package/theme/macos/flexmonster.less +16 -1
- package/theme/macos/flexmonster.min.css +16 -1
- package/theme/midnight/flexmonster.css +16 -1
- package/theme/midnight/flexmonster.less +16 -1
- package/theme/midnight/flexmonster.min.css +16 -1
- package/theme/old/flexmonster.css +16 -1
- package/theme/old/flexmonster.less +16 -1
- package/theme/old/flexmonster.min.css +16 -1
- package/theme/orange/flexmonster.css +16 -1
- package/theme/orange/flexmonster.less +16 -1
- package/theme/orange/flexmonster.min.css +16 -1
- package/theme/purple/flexmonster.css +16 -1
- package/theme/purple/flexmonster.less +16 -1
- package/theme/purple/flexmonster.min.css +16 -1
- package/theme/softdefault/flexmonster.css +16 -1
- package/theme/softdefault/flexmonster.less +16 -1
- package/theme/softdefault/flexmonster.min.css +16 -1
- package/theme/stripedblue/flexmonster.css +16 -1
- package/theme/stripedblue/flexmonster.less +16 -1
- package/theme/stripedblue/flexmonster.min.css +16 -1
- package/theme/stripedteal/flexmonster.css +16 -1
- package/theme/stripedteal/flexmonster.less +16 -1
- package/theme/stripedteal/flexmonster.min.css +16 -1
- package/theme/teal/flexmonster.css +16 -1
- package/theme/teal/flexmonster.less +16 -1
- package/theme/teal/flexmonster.min.css +16 -1
- package/theme/yellow/flexmonster.css +16 -1
- package/theme/yellow/flexmonster.less +16 -1
- package/theme/yellow/flexmonster.min.css +16 -1
- package/toolbar/flexmonster.toolbar.js +9 -3
- package/types/flexmonster.d.ts +16 -10
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
|
|
3
|
-
*
|
|
3
|
+
* October 2024 (v. 2.9.88)
|
|
4
4
|
* Copyright (c) 2024 Flexmonster. All rights reserved.
|
|
5
5
|
*
|
|
6
|
-
* Flexmonster Pivot Table & Charts
|
|
6
|
+
* Flexmonster Pivot Table & Charts is a part of Flexmonster Software that is distributed under the terms and conditions of Flexmonster Software License Agreement:
|
|
7
|
+
* https://www.flexmonster.com/software-license-agreement/
|
|
8
|
+
*
|
|
9
|
+
* By downloading, installing, and/or otherwise using Flexmonster Pivot Table & Charts, you accept and agree to be bound by and require each of your Representatives,
|
|
10
|
+
* clients and/or end-users, as the case may be, to be bound by all the terms and conditions of
|
|
11
|
+
* Flexmonster Software License Agreement: https://www.flexmonster.com/software-license-agreement/
|
|
12
|
+
*
|
|
13
|
+
* Pricing for Commercial License Models can be found on Flexmonster pricing page:
|
|
7
14
|
* https://www.flexmonster.com/pivot-table-editions-and-pricing/
|
|
8
|
-
* If you do not own a commercial license, this file shall be governed by the trial license terms.
|
|
9
15
|
*/
|
|
10
16
|
var FlexmonsterToolbar = function (pivotContainer, pivot, _, width, labels, dataSourceType) {
|
|
11
17
|
this.pivot = pivot;
|
package/types/flexmonster.d.ts
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
|
|
3
|
+
* October 2024 (v. 2.9.88)
|
|
4
|
+
* Copyright (c) 2024 Flexmonster. All rights reserved.
|
|
5
|
+
*
|
|
6
|
+
* Flexmonster Pivot Table & Charts is a part of Flexmonster Software that is distributed under the terms and conditions of Flexmonster Software License Agreement:
|
|
7
|
+
* https://www.flexmonster.com/software-license-agreement/
|
|
8
|
+
*
|
|
9
|
+
* By downloading, installing, and/or otherwise using Flexmonster Pivot Table & Charts, you accept and agree to be bound by and require each of your Representatives,
|
|
10
|
+
* clients and/or end-users, as the case may be, to be bound by all the terms and conditions of
|
|
11
|
+
* Flexmonster Software License Agreement: https://www.flexmonster.com/software-license-agreement/
|
|
12
|
+
*
|
|
13
|
+
* Pricing for Commercial License Models can be found on Flexmonster pricing page:
|
|
14
|
+
* https://www.flexmonster.com/pivot-table-editions-and-pricing/
|
|
15
|
+
*/
|
|
11
16
|
export as namespace Flexmonster;
|
|
12
17
|
|
|
13
18
|
declare const Flexmonster: FlexmonsterConstructor;
|
|
@@ -375,6 +380,7 @@ declare namespace Flexmonster {
|
|
|
375
380
|
dateFormat?: string;
|
|
376
381
|
liveSearch?: boolean;
|
|
377
382
|
filterByDateAndTime?: boolean;
|
|
383
|
+
allowEmptyMembersFilter?: boolean;
|
|
378
384
|
};
|
|
379
385
|
allowBrowsersCache?: boolean;
|
|
380
386
|
configuratorActive?: boolean;
|