flexmonster 2.9.18 → 2.9.19

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 (43) hide show
  1. package/flexmonster.css +99 -1
  2. package/flexmonster.es5.full.js +2553 -2549
  3. package/flexmonster.es5.js +2552 -2548
  4. package/flexmonster.full.js +2366 -2364
  5. package/flexmonster.js +2365 -2363
  6. package/flexmonster.min.css +1 -1
  7. package/lib/flexmonster.highcharts.js +6 -0
  8. package/package.json +1 -1
  9. package/theme/accessible/flexmonster.css +99 -1
  10. package/theme/accessible/flexmonster.min.css +1 -1
  11. package/theme/blackorange/flexmonster.css +99 -1
  12. package/theme/blackorange/flexmonster.min.css +1 -1
  13. package/theme/brightorange/flexmonster.css +99 -1
  14. package/theme/brightorange/flexmonster.min.css +1 -1
  15. package/theme/dark/flexmonster.css +99 -1
  16. package/theme/dark/flexmonster.min.css +1 -1
  17. package/theme/flexmonster-base.less +116 -1
  18. package/theme/green/flexmonster.css +99 -1
  19. package/theme/green/flexmonster.min.css +1 -1
  20. package/theme/lightblue/flexmonster.css +99 -1
  21. package/theme/lightblue/flexmonster.min.css +1 -1
  22. package/theme/macos/flexmonster.css +99 -1
  23. package/theme/macos/flexmonster.min.css +1 -1
  24. package/theme/midnight/flexmonster.css +99 -1
  25. package/theme/midnight/flexmonster.min.css +1 -1
  26. package/theme/old/flexmonster.css +99 -1
  27. package/theme/old/flexmonster.min.css +1 -1
  28. package/theme/orange/flexmonster.css +99 -1
  29. package/theme/orange/flexmonster.min.css +1 -1
  30. package/theme/purple/flexmonster.css +99 -1
  31. package/theme/purple/flexmonster.min.css +1 -1
  32. package/theme/softdefault/flexmonster.css +99 -1
  33. package/theme/softdefault/flexmonster.min.css +1 -1
  34. package/theme/stripedblue/flexmonster.css +99 -1
  35. package/theme/stripedblue/flexmonster.min.css +1 -1
  36. package/theme/stripedteal/flexmonster.css +99 -1
  37. package/theme/stripedteal/flexmonster.min.css +1 -1
  38. package/theme/teal/flexmonster.css +99 -1
  39. package/theme/teal/flexmonster.min.css +1 -1
  40. package/theme/yellow/flexmonster.css +99 -1
  41. package/theme/yellow/flexmonster.min.css +1 -1
  42. package/toolbar/flexmonster.toolbar.js +1 -1
  43. package/types/flexmonster.d.ts +7 -3
@@ -1,7 +1,7 @@
1
1
  @import (reference) "default/flexmonster.less";
2
2
 
3
3
  :root {
4
- --fm-version: "2.9.18";
4
+ --fm-version: "2.9.19";
5
5
  }
6
6
 
7
7
  /* ===== RESET STYLES ===== */
@@ -4450,6 +4450,116 @@
4450
4450
  margin-bottom: 20px;
4451
4451
  }
4452
4452
 
4453
+ /*Calculated view search */
4454
+ .fm-list-header {
4455
+ background: @ui-background-light;
4456
+ position: relative;
4457
+ border: @ui-element-border;
4458
+ border-bottom: 0px;
4459
+
4460
+ .fm-list-header-label-wrap {
4461
+ width: calc(100% - 40px);
4462
+ width: -webkit-calc(100% - 40px);
4463
+ padding: 10px;
4464
+ }
4465
+
4466
+ span.fm-ui-label {
4467
+ color: @ui-label-color-light;
4468
+ }
4469
+
4470
+ .fm-search-wrap {
4471
+ position: absolute;
4472
+ top: 0;
4473
+ right: 0;
4474
+ width: 40px;
4475
+ height: 100%;
4476
+ border-left: @ui-element-border;
4477
+ z-index: 9;
4478
+
4479
+ .fm-search-btn {
4480
+ position: absolute;
4481
+ width: 100%;
4482
+ height: 38px;
4483
+ cursor: pointer;
4484
+ z-index: 3;
4485
+ border: none;
4486
+ background: transparent;
4487
+
4488
+ .fm-icon-act_search {
4489
+ color: @ui-icon-color;
4490
+ position: absolute;
4491
+ top: 5px;
4492
+ right: 7px;
4493
+
4494
+ &::before {
4495
+ font-size: 25px;
4496
+ }
4497
+ }
4498
+ }
4499
+
4500
+ &.fm-search-opened {
4501
+ width: 100%;
4502
+ height: 100%;
4503
+ border-left: none;
4504
+
4505
+ .fm-icon-act_close,
4506
+ .fm-search-inp {
4507
+ visibility: visible;
4508
+ opacity: 1;
4509
+ }
4510
+
4511
+ .fm-select-counter {
4512
+ display: none;
4513
+ }
4514
+
4515
+ .fm-search-btn {
4516
+ font-size: 0;
4517
+ width: 40px;
4518
+ left: 0;
4519
+ pointer-events: none;
4520
+
4521
+ .fm-icon-act_search:before {
4522
+ color: @ui-prompt-icon-color;
4523
+ }
4524
+ }
4525
+ }
4526
+
4527
+ .fm-icon-act_close {
4528
+ visibility: hidden;
4529
+ position: absolute;
4530
+ right: 0;
4531
+ top: 0;
4532
+ height: 100%;
4533
+ width: 39px;
4534
+ cursor: pointer;
4535
+ z-index: 3;
4536
+ color: @ui-icon-color;
4537
+
4538
+
4539
+ &::before {
4540
+ font-size: 26px;
4541
+ position: absolute;
4542
+ top: 5px;
4543
+ left: 6px;
4544
+ }
4545
+ }
4546
+
4547
+ .fm-search-inp {
4548
+ visibility: hidden;
4549
+ position: absolute;
4550
+ right: 0;
4551
+ top: 0px;
4552
+ width: 100%;
4553
+ height: 37px;
4554
+ padding-left: 40px;
4555
+ padding-right: 40px;
4556
+ border-top: 0px;
4557
+ border-right: 0px;
4558
+ border-left: 0px;
4559
+ }
4560
+ }
4561
+ }
4562
+
4453
4563
  .fm-list-content {
4454
4564
  border: @ui-element-border;
4455
4565
  margin-bottom: 20px;
@@ -4482,6 +4592,11 @@
4482
4592
  overflow: hidden;
4483
4593
  width: ~"calc(100% - 50px)";
4484
4594
  width: ~"-webkit-calc(100% - 50px)";
4595
+
4596
+ .fm-search-highlight {
4597
+ background-color: @grid-table-header-filter-column-search-highlight;
4598
+ font-weight: inherit;
4599
+ }
4485
4600
  }
4486
4601
 
4487
4602
  .fm-aggr-display {
@@ -1,5 +1,5 @@
1
1
  :root {
2
- --fm-version: "2.9.18";
2
+ --fm-version: "2.9.19";
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: #ebfada;
4858
+ position: relative;
4859
+ border: 1px solid #b9d998;
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: #69b01e;
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 #b9d998;
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: #69b01e;
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: #c1f49c;
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: #69b01e;
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 #b9d998;
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%;