@syncfusion/ej2-pivotview 20.1.57 → 20.2.36

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 (145) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/dist/ej2-pivotview.umd.min.js +2 -2
  3. package/dist/ej2-pivotview.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-pivotview.es2015.js +462 -193
  5. package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
  6. package/dist/es6/ej2-pivotview.es5.js +466 -196
  7. package/dist/es6/ej2-pivotview.es5.js.map +1 -1
  8. package/dist/global/ej2-pivotview.min.js +2 -2
  9. package/dist/global/ej2-pivotview.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/helpers/e2e/index.js +9 -7
  12. package/helpers/e2e/pivotfieldlist.js +47 -31
  13. package/helpers/e2e/pivotview.js +68 -52
  14. package/package.json +22 -22
  15. package/src/base/engine.d.ts +1 -1
  16. package/src/base/engine.js +126 -78
  17. package/src/base/olap/mdx-query.js +1 -1
  18. package/src/base/util.js +2 -2
  19. package/src/common/actions/event-base.d.ts +4 -2
  20. package/src/common/actions/event-base.js +45 -10
  21. package/src/common/actions/field-list.js +2 -1
  22. package/src/common/actions/pivot-button.js +4 -4
  23. package/src/common/base/css-constant.d.ts +16 -0
  24. package/src/common/base/css-constant.js +16 -0
  25. package/src/common/calculatedfield/calculated-field.js +24 -15
  26. package/src/common/conditionalformatting/conditional-formatting.js +5 -5
  27. package/src/common/grouping-bar/grouping-bar.js +1 -1
  28. package/src/common/popups/aggregate-menu.js +4 -3
  29. package/src/common/popups/drillthrough-dialog.js +10 -10
  30. package/src/common/popups/error-dialog.js +1 -1
  31. package/src/common/popups/filter-dialog.js +25 -14
  32. package/src/common/popups/formatting-dialog.js +2 -2
  33. package/src/common/popups/grouping.js +14 -7
  34. package/src/common/popups/toolbar.d.ts +1 -0
  35. package/src/common/popups/toolbar.js +26 -16
  36. package/src/pivotchart/base/pivotchart.js +3 -0
  37. package/src/pivotfieldlist/base/field-list-model.d.ts +5 -0
  38. package/src/pivotfieldlist/base/field-list.d.ts +4 -0
  39. package/src/pivotfieldlist/base/field-list.js +5 -0
  40. package/src/pivotfieldlist/renderer/dialog-renderer.js +17 -9
  41. package/src/pivotfieldlist/renderer/tree-renderer.d.ts +4 -0
  42. package/src/pivotfieldlist/renderer/tree-renderer.js +102 -8
  43. package/src/pivotview/actions/drill-through.js +2 -2
  44. package/src/pivotview/actions/excel-export.js +2 -1
  45. package/src/pivotview/base/pivotview-model.d.ts +7 -0
  46. package/src/pivotview/base/pivotview.d.ts +6 -0
  47. package/src/pivotview/base/pivotview.js +9 -3
  48. package/src/pivotview/model/chartsettings-model.d.ts +2 -2
  49. package/src/pivotview/model/chartsettings.d.ts +2 -2
  50. package/src/pivotview/model/chartsettings.js +2 -2
  51. package/src/pivotview/renderer/render.js +18 -3
  52. package/styles/bootstrap-dark.css +165 -32
  53. package/styles/bootstrap.css +165 -32
  54. package/styles/bootstrap4.css +166 -36
  55. package/styles/bootstrap5-dark.css +209 -45
  56. package/styles/bootstrap5.css +209 -45
  57. package/styles/fabric-dark.css +165 -32
  58. package/styles/fabric.css +165 -32
  59. package/styles/fluent-dark.css +183 -49
  60. package/styles/fluent.css +183 -49
  61. package/styles/highcontrast-light.css +165 -32
  62. package/styles/highcontrast.css +165 -32
  63. package/styles/material-dark.css +165 -32
  64. package/styles/material.css +165 -32
  65. package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +10 -0
  66. package/styles/pivotfieldlist/_bootstrap-definition.scss +10 -0
  67. package/styles/pivotfieldlist/_bootstrap4-definition.scss +11 -1
  68. package/styles/pivotfieldlist/_bootstrap5-definition.scss +15 -6
  69. package/styles/pivotfieldlist/_fabric-dark-definition.scss +10 -1
  70. package/styles/pivotfieldlist/_fabric-definition.scss +10 -0
  71. package/styles/pivotfieldlist/_fluent-definition.scss +18 -8
  72. package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
  73. package/styles/pivotfieldlist/_highcontrast-definition.scss +10 -0
  74. package/styles/pivotfieldlist/_highcontrast-light-definition.scss +10 -0
  75. package/styles/pivotfieldlist/_layout.scss +30 -14
  76. package/styles/pivotfieldlist/_material-dark-definition.scss +10 -0
  77. package/styles/pivotfieldlist/_material-definition.scss +10 -0
  78. package/styles/pivotfieldlist/_material3-definition.scss +189 -0
  79. package/styles/pivotfieldlist/_tailwind-definition.scss +19 -10
  80. package/styles/pivotfieldlist/_theme.scss +142 -7
  81. package/styles/pivotfieldlist/bootstrap-dark.css +146 -10
  82. package/styles/pivotfieldlist/bootstrap.css +146 -10
  83. package/styles/pivotfieldlist/bootstrap4.css +147 -11
  84. package/styles/pivotfieldlist/bootstrap5-dark.css +151 -15
  85. package/styles/pivotfieldlist/bootstrap5.css +151 -15
  86. package/styles/pivotfieldlist/fabric-dark.css +146 -10
  87. package/styles/pivotfieldlist/fabric.css +146 -10
  88. package/styles/pivotfieldlist/fluent-dark.css +154 -18
  89. package/styles/pivotfieldlist/fluent.css +154 -18
  90. package/styles/pivotfieldlist/highcontrast-light.css +146 -10
  91. package/styles/pivotfieldlist/highcontrast.css +146 -10
  92. package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +5 -0
  93. package/styles/pivotfieldlist/icons/_bootstrap.scss +5 -0
  94. package/styles/pivotfieldlist/icons/_bootstrap4.scss +5 -0
  95. package/styles/pivotfieldlist/icons/_bootstrap5.scss +5 -0
  96. package/styles/pivotfieldlist/icons/_fabric-dark.scss +5 -0
  97. package/styles/pivotfieldlist/icons/_fabric.scss +5 -0
  98. package/styles/pivotfieldlist/icons/_fluent.scss +5 -0
  99. package/styles/pivotfieldlist/icons/_fusionnew.scss +352 -0
  100. package/styles/pivotfieldlist/icons/_highcontrast-light.scss +5 -0
  101. package/styles/pivotfieldlist/icons/_highcontrast.scss +5 -0
  102. package/styles/pivotfieldlist/icons/_material-dark.scss +5 -0
  103. package/styles/pivotfieldlist/icons/_material.scss +4 -0
  104. package/styles/pivotfieldlist/icons/_material3.scss +352 -0
  105. package/styles/pivotfieldlist/icons/_tailwind-dark.scss +4 -0
  106. package/styles/pivotfieldlist/icons/_tailwind.scss +4 -0
  107. package/styles/pivotfieldlist/material-dark.css +146 -10
  108. package/styles/pivotfieldlist/material.css +146 -10
  109. package/styles/pivotfieldlist/tailwind-dark.css +155 -21
  110. package/styles/pivotfieldlist/tailwind.css +156 -21
  111. package/styles/pivotview/_bootstrap-dark-definition.scss +4 -2
  112. package/styles/pivotview/_bootstrap-definition.scss +4 -2
  113. package/styles/pivotview/_bootstrap4-definition.scss +4 -2
  114. package/styles/pivotview/_bootstrap5-definition.scss +9 -8
  115. package/styles/pivotview/_fabric-dark-definition.scss +4 -1
  116. package/styles/pivotview/_fabric-definition.scss +4 -2
  117. package/styles/pivotview/_fluent-definition.scss +11 -9
  118. package/styles/pivotview/_fusionnew-definition.scss +131 -0
  119. package/styles/pivotview/_highcontrast-definition.scss +4 -2
  120. package/styles/pivotview/_highcontrast-light-definition.scss +4 -2
  121. package/styles/pivotview/_layout.scss +3 -17
  122. package/styles/pivotview/_material-dark-definition.scss +4 -1
  123. package/styles/pivotview/_material-definition.scss +4 -2
  124. package/styles/pivotview/_material3-definition.scss +131 -0
  125. package/styles/pivotview/_tailwind-definition.scss +8 -5
  126. package/styles/pivotview/_theme.scss +47 -27
  127. package/styles/pivotview/bootstrap-dark.css +19 -22
  128. package/styles/pivotview/bootstrap.css +19 -22
  129. package/styles/pivotview/bootstrap4.css +19 -25
  130. package/styles/pivotview/bootstrap5-dark.css +58 -30
  131. package/styles/pivotview/bootstrap5.css +58 -30
  132. package/styles/pivotview/fabric-dark.css +19 -22
  133. package/styles/pivotview/fabric.css +19 -22
  134. package/styles/pivotview/fluent-dark.css +29 -31
  135. package/styles/pivotview/fluent.css +29 -31
  136. package/styles/pivotview/highcontrast-light.css +19 -22
  137. package/styles/pivotview/highcontrast.css +19 -22
  138. package/styles/pivotview/icons/_fusionnew.scss +183 -0
  139. package/styles/pivotview/icons/_material3.scss +183 -0
  140. package/styles/pivotview/material-dark.css +19 -22
  141. package/styles/pivotview/material.css +19 -22
  142. package/styles/pivotview/tailwind-dark.css +27 -31
  143. package/styles/pivotview/tailwind.css +27 -31
  144. package/styles/tailwind-dark.css +182 -52
  145. package/styles/tailwind.css +183 -52
