flexmonster 2.9.33 → 2.9.34
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 +4 -1
- package/flexmonster.es5.full.js +2412 -2412
- package/flexmonster.es5.js +2411 -2411
- package/flexmonster.full.js +2098 -2096
- package/flexmonster.js +2097 -2095
- package/flexmonster.min.css +1 -1
- package/package.json +1 -1
- package/theme/accessible/flexmonster.css +4 -1
- package/theme/accessible/flexmonster.min.css +1 -1
- package/theme/blackorange/flexmonster.css +4 -1
- package/theme/blackorange/flexmonster.min.css +1 -1
- package/theme/brightorange/flexmonster.css +4 -1
- package/theme/brightorange/flexmonster.min.css +1 -1
- package/theme/dark/flexmonster.css +4 -1
- package/theme/dark/flexmonster.min.css +1 -1
- package/theme/flexmonster-base.less +7 -1
- package/theme/green/flexmonster.css +4 -1
- package/theme/green/flexmonster.min.css +1 -1
- package/theme/lightblue/flexmonster.css +4 -1
- package/theme/lightblue/flexmonster.min.css +1 -1
- package/theme/macos/flexmonster.css +4 -1
- package/theme/macos/flexmonster.min.css +1 -1
- package/theme/midnight/flexmonster.css +4 -1
- package/theme/midnight/flexmonster.min.css +1 -1
- package/theme/old/flexmonster.css +4 -1
- package/theme/old/flexmonster.min.css +1 -1
- package/theme/orange/flexmonster.css +4 -1
- package/theme/orange/flexmonster.min.css +1 -1
- package/theme/purple/flexmonster.css +4 -1
- package/theme/purple/flexmonster.min.css +1 -1
- package/theme/softdefault/flexmonster.css +4 -1
- package/theme/softdefault/flexmonster.min.css +1 -1
- package/theme/stripedblue/flexmonster.css +4 -1
- package/theme/stripedblue/flexmonster.min.css +1 -1
- package/theme/stripedteal/flexmonster.css +4 -1
- package/theme/stripedteal/flexmonster.min.css +1 -1
- package/theme/teal/flexmonster.css +4 -1
- package/theme/teal/flexmonster.min.css +1 -1
- package/theme/yellow/flexmonster.css +4 -1
- package/theme/yellow/flexmonster.min.css +1 -1
- package/toolbar/flexmonster.toolbar.js +1 -1
- package/types/flexmonster.d.ts +1 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
|
|
3
|
-
* September 2022 (v. 2.9.
|
|
3
|
+
* September 2022 (v. 2.9.34)
|
|
4
4
|
* Copyright (c) 2022 Flexmonster. All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* Flexmonster Pivot Table & Charts commercial licenses may be obtained at
|
package/types/flexmonster.d.ts
CHANGED
|
@@ -73,7 +73,6 @@ declare namespace Flexmonster {
|
|
|
73
73
|
ready?: () => void;
|
|
74
74
|
reportchange?: () => void;
|
|
75
75
|
reportcomplete?: () => void;
|
|
76
|
-
reportfileloaded?: () => void;
|
|
77
76
|
reportfilecancelled?: () => void;
|
|
78
77
|
reportfileerror?: () => void;
|
|
79
78
|
runningquery?: () => void;
|
|
@@ -84,7 +83,6 @@ declare namespace Flexmonster {
|
|
|
84
83
|
interface Pivot {
|
|
85
84
|
addCalculatedMeasure(measure: Measure): void;
|
|
86
85
|
addCondition(condition: ConditionalFormat): void;
|
|
87
|
-
addJSON(json: object[]): void;
|
|
88
86
|
alert(options: { title?: string; message?: string; type?: string; buttons?: Array<{ label: string; handler?: () => void; }>; blocking?: boolean; }): void;
|
|
89
87
|
clear(): void;
|
|
90
88
|
clearFilter(hierarchyName: string): void;
|
|
@@ -487,6 +485,7 @@ declare namespace Flexmonster {
|
|
|
487
485
|
requestHeaders?: { [header: string]: string | number };
|
|
488
486
|
fontUrl?: string;
|
|
489
487
|
alwaysEnclose?: boolean;
|
|
488
|
+
pageFormat?: string;
|
|
490
489
|
}
|
|
491
490
|
|
|
492
491
|
interface Hierarchy {
|