@syncfusion/ej2-angular-grids 20.4.43-ngcc → 20.4.44-ngcc
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.
- package/@syncfusion/ej2-angular-grids.es5.js +1 -1
- package/@syncfusion/ej2-angular-grids.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-grids.js +1 -1
- package/@syncfusion/ej2-angular-grids.js.map +1 -1
- package/CHANGELOG.md +13 -0
- package/dist/ej2-angular-grids.umd.js +2 -1
- package/dist/ej2-angular-grids.umd.js.map +1 -1
- package/dist/ej2-angular-grids.umd.min.js +2 -2
- package/package.json +7 -7
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/styles/bootstrap-dark.css +3 -1
- package/styles/bootstrap.css +3 -1
- package/styles/bootstrap4.css +3 -1
- package/styles/bootstrap5-dark.css +3 -1
- package/styles/bootstrap5.css +3 -1
- package/styles/fabric-dark.css +3 -1
- package/styles/fabric.css +3 -1
- package/styles/fluent-dark.css +3 -1
- package/styles/fluent.css +3 -1
- package/styles/grid/bootstrap-dark.css +3 -1
- package/styles/grid/bootstrap.css +3 -1
- package/styles/grid/bootstrap4.css +3 -1
- package/styles/grid/bootstrap5-dark.css +3 -1
- package/styles/grid/bootstrap5.css +3 -1
- package/styles/grid/fabric-dark.css +3 -1
- package/styles/grid/fabric.css +3 -1
- package/styles/grid/fluent-dark.css +3 -1
- package/styles/grid/fluent.css +3 -1
- package/styles/grid/highcontrast-light.css +3 -1
- package/styles/grid/highcontrast.css +3 -1
- package/styles/grid/material-dark.css +3 -1
- package/styles/grid/material.css +3 -1
- package/styles/grid/tailwind-dark.css +3 -1
- package/styles/grid/tailwind.css +3 -1
- package/styles/highcontrast-light.css +3 -1
- package/styles/highcontrast.css +3 -1
- package/styles/material-dark.css +3 -1
- package/styles/material.css +3 -1
- package/styles/tailwind-dark.css +3 -1
- package/styles/tailwind.css +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,19 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- `#I427528` - First column missing highlight when tabbing into grid issue has been fixed.
|
|
10
|
+
- `#I427309` - API document has wrong information issue has been fixed.
|
|
11
|
+
- `#I423348` - Autofit on the columns is not work as expected in the frozen grid has been fixed.
|
|
12
|
+
- `#I419759` - Column Reordering is not working fine with Frozen column and hidden columns has been fixed.
|
|
13
|
+
- `#I416705` - Alignment issue with row drag and drop and frozen columns in stacked headers has been fixed.
|
|
14
|
+
- `#I424387` - Misalignment has been fixed when applying auto-fit for frozen columns with `allowtextwrap`.
|
|
15
|
+
|
|
16
|
+
## 20.4.43 (2023-01-10)
|
|
17
|
+
|
|
18
|
+
### Grid
|
|
19
|
+
|
|
20
|
+
#### Bug Fixes
|
|
21
|
+
|
|
9
22
|
- `#I425228` - Exception is thrown when exporting the grid with custom aggregate issue has been fixed.
|
|
10
23
|
- `#F179549` - `colSpan` is not working with Frozen Grid issue has been fixed.
|
|
11
24
|
- `#I428130` - Group indent cell width is not properly set has been fixed.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-grids.umd.js
|
|
3
|
-
* version : 20.4.
|
|
3
|
+
* version : 20.4.44
|
|
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
|
|
@@ -1128,6 +1128,7 @@ exports.resetRowIndex = ej2Grids.resetRowIndex;
|
|
|
1128
1128
|
exports.compareChanges = ej2Grids.compareChanges;
|
|
1129
1129
|
exports.setRowElements = ej2Grids.setRowElements;
|
|
1130
1130
|
exports.splitFrozenRowObjectCells = ej2Grids.splitFrozenRowObjectCells;
|
|
1131
|
+
exports.getExactFrozenMovableColumn = ej2Grids.getExactFrozenMovableColumn;
|
|
1131
1132
|
exports.gridActionHandler = ej2Grids.gridActionHandler;
|
|
1132
1133
|
exports.getGridRowObjects = ej2Grids.getGridRowObjects;
|
|
1133
1134
|
exports.getGridRowElements = ej2Grids.getGridRowElements;
|