@syncfusion/ej2-pivotview 20.1.57 → 20.2.36

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 (145) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/dist/ej2-pivotview.umd.min.js +2 -2
  3. package/dist/ej2-pivotview.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-pivotview.es2015.js +462 -193
  5. package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
  6. package/dist/es6/ej2-pivotview.es5.js +466 -196
  7. package/dist/es6/ej2-pivotview.es5.js.map +1 -1
  8. package/dist/global/ej2-pivotview.min.js +2 -2
  9. package/dist/global/ej2-pivotview.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/helpers/e2e/index.js +9 -7
  12. package/helpers/e2e/pivotfieldlist.js +47 -31
  13. package/helpers/e2e/pivotview.js +68 -52
  14. package/package.json +22 -22
  15. package/src/base/engine.d.ts +1 -1
  16. package/src/base/engine.js +126 -78
  17. package/src/base/olap/mdx-query.js +1 -1
  18. package/src/base/util.js +2 -2
  19. package/src/common/actions/event-base.d.ts +4 -2
  20. package/src/common/actions/event-base.js +45 -10
  21. package/src/common/actions/field-list.js +2 -1
  22. package/src/common/actions/pivot-button.js +4 -4
  23. package/src/common/base/css-constant.d.ts +16 -0
  24. package/src/common/base/css-constant.js +16 -0
  25. package/src/common/calculatedfield/calculated-field.js +24 -15
  26. package/src/common/conditionalformatting/conditional-formatting.js +5 -5
  27. package/src/common/grouping-bar/grouping-bar.js +1 -1
  28. package/src/common/popups/aggregate-menu.js +4 -3
  29. package/src/common/popups/drillthrough-dialog.js +10 -10
  30. package/src/common/popups/error-dialog.js +1 -1
  31. package/src/common/popups/filter-dialog.js +25 -14
  32. package/src/common/popups/formatting-dialog.js +2 -2
  33. package/src/common/popups/grouping.js +14 -7
  34. package/src/common/popups/toolbar.d.ts +1 -0
  35. package/src/common/popups/toolbar.js +26 -16
  36. package/src/pivotchart/base/pivotchart.js +3 -0
  37. package/src/pivotfieldlist/base/field-list-model.d.ts +5 -0
  38. package/src/pivotfieldlist/base/field-list.d.ts +4 -0
  39. package/src/pivotfieldlist/base/field-list.js +5 -0
  40. package/src/pivotfieldlist/renderer/dialog-renderer.js +17 -9
  41. package/src/pivotfieldlist/renderer/tree-renderer.d.ts +4 -0
  42. package/src/pivotfieldlist/renderer/tree-renderer.js +102 -8
  43. package/src/pivotview/actions/drill-through.js +2 -2
  44. package/src/pivotview/actions/excel-export.js +2 -1
  45. package/src/pivotview/base/pivotview-model.d.ts +7 -0
  46. package/src/pivotview/base/pivotview.d.ts +6 -0
  47. package/src/pivotview/base/pivotview.js +9 -3
  48. package/src/pivotview/model/chartsettings-model.d.ts +2 -2
  49. package/src/pivotview/model/chartsettings.d.ts +2 -2
  50. package/src/pivotview/model/chartsettings.js +2 -2
  51. package/src/pivotview/renderer/render.js +18 -3
  52. package/styles/bootstrap-dark.css +165 -32
  53. package/styles/bootstrap.css +165 -32
  54. package/styles/bootstrap4.css +166 -36
  55. package/styles/bootstrap5-dark.css +209 -45
  56. package/styles/bootstrap5.css +209 -45
  57. package/styles/fabric-dark.css +165 -32
  58. package/styles/fabric.css +165 -32
  59. package/styles/fluent-dark.css +183 -49
  60. package/styles/fluent.css +183 -49
  61. package/styles/highcontrast-light.css +165 -32
  62. package/styles/highcontrast.css +165 -32
  63. package/styles/material-dark.css +165 -32
  64. package/styles/material.css +165 -32
  65. package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +10 -0
  66. package/styles/pivotfieldlist/_bootstrap-definition.scss +10 -0
  67. package/styles/pivotfieldlist/_bootstrap4-definition.scss +11 -1
  68. package/styles/pivotfieldlist/_bootstrap5-definition.scss +15 -6
  69. package/styles/pivotfieldlist/_fabric-dark-definition.scss +10 -1
  70. package/styles/pivotfieldlist/_fabric-definition.scss +10 -0
  71. package/styles/pivotfieldlist/_fluent-definition.scss +18 -8
  72. package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
  73. package/styles/pivotfieldlist/_highcontrast-definition.scss +10 -0
  74. package/styles/pivotfieldlist/_highcontrast-light-definition.scss +10 -0
  75. package/styles/pivotfieldlist/_layout.scss +30 -14
  76. package/styles/pivotfieldlist/_material-dark-definition.scss +10 -0
  77. package/styles/pivotfieldlist/_material-definition.scss +10 -0
  78. package/styles/pivotfieldlist/_material3-definition.scss +189 -0
  79. package/styles/pivotfieldlist/_tailwind-definition.scss +19 -10
  80. package/styles/pivotfieldlist/_theme.scss +142 -7
  81. package/styles/pivotfieldlist/bootstrap-dark.css +146 -10
  82. package/styles/pivotfieldlist/bootstrap.css +146 -10
  83. package/styles/pivotfieldlist/bootstrap4.css +147 -11
  84. package/styles/pivotfieldlist/bootstrap5-dark.css +151 -15
  85. package/styles/pivotfieldlist/bootstrap5.css +151 -15
  86. package/styles/pivotfieldlist/fabric-dark.css +146 -10
  87. package/styles/pivotfieldlist/fabric.css +146 -10
  88. package/styles/pivotfieldlist/fluent-dark.css +154 -18
  89. package/styles/pivotfieldlist/fluent.css +154 -18
  90. package/styles/pivotfieldlist/highcontrast-light.css +146 -10
  91. package/styles/pivotfieldlist/highcontrast.css +146 -10
  92. package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +5 -0
  93. package/styles/pivotfieldlist/icons/_bootstrap.scss +5 -0
  94. package/styles/pivotfieldlist/icons/_bootstrap4.scss +5 -0
  95. package/styles/pivotfieldlist/icons/_bootstrap5.scss +5 -0
  96. package/styles/pivotfieldlist/icons/_fabric-dark.scss +5 -0
  97. package/styles/pivotfieldlist/icons/_fabric.scss +5 -0
  98. package/styles/pivotfieldlist/icons/_fluent.scss +5 -0
  99. package/styles/pivotfieldlist/icons/_fusionnew.scss +352 -0
  100. package/styles/pivotfieldlist/icons/_highcontrast-light.scss +5 -0
  101. package/styles/pivotfieldlist/icons/_highcontrast.scss +5 -0
  102. package/styles/pivotfieldlist/icons/_material-dark.scss +5 -0
  103. package/styles/pivotfieldlist/icons/_material.scss +4 -0
  104. package/styles/pivotfieldlist/icons/_material3.scss +352 -0
  105. package/styles/pivotfieldlist/icons/_tailwind-dark.scss +4 -0
  106. package/styles/pivotfieldlist/icons/_tailwind.scss +4 -0
  107. package/styles/pivotfieldlist/material-dark.css +146 -10
  108. package/styles/pivotfieldlist/material.css +146 -10
  109. package/styles/pivotfieldlist/tailwind-dark.css +155 -21
  110. package/styles/pivotfieldlist/tailwind.css +156 -21
  111. package/styles/pivotview/_bootstrap-dark-definition.scss +4 -2
  112. package/styles/pivotview/_bootstrap-definition.scss +4 -2
  113. package/styles/pivotview/_bootstrap4-definition.scss +4 -2
  114. package/styles/pivotview/_bootstrap5-definition.scss +9 -8
  115. package/styles/pivotview/_fabric-dark-definition.scss +4 -1
  116. package/styles/pivotview/_fabric-definition.scss +4 -2
  117. package/styles/pivotview/_fluent-definition.scss +11 -9
  118. package/styles/pivotview/_fusionnew-definition.scss +131 -0
  119. package/styles/pivotview/_highcontrast-definition.scss +4 -2
  120. package/styles/pivotview/_highcontrast-light-definition.scss +4 -2
  121. package/styles/pivotview/_layout.scss +3 -17
  122. package/styles/pivotview/_material-dark-definition.scss +4 -1
  123. package/styles/pivotview/_material-definition.scss +4 -2
  124. package/styles/pivotview/_material3-definition.scss +131 -0
  125. package/styles/pivotview/_tailwind-definition.scss +8 -5
  126. package/styles/pivotview/_theme.scss +47 -27
  127. package/styles/pivotview/bootstrap-dark.css +19 -22
  128. package/styles/pivotview/bootstrap.css +19 -22
  129. package/styles/pivotview/bootstrap4.css +19 -25
  130. package/styles/pivotview/bootstrap5-dark.css +58 -30
  131. package/styles/pivotview/bootstrap5.css +58 -30
  132. package/styles/pivotview/fabric-dark.css +19 -22
  133. package/styles/pivotview/fabric.css +19 -22
  134. package/styles/pivotview/fluent-dark.css +29 -31
  135. package/styles/pivotview/fluent.css +29 -31
  136. package/styles/pivotview/highcontrast-light.css +19 -22
  137. package/styles/pivotview/highcontrast.css +19 -22
  138. package/styles/pivotview/icons/_fusionnew.scss +183 -0
  139. package/styles/pivotview/icons/_material3.scss +183 -0
  140. package/styles/pivotview/material-dark.css +19 -22
  141. package/styles/pivotview/material.css +19 -22
  142. package/styles/pivotview/tailwind-dark.css +27 -31
  143. package/styles/pivotview/tailwind.css +27 -31
  144. package/styles/tailwind-dark.css +182 -52
  145. package/styles/tailwind.css +183 -52
