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.
- package/flexmonster.css +1 -1
- package/flexmonster.full.js +2430 -2426
- package/flexmonster.js +2427 -2423
- 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 +9 -1
- package/types/flexmonster.d.ts +5 -1
- package/flexmonster.es5.full.js +0 -3701
- package/flexmonster.es5.js +0 -3088
- package/lib/promise.min.js +0 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
|
|
3
|
-
*
|
|
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",
|
package/types/flexmonster.d.ts
CHANGED
|
@@ -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
|
};
|