@syncfusion/ej2-pivotview 19.3.55 → 19.4.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.
Files changed (139) hide show
  1. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +76 -0
  2. package/.github/PULL_REQUEST_TEMPLATE/Feature.md +56 -0
  3. package/CHANGELOG.md +34 -28
  4. package/README.md +1 -1
  5. package/dist/ej2-pivotview.umd.min.js +2 -2
  6. package/dist/ej2-pivotview.umd.min.js.map +1 -1
  7. package/dist/es6/ej2-pivotview.es2015.js +2068 -1096
  8. package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
  9. package/dist/es6/ej2-pivotview.es5.js +2084 -1106
  10. package/dist/es6/ej2-pivotview.es5.js.map +1 -1
  11. package/dist/global/ej2-pivotview.min.js +2 -2
  12. package/dist/global/ej2-pivotview.min.js.map +1 -1
  13. package/dist/global/index.d.ts +1 -1
  14. package/package.json +22 -22
  15. package/src/base/engine.d.ts +17 -1
  16. package/src/base/engine.js +82 -29
  17. package/src/base/export-util.d.ts +17 -0
  18. package/src/base/export-util.js +245 -0
  19. package/src/base/olap/engine.d.ts +7 -0
  20. package/src/base/olap/engine.js +138 -35
  21. package/src/base/util.d.ts +0 -9
  22. package/src/base/util.js +2 -215
  23. package/src/common/actions/field-list.js +1 -1
  24. package/src/common/actions/pivot-button.d.ts +5 -8
  25. package/src/common/actions/pivot-button.js +188 -171
  26. package/src/common/base/constant.d.ts +186 -0
  27. package/src/common/base/constant.js +186 -0
  28. package/src/common/base/css-constant.d.ts +2 -0
  29. package/src/common/base/css-constant.js +2 -0
  30. package/src/common/base/enum.d.ts +11 -0
  31. package/src/common/base/interface.d.ts +272 -2
  32. package/src/common/calculatedfield/calculated-field.js +108 -93
  33. package/src/common/conditionalformatting/conditional-formatting.js +8 -2
  34. package/src/common/grouping-bar/grouping-bar.js +1 -1
  35. package/src/common/popups/aggregate-menu.js +57 -35
  36. package/src/common/popups/drillthrough-dialog.js +187 -139
  37. package/src/common/popups/filter-dialog.d.ts +1 -0
  38. package/src/common/popups/filter-dialog.js +22 -1
  39. package/src/common/popups/formatting-dialog.js +4 -0
  40. package/src/common/popups/grouping.js +2 -1
  41. package/src/common/popups/toolbar.js +305 -203
  42. package/src/pivotchart/base/pivotchart.js +36 -15
  43. package/src/pivotfieldlist/base/field-list-model.d.ts +49 -1
  44. package/src/pivotfieldlist/base/field-list.d.ts +55 -1
  45. package/src/pivotfieldlist/base/field-list.js +68 -1
  46. package/src/pivotfieldlist/renderer/dialog-renderer.js +38 -15
  47. package/src/pivotfieldlist/renderer/tree-renderer.js +35 -22
  48. package/src/pivotview/actions/drill-through.js +1 -1
  49. package/src/pivotview/actions/excel-export.js +9 -7
  50. package/src/pivotview/actions/pdf-export.js +3 -3
  51. package/src/pivotview/actions/virtualscroll.d.ts +1 -0
  52. package/src/pivotview/actions/virtualscroll.js +6 -2
  53. package/src/pivotview/base/pivotview-model.d.ts +46 -1
  54. package/src/pivotview/base/pivotview.d.ts +56 -2
  55. package/src/pivotview/base/pivotview.js +311 -107
  56. package/src/pivotview/model/chartsettings-model.d.ts +2 -2
  57. package/src/pivotview/model/chartsettings.d.ts +2 -2
  58. package/src/pivotview/model/chartsettings.js +2 -2
  59. package/src/pivotview/model/datasourcesettings-model.d.ts +8 -1
  60. package/src/pivotview/model/datasourcesettings.d.ts +7 -0
  61. package/src/pivotview/model/datasourcesettings.js +3 -0
  62. package/src/pivotview/renderer/render.d.ts +2 -1
  63. package/src/pivotview/renderer/render.js +39 -6
  64. package/styles/bootstrap-dark.css +115 -104
  65. package/styles/bootstrap.css +115 -104
  66. package/styles/bootstrap4.css +114 -81
  67. package/styles/bootstrap5-dark.css +220 -168
  68. package/styles/bootstrap5.css +215 -161
  69. package/styles/fabric-dark.css +117 -103
  70. package/styles/fabric.css +115 -102
  71. package/styles/highcontrast-light.css +116 -102
  72. package/styles/highcontrast.css +118 -104
  73. package/styles/material-dark.css +108 -97
  74. package/styles/material.css +108 -97
  75. package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +1 -4
  76. package/styles/pivotfieldlist/_bootstrap-definition.scss +1 -4
  77. package/styles/pivotfieldlist/_bootstrap4-definition.scss +1 -4
  78. package/styles/pivotfieldlist/_bootstrap5-definition.scss +8 -11
  79. package/styles/pivotfieldlist/_fabric-dark-definition.scss +1 -4
  80. package/styles/pivotfieldlist/_fabric-definition.scss +1 -4
  81. package/styles/pivotfieldlist/_fluent-definition.scss +177 -0
  82. package/styles/pivotfieldlist/_highcontrast-definition.scss +1 -4
  83. package/styles/pivotfieldlist/_highcontrast-light-definition.scss +1 -4
  84. package/styles/pivotfieldlist/_layout.scss +199 -109
  85. package/styles/pivotfieldlist/_material-dark-definition.scss +1 -4
  86. package/styles/pivotfieldlist/_material-definition.scss +1 -4
  87. package/styles/pivotfieldlist/_tailwind-definition.scss +6 -9
  88. package/styles/pivotfieldlist/_theme.scss +185 -35
  89. package/styles/pivotfieldlist/bootstrap-dark.css +49 -58
  90. package/styles/pivotfieldlist/bootstrap.css +49 -58
  91. package/styles/pivotfieldlist/bootstrap4.css +44 -39
  92. package/styles/pivotfieldlist/bootstrap5-dark.css +115 -89
  93. package/styles/pivotfieldlist/bootstrap5.css +115 -89
  94. package/styles/pivotfieldlist/fabric-dark.css +49 -58
  95. package/styles/pivotfieldlist/fabric.css +49 -58
  96. package/styles/pivotfieldlist/highcontrast-light.css +49 -58
  97. package/styles/pivotfieldlist/highcontrast.css +49 -58
  98. package/styles/pivotfieldlist/icons/_bootstrap5.scss +2 -2
  99. package/styles/pivotfieldlist/icons/_fluent.scss +352 -0
  100. package/styles/pivotfieldlist/icons/_tailwind.scss +2 -2
  101. package/styles/pivotfieldlist/material-dark.css +44 -53
  102. package/styles/pivotfieldlist/material.css +44 -53
  103. package/styles/pivotfieldlist/tailwind-dark.css +138 -81
  104. package/styles/pivotfieldlist/tailwind.css +140 -83
  105. package/styles/pivotview/_bootstrap-dark-definition.scss +9 -6
  106. package/styles/pivotview/_bootstrap-definition.scss +9 -6
  107. package/styles/pivotview/_bootstrap4-definition.scss +10 -7
  108. package/styles/pivotview/_bootstrap5-definition.scss +12 -9
  109. package/styles/pivotview/_fabric-dark-definition.scss +8 -5
  110. package/styles/pivotview/_fabric-definition.scss +7 -4
  111. package/styles/pivotview/_fluent-definition.scss +126 -0
  112. package/styles/pivotview/_highcontrast-definition.scss +8 -5
  113. package/styles/pivotview/_highcontrast-light-definition.scss +7 -4
  114. package/styles/pivotview/_layout.scss +119 -64
  115. package/styles/pivotview/_material-dark-definition.scss +7 -4
  116. package/styles/pivotview/_material-definition.scss +8 -4
  117. package/styles/pivotview/_tailwind-definition.scss +8 -5
  118. package/styles/pivotview/_theme.scss +124 -70
  119. package/styles/pivotview/bootstrap-dark.css +66 -46
  120. package/styles/pivotview/bootstrap.css +66 -46
  121. package/styles/pivotview/bootstrap4.css +70 -42
  122. package/styles/pivotview/bootstrap5-dark.css +99 -73
  123. package/styles/pivotview/bootstrap5-dark.scss +0 -1
  124. package/styles/pivotview/bootstrap5.css +100 -72
  125. package/styles/pivotview/fabric-dark.css +68 -45
  126. package/styles/pivotview/fabric.css +66 -44
  127. package/styles/pivotview/highcontrast-light.css +67 -44
  128. package/styles/pivotview/highcontrast.css +69 -46
  129. package/styles/pivotview/icons/_bootstrap4.scss +1 -1
  130. package/styles/pivotview/icons/_bootstrap5.scss +1 -1
  131. package/styles/pivotview/icons/_fluent.scss +183 -0
  132. package/styles/pivotview/icons/_tailwind.scss +1 -1
  133. package/styles/pivotview/material-dark.css +64 -44
  134. package/styles/pivotview/material.css +64 -44
  135. package/styles/pivotview/tailwind-dark.css +106 -58
  136. package/styles/pivotview/tailwind-dark.scss +0 -1
  137. package/styles/pivotview/tailwind.css +107 -57
  138. package/styles/tailwind-dark.css +250 -145
  139. package/styles/tailwind.css +247 -140