@@ -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: '\e751';
6
+ }
7
+ }
8
+
9
+ .e-pivot-formatting-dialog {
10
+ .e-format-delete-icon::before {
11
+ content: '\e7e7';
12
+ }
13
+
14
+ .e-add-icon::before {
15
+ content: '\e805';
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: '\e783';
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: '\e76f';
26
+ }
27
+ }
28
+
29
+ .e-level-options {
30
+ .e-selected-level-icon::before {
31
+ content: '\e774';
32
+ }
33
+ }
34
+
35
+ .e-pivot-calc-dialog-div {
36
+ .e-drag::before {
37
+ content: '\e726';
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: '\e800';
43
+ }
44
+
45
+ .e-list-item .e-text-content .e-edited.e-icons::before {
46
+ content: '\e740';
47
+ }
48
+
49
+ .e-list-item .e-text-content .e-edit.e-icons::before {
50
+ content: '\e730';
51
+ }
52
+
53
+ .e-list-item .e-text-content .e-remove-report.e-icons::before {
54
+ content: '\e820';
55
+ }
56
+
57
+ .e-remove-report.e-icons::before {
58
+ content: '\e820';
59
+ }
60
+
61
+ .e-list-item .e-text-content .e-format.e-icons::before {
62
+ content: '\e75c';
63
+ }
64
+
65
+ // sass-lint:disable-all
66
+ .e-measureGroupCDB-icon::before {
67
+ content: '\e7d2' !important;
68
+ }
69
+
70
+ .e-measure-icon::before {
71
+ content: '\e7d2' !important;
72
+ }
73
+
74
+ .e-folderCDB-icon::before {
75
+ content: '\e83c' !important;
76
+ }
77
+
78
+ .e-folderCDB-open-icon::before {
79
+ content: '\e760' !important;
80
+ }
81
+
82
+ .e-dimensionCDB-icon::before {
83
+ content: '\e81d' !important;
84
+ }
85
+
86
+ .e-kpiCDB-icon::before {
87
+ content: '\e73f' !important;
88
+ }
89
+
90
+ .e-kpiGoal-icon::before {
91
+ content: '\e73f' !important;
92
+ }
93
+
94
+ .e-kpiStatus-icon::before {
95
+ content: '\e73f' !important;
96
+ }
97
+
98
+ .e-kpiTrend-icon::before {
99
+ content: '\e73f' !important;
100
+ }
101
+
102
+ .e-kpiValue-icon::before {
103
+ content: '\e73f' !important;
104
+ }
105
+
106
+ .e-namedSetCDB-icon::before {
107
+ content: '\e829' !important;
108
+ }
109
+
110
+ .e-hierarchyCDB-icon::before {
111
+ content: '\e709' !important;
112
+ }
113
+
114
+ .e-attributeCDB-icon::before {
115
+ content: '\e73e' !important;
116
+ }
117
+
118
+ .e-hierarchy-level-0-icon::before {
119
+ content: '\e76a' !important;
120
+ }
121
+
122
+ .e-hierarchy-level-1-icon::before {
123
+ content: '\e76a' !important;
124
+ }
125
+
126
+ .e-hierarchy-level-2-icon::before {
127
+ content: '\e807' !important;
128
+ }
129
+
130
+ .e-hierarchy-level-3-icon::before {
131
+ content: '\e780' !important;
132
+ }
133
+
134
+ .e-hierarchy-level-4-icon::before {
135
+ content: '\e711' !important;
136
+ }
137
+
138
+ .e-hierarchy-level-5-icon::before {
139
+ content: '\e837' !important;
140
+ }
141
+
142
+ .e-calcMemberGroupCDB::before {
143
+ content: '\e798' !important;
144
+ }
145
+
146
+ .e-calc-measure-icon::before {
147
+ content: '\e7d2' !important;
148
+ }
149
+
150
+ .e-calc-dimension-icon::before {
151
+ content: '\e81d' !important;
152
+ }
153
+
154
+ .e-sort-none::before {
155
+ content: '\e824' !important;
156
+ }
157
+
158
+ .e-sort-ascend::before {
159
+ content: '\e7df' !important;
160
+ }
161
+
162
+ .e-sort-descend::before {
163
+ content: '\e7d8' !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: '\e773';
172
+ }
173
+
174
+ .e-sort::before {
175
+ content: '\e7df';
176
+ }
177
+
178
+ .e-pv-filter::before {
179
+ content: '\e7f7';
180
+ }
181
+
182
+ .e-pv-filtered::before {
183
+ content: '\e735';
184
+ }
185
+
186
+ .e-drag::before {
187
+ content: '\e726';
188
+ }
189
+
190
+ .e-add-icon::before {
191
+ content: '\e805';
192
+ }
193
+
194
+ .e-remove::before {
195
+ content: '\e7e7';
196
+ }
197
+
198
+ .e-axis-rows::before {
199
+ content: '\e7e6';
200
+ }
201
+
202
+ .e-axis-columns::before {
203
+ content: '\e76b';
204
+ }
205
+
206
+ .e-axis-values::before {
207
+ content: '\e7d2';
208
+ }
209
+
210
+ .e-axis-filters::before {
211
+ content: '\e7f7';
212
+ }
213
+
214
+ .e-selected-option-icon::before {
215
+ content: '\e72b';
216
+ }
217
+
218
+ .e-clear-filter-icon::before {
219
+ content: '\e72c';
220
+ }
221
+
222
+ .e-dropdown-icon::before {
223
+ content: '\e729';
224
+ }
225
+
226
+ // sass-lint:disable-all
227
+ .e-measureGroupCDB-icon::before {
228
+ content: '\e7d2' !important;
229
+ }
230
+
231
+ .e-measure-icon::before {
232
+ content: '\e7d2' !important;
233
+ }
234
+
235
+ .e-folderCDB-icon::before {
236
+ content: '\e83c' !important;
237
+ }
238
+
239
+ .e-folderCDB-open-icon::before {
240
+ content: '\e760' !important;
241
+ }
242
+
243
+ .e-dimensionCDB-icon::before {
244
+ content: '\e81d' !important;
245
+ }
246
+
247
+ .e-kpiCDB-icon::before {
248
+ content: '\e73f' !important;
249
+ }
250
+
251
+ .e-kpiGoal-icon::before {
252
+ content: '\e73f' !important;
253
+ }
254
+
255
+ .e-kpiStatus-icon::before {
256
+ content: '\e73f' !important;
257
+ }
258
+
259
+ .e-kpiTrend-icon::before {
260
+ content: '\e73f' !important;
261
+ }
262
+
263
+ .e-kpiValue-icon::before {
264
+ content: '\e73f' !important;
265
+ }
266
+
267
+ .e-namedSetCDB-icon::before {
268
+ content: '\e829' !important;
269
+ }
270
+
271
+ .e-hierarchyCDB-icon::before {
272
+ content: '\e709' !important;
273
+ }
274
+
275
+ .e-attributeCDB-icon::before {
276
+ content: '\e73e' !important;
277
+ }
278
+
279
+ .e-hierarchy-level-0-icon::before {
280
+ content: '\e76a' !important;
281
+ }
282
+
283
+ .e-hierarchy-level-1-icon::before {
284
+ content: '\e76a' !important;
285
+ }
286
+
287
+ .e-hierarchy-level-2-icon::before {
288
+ content: '\e807' !important;
289
+ }
290
+
291
+ .e-hierarchy-level-3-icon::before {
292
+ content: '\e780' !important;
293
+ }
294
+
295
+ .e-hierarchy-level-4-icon::before {
296
+ content: '\e711' !important;
297
+ }
298
+
299
+ .e-hierarchy-level-5-icon::before {
300
+ content: '\e837' !important;
301
+ }
302
+
303
+ .e-calcMemberGroupCDB::before {
304
+ content: '\e798' !important;
305
+ }
306
+
307
+ .e-calc-measure-icon::before {
308
+ content: '\e7d2' !important;
309
+ }
310
+
311
+ .e-calc-dimension-icon::before {
312
+ content: '\e81d' !important;
313
+ }
314
+
315
+ .e-sort-none::before {
316
+ content: '\e824' !important;
317
+ }
318
+
319
+ .e-sort-ascend::before {
320
+ content: '\e7df' !important;
321
+ }
322
+
323
+ .e-sort-descend::before {
324
+ content: '\e7d8' !important;
325
+ }
326
+ // sass-lint:enable-all
327
+
328
+ .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
329
+ content: '\e740';
330
+ }
331
+
332
+ .e-pivot-calc-outer-div .e-pivot-accord .e-edit.e-icons::before {
333
+ content: '\e730';
334
+ }
335
+
336
+ .e-pivot-calc-outer-div .e-pivot-accord .e-remove-report.e-icons::before {
337
+ content: '\e820';
338
+ }
339
+
340
+ .e-pivot-button .e-edit::before {
341
+ content: '\e730';
342
+ }
343
+
344
+ .e-sort-ascend-icon::before {
345
+ content: '\e7a3';
346
+ }
347
+
348
+ .e-sort-descend-icon::before {
349
+ content: '\e7b6';
350
+ }
351
+ }
352
+ }
@@ -323,6 +323,11 @@
323
323
  .e-sort-descend::before {
324
324
  content: '\e665' !important;
325
325
  }
326
+
327
+ .e-field-list-search-icon::before {
328
+ content: '\e60e' !important;
329
+ }
330
+
326
331
  // sass-lint:enable-all
327
332
 
328
333
  .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
@@ -323,6 +323,11 @@
323
323
  .e-sort-descend::before {
324
324
  content: '\e665' !important;
325
325
  }
326
+
327
+ .e-field-list-search-icon::before {
328
+ content: '\e275' !important;
329
+ }
330
+
326
331
  // sass-lint:enable-all
327
332
 
328
333
  .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
@@ -320,6 +320,11 @@
320
320
  .e-sort-descend::before {
321
321
  content: '\e665' !important;
322
322
  }
323
+
324
+ .e-field-list-search-icon::before {
325
+ content: '\e993' !important;
326
+ }
327
+
323
328
  // sass-lint:enable-all
324
329
 
325
330
  .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
@@ -321,6 +321,10 @@
321
321
  content: '\e667' !important;
322
322
  }
323
323
 
324
+ .e-field-list-search-icon::before {
325
+ content: '\e993' !important;
326
+ }
327
+
324
328
  .e-sort-descend::before {
325
329
  content: '\e665' !important;
326
330
  }