@@ -563,13 +563,14 @@
563
563
  }
564
564
  .e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
565
565
  font-size: 16px;
566
+ margin: 4px;
566
567
  }
567
568
  .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu {
568
569
  background-color: transparent;
569
570
  border: none;
570
571
  }
571
572
  .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
572
- height: 30px !important;
573
+ height: 26px !important;
573
574
  overflow: hidden;
574
575
  padding-left: 10px;
575
576
  }
@@ -578,11 +579,11 @@
578
579
  margin-right: 0;
579
580
  font-size: 16px;
580
581
  color: #605e5c;
581
- line-height: 30px;
582
+ line-height: 26px;
582
583
  }
583
584
  .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item .e-caret {
584
585
  color: #605e5c;
585
- line-height: 30px;
586
+ line-height: 26px;
586
587
  }
587
588
  .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item.e-focused .e-menu-icon,
588
589
  .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item.e-focused .e-icons {
@@ -652,7 +653,7 @@
652
653
 
653
654
  .e-pivotview-report-label {
654
655
  float: left;
655
- margin-top: 8px;
656
+ margin-top: 4px;
656
657
  width: 40%;
657
658
  }
658
659
 
@@ -704,7 +705,7 @@
704
705
 
705
706
  .e-bigger .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item,
706
707
  .e-bigger.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
707
- height: 42px !important;
708
+ height: 26px !important;
708
709
  }
