@syncfusion/ej2-vue-pivotview 22.2.12 → 23.1.38

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 (61) hide show
  1. package/CHANGELOG.md +20 -69
  2. package/dist/ej2-vue-pivotview.umd.min.js +2 -2
  3. package/dist/global/ej2-vue-pivotview.min.js +3 -3
  4. package/package.json +9 -9
  5. package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -1
  6. package/src/pivotview/pivotview.component.d.ts +3 -1
  7. package/styles/bootstrap-dark.css +64 -27
  8. package/styles/bootstrap.css +65 -28
  9. package/styles/bootstrap4.css +66 -27
  10. package/styles/bootstrap5-dark.css +64 -29
  11. package/styles/bootstrap5.css +64 -29
  12. package/styles/fabric-dark.css +65 -29
  13. package/styles/fabric.css +65 -27
  14. package/styles/fluent-dark.css +64 -28
  15. package/styles/fluent.css +64 -28
  16. package/styles/highcontrast-light.css +64 -27
  17. package/styles/highcontrast.css +64 -27
  18. package/styles/material-dark.css +63 -27
  19. package/styles/material.css +63 -27
  20. package/styles/material3-dark.css +63 -29
  21. package/styles/material3.css +63 -28
  22. package/styles/pivotfieldlist/bootstrap-dark.css +1 -7
  23. package/styles/pivotfieldlist/bootstrap.css +1 -7
  24. package/styles/pivotfieldlist/bootstrap4.css +1 -7
  25. package/styles/pivotfieldlist/bootstrap5-dark.css +1 -7
  26. package/styles/pivotfieldlist/bootstrap5.css +1 -7
  27. package/styles/pivotfieldlist/fabric-dark.css +2 -7
  28. package/styles/pivotfieldlist/fabric.css +2 -7
  29. package/styles/pivotfieldlist/fluent-dark.css +1 -7
  30. package/styles/pivotfieldlist/fluent.css +1 -7
  31. package/styles/pivotfieldlist/highcontrast-light.css +2 -7
  32. package/styles/pivotfieldlist/highcontrast.css +2 -7
  33. package/styles/pivotfieldlist/material-dark.css +1 -8
  34. package/styles/pivotfieldlist/material.css +1 -8
  35. package/styles/pivotfieldlist/material3-dark.css +1 -8
  36. package/styles/pivotfieldlist/material3-dark.scss +1 -1
  37. package/styles/pivotfieldlist/material3.css +1 -8
  38. package/styles/pivotfieldlist/material3.scss +1 -1
  39. package/styles/pivotfieldlist/tailwind-dark.css +1 -8
  40. package/styles/pivotfieldlist/tailwind.css +1 -8
  41. package/styles/pivotview/bootstrap-dark.css +63 -20
  42. package/styles/pivotview/bootstrap.css +64 -21
  43. package/styles/pivotview/bootstrap4.css +65 -20
  44. package/styles/pivotview/bootstrap5-dark.css +63 -22
  45. package/styles/pivotview/bootstrap5.css +63 -22
  46. package/styles/pivotview/fabric-dark.css +63 -22
  47. package/styles/pivotview/fabric.css +63 -20
  48. package/styles/pivotview/fluent-dark.css +63 -21
  49. package/styles/pivotview/fluent.css +63 -21
  50. package/styles/pivotview/highcontrast-light.css +62 -20
  51. package/styles/pivotview/highcontrast.css +62 -20
  52. package/styles/pivotview/material-dark.css +62 -20
  53. package/styles/pivotview/material.css +62 -20
  54. package/styles/pivotview/material3-dark.css +62 -21
  55. package/styles/pivotview/material3-dark.scss +1 -1
  56. package/styles/pivotview/material3.css +62 -21
  57. package/styles/pivotview/material3.scss +1 -1
  58. package/styles/pivotview/tailwind-dark.css +62 -22
  59. package/styles/pivotview/tailwind.css +62 -22
  60. package/styles/tailwind-dark.css +63 -30
  61. package/styles/tailwind.css +63 -30
@@ -160,6 +160,8 @@
160
160
  /* stylelint-disable */
161
161
  /* stylelint-enable */
162
162
  /* stylelint-enable */
163
+ /* stylelint-disable */
164
+ /* stylelint-enable */
163
165
  }
164
166
  .e-pivotview .e-value-field-settings,
165
167
  .e-pivotview .e-member-editor-dialog,
@@ -629,6 +631,9 @@
629
631
  .e-pivotview .e-frozenscrollbar {
630
632
  background: #d8d8d8;
631
633
  }
634
+ .e-pivotview .e-headercontent .e-columnheader .e-headercell.e-leftfreeze {
635
+ -webkit-transform: translate3d(0, 0, 0);
636
+ }
632
637
 
633
638
  .e-pivotview-disable-icon {
634
639
  visibility: hidden;
@@ -903,7 +908,6 @@
903
908
 
904
909
  /*! PivotView theme */
905
910
  .e-pivotview {
906
- /* stylelint-enable */
907
911
  /* stylelint-enable */
908
912
  /* stylelint-disable */
909
913
  /* stylelint-enable */
@@ -914,6 +918,8 @@
914
918
  /* stylelint-enable */
915
919
  }
916
920
  .e-pivotview .e-pivotcell-container {
921
+ -ms-flex-align: center;
922
+ align-items: center;
917
923
  display: -ms-flexbox;
918
924
  display: flex;
919
925
  }
@@ -921,6 +927,7 @@
921
927
  .e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
922
928
  overflow: hidden;
923
929
  text-overflow: ellipsis;
930
+ width: 100%;
924
931
  }
925
932
  .e-pivotview .e-pivotcell-container .e-sortfilterdiv.e-value-sort-icon {
926
933
  -ms-flex-align: center;
@@ -959,14 +966,23 @@
959
966
  -ms-user-select: none;
960
967
  user-select: none;
961
968
  }
969
+ .e-pivotview .e-grid .e-content-virtualtable {
970
+ overflow-x: auto;
971
+ scrollbar-width: none; /* firefox */
972
+ }
973
+ .e-pivotview .e-grid .e-content-virtualtable::-webkit-scrollbar {
974
+ display: none; /* safari, chrome and edge */
975
+ }
962
976
  .e-pivotview .e-gtot,
963
977
  .e-pivotview .e-gtot.e-rowsheader,
964
978
  .e-pivotview .e-gtot.e-columnsheader,
965
979
  .e-pivotview .e-grid .e-content,
966
- .e-pivotview .e-grid .e-gridheader,
967
- .e-pivotview .e-headercell {
980
+ .e-pivotview .e-grid .e-gridheader {
968
981
  background: #d8d8d8;
969
982
  }
983
+ .e-pivotview .e-headercell:not(.e-columnsheader) {
984
+ background: #d8d8d8 !important;
985
+ }
970
986
  .e-pivotview .e-grid .e-gridheader {
971
987
  border-bottom-width: 1px;
972
988
  }
@@ -1060,9 +1076,6 @@
1060
1076
  .e-pivotview .e-drop-indicator {
1061
1077
  display: block;
1062
1078
  }
1063
- .e-pivotview div.e-cellvalue {
1064
- margin-top: 0;
1065
- }
1066
1079
  .e-pivotview .e-sortfilterdiv .e-value-sort-icon {
1067
1080
  float: right;
1068
1081
  }
@@ -1072,10 +1085,17 @@
1072
1085
  .e-pivotview .e-sortfilterdiv:not(.e-value-sort-icon) {
1073
1086
  display: none;
1074
1087
  }
1088
+ .e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv, .e-pivotview .e-headercelldiv .e-sortfilterdiv {
1089
+ margin: -15px 0 !important;
1090
+ }
1091
+ .e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv.e-value-sort-align, .e-pivotview .e-headercelldiv .e-sortfilterdiv.e-value-sort-align {
1092
+ margin: 0 !important;
1093
+ }
1075
1094
  .e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv, .e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv.e-value-sort-align, .e-pivotview .e-headercelldiv .e-sortfilterdiv, .e-pivotview .e-headercelldiv .e-sortfilterdiv.e-value-sort-align {
1076
1095
  margin: 0 !important;
1077
1096
  margin-left: auto !important;
1078
- margin-top: 0 !important;
1097
+ padding-bottom: 0 !important;
1098
+ padding-top: 0 !important;
1079
1099
  }
1080
1100
  .e-pivotview .e-rowsheader .e-sortfilterdiv {
1081
1101
  margin: -6px 0 !important;
@@ -1110,9 +1130,26 @@
1110
1130
  }
1111
1131
  .e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
1112
1132
  visibility: hidden !important;
1133
+ /* stylelint-enable */
1134
+ }
1135
+ .e-pivotview.sf-pivotview .e-grid .e-pivot-content-loader {
1136
+ position: absolute;
1137
+ z-index: 10;
1138
+ color: #400074;
1139
+ font-size: 20px;
1140
+ text-align: center;
1141
+ padding: 10%;
1142
+ pointer-events: none;
1143
+ }
1144
+ .e-pivotview.sf-pivotview .e-grid .e-pivot-content-loader.e-hide-loader {
1145
+ display: none;
1146
+ }
1147
+ .e-pivotview.sf-pivotview .e-grid .e-virtual-pivot-content {
1148
+ visibility: hidden;
1113
1149
  }
1114
1150
  .e-pivotview .e-grid .e-headercelldiv,
1115
1151
  .e-pivotview .e-grid .e-columnsheader {
1152
+ /* stylelint-disable */
1116
1153
  padding-left: 8px !important;
1117
1154
  }
1118
1155
  .e-pivotview .sf-grid .e-spinner-pane {
@@ -1133,6 +1170,14 @@
1133
1170
  border-left: 0;
1134
1171
  border-right-width: 1px;
1135
1172
  }
1173
+ .e-pivotview .e-leftfreeze.e-freezeleftborder {
1174
+ border-left-color: #757575 !important;
1175
+ border-right-color: #757575 !important;
1176
+ border-right-width: 1px !important;
1177
+ }
1178
+ .e-pivotview .e-leftfreeze.e-freezeleftborder:not(.e-gtot) {
1179
+ background: #d8d8d8;
1180
+ }
1136
1181
  .e-pivotview .e-stackedheadercelldiv {
1137
1182
  display: block;
1138
1183
  }
@@ -1140,8 +1185,6 @@
1140
1185
  .e-pivotview .e-stackedheadercelldiv.e-cellvalue {
1141
1186
  display: inline-block;
1142
1187
  padding-left: 12px !important;
1143
- margin-top: 5px;
1144
- margin-top: 0;
1145
1188
  }
1146
1189
  .e-pivotview .e-stackedheadercelldiv {
1147
1190
  padding: 0 0 0 1px !important;
@@ -1483,6 +1526,11 @@
1483
1526
  .e-pivotview .e-group-columns {
1484
1527
  width: 100%;
1485
1528
  }
1529
+ .e-pivotview th.e-group-row .e-axis-row {
1530
+ display: inline-block;
1531
+ height: 100%;
1532
+ vertical-align: top;
1533
+ }
1486
1534
  .e-pivotview .e-group-row {
1487
1535
  padding: 0 !important;
1488
1536
  }
@@ -1635,17 +1683,13 @@
1635
1683
  cursor: pointer;
1636
1684
  display: inline-block;
1637
1685
  height: 18px;
1638
- margin-top: 0;
1639
- margin-bottom: 0;
1640
1686
  text-align: center;
1641
1687
  width: 18px;
1642
1688
  }
1643
1689
  .e-pivotview th .e-expand,
1644
1690
  .e-pivotview th .e-collapse {
1645
1691
  font-size: 13px !important;
1646
- margin-left: 0px;
1647
- margin-top: 2px;
1648
- margin-bottom: 0;
1692
+ margin-left: 0;
1649
1693
  }
1650
1694
  .e-pivotview .e-expand::before {
1651
1695
  font-size: 10px;
@@ -2010,6 +2054,10 @@
2010
2054
  border-left-width: 1px;
2011
2055
  border-right: 0;
2012
2056
  }
2057
+ .e-pivotview.e-rtl .e-leftfreeze.e-freezeleftborder {
2058
+ border-left-width: 1px;
2059
+ border-right: 0;
2060
+ }
2013
2061
  .e-pivotview.e-rtl .e-rowsheader .e-cellvalue {
2014
2062
  margin-left: 0;
2015
2063
  margin-right: 7px;
@@ -2242,12 +2290,6 @@
2242
2290
  .e-bigger.e-pivotview .e-bigger .e-stackedheadercelldiv {
2243
2291
  padding-left: 16px !important;
2244
2292
  }
2245
- .e-bigger .e-pivotview th .e-expand,
2246
- .e-bigger .e-pivotview th .e-collapse,
2247
- .e-bigger.e-pivotview th .e-expand,
2248
- .e-bigger.e-pivotview th .e-collapse {
2249
- margin-top: 2px;
2250
- }
2251
2293
  .e-bigger .e-pivotview .e-grouping-bar,
2252
2294
  .e-bigger.e-pivotview .e-grouping-bar {
2253
2295
  /* stylelint-enable */
@@ -160,6 +160,8 @@
160
160
  /* stylelint-disable */
161
161
  /* stylelint-enable */
162
162
  /* stylelint-enable */
163
+ /* stylelint-disable */
164
+ /* stylelint-enable */
163
165
  }
164
166
  .e-pivotview .e-value-field-settings,
165
167
  .e-pivotview .e-member-editor-dialog,
@@ -629,6 +631,9 @@
629
631
  .e-pivotview .e-frozenscrollbar {
630
632
  background: #262626;
631
633
  }
634
+ .e-pivotview .e-headercontent .e-columnheader .e-headercell.e-leftfreeze {
635
+ -webkit-transform: translate3d(0, 0, 0);
636
+ }
632
637
 
633
638
  .e-pivotview-disable-icon {
634
639
  visibility: hidden;
@@ -903,7 +908,6 @@
903
908
 
904
909
  /*! PivotView theme */
905
910
  .e-pivotview {
906
- /* stylelint-enable */
907
911
  /* stylelint-enable */
908
912
  /* stylelint-disable */
909
913
  /* stylelint-enable */
@@ -914,6 +918,8 @@
914
918
  /* stylelint-enable */
915
919
  }
916
920
  .e-pivotview .e-pivotcell-container {
921
+ -ms-flex-align: center;
922
+ align-items: center;
917
923
  display: -ms-flexbox;
918
924
  display: flex;
919
925
  }
@@ -921,6 +927,7 @@
921
927
  .e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
922
928
  overflow: hidden;
923
929
  text-overflow: ellipsis;
930
+ width: 100%;
924
931
  }
925
932
  .e-pivotview .e-pivotcell-container .e-sortfilterdiv.e-value-sort-icon {
926
933
  -ms-flex-align: center;
@@ -959,14 +966,23 @@
959
966
  -ms-user-select: none;
960
967
  user-select: none;
961
968
  }
969
+ .e-pivotview .e-grid .e-content-virtualtable {
970
+ overflow-x: auto;
971
+ scrollbar-width: none; /* firefox */
972
+ }
973
+ .e-pivotview .e-grid .e-content-virtualtable::-webkit-scrollbar {
974
+ display: none; /* safari, chrome and edge */
975
+ }
962
976
  .e-pivotview .e-gtot,
963
977
  .e-pivotview .e-gtot.e-rowsheader,
964
978
  .e-pivotview .e-gtot.e-columnsheader,
965
979
  .e-pivotview .e-grid .e-content,
966
- .e-pivotview .e-grid .e-gridheader,
967
- .e-pivotview .e-headercell {
980
+ .e-pivotview .e-grid .e-gridheader {
968
981
  background: #000;
969
982
  }
983
+ .e-pivotview .e-headercell:not(.e-columnsheader) {
984
+ background: #000 !important;
985
+ }
970
986
  .e-pivotview .e-grid .e-gridheader {
971
987
  border-bottom-width: 1px;
972
988
  }
@@ -1060,9 +1076,6 @@
1060
1076
  .e-pivotview .e-drop-indicator {
1061
1077
  display: block;
1062
1078
  }
1063
- .e-pivotview div.e-cellvalue {
1064
- margin-top: 0;
1065
- }
1066
1079
  .e-pivotview .e-sortfilterdiv .e-value-sort-icon {
1067
1080
  float: right;
1068
1081
  }
@@ -1072,10 +1085,17 @@
1072
1085
  .e-pivotview .e-sortfilterdiv:not(.e-value-sort-icon) {
1073
1086
  display: none;
1074
1087
  }
1088
+ .e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv, .e-pivotview .e-headercelldiv .e-sortfilterdiv {
1089
+ margin: -15px 0 !important;
1090
+ }
1091
+ .e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv.e-value-sort-align, .e-pivotview .e-headercelldiv .e-sortfilterdiv.e-value-sort-align {
1092
+ margin: 0 !important;
1093
+ }
1075
1094
  .e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv, .e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv.e-value-sort-align, .e-pivotview .e-headercelldiv .e-sortfilterdiv, .e-pivotview .e-headercelldiv .e-sortfilterdiv.e-value-sort-align {
1076
1095
  margin: 0 !important;
1077
1096
  margin-left: auto !important;
1078
- margin-top: 0 !important;
1097
+ padding-bottom: 0 !important;
1098
+ padding-top: 0 !important;
1079
1099
  }
1080
1100
  .e-pivotview .e-rowsheader .e-sortfilterdiv {
1081
1101
  margin: -6px 0 !important;
@@ -1110,9 +1130,26 @@
1110
1130
  }
1111
1131
  .e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
1112
1132
  visibility: hidden !important;
1133
+ /* stylelint-enable */
1134
+ }
1135
+ .e-pivotview.sf-pivotview .e-grid .e-pivot-content-loader {
1136
+ position: absolute;
1137
+ z-index: 10;
1138
+ color: #ffd939;
1139
+ font-size: 20px;
1140
+ text-align: center;
1141
+ padding: 10%;
1142
+ pointer-events: none;
1143
+ }
1144
+ .e-pivotview.sf-pivotview .e-grid .e-pivot-content-loader.e-hide-loader {
1145
+ display: none;
1146
+ }
1147
+ .e-pivotview.sf-pivotview .e-grid .e-virtual-pivot-content {
1148
+ visibility: hidden;
1113
1149
  }
1114
1150
  .e-pivotview .e-grid .e-headercelldiv,
1115
1151
  .e-pivotview .e-grid .e-columnsheader {
1152
+ /* stylelint-disable */
1116
1153
  padding-left: 8px !important;
1117
1154
  }
1118
1155
  .e-pivotview .sf-grid .e-spinner-pane {
@@ -1133,6 +1170,14 @@
1133
1170
  border-left: 0;
1134
1171
  border-right-width: 1px;
1135
1172
  }
1173
+ .e-pivotview .e-leftfreeze.e-freezeleftborder {
1174
+ border-left-color: #969696 !important;
1175
+ border-right-color: #969696 !important;
1176
+ border-right-width: 1px !important;
1177
+ }
1178
+ .e-pivotview .e-leftfreeze.e-freezeleftborder:not(.e-gtot) {
1179
+ background: #000;
1180
+ }
1136
1181
  .e-pivotview .e-stackedheadercelldiv {
1137
1182
  display: block;
1138
1183
  }
@@ -1140,8 +1185,6 @@
1140
1185
  .e-pivotview .e-stackedheadercelldiv.e-cellvalue {
1141
1186
  display: inline-block;
1142
1187
  padding-left: 12px !important;
1143
- margin-top: 5px;
1144
- margin-top: 0;
1145
1188
  }
1146
1189
  .e-pivotview .e-stackedheadercelldiv {
1147
1190
  padding: 0 0 0 1px !important;
@@ -1483,6 +1526,11 @@
1483
1526
  .e-pivotview .e-group-columns {
1484
1527
  width: 100%;
1485
1528
  }
1529
+ .e-pivotview th.e-group-row .e-axis-row {
1530
+ display: inline-block;
1531
+ height: 100%;
1532
+ vertical-align: top;
1533
+ }
1486
1534
  .e-pivotview .e-group-row {
1487
1535
  padding: 0 !important;
1488
1536
  }
@@ -1635,17 +1683,13 @@
1635
1683
  cursor: pointer;
1636
1684
  display: inline-block;
1637
1685
  height: 18px;
1638
- margin-top: 0;
1639
- margin-bottom: 0;
1640
1686
  text-align: center;
1641
1687
  width: 18px;
1642
1688
  }
1643
1689
  .e-pivotview th .e-expand,
1644
1690
  .e-pivotview th .e-collapse {
1645
1691
  font-size: 13px !important;
1646
- margin-left: 0px;
1647
- margin-top: 2px;
1648
- margin-bottom: 0;
1692
+ margin-left: 0;
1649
1693
  }
1650
1694
  .e-pivotview .e-expand::before {
1651
1695
  font-size: 10px;
@@ -2010,6 +2054,10 @@
2010
2054
  border-left-width: 1px;
2011
2055
  border-right: 0;
2012
2056
  }
2057
+ .e-pivotview.e-rtl .e-leftfreeze.e-freezeleftborder {
2058
+ border-left-width: 1px;
2059
+ border-right: 0;
2060
+ }
2013
2061
  .e-pivotview.e-rtl .e-rowsheader .e-cellvalue {
2014
2062
  margin-left: 0;
2015
2063
  margin-right: 7px;
@@ -2242,12 +2290,6 @@
2242
2290
  .e-bigger.e-pivotview .e-bigger .e-stackedheadercelldiv {
2243
2291
  padding-left: 16px !important;
2244
2292
  }
2245
- .e-bigger .e-pivotview th .e-expand,
2246
- .e-bigger .e-pivotview th .e-collapse,
2247
- .e-bigger.e-pivotview th .e-expand,
2248
- .e-bigger.e-pivotview th .e-collapse {
2249
- margin-top: 2px;
2250
- }
2251
2293
  .e-bigger .e-pivotview .e-grouping-bar,
2252
2294
  .e-bigger.e-pivotview .e-grouping-bar {
2253
2295
  /* stylelint-enable */
@@ -1,4 +1,3 @@
1
- @import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");
2
1
  /*! component's theme wise override definitions and variables */
3
2
  /*! component's common definitions and variables */
4
3
  /*! component's common definitions and variables */
@@ -161,6 +160,8 @@
161
160
  /* stylelint-disable */
162
161
  /* stylelint-enable */
163
162
  /* stylelint-enable */
163
+ /* stylelint-disable */
164
+ /* stylelint-enable */
164
165
  }
165
166
  .e-pivotview .e-value-field-settings,
166
167
  .e-pivotview .e-member-editor-dialog,
@@ -626,6 +627,9 @@
626
627
  .e-pivotview .e-frozenscrollbar {
627
628
  background: #212121;
628
629
  }
630
+ .e-pivotview .e-headercontent .e-columnheader .e-headercell.e-leftfreeze {
631
+ -webkit-transform: translate3d(0, 0, 0);
632
+ }
629
633
 
630
634
  .e-pivotview-disable-icon {
631
635
  visibility: hidden;
@@ -900,7 +904,6 @@
900
904
 
901
905
  /*! PivotView theme */
902
906
  .e-pivotview {
903
- /* stylelint-enable */
904
907
  /* stylelint-enable */
905
908
  /* stylelint-disable */
906
909
  /* stylelint-enable */
@@ -911,6 +914,8 @@
911
914
  /* stylelint-enable */
912
915
  }
913
916
  .e-pivotview .e-pivotcell-container {
917
+ -ms-flex-align: center;
918
+ align-items: center;
914
919
  display: -ms-flexbox;
915
920
  display: flex;
916
921
  }
@@ -918,6 +923,7 @@
918
923
  .e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
919
924
  overflow: hidden;
920
925
  text-overflow: ellipsis;
926
+ width: 100%;
921
927
  }
922
928
  .e-pivotview .e-pivotcell-container .e-sortfilterdiv.e-value-sort-icon {
923
929
  -ms-flex-align: center;
@@ -956,14 +962,23 @@
956
962
  -ms-user-select: none;
957
963
  user-select: none;
958
964
  }
965
+ .e-pivotview .e-grid .e-content-virtualtable {
966
+ overflow-x: auto;
967
+ scrollbar-width: none; /* firefox */
968
+ }
969
+ .e-pivotview .e-grid .e-content-virtualtable::-webkit-scrollbar {
970
+ display: none; /* safari, chrome and edge */
971
+ }
959
972
  .e-pivotview .e-gtot,
960
973
  .e-pivotview .e-gtot.e-rowsheader,
961
974
  .e-pivotview .e-gtot.e-columnsheader,
962
975
  .e-pivotview .e-grid .e-content,
963
- .e-pivotview .e-grid .e-gridheader,
964
- .e-pivotview .e-headercell {
976
+ .e-pivotview .e-grid .e-gridheader {
965
977
  background: #212121;
966
978
  }
979
+ .e-pivotview .e-headercell:not(.e-columnsheader) {
980
+ background: #212121 !important;
981
+ }
967
982
  .e-pivotview .e-grid .e-gridheader {
968
983
  border-bottom-width: 1px;
969
984
  }
@@ -1056,9 +1071,6 @@
1056
1071
  .e-pivotview .e-drop-indicator {
1057
1072
  display: block;
1058
1073
  }
1059
- .e-pivotview div.e-cellvalue {
1060
- margin-top: 5px;
1061
- }
1062
1074
  .e-pivotview .e-sortfilterdiv .e-value-sort-icon {
1063
1075
  float: right;
1064
1076
  }
@@ -1068,10 +1080,17 @@
1068
1080
  .e-pivotview .e-sortfilterdiv:not(.e-value-sort-icon) {
1069
1081
  display: none;
1070
1082
  }
1083
+ .e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv, .e-pivotview .e-headercelldiv .e-sortfilterdiv {
1084
+ margin: -15px 0 !important;
1085
+ }
1086
+ .e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv.e-value-sort-align, .e-pivotview .e-headercelldiv .e-sortfilterdiv.e-value-sort-align {
1087
+ margin: 0 !important;
1088
+ }
1071
1089
  .e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv, .e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv.e-value-sort-align, .e-pivotview .e-headercelldiv .e-sortfilterdiv, .e-pivotview .e-headercelldiv .e-sortfilterdiv.e-value-sort-align {
1072
1090
  margin: 0 !important;
1073
1091
  margin-left: auto !important;
1074
- margin-top: 5px !important;
1092
+ padding-bottom: 0 !important;
1093
+ padding-top: 0 !important;
1075
1094
  }
1076
1095
  .e-pivotview .e-rowsheader .e-sortfilterdiv {
1077
1096
  margin: -8px 0 !important;
@@ -1106,9 +1125,26 @@
1106
1125
  }
1107
1126
  .e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
1108
1127
  visibility: hidden !important;
1128
+ /* stylelint-enable */
1129
+ }
1130
+ .e-pivotview.sf-pivotview .e-grid .e-pivot-content-loader {
1131
+ position: absolute;
1132
+ z-index: 10;
1133
+ color: #3f51b5;
1134
+ font-size: 20px;
1135
+ text-align: center;
1136
+ padding: 10%;
1137
+ pointer-events: none;
1138
+ }
1139
+ .e-pivotview.sf-pivotview .e-grid .e-pivot-content-loader.e-hide-loader {
1140
+ display: none;
1141
+ }
1142
+ .e-pivotview.sf-pivotview .e-grid .e-virtual-pivot-content {
1143
+ visibility: hidden;
1109
1144
  }
1110
1145
  .e-pivotview .e-grid .e-headercelldiv,
1111
1146
  .e-pivotview .e-grid .e-columnsheader {
1147
+ /* stylelint-disable */
1112
1148
  padding-left: 8px !important;
1113
1149
  }
1114
1150
  .e-pivotview .sf-grid .e-spinner-pane {
@@ -1129,6 +1165,14 @@
1129
1165
  border-left: 0;
1130
1166
  border-right-width: 1px;
1131
1167
  }
1168
+ .e-pivotview .e-leftfreeze.e-freezeleftborder {
1169
+ border-left-color: #616161 !important;
1170
+ border-right-color: #616161 !important;
1171
+ border-right-width: 1px !important;
1172
+ }
1173
+ .e-pivotview .e-leftfreeze.e-freezeleftborder:not(.e-gtot) {
1174
+ background: #212121;
1175
+ }
1132
1176
  .e-pivotview .e-stackedheadercelldiv {
1133
1177
  display: block;
1134
1178
  }
@@ -1136,7 +1180,6 @@
1136
1180
  .e-pivotview .e-stackedheadercelldiv.e-cellvalue {
1137
1181
  display: inline-block;
1138
1182
  padding-left: 12px !important;
1139
- margin-top: 5px;
1140
1183
  }
1141
1184
  .e-pivotview .e-headercelldiv.e-cellvalue {
1142
1185
  margin-left: 0px;
@@ -1481,6 +1524,11 @@
1481
1524
  .e-pivotview .e-group-columns {
1482
1525
  width: 100%;
1483
1526
  }
1527
+ .e-pivotview th.e-group-row .e-axis-row {
1528
+ display: inline-block;
1529
+ height: 100%;
1530
+ vertical-align: top;
1531
+ }
1484
1532
  .e-pivotview .e-group-row {
1485
1533
  padding: 0 !important;
1486
1534
  }
@@ -1633,17 +1681,13 @@
1633
1681
  cursor: pointer;
1634
1682
  display: inline-block;
1635
1683
  height: 18px;
1636
- margin-top: 5px;
1637
- margin-bottom: 0;
1638
1684
  text-align: center;
1639
1685
  width: 18px;
1640
1686
  }
1641
1687
  .e-pivotview th .e-expand,
1642
1688
  .e-pivotview th .e-collapse {
1643
1689
  font-size: 10px !important;
1644
- margin-left: 0px;
1645
- margin-top: 8px;
1646
- margin-bottom: 0;
1690
+ margin-left: 0;
1647
1691
  }
1648
1692
  .e-pivotview .e-expand::before {
1649
1693
  font-size: 10px;
@@ -2010,6 +2054,10 @@
2010
2054
  border-left-width: 1px;
2011
2055
  border-right: 0;
2012
2056
  }
2057
+ .e-pivotview.e-rtl .e-leftfreeze.e-freezeleftborder {
2058
+ border-left-width: 1px;
2059
+ border-right: 0;
2060
+ }
2013
2061
  .e-pivotview.e-rtl .e-rowsheader .e-cellvalue {
2014
2062
  margin-left: 0;
2015
2063
  margin-right: 7px;
@@ -2242,12 +2290,6 @@
2242
2290
  .e-bigger.e-pivotview .e-bigger .e-stackedheadercelldiv {
2243
2291
  padding-left: 16px !important;
2244
2292
  }
2245
- .e-bigger .e-pivotview th .e-expand,
2246
- .e-bigger .e-pivotview th .e-collapse,
2247
- .e-bigger.e-pivotview th .e-expand,
2248
- .e-bigger.e-pivotview th .e-collapse {
2249
- margin-top: 8px;
2250
- }
2251
2293
  .e-bigger .e-pivotview .e-grouping-bar,
2252
2294
  .e-bigger.e-pivotview .e-grouping-bar {
2253
2295
  /* stylelint-enable */