@@ -0,0 +1,352 @@
1
+ @include export-module('field-list-icons') {
2
+ /*! field-list component icons */
3
+ .e-pivotfieldlist {
4
+ .e-select-table::before {
5
+ content: '\e7f5';
6
+ }
7
+ }
8
+
9
+ .e-pivot-formatting-dialog {
10
+ .e-format-delete-icon::before {
11
+ content: '\e74f';
12
+ }
13
+
14
+ .e-add-icon::before {
15
+ content: '\e7ba';
16
+ }
17
+
18
+ .e-colorpicker-wrapper .e-format-back-color+.e-split-btn-wrapper .e-split-btn .e-selected-color::before,
19
+ .e-colorpicker-container .e-format-back-color+.e-split-btn-wrapper .e-split-btn .e-selected-color::before {
20
+ content: '\e781';
21
+ }
22
+
23
+ .e-colorpicker-wrapper .e-format-font-color+.e-split-btn-wrapper .e-split-btn .e-selected-color::before,
24
+ .e-colorpicker-container .e-format-font-color+.e-split-btn-wrapper .e-split-btn .e-selected-color::before {
25
+ content: '\e826';
26
+ }
27
+ }
28
+
29
+ .e-level-options {
30
+ .e-selected-level-icon::before {
31
+ content: '\e7b9';
32
+ }
33
+ }
34
+
35
+ .e-pivot-calc-dialog-div {
36
+ .e-drag::before {
37
+ content: '\e7fa';
38
+ }
39
+
40
+ .e-pivot-all-field-title-wrapper .e-info.e-icons::before,
41
+ .e-pivot-all-field-title-container .e-info.e-icons::before {
42
+ content: '\e70a';
43
+ }
44
+
45
+ .e-list-item .e-text-content .e-edited.e-icons::before {
46
+ content: '\e761';
47
+ }
48
+
49
+ .e-list-item .e-text-content .e-edit.e-icons::before {
50
+ content: '\e822';
51
+ }
52
+
53
+ .e-list-item .e-text-content .e-remove-report.e-icons::before {
54
+ content: '\e75b';
55
+ }
56
+
57
+ .e-remove-report.e-icons::before {
58
+ content: '\e75b';
59
+ }
60
+
61
+ .e-list-item .e-text-content .e-format.e-icons::before {
62
+ content: '\e7c2';
63
+ }
64
+
65
+ // sass-lint:disable-all
66
+ .e-measureGroupCDB-icon::before {
67
+ content: '\e7db' !important;
68
+ }
69
+
70
+ .e-measure-icon::before {
71
+ content: '\e7db' !important;
72
+ }
73
+
74
+ .e-folderCDB-icon::before {
75
+ content: '\e7b1' !important;
76
+ }
77
+
78
+ .e-folderCDB-open-icon::before {
79
+ content: '\e758' !important;
80
+ }
81
+
82
+ .e-dimensionCDB-icon::before {
83
+ content: '\e858' !important;
84
+ }
85
+
86
+ .e-kpiCDB-icon::before {
87
+ content: '\e857' !important;
88
+ }
89
+
90
+ .e-kpiGoal-icon::before {
91
+ content: '\e857' !important;
92
+ }
93
+
94
+ .e-kpiStatus-icon::before {
95
+ content: '\e857' !important;
96
+ }
97
+
98
+ .e-kpiTrend-icon::before {
99
+ content: '\e857' !important;
100
+ }
101
+
102
+ .e-kpiValue-icon::before {
103
+ content: '\e857' !important;
104
+ }
105
+
106
+ .e-namedSetCDB-icon::before {
107
+ content: '\e85f' !important;
108
+ }
109
+
110
+ .e-hierarchyCDB-icon::before {
111
+ content: '\e85a' !important;
112
+ }
113
+
114
+ .e-attributeCDB-icon::before {
115
+ content: '\e859' !important;
116
+ }
117
+
118
+ .e-hierarchy-level-0-icon::before {
119
+ content: '\e89b' !important;
120
+ }
121
+
122
+ .e-hierarchy-level-1-icon::before {
123
+ content: '\e89b' !important;
124
+ }
125
+
126
+ .e-hierarchy-level-2-icon::before {
127
+ content: '\e85c' !important;
128
+ }
129
+
130
+ .e-hierarchy-level-3-icon::before {
131
+ content: '\e85b' !important;
132
+ }
133
+
134
+ .e-hierarchy-level-4-icon::before {
135
+ content: '\e85e' !important;
136
+ }
137
+
138
+ .e-hierarchy-level-5-icon::before {
139
+ content: '\e85d' !important;
140
+ }
141
+
142
+ .e-calcMemberGroupCDB::before {
143
+ content: '\e860' !important;
144
+ }
145
+
146
+ .e-calc-measure-icon::before {
147
+ content: '\e7db' !important;
148
+ }
149
+
150
+ .e-calc-dimension-icon::before {
151
+ content: '\e858' !important;
152
+ }
153
+
154
+ .e-sort-none::before {
155
+ content: '\e78c' !important;
156
+ }
157
+
158
+ .e-sort-ascend::before {
159
+ content: '\e788' !important;
160
+ }
161
+
162
+ .e-sort-descend::before {
163
+ content: '\e789' !important;
164
+ }
165
+ // sass-lint:enable-all
166
+ }
167
+
168
+ .e-pivotfieldlist-wrapper,
169
+ .e-pivotfieldlist-container {
170
+ .e-field-list-back-icon::before {
171
+ content: '\e7e4';
172
+ }
173
+
174
+ .e-sort::before {
175
+ content: '\e788';
176
+ }
177
+
178
+ .e-pv-filter::before {
179
+ content: '\e7d8';
180
+ }
181
+
182
+ .e-pv-filtered::before {
183
+ content: '\e7da';
184
+ }
185
+
186
+ .e-drag::before {
187
+ content: '\e7fa';
188
+ }
189
+
190
+ .e-add-icon::before {
191
+ content: '\e7ba';
192
+ }
193
+
194
+ .e-remove::before {
195
+ content: '\e74f';
196
+ }
197
+
198
+ .e-axis-rows::before {
199
+ content: '\e787';
200
+ }
201
+
202
+ .e-axis-columns::before {
203
+ content: '\e786';
204
+ }
205
+
206
+ .e-axis-values::before {
207
+ content: '\e7db';
208
+ }
209
+
210
+ .e-axis-filters::before {
211
+ content: '\e7d8';
212
+ }
213
+
214
+ .e-selected-option-icon::before {
215
+ content: '\e738';
216
+ }
217
+
218
+ .e-clear-filter-icon::before {
219
+ content: '\e7d9';
220
+ }
221
+
222
+ .e-dropdown-icon::before {
223
+ content: '\e7c3';
224
+ }
225
+
226
+ // sass-lint:disable-all
227
+ .e-measureGroupCDB-icon::before {
228
+ content: '\e7db' !important;
229
+ }
230
+
231
+ .e-measure-icon::before {
232
+ content: '\e7db' !important;
233
+ }
234
+
235
+ .e-folderCDB-icon::before {
236
+ content: '\e7b1' !important;
237
+ }
238
+
239
+ .e-folderCDB-open-icon::before {
240
+ content: '\e758' !important;
241
+ }
242
+
243
+ .e-dimensionCDB-icon::before {
244
+ content: '\e858' !important;
245
+ }
246
+
247
+ .e-kpiCDB-icon::before {
248
+ content: '\e857' !important;
249
+ }
250
+
251
+ .e-kpiGoal-icon::before {
252
+ content: '\e857' !important;
253
+ }
254
+
255
+ .e-kpiStatus-icon::before {
256
+ content: '\e857' !important;
257
+ }
258
+
259
+ .e-kpiTrend-icon::before {
260
+ content: '\e857' !important;
261
+ }
262
+
263
+ .e-kpiValue-icon::before {
264
+ content: '\e857' !important;
265
+ }
266
+
267
+ .e-namedSetCDB-icon::before {
268
+ content: '\e85f' !important;
269
+ }
270
+
271
+ .e-hierarchyCDB-icon::before {
272
+ content: '\e85a' !important;
273
+ }
274
+
275
+ .e-attributeCDB-icon::before {
276
+ content: '\e859' !important;
277
+ }
278
+
279
+ .e-hierarchy-level-0-icon::before {
280
+ content: '\e89b' !important;
281
+ }
282
+
283
+ .e-hierarchy-level-1-icon::before {
284
+ content: '\e89b' !important;
285
+ }
286
+
287
+ .e-hierarchy-level-2-icon::before {
288
+ content: '\e85c' !important;
289
+ }
290
+
291
+ .e-hierarchy-level-3-icon::before {
292
+ content: '\e85b' !important;
293
+ }
294
+
295
+ .e-hierarchy-level-4-icon::before {
296
+ content: '\e85e' !important;
297
+ }
298
+
299
+ .e-hierarchy-level-5-icon::before {
300
+ content: '\e85d' !important;
301
+ }
302
+
303
+ .e-calcMemberGroupCDB::before {
304
+ content: '\e860' !important;
305
+ }
306
+
307
+ .e-calc-measure-icon::before {
308
+ content: '\e7db' !important;
309
+ }
310
+
311
+ .e-calc-dimension-icon::before {
312
+ content: '\e858' !important;
313
+ }
314
+
315
+ .e-sort-none::before {
316
+ content: '\e78c' !important;
317
+ }
318
+
319
+ .e-sort-ascend::before {
320
+ content: '\e788' !important;
321
+ }
322
+
323
+ .e-sort-descend::before {
324
+ content: '\e789' !important;
325
+ }
326
+ // sass-lint:enable-all
327
+
328
+ .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
329
+ content: '\e761';
330
+ }
331
+
332
+ .e-pivot-calc-outer-div .e-pivot-accord .e-edit.e-icons::before {
333
+ content: '\e822';
334
+ }
335
+
336
+ .e-pivot-calc-outer-div .e-pivot-accord .e-remove-report.e-icons::before {
337
+ content: '\e75b';
338
+ }
339
+
340
+ .e-pivot-button .e-edit::before {
341
+ content: '\e822';
342
+ }
343
+
344
+ .e-sort-ascend-icon::before {
345
+ content: '\e818';
346
+ }
347
+
348
+ .e-sort-descend-icon::before {
349
+ content: '\e819';
350
+ }
351
+ }
352
+ }
@@ -213,7 +213,7 @@
213
213
  }
