flexmonster 2.9.10 → 2.9.14
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/README.md +1 -1
- package/flexmonster.css +41 -19
- package/flexmonster.es5.full.js +2730 -2696
- package/flexmonster.es5.js +2692 -2664
- package/flexmonster.full.js +2389 -2362
- package/flexmonster.js +2352 -2331
- package/flexmonster.min.css +1 -1
- package/lib/canvg.min.js +2 -6
- package/lib/flexmonster.highcharts.js +13 -15
- package/lib/html2canvas.v1.min.js +3 -2
- package/lib/promise.min.js +1 -1
- package/lib/sha1.min.js +21 -13
- package/package.json +1 -1
- package/theme/accessible/flexmonster.css +41 -19
- package/theme/accessible/flexmonster.min.css +1 -1
- package/theme/blackorange/flexmonster.css +41 -19
- package/theme/blackorange/flexmonster.min.css +1 -1
- package/theme/brightorange/flexmonster.css +41 -19
- package/theme/brightorange/flexmonster.min.css +1 -1
- package/theme/dark/flexmonster.css +41 -19
- package/theme/dark/flexmonster.min.css +1 -1
- package/theme/flexmonster-base.less +45 -23
- package/theme/green/flexmonster.css +41 -19
- package/theme/green/flexmonster.min.css +1 -1
- package/theme/lightblue/flexmonster.css +41 -19
- package/theme/lightblue/flexmonster.min.css +1 -1
- package/theme/macos/flexmonster.css +41 -19
- package/theme/macos/flexmonster.min.css +1 -1
- package/theme/midnight/flexmonster.css +41 -19
- package/theme/midnight/flexmonster.min.css +1 -1
- package/theme/old/flexmonster.css +41 -19
- package/theme/old/flexmonster.min.css +1 -1
- package/theme/orange/flexmonster.css +41 -19
- package/theme/orange/flexmonster.min.css +1 -1
- package/theme/purple/flexmonster.css +41 -19
- package/theme/purple/flexmonster.min.css +1 -1
- package/theme/softdefault/flexmonster.css +41 -19
- package/theme/softdefault/flexmonster.min.css +1 -1
- package/theme/stripedblue/flexmonster.css +41 -19
- package/theme/stripedblue/flexmonster.min.css +1 -1
- package/theme/stripedteal/flexmonster.css +41 -19
- package/theme/stripedteal/flexmonster.min.css +1 -1
- package/theme/teal/flexmonster.css +41 -19
- package/theme/teal/flexmonster.min.css +1 -1
- package/theme/yellow/flexmonster.css +41 -19
- package/theme/yellow/flexmonster.min.css +1 -1
- package/toolbar/flexmonster.toolbar.js +4 -3
- package/types/flexmonster.d.ts +13 -13
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
|
|
3
|
-
*
|
|
3
|
+
* December 2021 (v. 2.9.14)
|
|
4
4
|
* Copyright (c) 2021 Flexmonster. All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* Flexmonster Pivot Table & Charts commercial licenses may be obtained at
|
|
@@ -1743,7 +1743,7 @@ FlexmonsterToolbar.prototype.showConditionalFormattingDialog = function (measure
|
|
|
1743
1743
|
}
|
|
1744
1744
|
}
|
|
1745
1745
|
for (var i = 0; i < _measures.length; i++) {// adding all the measures from the slice.measures list to the dropdown the list
|
|
1746
|
-
if (_uniqueNames.indexOf(_measures[i].uniqueName)
|
|
1746
|
+
if (_uniqueNames.indexOf(_measures[i].uniqueName) === -1 && _measures[i].type === "number") {
|
|
1747
1747
|
_uniqueNames.push(_measures[i].uniqueName);
|
|
1748
1748
|
measures.push(_measures[i]);
|
|
1749
1749
|
}
|
|
@@ -3228,7 +3228,8 @@ FlexmonsterToolbar.prototype.osUtils = {
|
|
|
3228
3228
|
isMac: /Mac/i.test(navigator.platform),
|
|
3229
3229
|
isAndroid: navigator.userAgent.match(/Android/i) ? true : false,
|
|
3230
3230
|
isBlackBerry: /BlackBerry/i.test(navigator.platform),
|
|
3231
|
-
|
|
3231
|
+
isReactNative: /ReactNative/i.test(navigator.product),
|
|
3232
|
+
isMobile: navigator.userAgent.match(/iPhone|iPad|iPod/i) || navigator.platform.match(/iPhone|iPad|iPod/i) || navigator.userAgent.match(/Android/i) || /BlackBerry/i.test(navigator.platform) || /ReactNative/i.test(navigator.product)
|
|
3232
3233
|
};
|
|
3233
3234
|
FlexmonsterToolbar.PopupManager = function (toolbar) {
|
|
3234
3235
|
this.toolbar = toolbar;
|
package/types/flexmonster.d.ts
CHANGED
|
@@ -177,31 +177,31 @@ declare namespace Flexmonster {
|
|
|
177
177
|
updateData(object: DataSource | object[], options?: { ignoreScroll?: boolean, ignoreSorting?: boolean, partial?: boolean }): void;
|
|
178
178
|
version: string;
|
|
179
179
|
amcharts?: {
|
|
180
|
-
getData(options: { slice?: Slice; prepareDataFunction?: (rawData: any) => any },
|
|
181
|
-
callbackHandler: ((
|
|
182
|
-
updateHandler?: ((
|
|
180
|
+
getData(options: { slice?: Slice; prepareDataFunction?: (rawData: any, options: any) => any },
|
|
181
|
+
callbackHandler: ((chartData: GetDataValueObject, rawData: GetDataValueObject) => void) | string,
|
|
182
|
+
updateHandler?: ((chartData: GetDataValueObject, rawData: GetDataValueObject) => void) | string): void;
|
|
183
183
|
getNumberFormatPattern(format: object): string;
|
|
184
184
|
getCategoryName(rawData: any): string;
|
|
185
185
|
getMeasureNameByIndex(rawData: any, measureIndex: number): string;
|
|
186
186
|
getNumberOfMeasures(rawData: any): number;
|
|
187
187
|
};
|
|
188
188
|
fusioncharts?: {
|
|
189
|
-
getData(options: { type: string; slice?: Slice; prepareDataFunction?: (rawData: any) => any },
|
|
190
|
-
callbackHandler: ((
|
|
191
|
-
updateHandler?: ((
|
|
189
|
+
getData(options: { type: string; slice?: Slice; prepareDataFunction?: (rawData: any, options: any) => any },
|
|
190
|
+
callbackHandler: ((chartData: GetDataValueObject, rawData: GetDataValueObject) => void) | string,
|
|
191
|
+
updateHandler?: ((chartData: GetDataValueObject, rawData: GetDataValueObject) => void) | string): void;
|
|
192
192
|
getNumberFormat(format: object): object;
|
|
193
193
|
};
|
|
194
194
|
googlecharts?: {
|
|
195
|
-
getData(options: { type?: string; slice?: Slice; prepareDataFunction?: (rawData: any) => any },
|
|
196
|
-
callbackHandler: ((
|
|
197
|
-
updateHandler?: ((
|
|
195
|
+
getData(options: { type?: string; slice?: Slice; prepareDataFunction?: (rawData: any, options: any) => any },
|
|
196
|
+
callbackHandler: ((chartData: GetDataValueObject, rawData: GetDataValueObject) => void) | string,
|
|
197
|
+
updateHandler?: ((chartData: GetDataValueObject, rawData: GetDataValueObject) => void) | string): void;
|
|
198
198
|
getNumberFormat(format: object): object;
|
|
199
199
|
getNumberFormatPattern(format: object): string;
|
|
200
200
|
};
|
|
201
201
|
highcharts?: {
|
|
202
|
-
getData(options: { type?: string; slice?: Slice; xAxisType?: string; valuesOnly?: boolean, withDrilldown?: boolean, prepareDataFunction?: (rawData: any) => any },
|
|
203
|
-
callbackHandler: ((
|
|
204
|
-
updateHandler?: ((
|
|
202
|
+
getData(options: { type?: string; slice?: Slice; xAxisType?: string; valuesOnly?: boolean, withDrilldown?: boolean, prepareDataFunction?: (rawData: any, options: any) => any },
|
|
203
|
+
callbackHandler: ((chartData: GetDataValueObject, rawData: GetDataValueObject) => void) | string,
|
|
204
|
+
updateHandler?: ((chartData: GetDataValueObject, rawData: GetDataValueObject) => void) | string): void;
|
|
205
205
|
getAxisFormat(format: object): string;
|
|
206
206
|
getPointXFormat(format: object): string;
|
|
207
207
|
getPointYFormat(format: object): string;
|
|
@@ -350,7 +350,7 @@ declare namespace Flexmonster {
|
|
|
350
350
|
showHierarchies?: boolean;
|
|
351
351
|
showHierarchyCaptions?: boolean;
|
|
352
352
|
showReportFiltersArea?: boolean;
|
|
353
|
-
showTotals?:
|
|
353
|
+
showTotals?: string;
|
|
354
354
|
title?: string;
|
|
355
355
|
type?: string;
|
|
356
356
|
showAutoCalculationBar?: boolean;
|