flexmonster 2.9.13 → 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/flexmonster.css +1 -1
- package/flexmonster.es5.full.js +2219 -2224
- package/flexmonster.es5.js +2208 -2209
- package/flexmonster.full.js +1972 -1976
- package/flexmonster.js +1962 -1962
- package/flexmonster.min.css +1 -1
- package/lib/canvg.min.js +2 -6
- package/lib/flexmonster.highcharts.js +13 -15
- package/lib/promise.min.js +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 +2 -2
- package/types/flexmonster.d.ts +4 -4
|
@@ -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
|
}
|
package/types/flexmonster.d.ts
CHANGED
|
@@ -177,7 +177,7 @@ 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 },
|
|
180
|
+
getData(options: { slice?: Slice; prepareDataFunction?: (rawData: any, options: any) => any },
|
|
181
181
|
callbackHandler: ((chartData: GetDataValueObject, rawData: GetDataValueObject) => void) | string,
|
|
182
182
|
updateHandler?: ((chartData: GetDataValueObject, rawData: GetDataValueObject) => void) | string): void;
|
|
183
183
|
getNumberFormatPattern(format: object): string;
|
|
@@ -186,20 +186,20 @@ declare namespace Flexmonster {
|
|
|
186
186
|
getNumberOfMeasures(rawData: any): number;
|
|
187
187
|
};
|
|
188
188
|
fusioncharts?: {
|
|
189
|
-
getData(options: { type: string; slice?: Slice; prepareDataFunction?: (rawData: any) => any },
|
|
189
|
+
getData(options: { type: string; slice?: Slice; prepareDataFunction?: (rawData: any, options: any) => any },
|
|
190
190
|
callbackHandler: ((chartData: GetDataValueObject, rawData: GetDataValueObject) => void) | string,
|
|
191
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 },
|
|
195
|
+
getData(options: { type?: string; slice?: Slice; prepareDataFunction?: (rawData: any, options: any) => any },
|
|
196
196
|
callbackHandler: ((chartData: GetDataValueObject, rawData: GetDataValueObject) => void) | string,
|
|
197
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 },
|
|
202
|
+
getData(options: { type?: string; slice?: Slice; xAxisType?: string; valuesOnly?: boolean, withDrilldown?: boolean, prepareDataFunction?: (rawData: any, options: any) => any },
|
|
203
203
|
callbackHandler: ((chartData: GetDataValueObject, rawData: GetDataValueObject) => void) | string,
|
|
204
204
|
updateHandler?: ((chartData: GetDataValueObject, rawData: GetDataValueObject) => void) | string): void;
|
|
205
205
|
getAxisFormat(format: object): string;
|