@syncfusion/ej2-angular-grids 19.4.52 → 19.4.55

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 (52) hide show
  1. package/@syncfusion/ej2-angular-grids.es5.js +1 -1
  2. package/@syncfusion/ej2-angular-grids.es5.js.map +1 -1
  3. package/@syncfusion/ej2-angular-grids.js +1 -1
  4. package/@syncfusion/ej2-angular-grids.js.map +1 -1
  5. package/CHANGELOG.md +31 -0
  6. package/README.md +1 -1
  7. package/dist/ej2-angular-grids.umd.js +2 -1
  8. package/dist/ej2-angular-grids.umd.js.map +1 -1
  9. package/dist/ej2-angular-grids.umd.min.js +2 -2
  10. package/package.json +6 -6
  11. package/schematics/utils/lib-details.d.ts +2 -2
  12. package/schematics/utils/lib-details.js +2 -2
  13. package/schematics/utils/lib-details.ts +2 -2
  14. package/styles/bootstrap-dark.css +4 -0
  15. package/styles/bootstrap.css +4 -0
  16. package/styles/bootstrap4.css +4 -0
  17. package/styles/bootstrap5-dark.css +38 -34
  18. package/styles/bootstrap5.css +38 -34
  19. package/styles/excel-filter/bootstrap-dark.css +3 -0
  20. package/styles/excel-filter/bootstrap.css +3 -0
  21. package/styles/excel-filter/bootstrap4.css +3 -0
  22. package/styles/excel-filter/bootstrap5-dark.css +3 -0
  23. package/styles/excel-filter/bootstrap5.css +3 -0
  24. package/styles/excel-filter/fabric-dark.css +3 -0
  25. package/styles/excel-filter/fabric.css +3 -0
  26. package/styles/excel-filter/highcontrast-light.css +3 -0
  27. package/styles/excel-filter/highcontrast.css +3 -0
  28. package/styles/excel-filter/material-dark.css +3 -0
  29. package/styles/excel-filter/material.css +3 -0
  30. package/styles/excel-filter/tailwind-dark.css +3 -0
  31. package/styles/excel-filter/tailwind.css +3 -0
  32. package/styles/fabric-dark.css +4 -0
  33. package/styles/fabric.css +4 -0
  34. package/styles/grid/bootstrap-dark.css +1 -0
  35. package/styles/grid/bootstrap.css +1 -0
  36. package/styles/grid/bootstrap4.css +1 -0
  37. package/styles/grid/bootstrap5-dark.css +35 -34
  38. package/styles/grid/bootstrap5.css +35 -34
  39. package/styles/grid/fabric-dark.css +1 -0
  40. package/styles/grid/fabric.css +1 -0
  41. package/styles/grid/highcontrast-light.css +1 -0
  42. package/styles/grid/highcontrast.css +1 -0
  43. package/styles/grid/material-dark.css +1 -0
  44. package/styles/grid/material.css +1 -0
  45. package/styles/grid/tailwind-dark.css +27 -26
  46. package/styles/grid/tailwind.css +27 -26
  47. package/styles/highcontrast-light.css +4 -0
  48. package/styles/highcontrast.css +4 -0
  49. package/styles/material-dark.css +4 -0
  50. package/styles/material.css +4 -0
  51. package/styles/tailwind-dark.css +30 -26
  52. package/styles/tailwind.css +30 -26
package/CHANGELOG.md CHANGED
@@ -6,6 +6,37 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#I367001` - Inline editing is not working properly when `RowDragandDrop` with frozen columns is fixed.
10
+ - `#I368530` - Aggregates not shown when using `expandAll` and `collapseAll` in grouping issue has been fixed.
11
+ - `#I368787` - `Autofill` removing decimal values in number type columns issue has been fixed.
12
+
13
+ ## 19.4.54 (2022-03-01)
14
+
15
+ ### Grid
16
+
17
+ #### Bug Fixes
18
+
19
+ - `#F172908` - Script error is thrown when column has `sortComparer` set is fixed.
20
+ - `#I367180` - `RowDragandDrop` not working when page size set to `All` has been fixed.
21
+ - `#I365069` - column menu `popup` not closed after filtering using enter key is fixed.
22
+
23
+ ## 19.4.53 (2022-02-22)
24
+
25
+ ### Grid
26
+
27
+ #### Bug Fixes
28
+
29
+ - `#I364948` - column menu position issue when open last column is fixed.
30
+ - `#I363675` - Need to set id and aria label for Grid checkboxes accessibility.
31
+ - `#I366853` - Column menu icon is not showing in bigger tailwind theme.
32
+ - `#I357480` - Need to include `strikeThrough` style for excel export issue has been fixed.
33
+
34
+ ## 19.4.52 (2022-02-15)
35
+
36
+ ### Grid
37
+
38
+ #### Bug Fixes
39
+
9
40
  - `#I359192` - Ellipsis is not showing for the cells in the Firefox browser has been fixed.
10
41
  - `#I363178` - Filter dialog position mismatches when disable `ColumnMenu` for particular column is fixed.
11
42
  - `#I357482` - Not able to set the pager dropdown value as All on initialization issue has been fixed.
package/README.md CHANGED
@@ -78,4 +78,4 @@ Check the license detail [here](https://github.com/syncfusion/ej2-angular-ui-com
78
78
 
79
79
  Check the changelog [here](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/components/grids/CHANGELOG.md?utm_source=npm&utm_medium=listing&utm_campaign=angular-data-grid-npm)
80
80
 
81
- © Copyright 2019 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
81
+ © Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-grids.umd.js
3
- * version : 19.4.52
3
+ * version : 19.4.55
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
@@ -1426,6 +1426,7 @@ exports.stickyScrollComplete = ej2Grids.stickyScrollComplete;
1426
1426
  exports.captionActionComplete = ej2Grids.captionActionComplete;
1427
1427
  exports.refreshInfinitePersistSelection = ej2Grids.refreshInfinitePersistSelection;
1428
1428
  exports.refreshInfiniteEditrowindex = ej2Grids.refreshInfiniteEditrowindex;
1429
+ exports.afterFilterColumnMenuClose = ej2Grids.afterFilterColumnMenuClose;
1429
1430
  exports.rowCell = ej2Grids.rowCell;
1430
1431
  exports.gridHeader = ej2Grids.gridHeader;
1431
1432
  exports.gridContent = ej2Grids.gridContent;