709
710
  .e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
710
711
  .e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
@@ -859,18 +860,6 @@
859
860
  margin-top: 5px;
860
861
  }
861
862
 
862
- .e-bigger .e-dialog .e-footer-content {
863
- height: 62px;
864
- }
865
-
866
- .e-bigger .e-dialog .e-dlg-header-content {
867
- padding-left: 10px;
868
- }
869
-
870
- .e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
871
- margin-left: 24px !important;
872
- }
873
-
874
863
  /*! PivotView theme */
875
864
  .e-pivotview .e-nextspan {
876
865
  display: inline-block;
@@ -928,6 +917,8 @@
928
917
  }
929
918
  .e-pivotview .e-member-editor-dialog,
930
919
  .e-pivotview .e-olap-editor-dialog {
920
+ min-height: 385px !important;
921
+ min-width: 350px !important;
931
922
  visibility: hidden;
932
923
  }
933
924
  .e-pivotview .e-member-editor-dialog .e-toolbar .e-toolbar-items {
@@ -999,7 +990,6 @@
999
990
  font-size: 14px !important;
1000
991
  }
1001
992
  .e-pivotview .e-sortfilterdiv.e-value-sort-icon {
1002
- padding: 1px 4px !important;
1003
993
  font-size: 14px !important;
1004
994
  }
