flexmonster 2.9.47 → 2.9.49
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 +2455 -2414
- package/flexmonster.js +2451 -2410
- 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 +9 -8
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;
|
|
@@ -118,8 +118,8 @@ declare namespace Flexmonster {
|
|
|
118
118
|
getFormat(measureName: string, aggregation?: string): Format;
|
|
119
119
|
getMeasures(): Measure[];
|
|
120
120
|
getMeasuresAsync(): Promise<Measure[]>;
|
|
121
|
-
getMembers(hierarchyName: string, memberName
|
|
122
|
-
getMembersAsync(hierarchyName: string, memberName
|
|
121
|
+
getMembers(hierarchyName: string, memberName?: string, callbackHandler?: ((members: Member[]) => void) | string): Member[];
|
|
122
|
+
getMembersAsync(hierarchyName: string, memberName?: string): Promise<Member[]>;
|
|
123
123
|
getOptions(): Options;
|
|
124
124
|
getReport(options?: GetReportOptions): Report | string;
|
|
125
125
|
getReportFilters(): Hierarchy[];
|
|
@@ -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;
|
|
@@ -364,6 +363,7 @@ declare namespace Flexmonster {
|
|
|
364
363
|
dragging?: boolean;
|
|
365
364
|
grandTotalsPosition?: string;
|
|
366
365
|
drillThroughMaxRows?: number;
|
|
366
|
+
autoSwitchToCompact?: boolean;
|
|
367
367
|
};
|
|
368
368
|
filter?: {
|
|
369
369
|
/**
|
|
@@ -389,7 +389,7 @@ declare namespace Flexmonster {
|
|
|
389
389
|
showCalculatedValuesButton?: boolean;
|
|
390
390
|
showDefaultSlice?: boolean;
|
|
391
391
|
showMemberProperties?: boolean;
|
|
392
|
-
sorting?: string
|
|
392
|
+
sorting?: string;
|
|
393
393
|
viewType?: string;
|
|
394
394
|
showAggregationLabels?: boolean;
|
|
395
395
|
useOlapFormatting?: boolean;
|
|
@@ -641,6 +641,7 @@ declare namespace Flexmonster {
|
|
|
641
641
|
divideByZeroValue?: string;
|
|
642
642
|
textAlign?: string;
|
|
643
643
|
isPercent?: boolean;
|
|
644
|
+
isCount?: boolean;
|
|
644
645
|
beautifyFloatingPoint?: boolean;
|
|
645
646
|
}
|
|
646
647
|
|