flexmonster 2.9.55 → 2.9.57
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.full.js +2626 -2582
- package/flexmonster.js +2517 -2474
- package/flexmonster.min.css +1 -1
- package/lib/jspdf.min.js +23 -22
- 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 +6 -14
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
|
|
3
|
-
*
|
|
3
|
+
* August 2023 (v. 2.9.57)
|
|
4
4
|
* Copyright (c) 2023 Flexmonster. All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* Flexmonster Pivot Table & Charts commercial licenses may be obtained at
|
|
@@ -398,7 +398,6 @@ FlexmonsterToolbar.prototype.init = function () {
|
|
|
398
398
|
}
|
|
399
399
|
|
|
400
400
|
var createToolbarContentFromTabs = function (leftGroup, rightGroup, toolbar) { //fills toolbar with the defined tabs
|
|
401
|
-
|
|
402
401
|
for (var i = 0; i < _this.dataProvider.length; i++) {
|
|
403
402
|
if (_this.isDisabled(_this.dataProvider[i])) continue;
|
|
404
403
|
if (_this.osUtils.isMobile && _this.dataProvider[i].menu != null && _this.dataProvider[i].collapse != true) {
|
|
@@ -511,12 +510,11 @@ FlexmonsterToolbar.prototype.init = function () {
|
|
|
511
510
|
clear();
|
|
512
511
|
createToolbar();
|
|
513
512
|
enableToolbarScrolling();
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
}
|
|
513
|
+
var fullscreenTab = _this.pivotContainer.querySelector("#fm-tab-fullscreen");
|
|
514
|
+
if (fullscreenTab) {
|
|
515
|
+
var isFullscreen = _this.isFullscreen();
|
|
516
|
+
fullscreenTab.querySelector(".fm-svg-icon").innerHTML = isFullscreen ? _this.icons.minimize : _this.icons.fullscreen;
|
|
517
|
+
_this.setText(fullscreenTab.querySelector(".fm-tab-label"), isFullscreen ? _this.Labels.minimize : _this.Labels.fullscreen);
|
|
520
518
|
}
|
|
521
519
|
}
|
|
522
520
|
|
|
@@ -2603,12 +2601,6 @@ FlexmonsterToolbar.prototype.exitFullscreen = function () {
|
|
|
2603
2601
|
}
|
|
2604
2602
|
|
|
2605
2603
|
this._redrawToolbar();
|
|
2606
|
-
|
|
2607
|
-
var fullscreenTab = this.pivotContainer.querySelector("#fm-tab-fullscreen");
|
|
2608
|
-
if (fullscreenTab) {
|
|
2609
|
-
fullscreenTab.querySelector(".fm-svg-icon").innerHTML = this.icons.minimize;
|
|
2610
|
-
this.setText(fullscreenTab.querySelector(".fm-tab-label"), this.Labels.minimize);
|
|
2611
|
-
}
|
|
2612
2604
|
}
|
|
2613
2605
|
|
|
2614
2606
|
// PRIVATE API
|