1005
995
  .e-pivotview .e-rowsheader .e-sortfilterdiv {
@@ -1038,12 +1028,7 @@
1038
1028
  z-index: 1 !important;
1039
1029
  }
1040
1030
  .e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
1041
- visibility: hidden;
1042
- }
1043
- .e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
1044
- .e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
1045
- text-overflow: ellipsis;
1046
- white-space: nowrap;
1031
+ visibility: hidden !important;
1047
1032
  }
1048
1033
  .e-pivotview .e-grid .e-headercelldiv,
1049
1034
  .e-pivotview .e-grid .e-columnsheader {
@@ -1239,7 +1224,7 @@
1239
1224
  border: 1px solid #f3f2f1;
1240
1225
  border-radius: 2px;
1241
1226
  box-shadow: none;
1242
- color: #323130;
1227
+ color: #323130 !important;
1243
1228
  cursor: default;
1244
1229
  display: -ms-flexbox;
1245
1230
  display: flex;
@@ -1487,8 +1472,9 @@
1487
1472
  color: #605e5c !important;
1488
1473
  font-size: 12px;
1489
1474
  height: 18px;
1490
- margin-left: 4px;
1475
+ margin-left: 4px !important;
1491
1476
  width: 18px;
1477
+ padding-top: 2px;
1492
1478
  }
1493
1479
  .e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
1494
1480
  .e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
@@ -1511,6 +1497,7 @@
1511
1497
  width: 18px;
1512
1498
  }
1513
1499
  .e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
1500
+ margin-top: 3px;
1514
1501
  transform: rotateX(180deg);
1515
1502
  }
1516
1503
  .e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
@@ -1565,7 +1552,7 @@
1565
1552
  width: auto;
1566
1553
  }
1567
1554
  .e-pivotview .e-collapse::before {
1568
- font-size: 16px;
1555
+ font-size: 18px;
1569
1556
  }
1570
1557
  .e-pivotview .e-expand,
1571
1558
  .e-pivotview .e-collapse {
@@ -1583,7 +1570,7 @@
1583
1570
  .e-pivotview th .e-collapse {
1584
1571
  font-size: 10px !important;
1585
1572
  margin-left: 0px;
1586
- margin-top: 3px;
1573
+ margin-top: 0;
1587
1574
  }
1588
1575
  .e-pivotview .e-expand::before {
1589
1576
  font-size: 18px;
@@ -1686,6 +1673,12 @@
1686
1673
  .e-pivotview.e-device .e-grouping-bar .e-pivot-button {
1687
1674
  line-height: 1em !important;
1688
1675
  }
1676
+ .e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
1677
+ .e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
1678
+ .e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
1679
+ .e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
1680
+ margin-top: 2px !important;
1681
+ }
1689
1682
  .e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
1690
1683
  max-width: 155px;
1691
1684
  }
@@ -1696,6 +1689,9 @@
1696
1689
  .e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
1697
1690
  max-width: 200px;
1698
1691
  }
1692
+ .e-pivotview.e-device .e-drillthrough-dialog {
1693
+ width: 100% !important;
1694
+ }
1699
1695
  .e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
1700
1696
  width: 0 !important;
1701
1697
  }
@@ -1811,7 +1807,7 @@
1811
1807
  .e-bigger .e-pivotview th .e-collapse,
1812
1808
  .e-bigger.e-pivotview th .e-expand,
1813
1809
  .e-bigger.e-pivotview th .e-collapse {
1814
- margin-top: 4px;
1810
+ margin-top: 0;
1815
1811
  }
1816
1812
  .e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
1817
1813
  .e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
@@ -1855,6 +1851,7 @@
1855
1851
  .e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
1856
1852
  font-size: 14px !important;
1857
1853
  height: 20px;
1854
+ margin-top: 2px;
1858
1855
  width: 20px;
1859
1856
  }
1860
1857
  .e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
@@ -1950,7 +1947,8 @@
1950
1947
  }
1951
1948
  .e-bigger .e-pivotview .e-sortfilterdiv,
1952
1949
  .e-bigger.e-pivotview .e-sortfilterdiv {
1953
- margin: -26px -10px !important;
1950
+ margin: -14px -10px !important;
1951
+ padding-top: 28px;
1954
1952
  }
1955
1953
  .e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
1956
1954
  .e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
@@ -2027,7 +2025,7 @@
2027
2025
  }
2028
2026
  .e-bigger .e-pivotview .e-collapse::before,
2029
2027
  .e-bigger.e-pivotview .e-collapse::before {
2030
- font-size: 20px;
2028
+ font-size: 24px;
2031
2029
  }
2032
2030
 
2033
2031
  .e-content-placeholder.e-pivotview.e-placeholder-pivotview {
@@ -835,18 +835,6 @@
835
835
  margin-top: 4px;
836
836
  }
837
837
 
838
- .e-bigger .e-dialog .e-footer-content {
839
- height: 62px;
840
- }
841
-
842
- .e-bigger .e-dialog .e-dlg-header-content {
843
- padding-left: 10px;
844
- }
845
-
846
- .e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
847
- margin-left: 24px !important;
848
- }
849
-
850
838
  /*! PivotView theme */
851
839
  .e-pivotview .e-nextspan {
852
840
  display: inline-block;
@@ -905,6 +893,8 @@
905
893
  }
906
894
  .e-pivotview .e-member-editor-dialog,
907
895
  .e-pivotview .e-olap-editor-dialog {
896
+ min-height: 385px !important;
897
+ min-width: 350px !important;
908
898
  visibility: hidden;
909
899
  }
910
900
  .e-pivotview .e-member-editor-dialog .e-toolbar .e-toolbar-items {
@@ -975,7 +965,7 @@
975
965
  margin: -21px 0 !important;
976
966
  }
977
967
  .e-pivotview .e-sortfilterdiv.e-value-sort-icon {
978
- padding: 1px 4px !important;
968
+ font-size: 12px !important;
979
969
  }
980
970
  .e-pivotview .e-rowsheader .e-sortfilterdiv {
981
971
  margin: -10px 0 !important;
@@ -1013,12 +1003,7 @@
1013
1003
  z-index: 1 !important;
1014
1004
  }
1015
1005
  .e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
1016
- visibility: hidden;
1017
- }
1018
- .e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
1019
- .e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
1020
- text-overflow: ellipsis;
1021
- white-space: nowrap;
1006
+ visibility: hidden !important;
1022
1007
  }
1023
1008
  .e-pivotview .e-grid .e-headercelldiv,
1024
1009
  .e-pivotview .e-grid .e-columnsheader {
@@ -1208,7 +1193,7 @@
1208
1193
  border: 1px solid #000;
1209
1194
  border-radius: 0;
1210
1195
  box-shadow: none;
1211
- color: #000;
1196
+ color: #000 !important;
1212
1197
  cursor: default;
1213
1198
  display: -ms-flexbox;
1214
1199
  display: flex;
@@ -1455,8 +1440,9 @@
1455
1440
  color: #000 !important;
1456
1441
  font-size: 14px;
1457
1442
  height: 18px;
1458
- margin-left: 4px;
1443
+ margin-left: 4px !important;
1459
1444
  width: 18px;
1445
+ padding-top: 2px;
1460
1446
  }
1461
1447
  .e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
1462
1448
  .e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
@@ -1479,6 +1465,7 @@
1479
1465
  width: 18px;
1480
1466
  }
1481
1467
  .e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
1468
+ margin-top: 3px;
1482
1469
  transform: rotateX(180deg);
1483
1470
  }
1484
1471
  .e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
@@ -1652,6 +1639,12 @@
1652
1639
  .e-pivotview.e-device .e-grouping-bar .e-pivot-button {
1653
1640
  line-height: 1em !important;
1654
1641
  }
1642
+ .e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
1643
+ .e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
1644
+ .e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
1645
+ .e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
1646
+ margin-top: 2px !important;
1647
+ }
1655
1648
  .e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
1656
1649
  max-width: 155px;
1657
1650
  }
@@ -1662,6 +1655,9 @@
1662
1655
  .e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
1663
1656
  max-width: 200px;
1664
1657
  }
1658
+ .e-pivotview.e-device .e-drillthrough-dialog {
1659
+ width: 100% !important;
1660
+ }
1665
1661
  .e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
1666
1662
  width: 0 !important;
1667
1663
  }
@@ -1821,6 +1817,7 @@
1821
1817
  .e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
1822
1818
  font-size: 16px !important;
1823
1819
  height: 20px;
1820
+ margin-top: 0;
1824
1821
  width: 20px;
1825
1822
  }
1826
1823
  .e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
@@ -1904,7 +1901,7 @@
1904
1901
  }
1905
1902
  .e-bigger .e-pivotview .e-sortfilterdiv,
1906
1903
  .e-bigger.e-pivotview .e-sortfilterdiv {
1907
- margin: -23px -6px !important;
1904
+ margin: -17px -6px !important;
1908
1905
  }
1909
1906
  .e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
1910
1907
  .e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
@@ -835,18 +835,6 @@
835
835
  margin-top: 4px;
836
836
  }
837
837
 
838
- .e-bigger .e-dialog .e-footer-content {
839
- height: 62px;
840
- }
841
-
842
- .e-bigger .e-dialog .e-dlg-header-content {
843
- padding-left: 10px;
844
- }
845
-
846
- .e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
847
- margin-left: 24px !important;
848
- }
849
-
850
838
  /*! PivotView theme */
851
839
  .e-pivotview .e-nextspan {
852
840
  display: inline-block;
@@ -905,6 +893,8 @@
905
893
  }
906
894
  .e-pivotview .e-member-editor-dialog,
907
895
  .e-pivotview .e-olap-editor-dialog {
896
+ min-height: 385px !important;
897
+ min-width: 350px !important;
908
898
  visibility: hidden;
909
899
  }
910
900
  .e-pivotview .e-member-editor-dialog .e-toolbar .e-toolbar-items {
@@ -975,7 +965,7 @@
975
965
  margin: -21px 0 !important;
976
966
  }
977
967
  .e-pivotview .e-sortfilterdiv.e-value-sort-icon {
978
- padding: 1px 4px !important;
968
+ font-size: 12px !important;
979
969
  }
980
970
  .e-pivotview .e-rowsheader .e-sortfilterdiv {
981
971
  margin: -10px 0 !important;
@@ -1013,12 +1003,7 @@
1013
1003
  z-index: 1 !important;
1014
1004
  }
1015
1005
  .e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
1016
- visibility: hidden;
1017
- }
1018
- .e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
1019
- .e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
1020
- text-overflow: ellipsis;
1021
- white-space: nowrap;
1006
+ visibility: hidden !important;
1022
1007
  }
1023
1008
  .e-pivotview .e-grid .e-headercelldiv,
1024
1009
  .e-pivotview .e-grid .e-columnsheader {
@@ -1208,7 +1193,7 @@
1208
1193
  border: 1px solid #fff;
1209
1194
  border-radius: 0;
1210
1195
  box-shadow: none;
1211
- color: #fff;
1196
+ color: #fff !important;
1212
1197
  cursor: default;
1213
1198
  display: -ms-flexbox;
1214
1199
  display: flex;
@@ -1455,8 +1440,9 @@
1455
1440
  color: #fff !important;
1456
1441
  font-size: 12px;
1457
1442
  height: 18px;
1458
- margin-left: 4px;
1443
+ margin-left: 4px !important;
1459
1444
  width: 18px;
1445
+ padding-top: 2px;
1460
1446
  }
1461
1447
  .e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
1462
1448
  .e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
@@ -1479,6 +1465,7 @@
1479
1465
  width: 18px;
1480
1466
  }
1481
1467
  .e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
1468
+ margin-top: 3px;
1482
1469
  transform: rotateX(180deg);
1483
1470
  }
1484
1471
  .e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
@@ -1652,6 +1639,12 @@
1652
1639
  .e-pivotview.e-device .e-grouping-bar .e-pivot-button {
1653
1640
  line-height: 1em !important;
1654
1641
  }
1642
+ .e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
1643
+ .e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
1644
+ .e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
1645
+ .e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
1646
+ margin-top: 2px !important;
1647
+ }
1655
1648
  .e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
1656
1649
  max-width: 155px;
1657
1650
  }
@@ -1662,6 +1655,9 @@
1662
1655
  .e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
1663
1656
  max-width: 200px;
1664
1657
  }
1658
+ .e-pivotview.e-device .e-drillthrough-dialog {
1659
+ width: 100% !important;
1660
+ }
1665
1661
  .e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
1666
1662
  width: 0 !important;
1667
1663
  }
@@ -1821,6 +1817,7 @@
1821
1817
  .e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
1822
1818
  font-size: 14px !important;
1823
1819
  height: 20px;
1820
+ margin-top: 0;
1824
1821
  width: 20px;
1825
1822
  }
1826
1823
  .e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
@@ -1904,7 +1901,7 @@
1904
1901
  }
1905
1902
  .e-bigger .e-pivotview .e-sortfilterdiv,
1906
1903
  .e-bigger.e-pivotview .e-sortfilterdiv {
1907
- margin: -23px -6px !important;
1904
+ margin: -18px -6px !important;
1908
1905
  }
1909
1906
  .e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
1910
1907
  .e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