214
214
 
215
215
  .e-selected-option-icon::before {
216
- content: '\e75d';
216
+ content: '\e7b0';
217
217
  }
218
218
 
219
219
  .e-clear-filter-icon::before {
@@ -221,7 +221,7 @@
221
221
  }
222
222
 
223
223
  .e-dropdown-icon::before {
224
- content: '\e7c6';
224
+ content: '\e706';
225
225
  }
226
226
 
227
227
  // sass-lint:disable-all
@@ -498,6 +498,18 @@
498
498
  width: 14px;
499
499
  }
500
500
 
501
+ .e-pivot-formatting-dialog .e-colorpicker-wrapper .e-split-btn-wrapper .e-split-btn,
502
+ .e-pivot-formatting-dialog .e-colorpicker-container .e-split-btn-wrapper .e-split-btn {
503
+ pointer-events: none;
504
+ }
505
+
506
+ .e-pivot-formatting-dialog .e-colorpicker-wrapper .e-split-btn-wrapper .e-split-btn .e-selected-color,
507
+ .e-pivot-formatting-dialog .e-colorpicker-container .e-split-btn-wrapper .e-split-btn .e-selected-color {
508
+ background: none;
509
+ margin: 0 2px;
510
+ width: 14px;
511
+ }
512
+
501
513
  .e-pivot-formatting-dialog .e-split-preview,
