flexmonster 2.9.76 → 2.9.77
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 +22 -1
- package/flexmonster.full.js +2453 -2442
- package/flexmonster.js +2416 -2405
- package/flexmonster.min.css +1 -1
- package/package.json +1 -1
- package/theme/accessible/flexmonster.css +22 -1
- package/theme/accessible/flexmonster.min.css +1 -1
- package/theme/blackorange/flexmonster.css +22 -1
- package/theme/blackorange/flexmonster.min.css +1 -1
- package/theme/brightorange/flexmonster.css +22 -1
- package/theme/brightorange/flexmonster.min.css +1 -1
- package/theme/dark/flexmonster.css +22 -1
- package/theme/dark/flexmonster.min.css +1 -1
- package/theme/flexmonster-base.less +26 -1
- package/theme/green/flexmonster.css +22 -1
- package/theme/green/flexmonster.min.css +1 -1
- package/theme/lightblue/flexmonster.css +22 -1
- package/theme/lightblue/flexmonster.min.css +1 -1
- package/theme/macos/flexmonster.css +22 -1
- package/theme/macos/flexmonster.min.css +1 -1
- package/theme/midnight/flexmonster.css +22 -1
- package/theme/midnight/flexmonster.min.css +1 -1
- package/theme/old/flexmonster.css +22 -1
- package/theme/old/flexmonster.min.css +1 -1
- package/theme/orange/flexmonster.css +22 -1
- package/theme/orange/flexmonster.min.css +1 -1
- package/theme/purple/flexmonster.css +22 -1
- package/theme/purple/flexmonster.min.css +1 -1
- package/theme/softdefault/flexmonster.css +22 -1
- package/theme/softdefault/flexmonster.min.css +1 -1
- package/theme/stripedblue/flexmonster.css +22 -1
- package/theme/stripedblue/flexmonster.min.css +1 -1
- package/theme/stripedteal/flexmonster.css +22 -1
- package/theme/stripedteal/flexmonster.min.css +1 -1
- package/theme/teal/flexmonster.css +22 -1
- package/theme/teal/flexmonster.min.css +1 -1
- package/theme/yellow/flexmonster.css +22 -1
- package/theme/yellow/flexmonster.min.css +1 -1
- package/toolbar/flexmonster.toolbar.js +2 -2
- package/types/flexmonster.d.ts +1 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
|
|
3
|
-
*
|
|
3
|
+
* May 2024 (v. 2.9.77)
|
|
4
4
|
* Copyright (c) 2024 Flexmonster. All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* Flexmonster Pivot Table & Charts commercial licenses may be obtained at
|
|
@@ -1827,7 +1827,7 @@ FlexmonsterToolbar.prototype.showConditionalFormattingDialog = function (measure
|
|
|
1827
1827
|
};
|
|
1828
1828
|
var onAddConditionBtnClick = function () {
|
|
1829
1829
|
var conditionalFormat = _this.defaults.defaultConditionalFormat
|
|
1830
|
-
? _this.defaults.defaultConditionalFormat
|
|
1830
|
+
? JSON.parse(JSON.stringify(_this.defaults.defaultConditionalFormat))
|
|
1831
1831
|
: {
|
|
1832
1832
|
fontFamily: 'Arial',
|
|
1833
1833
|
fontSize: '12px',
|
package/types/flexmonster.d.ts
CHANGED