@syncfusion/ej2-pivotview 19.3.57 → 19.4.42

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 +40 -27
  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 +2052 -1101
  8. package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
  9. package/dist/es6/ej2-pivotview.es5.js +2068 -1111
  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 +78 -27
  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 +10 -11
  50. package/src/pivotview/actions/pdf-export.js +13 -6
  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 +288 -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 +145 -118
  65. package/styles/bootstrap.css +145 -118
  66. package/styles/bootstrap4.css +144 -95
  67. package/styles/bootstrap5-dark.css +250 -182
  68. package/styles/bootstrap5.css +245 -175
  69. package/styles/fabric-dark.css +147 -117
  70. package/styles/fabric.css +145 -116
  71. package/styles/highcontrast-light.css +146 -116
  72. package/styles/highcontrast.css +148 -118
  73. package/styles/material-dark.css +138 -111
  74. package/styles/material.css +138 -111
  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 +213 -47
  89. package/styles/pivotfieldlist/bootstrap-dark.css +79 -72
  90. package/styles/pivotfieldlist/bootstrap.css +79 -72
  91. package/styles/pivotfieldlist/bootstrap4.css +74 -53
  92. package/styles/pivotfieldlist/bootstrap5-dark.css +145 -103
  93. package/styles/pivotfieldlist/bootstrap5.css +145 -103
  94. package/styles/pivotfieldlist/fabric-dark.css +79 -72
  95. package/styles/pivotfieldlist/fabric.css +79 -72
  96. package/styles/pivotfieldlist/highcontrast-light.css +79 -72
  97. package/styles/pivotfieldlist/highcontrast.css +79 -72
  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 +74 -67
  102. package/styles/pivotfieldlist/material.css +74 -67
  103. package/styles/pivotfieldlist/tailwind-dark.css +168 -95
  104. package/styles/pivotfieldlist/tailwind.css +170 -97
  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 +280 -159
  139. package/styles/tailwind.css +277 -154
@@ -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