502
514
  .e-pivot-formatting-dialog .e-tip-transparent {
503
515
  border: 1px solid #e0e0e0;
@@ -654,6 +666,7 @@
654
666
  .e-pivot-calc-dialog-div .e-olap-member-title {
655
667
  color: #fff;
656
668
  font-size: 13px;
669
+ margin-bottom: 4px;
657
670
  margin-top: 15px;
658
671
  overflow: hidden;
659
672
  padding: 4px 0;
@@ -682,6 +695,10 @@
682
695
  font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", "sans-serif", "-apple-system", "BlinkMacSystemFont";
683
696
  }
684
697
 
698
+ .e-pivot-calc-dialog-div .e-treeview ul li:not(.e-active) .e-list-icon {
699
+ color: rgba(255, 255, 255, 0.7);
700
+ }
701
+
685
702
  .e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
686
703
  color: rgba(255, 255, 255, 0.7);
687
704
  margin: 0;
@@ -718,6 +735,10 @@
718
735
  width: 24px;
719
736
  }
720
737
 
738
+ .e-pivot-calc-dialog-div .e-treeview .e-list-item:not(.e-active) span.e-icons {
739
+ color: #bdbdbd;
740
+ }
741
+
721
742
  .e-pivot-calc-dialog-div .e-treeview .e-list-item span.e-icons {
722
743
  color: #bdbdbd;
723
744
  cursor: move;
@@ -725,7 +746,6 @@
725
746
  font-size: 14px;
726
747
  height: 24px;
727
748
  margin-right: 4px;
728
- margin-top: 4px;
729
749
  padding: 5px;
730
750
  pointer-events: auto;
731
751
  width: 24px;
@@ -808,7 +828,6 @@
808
828
  color: rgba(255, 255, 255, 0.7);
809
829
  font-size: 13px;
810
830
  height: 70px;
811
- margin-top: 5px;
812
831
  padding: 5px 10px;
813
832
  resize: none;
814
833
  width: 100%;
@@ -832,7 +851,6 @@
832
851
  border: 1px solid #616161;
833
852
  border-radius: 4px;
834
853
  height: 120px;
835
- margin-top: 5px;
836
854
  overflow: auto;
837
855
  }
