flexmonster 2.9.89 → 2.9.91

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 (62) hide show
  1. package/flexmonster.css +12 -2
  2. package/flexmonster.full.js +2422 -2376
  3. package/flexmonster.js +2409 -2363
  4. package/flexmonster.min.css +2 -2
  5. package/lib/flexmonster.amcharts.js +1 -1
  6. package/lib/flexmonster.fusioncharts.js +1 -1
  7. package/lib/flexmonster.googlecharts.js +1 -1
  8. package/lib/flexmonster.highcharts.js +1 -1
  9. package/lib/sha1.min.js +1 -1
  10. package/package.json +1 -1
  11. package/theme/accessible/flexmonster.css +12 -2
  12. package/theme/accessible/flexmonster.less +1 -1
  13. package/theme/accessible/flexmonster.min.css +2 -2
  14. package/theme/blackorange/flexmonster.css +12 -2
  15. package/theme/blackorange/flexmonster.less +1 -1
  16. package/theme/blackorange/flexmonster.min.css +2 -2
  17. package/theme/brightorange/flexmonster.css +12 -2
  18. package/theme/brightorange/flexmonster.less +1 -1
  19. package/theme/brightorange/flexmonster.min.css +2 -2
  20. package/theme/dark/flexmonster.css +12 -2
  21. package/theme/dark/flexmonster.less +1 -1
  22. package/theme/dark/flexmonster.min.css +2 -2
  23. package/theme/default/flexmonster.less +1 -1
  24. package/theme/flexmonster-base.less +10 -2
  25. package/theme/green/flexmonster.css +12 -2
  26. package/theme/green/flexmonster.less +1 -1
  27. package/theme/green/flexmonster.min.css +2 -2
  28. package/theme/lightblue/flexmonster.css +12 -2
  29. package/theme/lightblue/flexmonster.less +1 -1
  30. package/theme/lightblue/flexmonster.min.css +2 -2
  31. package/theme/macos/flexmonster.css +12 -2
  32. package/theme/macos/flexmonster.less +1 -1
  33. package/theme/macos/flexmonster.min.css +2 -2
  34. package/theme/midnight/flexmonster.css +12 -2
  35. package/theme/midnight/flexmonster.less +1 -1
  36. package/theme/midnight/flexmonster.min.css +2 -2
  37. package/theme/old/flexmonster.css +12 -2
  38. package/theme/old/flexmonster.less +1 -1
  39. package/theme/old/flexmonster.min.css +2 -2
  40. package/theme/orange/flexmonster.css +12 -2
  41. package/theme/orange/flexmonster.less +1 -1
  42. package/theme/orange/flexmonster.min.css +2 -2
  43. package/theme/purple/flexmonster.css +12 -2
  44. package/theme/purple/flexmonster.less +1 -1
  45. package/theme/purple/flexmonster.min.css +2 -2
  46. package/theme/softdefault/flexmonster.css +12 -2
  47. package/theme/softdefault/flexmonster.less +1 -1
  48. package/theme/softdefault/flexmonster.min.css +2 -2
  49. package/theme/stripedblue/flexmonster.css +12 -2
  50. package/theme/stripedblue/flexmonster.less +1 -1
  51. package/theme/stripedblue/flexmonster.min.css +2 -2
  52. package/theme/stripedteal/flexmonster.css +12 -2
  53. package/theme/stripedteal/flexmonster.less +1 -1
  54. package/theme/stripedteal/flexmonster.min.css +2 -2
  55. package/theme/teal/flexmonster.css +12 -2
  56. package/theme/teal/flexmonster.less +1 -1
  57. package/theme/teal/flexmonster.min.css +2 -2
  58. package/theme/yellow/flexmonster.css +12 -2
  59. package/theme/yellow/flexmonster.less +1 -1
  60. package/theme/yellow/flexmonster.min.css +2 -2
  61. package/toolbar/flexmonster.toolbar.js +8 -1
  62. package/types/flexmonster.d.ts +1 -1
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
3
- * October 2024 (v. 2.9.89)
3
+ * November 2024 (v. 2.9.91)
4
4
  * Copyright (c) 2024 Flexmonster. All rights reserved.
5
5
  *
6
6
  * Flexmonster Pivot Table & Charts is a part of Flexmonster Software that is distributed under the terms and conditions of Flexmonster Software License Agreement:
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
3
- * October 2024 (v. 2.9.89)
3
+ * November 2024 (v. 2.9.91)
4
4
  * Copyright (c) 2024 Flexmonster. All rights reserved.
5
5
  *
6
6
  * Flexmonster Pivot Table & Charts is a part of Flexmonster Software that is distributed under the terms and conditions of Flexmonster Software License Agreement:
@@ -16,7 +16,7 @@
16
16
  @import (reference) "default/flexmonster.less";
17
17
 
18
18
  :root {
19
- --fm-version: "2.9.89";
19
+ --fm-version: "2.9.91";
20
20
  }
21
21
 
22
22
  /* ===== RESET STYLES ===== */
@@ -799,6 +799,14 @@
799
799
  color: @ui-btn-dark-text-color;
800
800
  background: @ui-btn-dark-color-hover;
801
801
  }
802
+
803
+ &:disabled {
804
+ opacity: 1;
805
+ pointer-events: none;
806
+ cursor: default;
807
+ color: lighten(@ui-btn-dark-text-color, 30%);
808
+ background: lighten(@ui-background-dark, 30%);
809
+ }
802
810
  }
803
811
 
804
812
  a.fm-ui-btn-light,
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
3
- * October 2024 (v. 2.9.89)
3
+ * November 2024 (v. 2.9.91)
4
4
  * Copyright (c) 2024 Flexmonster. All rights reserved.
5
5
  *
6
6
  * Flexmonster Pivot Table & Charts is a part of Flexmonster Software that is distributed under the terms and conditions of Flexmonster Software License Agreement:
@@ -14,7 +14,7 @@
14
14
  * https://www.flexmonster.com/pivot-table-editions-and-pricing/
15
15
  */
16
16
  :root {
17
- --fm-version: "2.9.89";
17
+ --fm-version: "2.9.91";
18
18
  }
19
19
  /* ===== RESET STYLES ===== */
20
20
  #fm-pivot-view,
@@ -891,6 +891,16 @@
891
891
  color: #fff;
892
892
  background: #59a10e;
893
893
  }
894
+ #fm-pivot-view a.fm-ui-btn-dark:disabled,
895
+ #fm-toolbar-wrapper a.fm-ui-btn-dark:disabled,
896
+ #fm-pivot-view button.fm-ui-btn-dark:disabled,
897
+ #fm-toolbar-wrapper button.fm-ui-btn-dark:disabled {
898
+ opacity: 1;
899
+ pointer-events: none;
900
+ cursor: default;
901
+ color: #ffffff;
902
+ background: #b5e97e;
903
+ }
894
904
  #fm-pivot-view a.fm-ui-btn-light,
895
905
  #fm-toolbar-wrapper a.fm-ui-btn-light,
896
906
  #fm-pivot-view button.fm-ui-btn-light,
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
3
- * October 2024 (v. 2.9.89)
3
+ * November 2024 (v. 2.9.91)
4
4
  * Copyright (c) 2024 Flexmonster. All rights reserved.
5
5
  *
6
6
  * Flexmonster Pivot Table & Charts is a part of Flexmonster Software that is distributed under the terms and conditions of Flexmonster Software License Agreement: