@syncfusion/ej2-react-pivotview 23.1.38 → 23.1.44

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 (55) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist/ej2-react-pivotview.min.js +1 -1
  3. package/dist/ej2-react-pivotview.umd.min.js +1 -1
  4. package/package.json +8 -8
  5. package/styles/bootstrap-dark.css +16 -1
  6. package/styles/bootstrap.css +16 -1
  7. package/styles/bootstrap4.css +16 -1
  8. package/styles/bootstrap5-dark.css +16 -3
  9. package/styles/bootstrap5.css +16 -3
  10. package/styles/fabric-dark.css +16 -1
  11. package/styles/fabric.css +16 -1
  12. package/styles/fluent-dark.css +16 -3
  13. package/styles/fluent.css +16 -3
  14. package/styles/highcontrast-light.css +16 -1
  15. package/styles/highcontrast.css +16 -1
  16. package/styles/material-dark.css +16 -1
  17. package/styles/material.css +16 -1
  18. package/styles/material3-dark.css +16 -3
  19. package/styles/material3.css +16 -3
  20. package/styles/pivotfieldlist/bootstrap-dark.css +0 -1
  21. package/styles/pivotfieldlist/bootstrap.css +0 -1
  22. package/styles/pivotfieldlist/bootstrap4.css +0 -1
  23. package/styles/pivotfieldlist/bootstrap5-dark.css +0 -1
  24. package/styles/pivotfieldlist/bootstrap5.css +0 -1
  25. package/styles/pivotfieldlist/fabric-dark.css +0 -1
  26. package/styles/pivotfieldlist/fabric.css +0 -1
  27. package/styles/pivotfieldlist/fluent-dark.css +0 -1
  28. package/styles/pivotfieldlist/fluent.css +0 -1
  29. package/styles/pivotfieldlist/highcontrast-light.css +0 -1
  30. package/styles/pivotfieldlist/highcontrast.css +0 -1
  31. package/styles/pivotfieldlist/material-dark.css +0 -1
  32. package/styles/pivotfieldlist/material.css +0 -1
  33. package/styles/pivotfieldlist/material3-dark.css +0 -1
  34. package/styles/pivotfieldlist/material3.css +0 -1
  35. package/styles/pivotfieldlist/tailwind-dark.css +0 -1
  36. package/styles/pivotfieldlist/tailwind.css +0 -1
  37. package/styles/pivotview/bootstrap-dark.css +16 -0
  38. package/styles/pivotview/bootstrap.css +16 -0
  39. package/styles/pivotview/bootstrap4.css +16 -0
  40. package/styles/pivotview/bootstrap5-dark.css +16 -2
  41. package/styles/pivotview/bootstrap5.css +16 -2
  42. package/styles/pivotview/fabric-dark.css +16 -0
  43. package/styles/pivotview/fabric.css +16 -0
  44. package/styles/pivotview/fluent-dark.css +16 -2
  45. package/styles/pivotview/fluent.css +16 -2
  46. package/styles/pivotview/highcontrast-light.css +16 -0
  47. package/styles/pivotview/highcontrast.css +16 -0
  48. package/styles/pivotview/material-dark.css +16 -0
  49. package/styles/pivotview/material.css +16 -0
  50. package/styles/pivotview/material3-dark.css +16 -2
  51. package/styles/pivotview/material3.css +16 -2
  52. package/styles/pivotview/tailwind-dark.css +16 -2
  53. package/styles/pivotview/tailwind.css +16 -2
  54. package/styles/tailwind-dark.css +16 -3
  55. package/styles/tailwind.css +16 -3
@@ -934,9 +934,13 @@
934
934
  align-items: center;
935
935
  display: -ms-flexbox;
936
936
  display: flex;
937
+ max-height: inherit;
937
938
  }
938
939
  .e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
939
940
  .e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
941
+ -ms-flex-item-align: stretch;
942
+ -ms-grid-row-align: stretch;
943
+ align-self: stretch;
940
944
  overflow: hidden;
941
945
  text-overflow: ellipsis;
942
946
  width: 100%;
@@ -998,6 +1002,12 @@
998
1002
  .e-pivotview .e-grid .e-gridheader {
999
1003
  border-bottom-width: 1px;
1000
1004
  }
1005
+ .e-pivotview .e-grid .e-gridheader table th[rowspan="1"],
1006
+ .e-pivotview .e-grid .e-gridheader table th:not([rowspan]) {
1007
+ padding-bottom: 0 !important;
1008
+ padding-top: 0 !important;
1009
+ vertical-align: middle;
1010
+ }
1001
1011
  .e-pivotview .e-gtot {
1002
1012
  font-weight: 500;
1003
1013
  }
