@syncfusion/ej2-angular-pivotview 22.1.39 → 22.2.5
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/package.json +8 -8
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/styles/bootstrap-dark.css +25 -4
- package/styles/bootstrap.css +25 -4
- package/styles/bootstrap4.css +25 -4
- package/styles/bootstrap5-dark.css +25 -5
- package/styles/bootstrap5.css +25 -5
- package/styles/fabric-dark.css +25 -4
- package/styles/fabric.css +25 -4
- package/styles/fluent-dark.css +25 -5
- package/styles/fluent.css +25 -5
- package/styles/highcontrast-light.css +25 -5
- package/styles/highcontrast.css +25 -5
- package/styles/material-dark.css +25 -4
- package/styles/material.css +25 -4
- package/styles/material3-dark.css +25 -5
- package/styles/material3.css +25 -5
- package/styles/pivotview/_bootstrap-dark-definition.scss +1 -0
- package/styles/pivotview/_bootstrap-definition.scss +1 -0
- package/styles/pivotview/_bootstrap4-definition.scss +1 -0
- package/styles/pivotview/_bootstrap5-definition.scss +1 -0
- package/styles/pivotview/_fabric-dark-definition.scss +1 -0
- package/styles/pivotview/_fabric-definition.scss +1 -0
- package/styles/pivotview/_fluent-definition.scss +1 -0
- package/styles/pivotview/_fusionnew-definition.scss +1 -0
- package/styles/pivotview/_highcontrast-definition.scss +1 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +1 -0
- package/styles/pivotview/_layout.scss +6 -0
- package/styles/pivotview/_material-dark-definition.scss +1 -0
- package/styles/pivotview/_material-definition.scss +1 -0
- package/styles/pivotview/_material3-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +1 -0
- package/styles/pivotview/_theme.scss +33 -19
- package/styles/pivotview/bootstrap-dark.css +25 -4
- package/styles/pivotview/bootstrap.css +25 -4
- package/styles/pivotview/bootstrap4.css +25 -4
- package/styles/pivotview/bootstrap5-dark.css +25 -5
- package/styles/pivotview/bootstrap5.css +25 -5
- package/styles/pivotview/fabric-dark.css +25 -4
- package/styles/pivotview/fabric.css +25 -4
- package/styles/pivotview/fluent-dark.css +25 -5
- package/styles/pivotview/fluent.css +25 -5
- package/styles/pivotview/highcontrast-light.css +25 -5
- package/styles/pivotview/highcontrast.css +25 -5
- package/styles/pivotview/material-dark.css +25 -4
- package/styles/pivotview/material.css +25 -4
- package/styles/pivotview/material3-dark.css +25 -5
- package/styles/pivotview/material3.css +25 -5
- package/styles/pivotview/tailwind-dark.css +25 -5
- package/styles/pivotview/tailwind.css +25 -5
- package/styles/tailwind-dark.css +25 -5
- package/styles/tailwind.css +25 -5
|
@@ -579,6 +579,9 @@
|
|
|
579
579
|
margin-bottom: 20px;
|
|
580
580
|
margin-bottom: 12px;
|
|
581
581
|
}
|
|
582
|
+
.e-pivotview.sf-pivotview .e-pivot-toolbar {
|
|
583
|
+
box-sizing: border-box;
|
|
584
|
+
}
|
|
582
585
|
.e-pivotview .e-pivot-toolbar {
|
|
583
586
|
background: #f9fafb;
|
|
584
587
|
border-bottom: 0;
|
|
@@ -925,6 +928,25 @@
|
|
|
925
928
|
/* stylelint-enable */
|
|
926
929
|
/* stylelint-enable */
|
|
927
930
|
}
|
|
931
|
+
.e-pivotview .e-pivotcell-container {
|
|
932
|
+
display: -ms-flexbox;
|
|
933
|
+
display: flex;
|
|
934
|
+
}
|
|
935
|
+
.e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
936
|
+
.e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
937
|
+
overflow: hidden;
|
|
938
|
+
text-overflow: ellipsis;
|
|
939
|
+
}
|
|
940
|
+
.e-pivotview .e-pivotcell-container .e-sortfilterdiv.e-value-sort-icon {
|
|
941
|
+
-ms-flex-align: center;
|
|
942
|
+
align-items: center;
|
|
943
|
+
display: -ms-flexbox;
|
|
944
|
+
display: flex;
|
|
945
|
+
}
|
|
946
|
+
.e-pivotview .e-gridclip .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
947
|
+
.e-pivotview .e-gridclip .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
948
|
+
text-overflow: clip;
|
|
949
|
+
}
|
|
928
950
|
.e-pivotview .e-nextspan {
|
|
929
951
|
display: inline-block;
|
|
930
952
|
width: 18px;
|
|
@@ -1057,7 +1079,6 @@
|
|
|
1057
1079
|
display: block;
|
|
1058
1080
|
}
|
|
1059
1081
|
.e-pivotview div.e-cellvalue {
|
|
1060
|
-
margin-top: 5px;
|
|
1061
1082
|
margin-top: 2px;
|
|
1062
1083
|
}
|
|
1063
1084
|
.e-pivotview .e-sortfilterdiv .e-value-sort-icon {
|
|
@@ -1069,11 +1090,10 @@
|
|
|
1069
1090
|
.e-pivotview .e-sortfilterdiv:not(.e-value-sort-icon) {
|
|
1070
1091
|
display: none;
|
|
1071
1092
|
}
|
|
1072
|
-
.e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv, .e-pivotview .e-headercelldiv .e-sortfilterdiv {
|
|
1073
|
-
margin: -18px 0 !important;
|
|
1074
|
-
}
|
|
1075
|
-
.e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv.e-value-sort-align, .e-pivotview .e-headercelldiv .e-sortfilterdiv.e-value-sort-align {
|
|
1093
|
+
.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
1094
|
margin: 0 !important;
|
|
1095
|
+
margin-left: auto !important;
|
|
1096
|
+
margin-top: 2px !important;
|
|
1077
1097
|
}
|
|
1078
1098
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
1079
1099
|
margin: -4px 0 !important;
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -578,6 +578,9 @@
|
|
|
578
578
|
margin-bottom: 20px;
|
|
579
579
|
margin-bottom: 12px;
|
|
580
580
|
}
|
|
581
|
+
.e-pivotview.sf-pivotview .e-pivot-toolbar {
|
|
582
|
+
box-sizing: border-box;
|
|
583
|
+
}
|
|
581
584
|
.e-pivotview .e-pivot-toolbar {
|
|
582
585
|
background: #232e3e;
|
|
583
586
|
border-bottom: 0;
|
|
@@ -924,6 +927,25 @@
|
|
|
924
927
|
/* stylelint-enable */
|
|
925
928
|
/* stylelint-enable */
|
|
926
929
|
}
|
|
930
|
+
.e-pivotview .e-pivotcell-container {
|
|
931
|
+
display: -ms-flexbox;
|
|
932
|
+
display: flex;
|
|
933
|
+
}
|
|
934
|
+
.e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
935
|
+
.e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
936
|
+
overflow: hidden;
|
|
937
|
+
text-overflow: ellipsis;
|
|
938
|
+
}
|
|
939
|
+
.e-pivotview .e-pivotcell-container .e-sortfilterdiv.e-value-sort-icon {
|
|
940
|
+
-ms-flex-align: center;
|
|
941
|
+
align-items: center;
|
|
942
|
+
display: -ms-flexbox;
|
|
943
|
+
display: flex;
|
|
944
|
+
}
|
|
945
|
+
.e-pivotview .e-gridclip .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
946
|
+
.e-pivotview .e-gridclip .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
947
|
+
text-overflow: clip;
|
|
948
|
+
}
|
|
927
949
|
.e-pivotview .e-nextspan {
|
|
928
950
|
display: inline-block;
|
|
929
951
|
width: 18px;
|
|
@@ -1056,7 +1078,6 @@
|
|
|
1056
1078
|
display: block;
|
|
1057
1079
|
}
|
|
1058
1080
|
.e-pivotview div.e-cellvalue {
|
|
1059
|
-
margin-top: 5px;
|
|
1060
1081
|
margin-top: 2px;
|
|
1061
1082
|
}
|
|
1062
1083
|
.e-pivotview .e-sortfilterdiv .e-value-sort-icon {
|
|
@@ -1068,11 +1089,10 @@
|
|
|
1068
1089
|
.e-pivotview .e-sortfilterdiv:not(.e-value-sort-icon) {
|
|
1069
1090
|
display: none;
|
|
1070
1091
|
}
|
|
1071
|
-
.e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv, .e-pivotview .e-headercelldiv .e-sortfilterdiv {
|
|
1072
|
-
margin: -18px 0 !important;
|
|
1073
|
-
}
|
|
1074
|
-
.e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv.e-value-sort-align, .e-pivotview .e-headercelldiv .e-sortfilterdiv.e-value-sort-align {
|
|
1092
|
+
.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 {
|
|
1075
1093
|
margin: 0 !important;
|
|
1094
|
+
margin-left: auto !important;
|
|
1095
|
+
margin-top: 2px !important;
|
|
1076
1096
|
}
|
|
1077
1097
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
1078
1098
|
margin: -4px 0 !important;
|
package/styles/tailwind.css
CHANGED
|
@@ -580,6 +580,9 @@
|
|
|
580
580
|
margin-bottom: 20px;
|
|
581
581
|
margin-bottom: 12px;
|
|
582
582
|
}
|
|
583
|
+
.e-pivotview.sf-pivotview .e-pivot-toolbar {
|
|
584
|
+
box-sizing: border-box;
|
|
585
|
+
}
|
|
583
586
|
.e-pivotview .e-pivot-toolbar {
|
|
584
587
|
background: #f9fafb;
|
|
585
588
|
border-bottom: 0;
|
|
@@ -926,6 +929,25 @@
|
|
|
926
929
|
/* stylelint-enable */
|
|
927
930
|
/* stylelint-enable */
|
|
928
931
|
}
|
|
932
|
+
.e-pivotview .e-pivotcell-container {
|
|
933
|
+
display: -ms-flexbox;
|
|
934
|
+
display: flex;
|
|
935
|
+
}
|
|
936
|
+
.e-pivotview .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
937
|
+
.e-pivotview .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
938
|
+
overflow: hidden;
|
|
939
|
+
text-overflow: ellipsis;
|
|
940
|
+
}
|
|
941
|
+
.e-pivotview .e-pivotcell-container .e-sortfilterdiv.e-value-sort-icon {
|
|
942
|
+
-ms-flex-align: center;
|
|
943
|
+
align-items: center;
|
|
944
|
+
display: -ms-flexbox;
|
|
945
|
+
display: flex;
|
|
946
|
+
}
|
|
947
|
+
.e-pivotview .e-gridclip .e-pivotcell-container .e-stackedheadertext.e-cellvalue,
|
|
948
|
+
.e-pivotview .e-gridclip .e-pivotcell-container .e-headertext.e-cellvalue {
|
|
949
|
+
text-overflow: clip;
|
|
950
|
+
}
|
|
929
951
|
.e-pivotview .e-nextspan {
|
|
930
952
|
display: inline-block;
|
|
931
953
|
width: 18px;
|
|
@@ -1058,7 +1080,6 @@
|
|
|
1058
1080
|
display: block;
|
|
1059
1081
|
}
|
|
1060
1082
|
.e-pivotview div.e-cellvalue {
|
|
1061
|
-
margin-top: 5px;
|
|
1062
1083
|
margin-top: 2px;
|
|
1063
1084
|
}
|
|
1064
1085
|
.e-pivotview .e-sortfilterdiv .e-value-sort-icon {
|
|
@@ -1070,11 +1091,10 @@
|
|
|
1070
1091
|
.e-pivotview .e-sortfilterdiv:not(.e-value-sort-icon) {
|
|
1071
1092
|
display: none;
|
|
1072
1093
|
}
|
|
1073
|
-
.e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv, .e-pivotview .e-headercelldiv .e-sortfilterdiv {
|
|
1074
|
-
margin: -18px 0 !important;
|
|
1075
|
-
}
|
|
1076
|
-
.e-pivotview .e-stackedheadercelldiv .e-sortfilterdiv.e-value-sort-align, .e-pivotview .e-headercelldiv .e-sortfilterdiv.e-value-sort-align {
|
|
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 {
|
|
1077
1095
|
margin: 0 !important;
|
|
1096
|
+
margin-left: auto !important;
|
|
1097
|
+
margin-top: 2px !important;
|
|
1078
1098
|
}
|
|
1079
1099
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
1080
1100
|
margin: -4px 0 !important;
|