838
856
 
@@ -1124,8 +1142,8 @@
1124
1142
 
1125
1143
  .e-pivotfieldlist-wrapper .e-adaptive-field-list-dialog,
1126
1144
  .e-pivotfieldlist-wrapper .e-member-editor-dialog {
1127
- max-width: 400px;
1128
- min-width: 320px;
1145
+ max-width: 400px !important;
1146
+ min-width: 320px !important;
1129
1147
  }
1130
1148
 
1131
1149
  .e-pivotfieldlist-wrapper .e-adaptive-field-list-dialog .e-member-prompt,
@@ -1245,13 +1263,6 @@
1245
1263
  font-size: 16px;
1246
1264
  }
1247
1265
 
1248
- .e-pivotfieldlist-wrapper .e-member-editor-dialog .e-filter-sort .e-member-sort:focus.e-active {
1249
- background-color: #7d7d7d;
1250
- border-color: transparent;
1251
- color: #fff;
1252
- outline: none;
1253
- }
1254
-
1255
1266
  .e-pivotfieldlist-wrapper .e-member-editor-dialog .e-select-all-wrapper ul {
1256
1267
  margin-left: -35px;
1257
1268
  overflow: hidden;
@@ -1395,8 +1406,8 @@
1395
1406
  }
1396
1407
 
