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.
Files changed (43) hide show
  1. package/README.md +1 -1
  2. package/flexmonster.css +10 -18
  3. package/flexmonster.es5.full.js +2585 -2569
  4. package/flexmonster.es5.js +2579 -2564
  5. package/flexmonster.full.js +2227 -2213
  6. package/flexmonster.js +2221 -2208
  7. package/flexmonster.min.css +1 -1
  8. package/lib/html2canvas.v1.min.js +3 -2
  9. package/package.json +1 -1
  10. package/theme/accessible/flexmonster.css +10 -18
  11. package/theme/accessible/flexmonster.min.css +1 -1
  12. package/theme/blackorange/flexmonster.css +10 -18
  13. package/theme/blackorange/flexmonster.min.css +1 -1
  14. package/theme/brightorange/flexmonster.css +10 -18
  15. package/theme/brightorange/flexmonster.min.css +1 -1
  16. package/theme/dark/flexmonster.css +10 -18
  17. package/theme/dark/flexmonster.min.css +1 -1
  18. package/theme/flexmonster-base.less +11 -23
  19. package/theme/green/flexmonster.css +10 -18
  20. package/theme/green/flexmonster.min.css +1 -1
  21. package/theme/lightblue/flexmonster.css +10 -18
  22. package/theme/lightblue/flexmonster.min.css +1 -1
  23. package/theme/macos/flexmonster.css +10 -18
  24. package/theme/macos/flexmonster.min.css +1 -1
  25. package/theme/midnight/flexmonster.css +10 -18
  26. package/theme/midnight/flexmonster.min.css +1 -1
  27. package/theme/old/flexmonster.css +10 -18
  28. package/theme/old/flexmonster.min.css +1 -1
  29. package/theme/orange/flexmonster.css +10 -18
  30. package/theme/orange/flexmonster.min.css +1 -1
  31. package/theme/purple/flexmonster.css +10 -18
  32. package/theme/purple/flexmonster.min.css +1 -1
  33. package/theme/softdefault/flexmonster.css +10 -18
  34. package/theme/softdefault/flexmonster.min.css +1 -1
  35. package/theme/stripedblue/flexmonster.css +10 -18
  36. package/theme/stripedblue/flexmonster.min.css +1 -1
  37. package/theme/stripedteal/flexmonster.css +10 -18
  38. package/theme/stripedteal/flexmonster.min.css +1 -1
  39. package/theme/teal/flexmonster.css +10 -18
  40. package/theme/teal/flexmonster.min.css +1 -1
  41. package/theme/yellow/flexmonster.css +10 -18
  42. package/theme/yellow/flexmonster.min.css +1 -1
  43. 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.11)
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
- 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)
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;