flexmonster 2.9.18 → 2.9.21

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 (56) hide show
  1. package/flexmonster.css +99 -1
  2. package/flexmonster.es5.full.js +2770 -2758
  3. package/flexmonster.es5.js +2651 -2639
  4. package/flexmonster.full.js +2578 -2553
  5. package/flexmonster.js +2460 -2435
  6. package/flexmonster.min.css +1 -1
  7. package/lib/flexmonster.highcharts.js +6 -0
  8. package/localizations/de.json +604 -604
  9. package/localizations/en.json +604 -604
  10. package/localizations/es.json +604 -604
  11. package/localizations/fr.json +604 -604
  12. package/localizations/hu.json +604 -604
  13. package/localizations/id.json +604 -604
  14. package/localizations/it.json +604 -604
  15. package/localizations/nl.json +604 -604
  16. package/localizations/pt.json +604 -604
  17. package/localizations/th.json +604 -604
  18. package/localizations/tr.json +604 -604
  19. package/localizations/uk.json +604 -604
  20. package/localizations/zh.json +603 -603
  21. package/package.json +1 -1
  22. package/theme/accessible/flexmonster.css +99 -1
  23. package/theme/accessible/flexmonster.min.css +1 -1
  24. package/theme/blackorange/flexmonster.css +99 -1
  25. package/theme/blackorange/flexmonster.min.css +1 -1
  26. package/theme/brightorange/flexmonster.css +99 -1
  27. package/theme/brightorange/flexmonster.min.css +1 -1
  28. package/theme/dark/flexmonster.css +99 -1
  29. package/theme/dark/flexmonster.min.css +1 -1
  30. package/theme/flexmonster-base.less +116 -1
  31. package/theme/green/flexmonster.css +99 -1
  32. package/theme/green/flexmonster.min.css +1 -1
  33. package/theme/lightblue/flexmonster.css +99 -1
  34. package/theme/lightblue/flexmonster.min.css +1 -1
  35. package/theme/macos/flexmonster.css +99 -1
  36. package/theme/macos/flexmonster.min.css +1 -1
  37. package/theme/midnight/flexmonster.css +99 -1
  38. package/theme/midnight/flexmonster.min.css +1 -1
  39. package/theme/old/flexmonster.css +99 -1
  40. package/theme/old/flexmonster.min.css +1 -1
  41. package/theme/orange/flexmonster.css +99 -1
  42. package/theme/orange/flexmonster.min.css +1 -1
  43. package/theme/purple/flexmonster.css +99 -1
  44. package/theme/purple/flexmonster.min.css +1 -1
  45. package/theme/softdefault/flexmonster.css +99 -1
  46. package/theme/softdefault/flexmonster.min.css +1 -1
  47. package/theme/stripedblue/flexmonster.css +99 -1
  48. package/theme/stripedblue/flexmonster.min.css +1 -1
  49. package/theme/stripedteal/flexmonster.css +99 -1
  50. package/theme/stripedteal/flexmonster.min.css +1 -1
  51. package/theme/teal/flexmonster.css +99 -1
  52. package/theme/teal/flexmonster.min.css +1 -1
  53. package/theme/yellow/flexmonster.css +99 -1
  54. package/theme/yellow/flexmonster.min.css +1 -1
  55. package/toolbar/flexmonster.toolbar.js +1 -1
  56. package/types/flexmonster.d.ts +8 -3
@@ -1,5 +1,5 @@
1
1
  :root {
2
- --fm-version: "2.9.18";
2
+ --fm-version: "2.9.21";
3
3
  }
4
4
  /* ===== RESET STYLES ===== */
5
5
  #fm-pivot-view,
@@ -4848,10 +4848,104 @@
4848
4848
  }
4849
4849
  #fm-pivot-view div.fm-calculated-view .fm-popup-content {
4850
4850
  position: relative;
4851
+ /*Calculated view search */
4851
4852
  }
4852
4853
  #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-name-input {