@@ -0,0 +1,183 @@
1
+ @include export-module('pivotview-icons') {
2
+ .e-pivotview {
3
+ .e-expand::before {
4
+ content: '\e75c';
5
+ }
6
+
7
+ .e-collapse::before {
8
+ content: '\e734';
9
+ }
10
+
11
+ &.e-rtl {
12
+ .e-expand::before {
13
+ content: '\e738';
14
+ }
15
+ }
16
+
17
+ .e-sort::before {
18
+ content: '\e7df';
19
+ }
20
+
21
+ .e-pv-filter::before {
22
+ content: '\e7f7';
23
+ }
24
+
25
+ .e-pv-filtered::before {
26
+ content: '\e735';
27
+ }
28
+
29
+ .e-remove::before {
30
+ content: '\e7e7';
31
+ }
32
+
33
+ .e-selected-option-icon::before {
34
+ content: '\e72b';
35
+ }
36
+
37
+ .e-clear-filter-icon::before {
38
+ content: '\e72c';
39
+ }
40
+
41
+ .e-dropdown-icon::before {
42
+ content: '\e729';
43
+ }
44
+
45
+ .e-export::before {
46
+ content: '\e72e';
47
+ }
48
+
49
+ .e-new-report::before {
50
+ content: '\e7dc';
51
+ }
52
+
53
+ .e-save-report::before {
54
+ content: '\e7c8';
55
+ }
56
+
57
+ .e-saveas-report::before {
58
+ content: '\e7ae';
59
+ }
60
+
61
+ .e-rename-report::before {
62
+ content: '\e76d';
63
+ }
64
+
65
+ .e-remove-report::before {
66
+ content: '\e820';
67
+ }
68
+
69
+ .e-sub-total::before {
70
+ content: '\e702';
71
+ }
72
+
73
+ .e-grand-total::before {
74
+ content: '\e74d';
75
+ }
76
+
77
+ .e-toolbar-fieldlist::before {
78
+ content: '\e751';
79
+ }
80
+
81
+ .e-toolbar-grid::before {
82
+ content: '\e7e9';
83
+ }
84
+
85
+ .e-toolbar-chart::before {
86
+ content: '\e826';
87
+ }
88
+
89
+ .e-toolbar-formatting::before {
90
+ content: '\e71b';
91
+ }
92
+
93
+ .e-pivot-button .e-edit::before {
94
+ content: '\e730';
95
+ }
96
+
97
+ .e-sort-ascend-icon::before {
98
+ content: '\e7a3';
99
+ }
100
+
101
+ .e-sort-descend-icon::before {
102
+ content: '\e7b6';
103
+ }
104
+ }
105
+
106
+ .e-pivotview-pdf-export::before {
107
+ content: '\e700';
108
+ }
109
+
110
+ .e-pivotview-excel-export::before {
111
+ content: '\e7c1';
112
+ }
113
+
114
+ .e-pivotview-csv-export::before {
115
+ content: '\e7ba';
116
+ }
117
+
118
+ .e-pivotview-png-export::before {
119
+ content: '\e7ee';
120
+ }
121
+
122
+ .e-pivotview-jpeg-export::before {
123
+ content: '\e786';
124
+ }
125
+
126
+ .e-pivotview-svg-export::before {
127
+ content: '\e7cf';
128
+ }
129
+
130
+ .e-mdx::before {
131
+ content: '\e7ac';
132
+ }
133
+
134
+ .e-pivotview-select-icon::before {
135
+ content: '\e774';
136
+ }
137
+
138
+ .e-pivotview-export::before {
139
+ content: '\e72e';
140
+ }
141
+
142
+ .e-pivotview-grid::before {
143
+ content: '\e7e9';
144
+ }
145
+
146
+ .e-pivotview-expand::before {
147
+ content: '\e7c9';
148
+ }
149
+
150
+ .e-pivotview-collapse::before {
151
+ content: '\e80f';
152
+ }
153
+
154
+ .e-pivot-format-menu::before {
155
+ content: '\e76d';
156
+ }
157
+
158
+ .e-pivot-number-format-menu::before {
159
+ content: '\e787';
160
+ }
161
+
162
+ .e-pivot-conditional-format-menu::before {
163
+ content: '\e71b';
164
+ }
165
+
166
+ .e-pivot-format-toolbar::before {
167
+ content: '\e787';
168
+ }
169
+
170
+ .e-pivotview-group::before {
171
+ content: '\e7a5';
172
+ }
173
+
174
+ .e-pivotview-ungroup::before {
175
+ content: '\e779';
176
+ }
177
+
178
+ .e-level-options {
179
+ .e-selected-level-icon::before {
180
+ content: '\e774';
181
+ }
182
+ }
183
+ }