flexmonster 2.9.11 → 2.9.12
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 +10 -18
- package/flexmonster.es5.full.js +2585 -2569
- package/flexmonster.es5.js +2579 -2564
- package/flexmonster.full.js +2227 -2213
- package/flexmonster.js +2221 -2208
- package/flexmonster.min.css +1 -1
- package/lib/html2canvas.v1.min.js +3 -2
- package/package.json +1 -1
- package/theme/accessible/flexmonster.css +10 -18
- package/theme/accessible/flexmonster.min.css +1 -1
- package/theme/blackorange/flexmonster.css +10 -18
- package/theme/blackorange/flexmonster.min.css +1 -1
- package/theme/brightorange/flexmonster.css +10 -18
- package/theme/brightorange/flexmonster.min.css +1 -1
- package/theme/dark/flexmonster.css +10 -18
- package/theme/dark/flexmonster.min.css +1 -1
- package/theme/flexmonster-base.less +11 -23
- package/theme/green/flexmonster.css +10 -18
- package/theme/green/flexmonster.min.css +1 -1
- package/theme/lightblue/flexmonster.css +10 -18
- package/theme/lightblue/flexmonster.min.css +1 -1
- package/theme/macos/flexmonster.css +10 -18
- package/theme/macos/flexmonster.min.css +1 -1
- package/theme/midnight/flexmonster.css +10 -18
- package/theme/midnight/flexmonster.min.css +1 -1
- package/theme/old/flexmonster.css +10 -18
- package/theme/old/flexmonster.min.css +1 -1
- package/theme/orange/flexmonster.css +10 -18
- package/theme/orange/flexmonster.min.css +1 -1
- package/theme/purple/flexmonster.css +10 -18
- package/theme/purple/flexmonster.min.css +1 -1
- package/theme/softdefault/flexmonster.css +10 -18
- package/theme/softdefault/flexmonster.min.css +1 -1
- package/theme/stripedblue/flexmonster.css +10 -18
- package/theme/stripedblue/flexmonster.min.css +1 -1
- package/theme/stripedteal/flexmonster.css +10 -18
- package/theme/stripedteal/flexmonster.min.css +1 -1
- package/theme/teal/flexmonster.css +10 -18
- package/theme/teal/flexmonster.min.css +1 -1
- package/theme/yellow/flexmonster.css +10 -18
- package/theme/yellow/flexmonster.min.css +1 -1
- package/toolbar/flexmonster.toolbar.js +3 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
|
|
3
|
-
* November 2021 (v. 2.9.
|
|
3
|
+
* November 2021 (v. 2.9.12)
|
|
4
4
|
* Copyright (c) 2021 Flexmonster. All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* Flexmonster Pivot Table & Charts commercial licenses may be obtained at
|
|
@@ -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;
|