@syncfusion/ej2-pivotview 20.1.56 → 20.1.61

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 (34) hide show
  1. package/CHANGELOG.md +26 -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 +209 -118
  5. package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
  6. package/dist/es6/ej2-pivotview.es5.js +211 -120
  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/package.json +15 -15
  12. package/src/base/engine.d.ts +1 -1
  13. package/src/base/engine.js +127 -79
  14. package/src/base/olap/engine.js +0 -12
  15. package/src/base/util.js +2 -2
  16. package/src/common/actions/event-base.js +27 -0
  17. package/src/common/popups/drillthrough-dialog.js +6 -6
  18. package/src/common/popups/toolbar.d.ts +1 -0
  19. package/src/common/popups/toolbar.js +15 -6
  20. package/src/pivotchart/base/pivotchart.js +4 -1
  21. package/src/pivotfieldlist/renderer/dialog-renderer.js +4 -2
  22. package/src/pivotview/actions/drill-through.js +2 -2
  23. package/src/pivotview/actions/excel-export.js +2 -1
  24. package/src/pivotview/base/pivotview.js +6 -3
  25. package/src/pivotview/model/chartsettings-model.d.ts +2 -2
  26. package/src/pivotview/model/chartsettings.d.ts +2 -2
  27. package/src/pivotview/model/chartsettings.js +2 -2
  28. package/src/pivotview/renderer/render.js +16 -6
  29. package/styles/bootstrap4.css +1 -1
  30. package/styles/pivotfieldlist/_layout.scss +7 -7
  31. package/styles/pivotfieldlist/_theme.scss +1 -1
  32. package/styles/pivotview/_layout.scss +14 -14
  33. package/styles/pivotview/_theme.scss +3 -3
  34. package/styles/pivotview/bootstrap4.css +1 -1
package/CHANGELOG.md CHANGED
@@ -6,6 +6,32 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#I382188` - When there is only one record, inline editing for value fields with advanced aggregate types now works properly.
10
+
11
+ ## 20.1.58 (2022-05-31)
12
+
13
+ ### Pivot Table
14
+
15
+ #### Bug Fixes
16
+
17
+ - `#I380533` - When using value fields with advanced aggregate options, the pivot table can now be properly exported to Excel and CSV formats.
18
+
19
+ ## 20.1.57 (2022-05-24)
20
+
21
+ ### Pivot Table
22
+
23
+ #### Bug Fixes
24
+
25
+ - `#I378816` - When the defer layout update option is enabled, dataBound event is now restricted while clicking cancel option in the popup field list UI.
26
+ - `#F174968` - When virtual scrolling is enabled, the pivot table can now be rendered properly while perform member filtering.
27
+ - The pivot table's column selection is now working properly.
28
+
29
+ ## 20.1.56 (2022-05-17)
30
+
31
+ ### Pivot Table
32
+
33
+ #### Bug Fixes
34
+
9
35
  - The pivot table can now be sorted properly with date type headers.
10
36
 
11
37
  #### New Features