flexmonster 2.9.10 → 2.9.11
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 +41 -11
- package/flexmonster.es5.full.js +2423 -2417
- package/flexmonster.es5.js +2422 -2416
- package/flexmonster.full.js +1392 -1392
- package/flexmonster.js +1391 -1391
- package/flexmonster.min.css +1 -1
- package/package.json +1 -1
- package/theme/accessible/flexmonster.css +41 -11
- package/theme/accessible/flexmonster.min.css +1 -1
- package/theme/blackorange/flexmonster.css +41 -11
- package/theme/blackorange/flexmonster.min.css +1 -1
- package/theme/brightorange/flexmonster.css +41 -11
- package/theme/brightorange/flexmonster.min.css +1 -1
- package/theme/dark/flexmonster.css +41 -11
- package/theme/dark/flexmonster.min.css +1 -1
- package/theme/flexmonster-base.less +46 -12
- package/theme/green/flexmonster.css +41 -11
- package/theme/green/flexmonster.min.css +1 -1
- package/theme/lightblue/flexmonster.css +41 -11
- package/theme/lightblue/flexmonster.min.css +1 -1
- package/theme/macos/flexmonster.css +41 -11
- package/theme/macos/flexmonster.min.css +1 -1
- package/theme/midnight/flexmonster.css +41 -11
- package/theme/midnight/flexmonster.min.css +1 -1
- package/theme/old/flexmonster.css +41 -11
- package/theme/old/flexmonster.min.css +1 -1
- package/theme/orange/flexmonster.css +41 -11
- package/theme/orange/flexmonster.min.css +1 -1
- package/theme/purple/flexmonster.css +41 -11
- package/theme/purple/flexmonster.min.css +1 -1
- package/theme/softdefault/flexmonster.css +41 -11
- package/theme/softdefault/flexmonster.min.css +1 -1
- package/theme/stripedblue/flexmonster.css +41 -11
- package/theme/stripedblue/flexmonster.min.css +1 -1
- package/theme/stripedteal/flexmonster.css +41 -11
- package/theme/stripedteal/flexmonster.min.css +1 -1
- package/theme/teal/flexmonster.css +41 -11
- package/theme/teal/flexmonster.min.css +1 -1
- package/theme/yellow/flexmonster.css +41 -11
- package/theme/yellow/flexmonster.min.css +1 -1
- package/toolbar/flexmonster.toolbar.js +1 -1
- package/types/flexmonster.d.ts +8 -8
package/types/flexmonster.d.ts
CHANGED
|
@@ -178,8 +178,8 @@ declare namespace Flexmonster {
|
|
|
178
178
|
version: string;
|
|
179
179
|
amcharts?: {
|
|
180
180
|
getData(options: { slice?: Slice; prepareDataFunction?: (rawData: any) => any },
|
|
181
|
-
callbackHandler: ((
|
|
182
|
-
updateHandler?: ((
|
|
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;
|
|
@@ -187,21 +187,21 @@ declare namespace Flexmonster {
|
|
|
187
187
|
};
|
|
188
188
|
fusioncharts?: {
|
|
189
189
|
getData(options: { type: string; slice?: Slice; prepareDataFunction?: (rawData: any) => any },
|
|
190
|
-
callbackHandler: ((
|
|
191
|
-
updateHandler?: ((
|
|
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
195
|
getData(options: { type?: string; slice?: Slice; prepareDataFunction?: (rawData: any) => any },
|
|
196
|
-
callbackHandler: ((
|
|
197
|
-
updateHandler?: ((
|
|
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
202
|
getData(options: { type?: string; slice?: Slice; xAxisType?: string; valuesOnly?: boolean, withDrilldown?: boolean, prepareDataFunction?: (rawData: any) => any },
|
|
203
|
-
callbackHandler: ((
|
|
204
|
-
updateHandler?: ((
|
|
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;
|