flexmonster 2.9.37 → 2.9.39
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 +2296 -2291
- package/flexmonster.js +2295 -2290
- 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 +1 -1
- package/types/flexmonster.d.ts +5 -1
- package/flexmonster.es5.full.js +0 -3699
- package/flexmonster.es5.js +0 -3086
- package/lib/promise.min.js +0 -2
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
|
};
|