flexmonster 2.9.48 → 2.9.50
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 +2353 -2353
- package/flexmonster.js +2352 -2352
- 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 -6
package/types/flexmonster.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ declare namespace Flexmonster {
|
|
|
83
83
|
interface Pivot {
|
|
84
84
|
addCalculatedMeasure(measure: Measure): void;
|
|
85
85
|
addCondition(condition: ConditionalFormat): void;
|
|
86
|
-
alert(options: { title
|
|
86
|
+
alert(options: { title: string; message: string; type?: string; buttons?: Array<{ label: string; handler?: () => void; }>; blocking?: boolean; }): void;
|
|
87
87
|
clear(): void;
|
|
88
88
|
clearFilter(hierarchyName: string): void;
|
|
89
|
-
clearXMLACache(proxyUrl: string, databaseId: string, callbackHandler: ((response: object) => void) | string, cubeId
|
|
89
|
+
clearXMLACache(proxyUrl: string, databaseId: string, callbackHandler: ((response: object) => void) | string, cubeId?: string, measuresGroupId?: string,
|
|
90
90
|
username?: string, password?: string): void;
|
|
91
91
|
closeFieldsList(): void;
|
|
92
92
|
collapseAllData(): void;
|
|
93
|
-
collapseCell(axisName: string, tuple: string[], measure
|
|
93
|
+
collapseCell(axisName: string, tuple: string[], measure?: string): void;
|
|
94
94
|
collapseData(hierarchyName: string): void;
|
|
95
95
|
connectTo(object: DataSource): void;
|
|
96
96
|
customizeAPIRequest(customizeAPIRequestFunction: (request: object) => object): void;
|
|
@@ -160,7 +160,7 @@ declare namespace Flexmonster {
|
|
|
160
160
|
scrollToRow(rowIndex: number): void;
|
|
161
161
|
scrollToColumn(columnIndex: number): void;
|
|
162
162
|
setFilter(hierarchyName: string, filter: Filter): void;
|
|
163
|
-
setFormat(format: Format, measureName
|
|
163
|
+
setFormat(format: Format, measureName?: string, aggregation?: string): void;
|
|
164
164
|
setOptions(options: Options): void;
|
|
165
165
|
setReport(report: Report): void;
|
|
166
166
|
setSort(hierarchyName: string, sortName: string, customSorting?: string[]): void;
|
|
@@ -332,7 +332,6 @@ declare namespace Flexmonster {
|
|
|
332
332
|
activeMeasure?: MeasureObject | MeasureObject[];
|
|
333
333
|
activeTupleIndex?: number;
|
|
334
334
|
autoRange?: boolean;
|
|
335
|
-
labelsHierarchy?: string;
|
|
336
335
|
multipleMeasures?: boolean;
|
|
337
336
|
oneLevel?: boolean;
|
|
338
337
|
showFilter?: boolean;
|
|
@@ -390,7 +389,7 @@ declare namespace Flexmonster {
|
|
|
390
389
|
showCalculatedValuesButton?: boolean;
|
|
391
390
|
showDefaultSlice?: boolean;
|
|
392
391
|
showMemberProperties?: boolean;
|
|
393
|
-
sorting?: string
|
|
392
|
+
sorting?: string;
|
|
394
393
|
viewType?: string;
|
|
395
394
|
showAggregationLabels?: boolean;
|
|
396
395
|
useOlapFormatting?: boolean;
|