4853
4854
  margin-bottom: 20px;
4854
4855
  }
4856
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header {
4857
+ background: #f7f7f7;
4858
+ position: relative;
4859
+ border: 1px solid #d5d5d5;
4860
+ border-bottom: 0px;
4861
+ }
4862
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-list-header-label-wrap {
4863
+ width: calc(100% - 40px);
4864
+ width: -webkit-calc(60%);
4865
+ padding: 10px;
4866
+ }
4867
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header span.fm-ui-label {
4868
+ color: #999;
4869
+ }
4870
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap {
4871
+ position: absolute;
4872
+ top: 0;
4873
+ right: 0;
4874
+ width: 40px;
4875
+ height: 100%;
4876
+ border-left: 1px solid #d5d5d5;
4877
+ z-index: 9;
4878
+ }
4879
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap .fm-search-btn {
4880
+ position: absolute;
4881
+ width: 100%;
4882
+ height: 38px;
4883
+ cursor: pointer;
4884
+ z-index: 3;
4885
+ border: none;
4886
+ background: transparent;
4887
+ }
4888
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap .fm-search-btn .fm-icon-act_search {
4889
+ color: #939393;
4890
+ position: absolute;
4891
+ top: 5px;
4892
+ right: 7px;
4893
+ }
4894
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap .fm-search-btn .fm-icon-act_search::before {
4895
+ font-size: 25px;
4896
+ }
4897
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap.fm-search-opened {
4898
+ width: 100%;
4899
+ height: 100%;
4900
+ border-left: none;
4901
+ }
4902
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap.fm-search-opened .fm-icon-act_close,
4903
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap.fm-search-opened .fm-search-inp {
4904
+ visibility: visible;
4905
+ opacity: 1;
4906
+ }
4907
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap.fm-search-opened .fm-select-counter {
4908
+ display: none;
4909
+ }
4910
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap.fm-search-opened .fm-search-btn {
4911
+ font-size: 0;
4912
+ width: 40px;
4913
+ left: 0;
4914
+ pointer-events: none;
4915
+ }
4916
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap.fm-search-opened .fm-search-btn .fm-icon-act_search:before {
4917
+ color: #e9e9e9;
4918
+ }
4919
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap .fm-icon-act_close {
4920
+ visibility: hidden;
4921
+ position: absolute;
4922
+ right: 0;
4923
+ top: 0;
4924
+ height: 100%;
4925
+ width: 39px;
4926
+ cursor: pointer;
4927
+ z-index: 3;
4928
+ color: #939393;
4929
+ }
4930
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap .fm-icon-act_close::before {
4931
+ font-size: 26px;
4932
+ position: absolute;
4933
+ top: 5px;
4934
+ left: 6px;
4935
+ }
4936
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-header .fm-search-wrap .fm-search-inp {
4937
+ visibility: hidden;
4938
+ position: absolute;
4939
+ right: 0;
4940
+ top: 0px;
4941
+ width: 100%;
4942
+ height: 37px;
4943
+ padding-left: 40px;
4944
+ padding-right: 40px;
4945
+ border-top: 0px;
4946
+ border-right: 0px;
4947
+ border-left: 0px;
4948
+ }
4855
4949
  #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-list-content {
4856
4950
  border: 1px solid #d5d5d5;
4857
4951
  margin-bottom: 20px;
@@ -4883,6 +4977,10 @@
4883
4977
  width: calc(100% - 50px);
4884
4978
  width: -webkit-calc(100% - 50px);
4885
4979
  }
4980
+ #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-lst-measures li .fm-text-display .fm-search-highlight {
4981
+ background-color: #FFFF00;
4982
+ font-weight: inherit;
4983
+ }
4886
4984
  #fm-pivot-view div.fm-calculated-view .fm-popup-content .fm-lst-measures li .fm-aggr-display {
4887
4985
  width: 32px;
4888
4986
  height: 100%;