1397
1408
  .e-pivotfieldlist-wrapper .e-value-field-settings {
1398
- max-width: 400px;
1399
- min-width: 300px;
1409
+ max-width: 400px !important;
1410
+ min-width: 300px !important;
1400
1411
  }
1401
1412
 
1402
1413
  .e-pivotfieldlist-wrapper .e-value-field-settings .e-dlg-content {
@@ -1464,7 +1475,7 @@
1464
1475
  .e-pivotfieldlist-wrapper .e-member-editor-dialog,
1465
1476
  .e-pivotfieldlist-wrapper .e-value-field-settings {
1466
1477
  border-radius: 4px;
1467
- width: auto;
1478
+ width: auto !important;
1468
1479
  }
1469
1480
 
1470
1481
  .e-pivotfieldlist-wrapper .e-adaptive-field-list-dialog .e-dlg-header-content,
@@ -1533,8 +1544,8 @@
1533
1544
 
1534
1545
  .e-pivotfieldlist-container .e-adaptive-field-list-dialog,
1535
1546
  .e-pivotfieldlist-container .e-member-editor-dialog {
1536
- min-width: 320px;
1537
- max-width: 400px;
1547
+ max-width: 400px !important;
1548
+ min-width: 320px !important;
1538
1549
  }
1539
1550
 
1540
1551
  .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
@@ -1660,13 +1671,6 @@
1660
1671
  font-size: 16px;
1661
1672
  }