@@ -1163,13 +1173,16 @@
1163
1173
  .e-pivotview.sf-pivotview .e-grid .e-virtual-pivot-content {
1164
1174
  visibility: hidden;
1165
1175
  }
1176
+ .e-pivotview.sf-pivotview.e-device .e-pivotcell-container .e-stackedheadertext.e-cellvalue {
1177
+ -ms-flex-item-align: center;
1178
+ -ms-grid-row-align: center;
1179
+ align-self: center;
1180
+ }
1166
1181
  .e-pivotview .e-grid .e-headercelldiv,
1167
1182
  .e-pivotview .e-grid .e-columnsheader {
1168
1183
  /* stylelint-disable */
1169
1184
  padding-left: 8px !important;
1170
1185
  text-transform: none;
1171
- padding-top: 0px !important;
1172
- padding-bottom: 0px !important;
1173
1186
  }
1174
1187
  .e-pivotview .sf-grid .e-spinner-pane {
1175
1188
  z-index: 1 !important;
@@ -1552,6 +1565,7 @@
1552
1565
  display: inline-block;
1553
1566
  height: 100%;
1554
1567
  vertical-align: top;
1568
+ width: 100%;
1555
1569
  }
1556
1570
  .e-pivotview .e-group-row {
1557
1571
  padding: 0 !important;
@@ -5984,7 +5998,6 @@
5984
5998
  .e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-radio-wrapper .e-label {
5985
5999
  color: #fff;
5986
6000
  font-family: Inter;
5987
- font-size: 14px;
5988
6001
  opacity: 0.87;
5989
6002
  }
5990
6003
  .e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-ok-button,
@@ -936,9 +936,13 @@
936
936
  align-items: center;
937
937
  display: -ms-flexbox;
938
938
  display: flex;
939
+ max-height: inherit;
939
940
  }
940
941
  .e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
941
942
  .e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
943
+ -ms-flex-item-align: stretch;
944
+ -ms-grid-row-align: stretch;
945
+ align-self: stretch;
942
946
  overflow: hidden;
943
947
  text-overflow: ellipsis;
944
948
  width: 100%;
@@ -1000,6 +1004,12 @@
1000
1004
  .e-pivotview .e-grid .e-gridheader {
1001
1005
  border-bottom-width: 1px;
1002
1006
  }
1007
+ .e-pivotview .e-grid .e-gridheader table th[rowspan="1"],
1008
+ .e-pivotview .e-grid .e-gridheader table th:not([rowspan]) {
1009
+ padding-bottom: 0 !important;
1010
+ padding-top: 0 !important;
1011
+ vertical-align: middle;
1012
+ }
1003
1013
  .e-pivotview .e-gtot {
1004
1014
  font-weight: 500;
1005
1015
  }
@@ -1165,13 +1175,16 @@
1165
1175
  .e-pivotview.sf-pivotview .e-grid .e-virtual-pivot-content {
1166
1176
  visibility: hidden;
1167
1177
  }
1178
+ .e-pivotview.sf-pivotview.e-device .e-pivotcell-container .e-stackedheadertext.e-cellvalue {
1179
+ -ms-flex-item-align: center;
1180
+ -ms-grid-row-align: center;
1181
+ align-self: center;
1182
+ }
1168
1183
  .e-pivotview .e-grid .e-headercelldiv,
1169
1184
  .e-pivotview .e-grid .e-columnsheader {
1170
1185
  /* stylelint-disable */
1171
1186
  padding-left: 8px !important;
1172
1187
  text-transform: none;
1173
- padding-top: 0px !important;
1174
- padding-bottom: 0px !important;
1175
1188
  }
1176
1189
  .e-pivotview .sf-grid .e-spinner-pane {
1177
1190
  z-index: 1 !important;
@@ -1554,6 +1567,7 @@
1554
1567
  display: inline-block;
1555
1568
  height: 100%;
1556
1569
  vertical-align: top;
1570
+ width: 100%;
1557
1571
  }
1558
1572
  .e-pivotview .e-group-row {
1559
1573
  padding: 0 !important;
@@ -5987,7 +6001,6 @@
5987
6001
  .e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-radio-wrapper .e-label {
5988
6002
  color: #111827;
5989
6003
  font-family: Inter;
5990
- font-size: 14px;
5991
6004
  opacity: 0.87;
5992
6005
  }
5993
6006
  .e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-ok-button,