@syncfusion/ej2-angular-pivotview 20.2.45 → 20.3.47

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 (116) hide show
  1. package/esm2020/src/index.mjs +2 -2
  2. package/esm2020/src/pivotview/pivotview-all.module.mjs +7 -4
  3. package/esm2020/src/pivotview/pivotview.component.mjs +10 -3
  4. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +16 -6
  5. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -1
  6. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +16 -6
  7. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -1
  8. package/package.json +8 -8
  9. package/schematics/collection.json +20 -0
  10. package/schematics/generators/pivotview-default/index.d.ts +3 -0
  11. package/schematics/generators/pivotview-default/index.js +8 -0
  12. package/schematics/generators/pivotview-default/sample-details.d.ts +5 -0
  13. package/schematics/generators/pivotview-default/sample-details.js +7 -0
  14. package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +4 -0
  15. package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +4 -0
  16. package/schematics/generators/pivotview-default/schema.d.ts +3 -0
  17. package/schematics/generators/pivotview-default/schema.js +2 -0
  18. package/schematics/generators/pivotview-default/schema.json +125 -0
  19. package/schematics/generators/pivotview-fieldlist/index.d.ts +3 -0
  20. package/schematics/generators/pivotview-fieldlist/index.js +8 -0
  21. package/schematics/generators/pivotview-fieldlist/sample-details.d.ts +5 -0
  22. package/schematics/generators/pivotview-fieldlist/sample-details.js +7 -0
  23. package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +4 -0
  24. package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +4 -0
  25. package/schematics/generators/pivotview-fieldlist/schema.d.ts +3 -0
  26. package/schematics/generators/pivotview-fieldlist/schema.js +2 -0
  27. package/schematics/generators/pivotview-fieldlist/schema.json +125 -0
  28. package/schematics/ng-add/index.d.ts +3 -0
  29. package/schematics/ng-add/index.js +9 -0
  30. package/schematics/ng-add/schema.d.ts +13 -0
  31. package/schematics/ng-add/schema.js +2 -0
  32. package/schematics/ng-add/schema.json +34 -0
  33. package/schematics/tsconfig.json +25 -0
  34. package/schematics/utils/lib-details.d.ts +4 -0
  35. package/schematics/utils/lib-details.js +6 -0
  36. package/schematics/utils/lib-details.ts +2 -2
  37. package/src/index.d.ts +1 -1
  38. package/src/pivotview/pivotview-all.module.d.ts +1 -0
  39. package/src/pivotview/pivotview.component.d.ts +1 -1
  40. package/styles/bootstrap-dark.css +705 -38
  41. package/styles/bootstrap.css +704 -37
  42. package/styles/bootstrap4.css +705 -36
  43. package/styles/bootstrap5-dark.css +730 -40
  44. package/styles/bootstrap5.css +730 -40
  45. package/styles/fabric-dark.css +705 -38
  46. package/styles/fabric.css +704 -37
  47. package/styles/fluent-dark.css +729 -39
  48. package/styles/fluent.css +729 -39
  49. package/styles/highcontrast-light.css +703 -36
  50. package/styles/highcontrast.css +703 -36
  51. package/styles/material-dark.css +708 -37
  52. package/styles/material.css +706 -35
  53. package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +9 -1
  54. package/styles/pivotfieldlist/_bootstrap-definition.scss +9 -1
  55. package/styles/pivotfieldlist/_bootstrap4-definition.scss +9 -1
  56. package/styles/pivotfieldlist/_bootstrap5-definition.scss +9 -1
  57. package/styles/pivotfieldlist/_fabric-dark-definition.scss +8 -0
  58. package/styles/pivotfieldlist/_fabric-definition.scss +8 -0
  59. package/styles/pivotfieldlist/_fluent-definition.scss +8 -0
  60. package/styles/pivotfieldlist/_fusionnew-definition.scss +8 -0
  61. package/styles/pivotfieldlist/_highcontrast-definition.scss +8 -0
  62. package/styles/pivotfieldlist/_highcontrast-light-definition.scss +8 -0
  63. package/styles/pivotfieldlist/_layout.scss +56 -5
  64. package/styles/pivotfieldlist/_material-dark-definition.scss +8 -0
  65. package/styles/pivotfieldlist/_material-definition.scss +8 -0
  66. package/styles/pivotfieldlist/_material3-definition.scss +8 -0
  67. package/styles/pivotfieldlist/_tailwind-definition.scss +9 -1
  68. package/styles/pivotfieldlist/_theme.scss +94 -13
  69. package/styles/pivotfieldlist/bootstrap-dark.css +54 -15
  70. package/styles/pivotfieldlist/bootstrap.css +53 -14
  71. package/styles/pivotfieldlist/bootstrap4.css +54 -15
  72. package/styles/pivotfieldlist/bootstrap5-dark.css +77 -15
  73. package/styles/pivotfieldlist/bootstrap5.css +77 -15
  74. package/styles/pivotfieldlist/fabric-dark.css +53 -14
  75. package/styles/pivotfieldlist/fabric.css +52 -13
  76. package/styles/pivotfieldlist/fluent-dark.css +77 -14
  77. package/styles/pivotfieldlist/fluent.css +77 -14
  78. package/styles/pivotfieldlist/highcontrast-light.css +52 -13
  79. package/styles/pivotfieldlist/highcontrast.css +52 -13
  80. package/styles/pivotfieldlist/material-dark.css +53 -14
  81. package/styles/pivotfieldlist/material.css +52 -13
  82. package/styles/pivotfieldlist/tailwind-dark.css +61 -14
  83. package/styles/pivotfieldlist/tailwind.css +61 -14
  84. package/styles/pivotview/_bootstrap-dark-definition.scss +34 -5
  85. package/styles/pivotview/_bootstrap-definition.scss +34 -5
  86. package/styles/pivotview/_bootstrap4-definition.scss +34 -5
  87. package/styles/pivotview/_bootstrap5-definition.scss +35 -6
  88. package/styles/pivotview/_fabric-dark-definition.scss +35 -6
  89. package/styles/pivotview/_fabric-definition.scss +35 -6
  90. package/styles/pivotview/_fluent-definition.scss +34 -5
  91. package/styles/pivotview/_fusionnew-definition.scss +34 -5
  92. package/styles/pivotview/_highcontrast-definition.scss +34 -5
  93. package/styles/pivotview/_highcontrast-light-definition.scss +34 -5
  94. package/styles/pivotview/_layout.scss +1 -2
  95. package/styles/pivotview/_material-dark-definition.scss +35 -6
  96. package/styles/pivotview/_material-definition.scss +34 -5
  97. package/styles/pivotview/_material3-definition.scss +34 -5
  98. package/styles/pivotview/_tailwind-definition.scss +36 -7
  99. package/styles/pivotview/_theme.scss +465 -46
  100. package/styles/pivotview/bootstrap-dark.css +651 -23
  101. package/styles/pivotview/bootstrap.css +651 -23
  102. package/styles/pivotview/bootstrap4.css +651 -21
  103. package/styles/pivotview/bootstrap5-dark.css +653 -25
  104. package/styles/pivotview/bootstrap5.css +653 -25
  105. package/styles/pivotview/fabric-dark.css +652 -24
  106. package/styles/pivotview/fabric.css +652 -24
  107. package/styles/pivotview/fluent-dark.css +652 -25
  108. package/styles/pivotview/fluent.css +652 -25
  109. package/styles/pivotview/highcontrast-light.css +651 -23
  110. package/styles/pivotview/highcontrast.css +651 -23
  111. package/styles/pivotview/material-dark.css +655 -23
  112. package/styles/pivotview/material.css +654 -22
  113. package/styles/pivotview/tailwind-dark.css +656 -26
  114. package/styles/pivotview/tailwind.css +656 -26
  115. package/styles/tailwind-dark.css +717 -40
  116. package/styles/tailwind.css +717 -40