1662
1673
 
1663
- .e-pivotfieldlist-container .e-member-editor-dialog .e-filter-sort .e-member-sort:focus.e-active {
1664
- background-color: #7d7d7d;
1665
- border-color: transparent;
1666
- color: #fff;
1667
- outline: none;
1668
- }
1669
-
1670
1674
  .e-pivotfieldlist-container .e-member-editor-dialog .e-select-all-container ul {
1671
1675
  margin-left: -35px;
1672
1676
  overflow: hidden;
@@ -1681,7 +1685,7 @@
1681
1685
  }
1682
1686
 
1683
1687
  .e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
1684
- border: none;
1688
+ border: 0;
1685
1689
  }
1686
1690
 
1687
1691
  .e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
@@ -1810,8 +1814,8 @@
1810
1814
  }
1811
1815
 
1812
1816
  .e-pivotfieldlist-container .e-value-field-settings {
1813
- max-width: 400px;
1814
- min-width: 300px;
1817
+ max-width: 400px !important;
1818
+ min-width: 300px !important;
1815
1819
  }
1816
1820
 
1817
1821
  .e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
@@ -1879,7 +1883,7 @@
1879
1883
  .e-pivotfieldlist-container .e-member-editor-dialog,
1880
1884
  .e-pivotfieldlist-container .e-value-field-settings {
1881
1885
  border-radius: 4px;
1882
- width: auto;
1886
+ width: auto !important;
1883
1887
  }
1884
1888
 
1885
1889
  .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-header-content,
@@ -1953,12 +1957,14 @@
1953
1957
  border-radius: 20px;
1954
1958
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12);
1955
1959
  height: 28px;
1960
+ line-height: 1em;
1956
1961
  min-width: 100px;
1957
1962
  padding: 5px 10px;
1958
1963
  }
1959
1964
 
1960
1965
  .e-field-list-tree.e-drag-item.e-treeview .e-text-content,
