flexmonster 2.9.7 → 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/README.md +7 -0
- package/flexmonster.css +60 -27
- package/flexmonster.es5.full.js +2801 -2702
- package/flexmonster.es5.js +2546 -2537
- package/flexmonster.full.js +2441 -2347
- package/flexmonster.js +2188 -2183
- package/flexmonster.min.css +1 -1
- package/lib/jspdf.min.js +254 -165
- package/lib/promise.min.js +1 -1
- package/localizations/id.json +602 -0
- package/localizations/nl.json +2 -2
- package/localizations/pt.json +1 -1
- package/localizations/th.json +602 -0
- package/package.json +1 -1
- package/theme/accessible/flexmonster.css +60 -27
- package/theme/accessible/flexmonster.min.css +1 -1
- package/theme/blackorange/flexmonster.css +60 -27
- package/theme/blackorange/flexmonster.min.css +1 -1
- package/theme/brightorange/flexmonster.css +60 -27
- package/theme/brightorange/flexmonster.min.css +1 -1
- package/theme/dark/flexmonster.css +60 -27
- package/theme/dark/flexmonster.min.css +1 -1
- package/theme/flexmonster-base.less +68 -39
- package/theme/green/flexmonster.css +60 -27
- package/theme/green/flexmonster.min.css +1 -1
- package/theme/lightblue/flexmonster.css +60 -27
- package/theme/lightblue/flexmonster.min.css +1 -1
- package/theme/macos/flexmonster.css +60 -27
- package/theme/macos/flexmonster.min.css +1 -1
- package/theme/midnight/flexmonster.css +60 -27
- package/theme/midnight/flexmonster.min.css +1 -1
- package/theme/old/flexmonster.css +60 -27
- package/theme/old/flexmonster.min.css +1 -1
- package/theme/orange/flexmonster.css +60 -27
- package/theme/orange/flexmonster.min.css +1 -1
- package/theme/purple/flexmonster.css +60 -27
- package/theme/purple/flexmonster.min.css +1 -1
- package/theme/softdefault/flexmonster.css +60 -27
- package/theme/softdefault/flexmonster.min.css +1 -1
- package/theme/stripedblue/flexmonster.css +60 -27
- package/theme/stripedblue/flexmonster.min.css +1 -1
- package/theme/stripedteal/flexmonster.css +60 -27
- package/theme/stripedteal/flexmonster.min.css +1 -1
- package/theme/teal/flexmonster.css +60 -27
- package/theme/teal/flexmonster.min.css +1 -1
- package/theme/yellow/flexmonster.css +60 -27
- package/theme/yellow/flexmonster.min.css +1 -1
- package/toolbar/flexmonster.toolbar.js +4 -4
- package/types/flexmonster.d.ts +9 -9
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
|
|
3
|
-
*
|
|
3
|
+
* November 2021 (v. 2.9.11)
|
|
4
4
|
* Copyright (c) 2021 Flexmonster. All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* Flexmonster Pivot Table & Charts commercial licenses may be obtained at
|
|
@@ -3096,7 +3096,7 @@ FlexmonsterToolbar.prototype.createTabMenu = function (dataProvider, parentTab)
|
|
|
3096
3096
|
|
|
3097
3097
|
function show() {
|
|
3098
3098
|
parentTab.classList.add("fm-opened");
|
|
3099
|
-
parentTab.classList.remove("fm-align-
|
|
3099
|
+
parentTab.classList.remove("fm-align-right");
|
|
3100
3100
|
menuList.classList.remove("fm-dropdown-scrollable-left");
|
|
3101
3101
|
menuList.classList.remove("fm-dropdown-scrollable-right");
|
|
3102
3102
|
menuContainer.style.right = menuContainer.style.left = null;
|
|
@@ -3107,12 +3107,12 @@ FlexmonsterToolbar.prototype.createTabMenu = function (dataProvider, parentTab)
|
|
|
3107
3107
|
var arrowWidth = (leftScrollArrow ? leftScrollArrow.offsetWidth : 0) + (rightScrollArrow ? rightScrollArrow.offsetWidth : 0);
|
|
3108
3108
|
if (menuRect.right > toolbarRect.right - arrowWidth) {
|
|
3109
3109
|
menuContainer.style.right = 0;
|
|
3110
|
-
_this.addClass(parentTab, "fm-align-
|
|
3110
|
+
_this.addClass(parentTab, "fm-align-right");
|
|
3111
3111
|
menuRect = menuContainer.getBoundingClientRect();
|
|
3112
3112
|
if (menuRect.right > toolbarRect.right - (rightScrollArrow ? rightScrollArrow.offsetWidth : 0)) {
|
|
3113
3113
|
var luft = menuRect.right - rightScrollArrow.getBoundingClientRect().left + 5;
|
|
3114
3114
|
menuContainer.style.right = luft + "px";
|
|
3115
|
-
_this.removeClass(parentTab, "fm-align-
|
|
3115
|
+
_this.removeClass(parentTab, "fm-align-right");
|
|
3116
3116
|
menuList.classList.add("fm-dropdown-scrollable-right");
|
|
3117
3117
|
}
|
|
3118
3118
|
} else if (menuRect.left < toolbarRect.left + (leftScrollArrow ? leftScrollArrow.offsetWidth : 0)) { //this block handles cases when scrolling tabs are partly hidden
|
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;
|
|
@@ -322,7 +322,7 @@ declare namespace Flexmonster {
|
|
|
322
322
|
|
|
323
323
|
interface Options {
|
|
324
324
|
chart?: {
|
|
325
|
-
activeMeasure?: MeasureObject;
|
|
325
|
+
activeMeasure?: MeasureObject | MeasureObject[];
|
|
326
326
|
activeTupleIndex?: number;
|
|
327
327
|
autoRange?: boolean;
|
|
328
328
|
labelsHierarchy?: string;
|