@syncfusion/ej2-react-pivotview 23.1.38 → 23.1.41
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.
- package/CHANGELOG.md +8 -0
- package/dist/ej2-react-pivotview.min.js +1 -1
- package/dist/ej2-react-pivotview.umd.min.js +1 -1
- package/package.json +7 -7
- package/styles/bootstrap-dark.css +10 -0
- package/styles/bootstrap.css +10 -0
- package/styles/bootstrap4.css +10 -0
- package/styles/bootstrap5-dark.css +10 -2
- package/styles/bootstrap5.css +10 -2
- package/styles/fabric-dark.css +10 -0
- package/styles/fabric.css +10 -0
- package/styles/fluent-dark.css +10 -2
- package/styles/fluent.css +10 -2
- package/styles/highcontrast-light.css +10 -0
- package/styles/highcontrast.css +10 -0
- package/styles/material-dark.css +10 -0
- package/styles/material.css +10 -0
- package/styles/material3-dark.css +10 -2
- package/styles/material3.css +10 -2
- package/styles/pivotview/bootstrap-dark.css +10 -0
- package/styles/pivotview/bootstrap.css +10 -0
- package/styles/pivotview/bootstrap4.css +10 -0
- package/styles/pivotview/bootstrap5-dark.css +10 -2
- package/styles/pivotview/bootstrap5.css +10 -2
- package/styles/pivotview/fabric-dark.css +10 -0
- package/styles/pivotview/fabric.css +10 -0
- package/styles/pivotview/fluent-dark.css +10 -2
- package/styles/pivotview/fluent.css +10 -2
- package/styles/pivotview/highcontrast-light.css +10 -0
- package/styles/pivotview/highcontrast.css +10 -0
- package/styles/pivotview/material-dark.css +10 -0
- package/styles/pivotview/material.css +10 -0
- package/styles/pivotview/material3-dark.css +10 -2
- package/styles/pivotview/material3.css +10 -2
- package/styles/pivotview/tailwind-dark.css +10 -2
- package/styles/pivotview/tailwind.css +10 -2
- package/styles/tailwind-dark.css +10 -2
- package/styles/tailwind.css +10 -2
|
@@ -919,9 +919,13 @@
|
|
|
919
919
|
align-items: center;
|
|
920
920
|
display: -ms-flexbox;
|
|
921
921
|
display: flex;
|
|
922
|
+
max-height: inherit;
|
|
922
923
|
}
|
|
923
924
|
.e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
924
925
|
.e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
926
|
+
-ms-flex-item-align: stretch;
|
|
927
|
+
-ms-grid-row-align: stretch;
|
|
928
|
+
align-self: stretch;
|
|
925
929
|
overflow: hidden;
|
|
926
930
|
text-overflow: ellipsis;
|
|
927
931
|
width: 100%;
|
|
@@ -983,6 +987,11 @@
|
|
|
983
987
|
.e-pivotview .e-grid .e-gridheader {
|
|
984
988
|
border-bottom-width: 1px;
|
|
985
989
|
}
|
|
990
|
+
.e-pivotview .e-grid .e-gridheader table th[rowspan="1"] {
|
|
991
|
+
padding-bottom: 0;
|
|
992
|
+
padding-top: 0;
|
|
993
|
+
vertical-align: middle;
|
|
994
|
+
}
|
|
986
995
|
.e-pivotview .e-gtot {
|
|
987
996
|
font-weight: bold;
|
|
988
997
|
}
|
|
@@ -1529,6 +1538,7 @@
|
|
|
1529
1538
|
display: inline-block;
|
|
1530
1539
|
height: 100%;
|
|
1531
1540
|
vertical-align: top;
|
|
1541
|
+
width: 100%;
|
|
1532
1542
|
}
|
|
1533
1543
|
.e-pivotview .e-group-row {
|
|
1534
1544
|
padding: 0 !important;
|
|
@@ -977,9 +977,13 @@
|
|
|
977
977
|
align-items: center;
|
|
978
978
|
display: -ms-flexbox;
|
|
979
979
|
display: flex;
|
|
980
|
+
max-height: inherit;
|
|
980
981
|
}
|
|
981
982
|
.e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
982
983
|
.e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
984
|
+
-ms-flex-item-align: stretch;
|
|
985
|
+
-ms-grid-row-align: stretch;
|
|
986
|
+
align-self: stretch;
|
|
983
987
|
overflow: hidden;
|
|
984
988
|
text-overflow: ellipsis;
|
|
985
989
|
width: 100%;
|
|
@@ -1041,6 +1045,11 @@
|
|
|
1041
1045
|
.e-pivotview .e-grid .e-gridheader {
|
|
1042
1046
|
border-bottom-width: 1px;
|
|
1043
1047
|
}
|
|
1048
|
+
.e-pivotview .e-grid .e-gridheader table th[rowspan="1"] {
|
|
1049
|
+
padding-bottom: 0;
|
|
1050
|
+
padding-top: 0;
|
|
1051
|
+
vertical-align: middle;
|
|
1052
|
+
}
|
|
1044
1053
|
.e-pivotview .e-gtot {
|
|
1045
1054
|
font-weight: bold;
|
|
1046
1055
|
}
|
|
@@ -1603,6 +1612,7 @@
|
|
|
1603
1612
|
display: inline-block;
|
|
1604
1613
|
height: 100%;
|
|
1605
1614
|
vertical-align: top;
|
|
1615
|
+
width: 100%;
|
|
1606
1616
|
}
|
|
1607
1617
|
.e-pivotview .e-group-row {
|
|
1608
1618
|
padding: 0 !important;
|
|
@@ -920,9 +920,13 @@
|
|
|
920
920
|
align-items: center;
|
|
921
921
|
display: -ms-flexbox;
|
|
922
922
|
display: flex;
|
|
923
|
+
max-height: inherit;
|
|
923
924
|
}
|
|
924
925
|
.e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
925
926
|
.e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
927
|
+
-ms-flex-item-align: stretch;
|
|
928
|
+
-ms-grid-row-align: stretch;
|
|
929
|
+
align-self: stretch;
|
|
926
930
|
overflow: hidden;
|
|
927
931
|
text-overflow: ellipsis;
|
|
928
932
|
width: 100%;
|
|
@@ -985,6 +989,11 @@
|
|
|
985
989
|
border-bottom-width: 1px;
|
|
986
990
|
border-bottom-color: #444c54;
|
|
987
991
|
}
|
|
992
|
+
.e-pivotview .e-grid .e-gridheader table th[rowspan="1"] {
|
|
993
|
+
padding-bottom: 0;
|
|
994
|
+
padding-top: 0;
|
|
995
|
+
vertical-align: middle;
|
|
996
|
+
}
|
|
988
997
|
.e-pivotview .e-gtot {
|
|
989
998
|
font-weight: 700;
|
|
990
999
|
}
|
|
@@ -1153,8 +1162,6 @@
|
|
|
1153
1162
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1154
1163
|
/* stylelint-disable */
|
|
1155
1164
|
padding-left: 8px !important;
|
|
1156
|
-
padding-top: 0px !important;
|
|
1157
|
-
padding-bottom: 0px !important;
|
|
1158
1165
|
}
|
|
1159
1166
|
.e-pivotview .sf-grid .e-spinner-pane {
|
|
1160
1167
|
z-index: 1 !important;
|
|
@@ -1538,6 +1545,7 @@
|
|
|
1538
1545
|
display: inline-block;
|
|
1539
1546
|
height: 100%;
|
|
1540
1547
|
vertical-align: top;
|
|
1548
|
+
width: 100%;
|
|
1541
1549
|
}
|
|
1542
1550
|
.e-pivotview .e-group-row {
|
|
1543
1551
|
padding: 0 !important;
|
|
@@ -922,9 +922,13 @@
|
|
|
922
922
|
align-items: center;
|
|
923
923
|
display: -ms-flexbox;
|
|
924
924
|
display: flex;
|
|
925
|
+
max-height: inherit;
|
|
925
926
|
}
|
|
926
927
|
.e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
927
928
|
.e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
929
|
+
-ms-flex-item-align: stretch;
|
|
930
|
+
-ms-grid-row-align: stretch;
|
|
931
|
+
align-self: stretch;
|
|
928
932
|
overflow: hidden;
|
|
929
933
|
text-overflow: ellipsis;
|
|
930
934
|
width: 100%;
|
|
@@ -987,6 +991,11 @@
|
|
|
987
991
|
border-bottom-width: 1px;
|
|
988
992
|
border-bottom-color: #dee2e6;
|
|
989
993
|
}
|
|
994
|
+
.e-pivotview .e-grid .e-gridheader table th[rowspan="1"] {
|
|
995
|
+
padding-bottom: 0;
|
|
996
|
+
padding-top: 0;
|
|
997
|
+
vertical-align: middle;
|
|
998
|
+
}
|
|
990
999
|
.e-pivotview .e-gtot {
|
|
991
1000
|
font-weight: 700;
|
|
992
1001
|
}
|
|
@@ -1155,8 +1164,6 @@
|
|
|
1155
1164
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1156
1165
|
/* stylelint-disable */
|
|
1157
1166
|
padding-left: 8px !important;
|
|
1158
|
-
padding-top: 0px !important;
|
|
1159
|
-
padding-bottom: 0px !important;
|
|
1160
1167
|
}
|
|
1161
1168
|
.e-pivotview .sf-grid .e-spinner-pane {
|
|
1162
1169
|
z-index: 1 !important;
|
|
@@ -1540,6 +1547,7 @@
|
|
|
1540
1547
|
display: inline-block;
|
|
1541
1548
|
height: 100%;
|
|
1542
1549
|
vertical-align: top;
|
|
1550
|
+
width: 100%;
|
|
1543
1551
|
}
|
|
1544
1552
|
.e-pivotview .e-group-row {
|
|
1545
1553
|
padding: 0 !important;
|
|
@@ -923,9 +923,13 @@
|
|
|
923
923
|
align-items: center;
|
|
924
924
|
display: -ms-flexbox;
|
|
925
925
|
display: flex;
|
|
926
|
+
max-height: inherit;
|
|
926
927
|
}
|
|
927
928
|
.e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
928
929
|
.e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
930
|
+
-ms-flex-item-align: stretch;
|
|
931
|
+
-ms-grid-row-align: stretch;
|
|
932
|
+
align-self: stretch;
|
|
929
933
|
overflow: hidden;
|
|
930
934
|
text-overflow: ellipsis;
|
|
931
935
|
width: 100%;
|
|
@@ -987,6 +991,11 @@
|
|
|
987
991
|
.e-pivotview .e-grid .e-gridheader {
|
|
988
992
|
border-bottom-width: 1px;
|
|
989
993
|
}
|
|
994
|
+
.e-pivotview .e-grid .e-gridheader table th[rowspan="1"] {
|
|
995
|
+
padding-bottom: 0;
|
|
996
|
+
padding-top: 0;
|
|
997
|
+
vertical-align: middle;
|
|
998
|
+
}
|
|
990
999
|
.e-pivotview .e-gtot {
|
|
991
1000
|
font-weight: 600;
|
|
992
1001
|
}
|
|
@@ -1530,6 +1539,7 @@
|
|
|
1530
1539
|
display: inline-block;
|
|
1531
1540
|
height: 100%;
|
|
1532
1541
|
vertical-align: top;
|
|
1542
|
+
width: 100%;
|
|
1533
1543
|
}
|
|
1534
1544
|
.e-pivotview .e-group-row {
|
|
1535
1545
|
padding: 0 !important;
|
|
@@ -923,9 +923,13 @@
|
|
|
923
923
|
align-items: center;
|
|
924
924
|
display: -ms-flexbox;
|
|
925
925
|
display: flex;
|
|
926
|
+
max-height: inherit;
|
|
926
927
|
}
|
|
927
928
|
.e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
928
929
|
.e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
930
|
+
-ms-flex-item-align: stretch;
|
|
931
|
+
-ms-grid-row-align: stretch;
|
|
932
|
+
align-self: stretch;
|
|
929
933
|
overflow: hidden;
|
|
930
934
|
text-overflow: ellipsis;
|
|
931
935
|
width: 100%;
|
|
@@ -987,6 +991,11 @@
|
|
|
987
991
|
.e-pivotview .e-grid .e-gridheader {
|
|
988
992
|
border-bottom-width: 1px;
|
|
989
993
|
}
|
|
994
|
+
.e-pivotview .e-grid .e-gridheader table th[rowspan="1"] {
|
|
995
|
+
padding-bottom: 0;
|
|
996
|
+
padding-top: 0;
|
|
997
|
+
vertical-align: middle;
|
|
998
|
+
}
|
|
990
999
|
.e-pivotview .e-gtot {
|
|
991
1000
|
font-weight: 600;
|
|
992
1001
|
}
|
|
@@ -1530,6 +1539,7 @@
|
|
|
1530
1539
|
display: inline-block;
|
|
1531
1540
|
height: 100%;
|
|
1532
1541
|
vertical-align: top;
|
|
1542
|
+
width: 100%;
|
|
1533
1543
|
}
|
|
1534
1544
|
.e-pivotview .e-group-row {
|
|
1535
1545
|
padding: 0 !important;
|
|
@@ -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,11 @@
|
|
|
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
|
+
padding-bottom: 0;
|
|
1009
|
+
padding-top: 0;
|
|
1010
|
+
vertical-align: middle;
|
|
1011
|
+
}
|
|
1003
1012
|
.e-pivotview .e-gtot {
|
|
1004
1013
|
font-weight: 600;
|
|
1005
1014
|
}
|
|
@@ -1165,8 +1174,6 @@
|
|
|
1165
1174
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1166
1175
|
/* stylelint-disable */
|
|
1167
1176
|
padding-left: 8px !important;
|
|
1168
|
-
padding-top: 0px !important;
|
|
1169
|
-
padding-bottom: 0px !important;
|
|
1170
1177
|
}
|
|
1171
1178
|
.e-pivotview .sf-grid .e-spinner-pane {
|
|
1172
1179
|
z-index: 1 !important;
|
|
@@ -1551,6 +1558,7 @@
|
|
|
1551
1558
|
display: inline-block;
|
|
1552
1559
|
height: 100%;
|
|
1553
1560
|
vertical-align: top;
|
|
1561
|
+
width: 100%;
|
|
1554
1562
|
}
|
|
1555
1563
|
.e-pivotview .e-group-row {
|
|
1556
1564
|
padding: 0 !important;
|
|
@@ -938,9 +938,13 @@
|
|
|
938
938
|
align-items: center;
|
|
939
939
|
display: -ms-flexbox;
|
|
940
940
|
display: flex;
|
|
941
|
+
max-height: inherit;
|
|
941
942
|
}
|
|
942
943
|
.e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
943
944
|
.e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
945
|
+
-ms-flex-item-align: stretch;
|
|
946
|
+
-ms-grid-row-align: stretch;
|
|
947
|
+
align-self: stretch;
|
|
944
948
|
overflow: hidden;
|
|
945
949
|
text-overflow: ellipsis;
|
|
946
950
|
width: 100%;
|
|
@@ -1002,6 +1006,11 @@
|
|
|
1002
1006
|
.e-pivotview .e-grid .e-gridheader {
|
|
1003
1007
|
border-bottom-width: 1px;
|
|
1004
1008
|
}
|
|
1009
|
+
.e-pivotview .e-grid .e-gridheader table th[rowspan="1"] {
|
|
1010
|
+
padding-bottom: 0;
|
|
1011
|
+
padding-top: 0;
|
|
1012
|
+
vertical-align: middle;
|
|
1013
|
+
}
|
|
1005
1014
|
.e-pivotview .e-gtot {
|
|
1006
1015
|
font-weight: 600;
|
|
1007
1016
|
}
|
|
@@ -1167,8 +1176,6 @@
|
|
|
1167
1176
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1168
1177
|
/* stylelint-disable */
|
|
1169
1178
|
padding-left: 8px !important;
|
|
1170
|
-
padding-top: 0px !important;
|
|
1171
|
-
padding-bottom: 0px !important;
|
|
1172
1179
|
}
|
|
1173
1180
|
.e-pivotview .sf-grid .e-spinner-pane {
|
|
1174
1181
|
z-index: 1 !important;
|
|
@@ -1553,6 +1560,7 @@
|
|
|
1553
1560
|
display: inline-block;
|
|
1554
1561
|
height: 100%;
|
|
1555
1562
|
vertical-align: top;
|
|
1563
|
+
width: 100%;
|
|
1556
1564
|
}
|
|
1557
1565
|
.e-pivotview .e-group-row {
|
|
1558
1566
|
padding: 0 !important;
|
|
@@ -922,9 +922,13 @@
|
|
|
922
922
|
align-items: center;
|
|
923
923
|
display: -ms-flexbox;
|
|
924
924
|
display: flex;
|
|
925
|
+
max-height: inherit;
|
|
925
926
|
}
|
|
926
927
|
.e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
927
928
|
.e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
929
|
+
-ms-flex-item-align: stretch;
|
|
930
|
+
-ms-grid-row-align: stretch;
|
|
931
|
+
align-self: stretch;
|
|
928
932
|
overflow: hidden;
|
|
929
933
|
text-overflow: ellipsis;
|
|
930
934
|
width: 100%;
|
|
@@ -986,6 +990,11 @@
|
|
|
986
990
|
.e-pivotview .e-grid .e-gridheader {
|
|
987
991
|
border-bottom-width: 1px;
|
|
988
992
|
}
|
|
993
|
+
.e-pivotview .e-grid .e-gridheader table th[rowspan="1"] {
|
|
994
|
+
padding-bottom: 0;
|
|
995
|
+
padding-top: 0;
|
|
996
|
+
vertical-align: middle;
|
|
997
|
+
}
|
|
989
998
|
.e-pivotview .e-gtot {
|
|
990
999
|
font-weight: 600;
|
|
991
1000
|
}
|
|
@@ -1530,6 +1539,7 @@
|
|
|
1530
1539
|
display: inline-block;
|
|
1531
1540
|
height: 100%;
|
|
1532
1541
|
vertical-align: top;
|
|
1542
|
+
width: 100%;
|
|
1533
1543
|
}
|
|
1534
1544
|
.e-pivotview .e-group-row {
|
|
1535
1545
|
padding: 0 !important;
|
|
@@ -922,9 +922,13 @@
|
|
|
922
922
|
align-items: center;
|
|
923
923
|
display: -ms-flexbox;
|
|
924
924
|
display: flex;
|
|
925
|
+
max-height: inherit;
|
|
925
926
|
}
|
|
926
927
|
.e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
927
928
|
.e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
929
|
+
-ms-flex-item-align: stretch;
|
|
930
|
+
-ms-grid-row-align: stretch;
|
|
931
|
+
align-self: stretch;
|
|
928
932
|
overflow: hidden;
|
|
929
933
|
text-overflow: ellipsis;
|
|
930
934
|
width: 100%;
|
|
@@ -986,6 +990,11 @@
|
|
|
986
990
|
.e-pivotview .e-grid .e-gridheader {
|
|
987
991
|
border-bottom-width: 1px;
|
|
988
992
|
}
|
|
993
|
+
.e-pivotview .e-grid .e-gridheader table th[rowspan="1"] {
|
|
994
|
+
padding-bottom: 0;
|
|
995
|
+
padding-top: 0;
|
|
996
|
+
vertical-align: middle;
|
|
997
|
+
}
|
|
989
998
|
.e-pivotview .e-gtot {
|
|
990
999
|
font-weight: 600;
|
|
991
1000
|
}
|
|
@@ -1530,6 +1539,7 @@
|
|
|
1530
1539
|
display: inline-block;
|
|
1531
1540
|
height: 100%;
|
|
1532
1541
|
vertical-align: top;
|
|
1542
|
+
width: 100%;
|
|
1533
1543
|
}
|
|
1534
1544
|
.e-pivotview .e-group-row {
|
|
1535
1545
|
padding: 0 !important;
|
|
@@ -918,9 +918,13 @@
|
|
|
918
918
|
align-items: center;
|
|
919
919
|
display: -ms-flexbox;
|
|
920
920
|
display: flex;
|
|
921
|
+
max-height: inherit;
|
|
921
922
|
}
|
|
922
923
|
.e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
923
924
|
.e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
925
|
+
-ms-flex-item-align: stretch;
|
|
926
|
+
-ms-grid-row-align: stretch;
|
|
927
|
+
align-self: stretch;
|
|
924
928
|
overflow: hidden;
|
|
925
929
|
text-overflow: ellipsis;
|
|
926
930
|
width: 100%;
|
|
@@ -982,6 +986,11 @@
|
|
|
982
986
|
.e-pivotview .e-grid .e-gridheader {
|
|
983
987
|
border-bottom-width: 1px;
|
|
984
988
|
}
|
|
989
|
+
.e-pivotview .e-grid .e-gridheader table th[rowspan="1"] {
|
|
990
|
+
padding-bottom: 0;
|
|
991
|
+
padding-top: 0;
|
|
992
|
+
vertical-align: middle;
|
|
993
|
+
}
|
|
985
994
|
.e-pivotview .e-gtot {
|
|
986
995
|
font-weight: 500;
|
|
987
996
|
}
|
|
@@ -1528,6 +1537,7 @@
|
|
|
1528
1537
|
display: inline-block;
|
|
1529
1538
|
height: 100%;
|
|
1530
1539
|
vertical-align: top;
|
|
1540
|
+
width: 100%;
|
|
1531
1541
|
}
|
|
1532
1542
|
.e-pivotview .e-group-row {
|
|
1533
1543
|
padding: 0 !important;
|
|
@@ -919,9 +919,13 @@
|
|
|
919
919
|
align-items: center;
|
|
920
920
|
display: -ms-flexbox;
|
|
921
921
|
display: flex;
|
|
922
|
+
max-height: inherit;
|
|
922
923
|
}
|
|
923
924
|
.e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
924
925
|
.e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
926
|
+
-ms-flex-item-align: stretch;
|
|
927
|
+
-ms-grid-row-align: stretch;
|
|
928
|
+
align-self: stretch;
|
|
925
929
|
overflow: hidden;
|
|
926
930
|
text-overflow: ellipsis;
|
|
927
931
|
width: 100%;
|
|
@@ -983,6 +987,11 @@
|
|
|
983
987
|
.e-pivotview .e-grid .e-gridheader {
|
|
984
988
|
border-bottom-width: 1px;
|
|
985
989
|
}
|
|
990
|
+
.e-pivotview .e-grid .e-gridheader table th[rowspan="1"] {
|
|
991
|
+
padding-bottom: 0;
|
|
992
|
+
padding-top: 0;
|
|
993
|
+
vertical-align: middle;
|
|
994
|
+
}
|
|
986
995
|
.e-pivotview .e-gtot {
|
|
987
996
|
font-weight: 500;
|
|
988
997
|
}
|
|
@@ -1529,6 +1538,7 @@
|
|
|
1529
1538
|
display: inline-block;
|
|
1530
1539
|
height: 100%;
|
|
1531
1540
|
vertical-align: top;
|
|
1541
|
+
width: 100%;
|
|
1532
1542
|
}
|
|
1533
1543
|
.e-pivotview .e-group-row {
|
|
1534
1544
|
padding: 0 !important;
|
|
@@ -990,9 +990,13 @@
|
|
|
990
990
|
align-items: center;
|
|
991
991
|
display: -ms-flexbox;
|
|
992
992
|
display: flex;
|
|
993
|
+
max-height: inherit;
|
|
993
994
|
}
|
|
994
995
|
.e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
995
996
|
.e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
997
|
+
-ms-flex-item-align: stretch;
|
|
998
|
+
-ms-grid-row-align: stretch;
|
|
999
|
+
align-self: stretch;
|
|
996
1000
|
overflow: hidden;
|
|
997
1001
|
text-overflow: ellipsis;
|
|
998
1002
|
width: 100%;
|
|
@@ -1054,6 +1058,11 @@
|
|
|
1054
1058
|
.e-pivotview .e-grid .e-gridheader {
|
|
1055
1059
|
border-bottom-width: 1px;
|
|
1056
1060
|
}
|
|
1061
|
+
.e-pivotview .e-grid .e-gridheader table th[rowspan="1"] {
|
|
1062
|
+
padding-bottom: 0;
|
|
1063
|
+
padding-top: 0;
|
|
1064
|
+
vertical-align: middle;
|
|
1065
|
+
}
|
|
1057
1066
|
.e-pivotview .e-gtot {
|
|
1058
1067
|
font-weight: 500;
|
|
1059
1068
|
}
|
|
@@ -1222,8 +1231,6 @@
|
|
|
1222
1231
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1223
1232
|
/* stylelint-disable */
|
|
1224
1233
|
padding-left: 8px !important;
|
|
1225
|
-
padding-top: 0px !important;
|
|
1226
|
-
padding-bottom: 0px !important;
|
|
1227
1234
|
}
|
|
1228
1235
|
.e-pivotview .sf-grid .e-spinner-pane {
|
|
1229
1236
|
z-index: 1 !important;
|
|
@@ -1602,6 +1609,7 @@
|
|
|
1602
1609
|
display: inline-block;
|
|
1603
1610
|
height: 100%;
|
|
1604
1611
|
vertical-align: top;
|
|
1612
|
+
width: 100%;
|
|
1605
1613
|
}
|
|
1606
1614
|
.e-pivotview .e-group-row {
|
|
1607
1615
|
padding: 0 !important;
|
|
@@ -1048,9 +1048,13 @@
|
|
|
1048
1048
|
align-items: center;
|
|
1049
1049
|
display: -ms-flexbox;
|
|
1050
1050
|
display: flex;
|
|
1051
|
+
max-height: inherit;
|
|
1051
1052
|
}
|
|
1052
1053
|
.e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
1053
1054
|
.e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
1055
|
+
-ms-flex-item-align: stretch;
|
|
1056
|
+
-ms-grid-row-align: stretch;
|
|
1057
|
+
align-self: stretch;
|
|
1054
1058
|
overflow: hidden;
|
|
1055
1059
|
text-overflow: ellipsis;
|
|
1056
1060
|
width: 100%;
|
|
@@ -1112,6 +1116,11 @@
|
|
|
1112
1116
|
.e-pivotview .e-grid .e-gridheader {
|
|
1113
1117
|
border-bottom-width: 1px;
|
|
1114
1118
|
}
|
|
1119
|
+
.e-pivotview .e-grid .e-gridheader table th[rowspan="1"] {
|
|
1120
|
+
padding-bottom: 0;
|
|
1121
|
+
padding-top: 0;
|
|
1122
|
+
vertical-align: middle;
|
|
1123
|
+
}
|
|
1115
1124
|
.e-pivotview .e-gtot {
|
|
1116
1125
|
font-weight: 500;
|
|
1117
1126
|
}
|
|
@@ -1280,8 +1289,6 @@
|
|
|
1280
1289
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1281
1290
|
/* stylelint-disable */
|
|
1282
1291
|
padding-left: 8px !important;
|
|
1283
|
-
padding-top: 0px !important;
|
|
1284
|
-
padding-bottom: 0px !important;
|
|
1285
1292
|
}
|
|
1286
1293
|
.e-pivotview .sf-grid .e-spinner-pane {
|
|
1287
1294
|
z-index: 1 !important;
|
|
@@ -1660,6 +1667,7 @@
|
|
|
1660
1667
|
display: inline-block;
|
|
1661
1668
|
height: 100%;
|
|
1662
1669
|
vertical-align: top;
|
|
1670
|
+
width: 100%;
|
|
1663
1671
|
}
|
|
1664
1672
|
.e-pivotview .e-group-row {
|
|
1665
1673
|
padding: 0 !important;
|
|
@@ -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,11 @@
|
|
|
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
|
+
padding-bottom: 0;
|
|
1007
|
+
padding-top: 0;
|
|
1008
|
+
vertical-align: middle;
|
|
1009
|
+
}
|
|
1001
1010
|
.e-pivotview .e-gtot {
|
|
1002
1011
|
font-weight: 500;
|
|
1003
1012
|
}
|
|
@@ -1168,8 +1177,6 @@
|
|
|
1168
1177
|
/* stylelint-disable */
|
|
1169
1178
|
padding-left: 8px !important;
|
|
1170
1179
|
text-transform: none;
|
|
1171
|
-
padding-top: 0px !important;
|
|
1172
|
-
padding-bottom: 0px !important;
|
|
1173
1180
|
}
|
|
1174
1181
|
.e-pivotview .sf-grid .e-spinner-pane {
|
|
1175
1182
|
z-index: 1 !important;
|
|
@@ -1552,6 +1559,7 @@
|
|
|
1552
1559
|
display: inline-block;
|
|
1553
1560
|
height: 100%;
|
|
1554
1561
|
vertical-align: top;
|
|
1562
|
+
width: 100%;
|
|
1555
1563
|
}
|
|
1556
1564
|
.e-pivotview .e-group-row {
|
|
1557
1565
|
padding: 0 !important;
|
|
@@ -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,11 @@
|
|
|
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
|
+
padding-bottom: 0;
|
|
1009
|
+
padding-top: 0;
|
|
1010
|
+
vertical-align: middle;
|
|
1011
|
+
}
|
|
1003
1012
|
.e-pivotview .e-gtot {
|
|
1004
1013
|
font-weight: 500;
|
|
1005
1014
|
}
|
|
@@ -1170,8 +1179,6 @@
|
|
|
1170
1179
|
/* stylelint-disable */
|
|
1171
1180
|
padding-left: 8px !important;
|
|
1172
1181
|
text-transform: none;
|
|
1173
|
-
padding-top: 0px !important;
|
|
1174
|
-
padding-bottom: 0px !important;
|
|
1175
1182
|
}
|
|
1176
1183
|
.e-pivotview .sf-grid .e-spinner-pane {
|
|
1177
1184
|
z-index: 1 !important;
|
|
@@ -1554,6 +1561,7 @@
|
|
|
1554
1561
|
display: inline-block;
|
|
1555
1562
|
height: 100%;
|
|
1556
1563
|
vertical-align: top;
|
|
1564
|
+
width: 100%;
|
|
1557
1565
|
}
|
|
1558
1566
|
.e-pivotview .e-group-row {
|
|
1559
1567
|
padding: 0 !important;
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -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,11 @@
|
|
|
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
|
+
padding-bottom: 0;
|
|
1007
|
+
padding-top: 0;
|
|
1008
|
+
vertical-align: middle;
|
|
1009
|
+
}
|
|
1001
1010
|
.e-pivotview .e-gtot {
|
|
1002
1011
|
font-weight: 500;
|
|
1003
1012
|
}
|
|
@@ -1168,8 +1177,6 @@
|
|
|
1168
1177
|
/* stylelint-disable */
|
|
1169
1178
|
padding-left: 8px !important;
|
|
1170
1179
|
text-transform: none;
|
|
1171
|
-
padding-top: 0px !important;
|
|
1172
|
-
padding-bottom: 0px !important;
|
|
1173
1180
|
}
|
|
1174
1181
|
.e-pivotview .sf-grid .e-spinner-pane {
|
|
1175
1182
|
z-index: 1 !important;
|
|
@@ -1552,6 +1559,7 @@
|
|
|
1552
1559
|
display: inline-block;
|
|
1553
1560
|
height: 100%;
|
|
1554
1561
|
vertical-align: top;
|
|
1562
|
+
width: 100%;
|
|
1555
1563
|
}
|
|
1556
1564
|
.e-pivotview .e-group-row {
|
|
1557
1565
|
padding: 0 !important;
|
package/styles/tailwind.css
CHANGED
|
@@ -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,11 @@
|
|
|
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
|
+
padding-bottom: 0;
|
|
1009
|
+
padding-top: 0;
|
|
1010
|
+
vertical-align: middle;
|
|
1011
|
+
}
|
|
1003
1012
|
.e-pivotview .e-gtot {
|
|
1004
1013
|
font-weight: 500;
|
|
1005
1014
|
}
|
|
@@ -1170,8 +1179,6 @@
|
|
|
1170
1179
|
/* stylelint-disable */
|
|
1171
1180
|
padding-left: 8px !important;
|
|
1172
1181
|
text-transform: none;
|
|
1173
|
-
padding-top: 0px !important;
|
|
1174
|
-
padding-bottom: 0px !important;
|
|
1175
1182
|
}
|
|
1176
1183
|
.e-pivotview .sf-grid .e-spinner-pane {
|
|
1177
1184
|
z-index: 1 !important;
|
|
@@ -1554,6 +1561,7 @@
|
|
|
1554
1561
|
display: inline-block;
|
|
1555
1562
|
height: 100%;
|
|
1556
1563
|
vertical-align: top;
|
|
1564
|
+
width: 100%;
|
|
1557
1565
|
}
|
|
1558
1566
|
.e-pivotview .e-group-row {
|
|
1559
1567
|
padding: 0 !important;
|