@@ -168,48 +168,48 @@
168
168
  /* stylelint-disable */
169
169
 
170
170
  .e-sortfilterdiv {
171
- float: right;
172
- margin: $pivotgrid-vsort-mouse-margin !important;
173
- @if ($pivotgrid-skin == 'bootstrap4') {
174
- font-size: 10px !important;
175
- padding: 15px;
176
- }
177
- @if ($skin-name == 'bootstrap5') {
178
- font-size: 12px !important;
179
- padding: 15px;
180
- }
181
- @if ($skin-name == 'FluentUI') {
182
- font-size: 14px !important;
183
- }
184
-
185
- &.e-value-sort-icon {
186
- font-size: $pivotgrid-value-sort-icon-font-size !important;
187
- @if ($skin-name == 'tailwind') {
188
- padding-top: 14px !important;
171
+ .e-value-sort-icon {
172
+ float: right;
173
+ @if ($pivotgrid-skin == 'bootstrap4') {
174
+ font-size: 10px !important;
189
175
  }
190
176
  @if ($skin-name == 'bootstrap5') {
191
- padding-right: 5px !important;
177
+ font-size: 12px !important;
178
+ }
179
+ @if ($skin-name == 'FluentUI') {
180
+ font-size: 14px !important;
181
+ }
182
+
183
+ &.e-value-sort-icon {
184
+ font-size: $pivotgrid-value-sort-icon-font-size !important;
192
185
  }
193
186
  }
187
+
188
+ &:not(.e-value-sort-icon) {
189
+ display: none;
190
+ }
191
+ }
192
+
193
+ .e-stackedheadercelldiv .e-sortfilterdiv, .e-headercelldiv .e-sortfilterdiv {
194
+ margin: $pivotgrid-vsort-column-margin !important;
195
+ }
196
+
197
+ .e-stackedheadercelldiv .e-sortfilterdiv.e-value-sort-align, .e-headercelldiv .e-sortfilterdiv.e-value-sort-align {
198
+ margin: $pivotgrid-vsort-column-parent-margin !important;
194
199
  }
195
200
 
196
201
  .e-rowsheader .e-sortfilterdiv {
197
- margin: -10px 0 !important;
202
+ margin: $pivotgrid-vsort-row-margin !important;
198
203
  }
199
204
 
200
205
  .e-rowsheader .e-sortfilterdiv.e-value-sort-align {
201
- margin: $pivotgrid-vsort-row-margin !important;
206
+ margin: $pivotgrid-vsort-row-parent-margin !important;
202
207
  }
203
208
 
204
209
  .e-pivotchart > svg, .e-pivotchart-inner > svg {
205
210
  border: $pivotgrid-border-size $pivotgrid-border-type $pivotgrid-default-border-color;
206
211
  }
207
212
 
208
- .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
209
- .e-grid.e-wrap .e-columnheader .e-sortfilterdiv {
210
- margin: $pivotgrid-vsort-mouse-wrap-margin !important;
211
- }
212
-
213
213
  .e-grid .e-icons {
214
214
  color: $pivotgrid-button-icon-color !important;
215
215
  @if ($pivotgrid-skin == 'bootstrap4') {
@@ -309,12 +309,12 @@
309
309
  }
310
310
 
311
311
  .e-stackedheadercelldiv {
312
- display: inline;
312
+ display: block;
313
313
  }
314
314
 
315
315
  .e-stackedheadertext.e-cellvalue,
316
316
  .e-stackedheadercelldiv.e-cellvalue {
317
- display: inline;
317
+ display: inline-block;
318
318
  padding-left: 12px !important;
319
319
  margin-top: 5px;
320
320
 
@@ -771,26 +771,27 @@
771
771
  .e-pv-filtered,
772
772
  .e-remove,
773
773
  .e-edit {
774
- color: $pivotgrid-icon-hover-color !important;
774
+ color: $pivotgrid-icon-hover-color !important;
775
775
  }
776
776
  }
777
-
777
+
778
778
  &.e-btn-focused {
779
779
  background-color: $pivotgrid-focus-color;
780
780
  color: $pivotgrid-button-acitve-font-color;
781
- @if ($pivotgrid-skin == 'bootstrap4') {
781
+
782
+ @if ($pivotgrid-skin =='bootstrap4') {
782
783
  background-color: $pivotgrid-border-color;
783
784
  border-color: $pivotgrid-active-border-color;
784
785
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
785
786
  }
786
-
787
+
787
788
  .e-sort,
788
789
  .e-dropdown-icon,
789
790
  .e-pv-filter,
790
791
  .e-pv-filtered,
791
792
  .e-remove,
792
793
  .e-edit {
793
- color: $pivotgrid-icon-focus-color !important;
794
+ color: $pivotgrid-icon-focus-color !important;
794
795
  }
795
796
  }
796
797
 
@@ -926,7 +927,7 @@
926
927
  .e-expand,
927
928
  .e-collapse {
928
929
  cursor: pointer;
929
- display: inline;
930
+ display: inline-block;
930
931
  height: 18px;
931
932
  margin-top: 5px;
932
933
  text-align: center;
@@ -965,6 +966,330 @@
965
966
  font-size: $pivotgrid-expand-icon-fontsize;
966
967
  }
967
968
 
969
+ .e-pivot-pager {
970
+ padding: $pivotpager-padding;
971
+
972
+ &.e-pivot-pager-bottom {
973
+ border-top: 0;
974
+ }
975
+
976
+ &.e-pivot-pager-top {
977
+ border-bottom: 0;
978
+ }
979
+
980
+ .e-pivotview-vseparator {
981
+ height: auto;
982
+ border-left: $pivotpager-separator-border;
983
+ margin: $pivotpager-v-separator-margin;
984
+ }
985
+
986
+ .e-pivot-pager-maindiv {
987
+ display: flex;
988
+ flex-direction: row;
989
+
990
+ .e-pivot-pager-row-maindiv,
991
+ .e-pivot-pager-column-maindiv {
992
+ display: flex;
993
+ flex-direction: column;
994
+ width: 50%;
995
+
996
+ .e-icon-first,
997
+ .e-icon-prev,
998
+ .e-icon-next,
999
+ .e-icon-last {
1000
+ font-size: $pivotpager-page-icon-size;
1001
+ padding: $pivotpager-page-icon-padding;
1002
+
1003
+ /* stylelint-disable */
1004
+ @if ($pivotgrid-skin =='material-dark') or ($pivotgrid-skin =='material') {
1005
+ margin: 0 !important;
1006
+ }
1007
+ }
1008
+
1009
+ /* stylelint-enable */
1010
+
1011
+ .e-pivotview-text-div {
1012
+ display: flex;
1013
+ flex-direction: row;
1014
+ }
1015
+
1016
+ .e-pivotview-row-pagerString,
1017
+ .e-pivotview-column-pagerString {
1018
+ color: $pivotpager-axis-title-font-color;
1019
+ font-size: $pivotpager-title-font-size;
1020
+ overflow: hidden;
1021
+ text-align: initial;
1022
+ text-overflow: ellipsis;
1023
+ white-space: nowrap;
1024
+ width: 50%;
1025
+ }
1026
+
1027
+ .e-pivotview-row-size,
1028
+ .e-pivotview-column-size {
1029
+ color: $pivotpager-size-title-font-color;
1030
+ font-size: $pivotpager-title-font-size;
1031
+ overflow: hidden;
1032
+ text-align: end;
1033
+ text-overflow: ellipsis;
1034
+ white-space: nowrap;
1035
+ width: 50%;
1036
+ }
1037
+
1038
+ .e-pivotview-text-div-1 {
1039
+ flex: none;
1040
+
1041
+ .e-pagercontainer {
1042
+ margin-top: $pivotpager-page-container-marging-top;
1043
+ @if ($pivotgrid-skin == 'material-dark') or ($pivotgrid-skin == 'material') {
1044
+ margin: $pivotpager-page-container-marging-top 0 0 0;
1045
+ }
1046
+
1047
+ &.e-pivot-pager-info-container,
1048
+ &.e-pager-dropdown {
1049
+ border-style: none;
1050
+ vertical-align: top;
1051
+ }
1052
+ }
1053
+
1054
+ .e-pager-dropdown {
1055
+ float: right;
1056
+ }
1057
+ }
1058
+
1059
+ .e-pivot-row-of-string-maindiv,
1060
+ .e-pivot-column-of-string-maindiv {
1061
+ line-height: $pivotpager-single-title-line-height;
1062
+
1063
+ .e-pivotview-row-pagerNumber,
1064
+ .e-pivotview-column-pagerNumber {
1065
+ font-weight: $pivotpager-pager-number-font-weight;
1066
+ }
1067
+ }
1068
+
1069
+ .e-pivot-row-pager-settings,
1070
+ .e-pivot-column-pager-settings {
1071
+ flex: none;
1072
+
1073
+ .e-numeric {
1074
+ margin: $pivotpager-numeric-box-margin;
1075
+ vertical-align: top;
1076
+ }
1077
+ }
1078
+ }
1079
+
1080
+ &.e-pivot-pager-single-maindiv {
1081
+ .e-pivot-pager-row-maindiv,
1082
+ .e-pivot-pager-column-maindiv {
1083
+ flex-direction: row;
1084
+ width: 100%;
1085
+
1086
+ .e-pagercontainer {
1087
+ margin-top: 0;
1088
+
1089
+ &.e-pivot-pager-info-container,
1090
+ &.e-pager-dropdown {
1091
+ border-style: none;
1092
+ }
1093
+ }
1094
+
1095
+ .e-pivotview-row-pagerString,
1096
+ .e-pivotview-column-pagerString {
1097
+ flex: auto;
1098
+ font-size: $pivotpager-single-title-font-size;
1099
+ line-height: $pivotpager-single-title-line-height;
1100
+ text-align: center;
1101
+ }
1102
+
1103
+ .e-pivotview-text-div-1 {
1104
+ .e-pivotview-row-size,
1105
+ .e-pivotview-column-size {
1106
+ font-size: $pivotpager-single-title-font-size;
1107
+ line-height: $pivotpager-single-title-line-height;
1108
+ padding: 0 $pivotpager-single-size-title-padding 0 0;
1109
+ width: inherit;
1110
+ }
1111
+ }
1112
+ }
1113
+ }
1114
+ }
1115
+
1116
+ &.e-compact-view {
1117
+ .e-pivotview-vseparator {
1118
+ margin-top: $pivotpager-v-separator-margin-top;
1119
+ }
1120
+
1121
+ .e-pivot-pager-maindiv {
1122
+ .e-pivot-pager-row-maindiv,
1123
+ .e-pivot-pager-column-maindiv {
1124
+ align-items: center;
1125
+ flex-direction: row;
1126
+
1127
+ .e-pivotview-text-div,
1128
+ .e-pivotview-text-div-1 {
1129
+ display: flex;
1130
+ flex-direction: row;
1131
+ width: 50%;
1132
+
1133
+ .e-pagercontainer {
1134
+ margin-top: 0;
1135
+
1136
+ @if ($pivotgrid-skin =='material-dark') or ($pivotgrid-skin =='material') {
1137
+ margin-top: $pivotpager-touch-page-container-marging-top;
1138
+ }
1139
+ }
1140
+
1141
+ .e-pivotview-row-size,
1142
+ .e-pivotview-column-size {
1143
+ flex: auto;
1144
+ font-size: $pivotpager-single-title-font-size;
1145
+ line-height: $pivotpager-single-title-line-height;
1146
+ padding: 0 $pivotpager-single-size-title-padding 0 0;
1147
+ text-align: end;
1148
+ width: inherit;
1149
+ }
1150
+
1151
+ .e-pivotview-row-pagerString,
1152
+ .e-pivotview-column-pagerString {
1153
+ font-size: $pivotpager-single-title-font-size;
1154
+ line-height: $pivotpager-single-title-line-height;
1155
+ min-width: 50px;
1156
+ text-align: initial;
1157
+ width: inherit;
1158
+ }
1159
+ }
1160
+ }
1161
+
1162
+ &.e-pivot-pager-single-maindiv {
1163
+ .e-pivot-pager-row-maindiv,
1164
+ .e-pivot-pager-column-maindiv {
1165
+ width: 100%;
1166
+
1167
+ .e-pagercontainer {
1168
+ margin-top: 0;
1169
+ }
1170
+
1171
+ .e-pivotview-row-pagerString,
1172
+ .e-pivotview-column-pagerString {
1173
+ text-align: center;
1174
+ width: 100%;
1175
+ }
1176
+
1177
+ .e-pivotview-text-div-1 {
1178
+ width: auto;
1179
+ }
1180
+ }
1181
+ }
1182
+
1183
+ &:not(.e-pivot-pager-single-maindiv) {
1184
+ .e-pivot-pager-row-maindiv,
1185
+ .e-pivot-pager-column-maindiv {
1186
+ &.e-page-size-disable {
1187
+ .e-pivotview-text-div {
1188
+ width: auto;
1189
+ }
1190
+ }
1191
+ }
1192
+ }
1193
+ }
1194
+
1195
+ &.e-rtl {
1196
+ .e-pivot-pager-maindiv {
1197
+ .e-pivot-pager-row-maindiv,
1198
+ .e-pivot-pager-column-maindiv {
1199
+ .e-pivotview-text-div,
1200
+ .e-pivotview-text-div-1 {
1201
+ .e-pivot-row-pager-settings,
1202
+ .e-pivot-column-pager-settings {
1203
+ padding: 0 $pivotpager-single-size-title-padding 0 0;
1204
+ }
1205
+
1206
+ .e-pivotview-row-size,
1207
+ .e-pivotview-column-size {
1208
+ padding: 0 0 0 $pivotpager-single-size-title-padding;
1209
+ }
1210
+ }
1211
+ }
1212
+ }
1213
+ }
1214
+ }
1215
+
1216
+ &.e-device {
1217
+ .e-pivotview-hseparator {
1218
+ border-top: $pivotpager-separator-border;
1219
+ margin: $pivotpager-h-separator-margin;
1220
+ width: auto;
1221
+ }
1222
+
1223
+ .e-pivot-pager-maindiv {
1224
+ flex-direction: column;
1225
+
1226
+ .e-pagercontainer {
1227
+ display: inline-block;
1228
+ }
1229
+
1230
+ .e-pivot-pager-row-maindiv,
1231
+ .e-pivot-pager-column-maindiv {
1232
+ width: 100%;
1233
+ }
1234
+
1235
+ &:not(.e-pivot-pager-single-maindiv) {
1236
+ .e-pagercontainer {
1237
+ margin-top: $pivotpager-adaptive-page-container-marging-top;
1238
+ }
1239
+ }
1240
+ }
1241
+
1242
+ /* stylelint-disable */
1243
+ @media (max-width: 400px) {
1244
+ .e-pivotview-row-size,
1245
+ .e-pivotview-column-size,
1246
+ .e-pivotview-row-pagerString,
1247
+ .e-pivotview-column-pagerString {
1248
+ min-width: 10px !important;
1249
+ }
1250
+ }
1251
+ /* stylelint-enable */
1252
+ }
1253
+
1254
+ &.e-rtl {
1255
+ .e-pivot-pager-maindiv {
1256
+ .e-pivot-pager-row-maindiv,
1257
+ .e-pivot-pager-column-maindiv {
1258
+ .e-pivot-row-pager-settings,
1259
+ .e-pivot-column-pager-settings {
1260
+ .e-numeric {
1261
+ margin: $pivotpager-adaptive-numeric-box-margin;
1262
+ }
1263
+ }
1264
+
1265
+ .e-pager-dropdown {
1266
+ float: left;
1267
+ }
1268
+ }
1269
+
1270
+ &.e-pivot-pager-single-maindiv {
1271
+ .e-pivot-pager-row-maindiv,
1272
+ .e-pivot-pager-column-maindiv {
1273
+ .e-pivotview-text-div-1 {
1274
+ .e-pivotview-row-size,
1275
+ .e-pivotview-column-size {
1276
+ padding: 0 0 0 $pivotpager-single-size-title-padding;
1277
+ }
1278
+ }
1279
+ }
1280
+ }
1281
+ }
1282
+ }
1283
+
1284
+ @media (max-width: 769px) {
1285
+ .e-pivot-pager-maindiv {
1286
+ .e-pagercontainer {
1287
+ display: inline-block;
1288
+ }
1289
+ }
1290
+ }
1291
+ }
1292
+
968
1293
  &.e-rtl {
969
1294
 
970
1295
  .e-expand::before,
@@ -1091,6 +1416,10 @@
1091
1416
  .e-sortfilterdiv {
1092
1417
  float: left;
1093
1418
  }
1419
+
1420
+ th.e-headercell:first-child:not(.e-firstcell):not(.e-headercell.e-frozen-left-border) {
1421
+ border-left-width: 1px !important;
1422
+ }
1094
1423
  /* stylelint-enable */
1095
1424
  }
1096
1425
 
@@ -1202,6 +1531,7 @@
1202
1531
  .e-component-disable {
1203
1532
  display: none !important;
1204
1533
  }
1534
+
1205
1535
  /* stylelint-enable */
1206
1536
  }
1207
1537
 
@@ -1313,8 +1643,7 @@
1313
1643
  font-size: $pivotview-bigger-grid-header-font-size !important;
1314
1644
  }
1315
1645
  }
1316
- .e-bigger .e-stackedheadercelldiv
1317
- {
1646
+ .e-bigger .e-stackedheadercelldiv {
1318
1647
  padding-left: 16px !important;
1319
1648
  }
1320
1649
 
@@ -1468,7 +1797,6 @@
1468
1797
  }
1469
1798
 
1470
1799
  .e-sortfilterdiv {
1471
- margin: $pivotgrid-vsort-touch-margin !important;
1472
1800
  @if ($pivotgrid-skin == 'bootstrap4') or ($skin-name == 'bootstrap5') {
1473
1801
  font-size: 12px !important;
1474
1802
  }
@@ -1476,15 +1804,6 @@
1476
1804
  @if ($pivotgrid-skin == 'tailwind') {
1477
1805
  font-size: 16px !important;
1478
1806
  }
1479
-
1480
- @if ($pivotgrid-skin == 'bootstrap5') or ($skin-name == 'FluentUI') {
1481
- padding-top: 28px;
1482
- }
1483
- }
1484
-
1485
- .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
1486
- .e-grid.e-wrap .e-columnheader .e-sortfilterdiv {
1487
- margin: $pivotgrid-vsort-touch-wrap-margin !important;
1488
1807
  }
1489
1808
 
1490
1809
  /* stylelint-enable */
@@ -1573,6 +1892,106 @@
1573
1892
  font-size: $pivotgrid-collapse-bigger-icon-fontsize;
1574
1893
  }