1961
1966
  .e-pivot-calc.e-drag-item.e-treeview .e-text-content {
1967
+ height: 100%;
1962
1968
  padding: 0;
1963
1969
  text-align: center;
1964
1970
  width: 100%;
@@ -2072,23 +2078,8 @@
2072
2078
  }
2073
2079
 
2074
2080
  .e-pivot-error-dialog {
2075
- max-width: 400px;
2076
- width: auto;
2077
- }
2078
-
2079
- .e-pivot-error-dialog .e-dlg-header-content,
2080
- .e-pivot-error-dialog .e-footer-content {
2081
- border: 0;
2082
- }
2083
-
2084
- .e-pivot-error-dialog .e-dlg-header {
2085
- font-weight: normal;
2086
- opacity: 0.87;
2087
- }
2088
-
2089
- .e-pivot-error-dialog .e-dlg-content {
2090
- font-weight: normal;
2091
- opacity: 0.54;
2081
+ max-width: 400px !important;
2082
+ width: auto !important;
2092
2083
  }
2093
2084
 
2094
2085
  .e-bigger .e-pivotfieldlist-wrapper .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-wrapper .e-member-editor-container-outer-div,
@@ -2172,7 +2163,7 @@
2172
2163
 
2173
2164
  .e-bigger .e-pivotfieldlist-wrapper .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div,
2174
2165
  .e-bigger.e-pivotfieldlist-wrapper .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
2175
- height: 100px !important;
2166
+ height: 100px;
2176
2167
  }
2177
2168
 
2178
2169
  .e-bigger .e-pivotfieldlist-wrapper .e-member-editor-dialog .e-label-filter,
@@ -2541,8 +2532,8 @@
2541
2532
  .e-pivotfieldlist-wrapper {
2542
2533
  font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", "sans-serif", "-apple-system", "BlinkMacSystemFont";
2543
2534
  font-size: 12px;
2544
- max-width: 700px;
2545
- min-width: 300px;
2535
+ max-width: 700px !important;
2536
+ min-width: 300px !important;
2546
2537
  }
2547
2538
 
2548
2539
  .e-pivotfieldlist-wrapper .e-layout-footer {
@@ -2631,9 +2622,9 @@
2631
2622
  }
2632
2623
 
2633
2624
  .e-pivotfieldlist-wrapper .e-title-header .e-title-content {
2634
- font-size: 18px;
2635
2625
  -ms-flex: auto;
2636
2626
  flex: auto;
2627
+ font-size: 18px;
2637
2628
  }
2638
2629
 
2639
2630
  .e-pivotfieldlist-wrapper .e-field-list-container {
@@ -2667,13 +2658,13 @@
2667
2658
  font-size: 13px;
2668
2659
  font-weight: normal;
2669
2660
  height: 28px;
2661
+ line-height: 1.5em;
2670
2662
  overflow: hidden;
2671
2663
  padding: 7px 0 0 15px;
2672
2664
  text-align: left;
2673
2665
  text-overflow: ellipsis;
2674
- word-break: break-all;
2675
- line-height: 1.5em;
2676
2666
  text-transform: none;
2667
+ word-break: break-all;
2677
2668
  }
2678
2669
 
2679
2670
  .e-pivotfieldlist-wrapper .e-field-list-container .e-field-table .e-field-header-wrapper {
@@ -2900,8 +2891,8 @@
2900
2891
  overflow: hidden;
2901
2892
  padding: 0 8px;
2902
2893
  text-overflow: ellipsis;
2903
- width: 100%;
2904
2894
  text-transform: none;
2895
+ width: 100%;
2905
2896
  }
2906
2897
 
2907
2898
  .e-pivotfieldlist-wrapper .e-field-list-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
@@ -4365,8 +4356,8 @@
4365
4356
  overflow: hidden;
4366
4357
  padding: 0 8px;
4367
4358
  text-overflow: ellipsis;
4368
- width: 100%;
4369
4359
  text-transform: none;
4360
+ width: 100%;
4370
4361
  }
4371
4362
 
4372
4363
  .e-pivotfieldlist-container .e-field-list-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,