flexmonster 2.9.62 → 2.9.64
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 +2405 -2436
- package/flexmonster.js +2401 -2432
- package/flexmonster.min.css +1 -1
- 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 +15 -6
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
|
|
3
|
-
*
|
|
3
|
+
* November 2023 (v. 2.9.64)
|
|
4
4
|
* Copyright (c) 2023 Flexmonster. All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* Flexmonster Pivot Table & Charts commercial licenses may be obtained at
|
|
@@ -1285,6 +1285,14 @@ FlexmonsterToolbar.prototype.defaults.numberFormatting = {
|
|
|
1285
1285
|
{
|
|
1286
1286
|
label: "(1)$",
|
|
1287
1287
|
value: "(1)$"
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
label: "1$",
|
|
1291
|
+
value: "1$"
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
label: "$1",
|
|
1295
|
+
value: "$1"
|
|
1288
1296
|
}
|
|
1289
1297
|
],
|
|
1290
1298
|
negativeNumberFormats: [{
|
|
@@ -1307,6 +1315,10 @@ FlexmonsterToolbar.prototype.defaults.numberFormatting = {
|
|
|
1307
1315
|
label: "(1)",
|
|
1308
1316
|
value: "(1)"
|
|
1309
1317
|
},
|
|
1318
|
+
{
|
|
1319
|
+
label: "1",
|
|
1320
|
+
value: "1"
|
|
1321
|
+
}
|
|
1310
1322
|
],
|
|
1311
1323
|
isPercent: [{
|
|
1312
1324
|
label: "true_value",
|
|
@@ -2642,11 +2654,8 @@ FlexmonsterToolbar.prototype.setText = function (target, text) {
|
|
|
2642
2654
|
}
|
|
2643
2655
|
}
|
|
2644
2656
|
FlexmonsterToolbar.prototype.toTrustedHtml = function (html) {
|
|
2645
|
-
if (window['
|
|
2646
|
-
|
|
2647
|
-
createHTML: function(x) { return x; }
|
|
2648
|
-
});
|
|
2649
|
-
return htmlPolicy.createHTML(html);
|
|
2657
|
+
if (window['flexmonsterTrustedTypesPolicy']) {
|
|
2658
|
+
return window['flexmonsterTrustedTypesPolicy'].createHTML(html);
|
|
2650
2659
|
}
|
|
2651
2660
|
return html;
|
|
2652
2661
|
}
|