1575
1894
  }
1895
+
1896
+ .e-pivot-pager,
1897
+ #{&}.e-pivot-pager.e-bigger {
1898
+ padding: $pivotpage-touch-padding;
1899
+
1900
+ .e-pivotview-vseparator {
1901
+ margin: $pivotpager-touch-v-separator-margin;
1902
+ }
1903
+
1904
+ .e-pivot-pager-maindiv {
1905
+ .e-pivot-pager-row-maindiv,
1906
+ .e-pivot-pager-column-maindiv {
1907
+
1908
+ .e-icon-first,
1909
+ .e-icon-prev,
1910
+ .e-icon-next,
1911
+ .e-icon-last {
1912
+ font-size: $pivotpager-touch-page-icon-size;
1913
+ padding: $pivotpager-touch-page-icon-padding;
1914
+ }
1915
+
1916
+ .e-pivot-row-of-string-maindiv,
1917
+ .e-pivot-column-of-string-maindiv {
1918
+ line-height: $pivotpager-touch-single-title-line-height;
1919
+ }
1920
+
1921
+ .e-pivotview-row-pagerString,
1922
+ .e-pivotview-column-pagerString,
1923
+ .e-pivotview-row-size,
1924
+ .e-pivotview-column-size {
1925
+ font-size: $pivotpager-string-font-touch-size;
1926
+ }
1927
+
1928
+ .e-pivotview-text-div-1 {
1929
+ .e-pagercontainer {
1930
+ margin-top: $pivotpager-touch-page-container-marging-top;
1931
+ }
1932
+ }
1933
+
1934
+ .e-pivot-row-pager-settings,
1935
+ .e-pivot-column-pager-settings {
1936
+ .e-numeric {
1937
+ margin: $pivotpager-touch-numeric-boc-margin;
1938
+ }
1939
+ }
1940
+ }
1941
+
1942
+ &.e-pivot-pager-single-maindiv {
1943
+ .e-pivot-pager-row-maindiv,
1944
+ .e-pivot-pager-column-maindiv {
1945
+ .e-pagercontainer {
1946
+ margin-top: 0;
1947
+ }
1948
+
1949
+ .e-pivotview-row-pagerString,
1950
+ .e-pivotview-column-pagerString,
1951
+ .e-pivotview-row-size,
1952
+ .e-pivotview-column-size {
1953
+ font-size: $pivotpager-touch-single-title-font-size;
1954
+ }
1955
+ }
1956
+ }
1957
+ }
1958
+
1959
+ &.e-compact-view {
1960
+ .e-pivot-pager-maindiv {
1961
+ .e-pivot-pager-row-maindiv,
1962
+ .e-pivot-pager-column-maindiv {
1963
+ .e-pagercontainer {
1964
+ margin-top: 0;
1965
+
1966
+ @if ($pivotgrid-skin =='material-dark') or ($pivotgrid-skin =='material') {
1967
+ margin-top: $pivotpager-touch-page-container-marging-top;
1968
+ }
1969
+ }
1970
+
1971
+ .e-pivotview-row-pagerString,
1972
+ .e-pivotview-column-pagerString,
1973
+ .e-pivotview-row-size,
1974
+ .e-pivotview-column-size {
1975
+ font-size: $pivotpager-touch-single-title-font-size;
1976
+ }
1977
+ }
1978
+ }
1979
+ }
1980
+
1981
+ &.e-rtl {
1982
+ .e-pivot-pager-maindiv {
1983
+ .e-pivot-pager-row-maindiv,
1984
+ .e-pivot-pager-column-maindiv {
1985
+ .e-pivot-row-pager-settings,
1986
+ .e-pivot-column-pager-settings {
1987
+ .e-numeric {
1988
+ margin: $pivotpager-touch-numeric-boc-margin;
1989
+ }
1990
+ }
1991
+ }
1992
+ }
1993
+ }
1994
+ }
1576
1995
  }
1577
1996
 
1578
1997
  .e-content-placeholder.e-pivotview.e-placeholder-pivotview {