@syncfusion/ej2-angular-grids 20.2.37-ngcc → 20.2.39-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 +29 -0
- package/dist/ej2-angular-grids.umd.js +3 -1
- package/dist/ej2-angular-grids.umd.js.map +1 -1
- package/dist/ej2-angular-grids.umd.min.js +2 -2
- package/package.json +16 -16
- 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 +18 -8
- package/styles/bootstrap.css +17 -7
- package/styles/bootstrap4.css +39 -20
- package/styles/bootstrap5-dark.css +19 -5
- package/styles/bootstrap5.css +19 -5
- package/styles/excel-filter/bootstrap-dark.css +4 -0
- package/styles/excel-filter/bootstrap.css +4 -0
- package/styles/excel-filter/bootstrap4.css +4 -0
- package/styles/excel-filter/bootstrap5-dark.css +4 -0
- package/styles/excel-filter/bootstrap5.css +4 -0
- package/styles/excel-filter/fabric-dark.css +4 -0
- package/styles/excel-filter/fabric.css +4 -0
- package/styles/excel-filter/fluent-dark.css +4 -0
- package/styles/excel-filter/fluent.css +4 -0
- package/styles/excel-filter/highcontrast-light.css +4 -0
- package/styles/excel-filter/highcontrast.css +4 -0
- package/styles/excel-filter/material-dark.css +4 -0
- package/styles/excel-filter/material.css +4 -0
- package/styles/excel-filter/tailwind-dark.css +4 -0
- package/styles/excel-filter/tailwind.css +4 -0
- package/styles/fabric-dark.css +17 -7
- package/styles/fabric.css +19 -9
- package/styles/fluent-dark.css +21 -7
- package/styles/fluent.css +21 -7
- package/styles/grid/bootstrap-dark.css +14 -8
- package/styles/grid/bootstrap.css +13 -7
- package/styles/grid/bootstrap4.css +35 -20
- package/styles/grid/bootstrap5-dark.css +15 -5
- package/styles/grid/bootstrap5.css +15 -5
- package/styles/grid/fabric-dark.css +13 -7
- package/styles/grid/fabric.css +15 -9
- package/styles/grid/fluent-dark.css +17 -7
- package/styles/grid/fluent.css +17 -7
- package/styles/grid/highcontrast-light.css +9 -3
- package/styles/grid/highcontrast.css +13 -7
- package/styles/grid/material-dark.css +14 -8
- package/styles/grid/material.css +13 -7
- package/styles/grid/tailwind-dark.css +13 -6
- package/styles/grid/tailwind.css +13 -6
- package/styles/highcontrast-light.css +13 -3
- package/styles/highcontrast.css +17 -7
- package/styles/material-dark.css +18 -8
- package/styles/material.css +17 -7
- package/styles/tailwind-dark.css +17 -6
- package/styles/tailwind.css +17 -6
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,35 @@
|
|
|
4
4
|
|
|
5
5
|
### Grid
|
|
6
6
|
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#I377182` - DOM leak with Group Caption Template issue has been fixed.
|
|
10
|
+
- `#I388087` - Grid navigation with TAB stops working when the `isFrozen` is enabled issue has been fixed.
|
|
11
|
+
- `#F173914` - Inside template function state value is not updated issue has been fixed.
|
|
12
|
+
- `#I387341` - Increase in Row Height when editing enabled has been fixed.
|
|
13
|
+
- `#F175548` - The `dataStateChange` event triggering at initial grid rendering has been fixed.
|
|
14
|
+
- `#I389565` - `cssClass` property is not updated dynamically is fixed.
|
|
15
|
+
- `#I385208` - Wrong row drop index when dropped in external grid has been fixed.
|
|
16
|
+
- `#I386683` - `disableHtmlEncode` property is not working in Excel Filter is fixed.
|
|
17
|
+
- `#I376845` - Memory leak issue on command column has been fixed.
|
|
18
|
+
- `#F175044` - Image is not rendered in Multiple Grid Excel Export issue has been fixed.
|
|
19
|
+
|
|
20
|
+
## 20.2.38 (2022-07-12)
|
|
21
|
+
|
|
22
|
+
### Grid
|
|
23
|
+
|
|
24
|
+
#### Bug Fixes
|
|
25
|
+
|
|
26
|
+
- `#I376131` - when cell containing the checkbox is double clicked the next cell content gets highlighted issue has been fixed.
|
|
27
|
+
- `#I385933` - Custom format on number column is not working properly in Grid pdf export issue has been fixed.
|
|
28
|
+
- `#FB35672` - Empty grid in batch edit mode throws script error has been fixed.
|
|
29
|
+
- `#I382789` - Tab key Navigation not working When `allowEditing` set to false with `RowDragandDrop` is fixed.
|
|
30
|
+
- `#FB34522` - Column reorder not working properly in column freeze enabled is fixed.
|
|
31
|
+
|
|
32
|
+
## 20.2.36 (2022-06-30)
|
|
33
|
+
|
|
34
|
+
### Grid
|
|
35
|
+
|
|
7
36
|
#### New Features
|
|
8
37
|
|
|
9
38
|
- `#I359178` - Provided support to show clear icon in the Grid search text box. It helps to clear the text in search text box and also clear the searching in Grid control too. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/bootstrap5/grid/searching)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-grids.umd.js
|
|
3
|
-
* version : 20.2.
|
|
3
|
+
* version : 20.2.39
|
|
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
|
|
@@ -1152,6 +1152,7 @@ exports.getRowIndexFromElement = ej2Grids.getRowIndexFromElement;
|
|
|
1152
1152
|
exports.generateExpandPredicates = ej2Grids.generateExpandPredicates;
|
|
1153
1153
|
exports.getPredicates = ej2Grids.getPredicates;
|
|
1154
1154
|
exports.getGroupKeysAndFields = ej2Grids.getGroupKeysAndFields;
|
|
1155
|
+
exports.findCellIndex = ej2Grids.findCellIndex;
|
|
1155
1156
|
exports.created = ej2Grids.created;
|
|
1156
1157
|
exports.destroyed = ej2Grids.destroyed;
|
|
1157
1158
|
exports.load = ej2Grids.load;
|
|
@@ -1428,6 +1429,7 @@ exports.refreshInfinitePersistSelection = ej2Grids.refreshInfinitePersistSelecti
|
|
|
1428
1429
|
exports.refreshInfiniteEditrowindex = ej2Grids.refreshInfiniteEditrowindex;
|
|
1429
1430
|
exports.afterFilterColumnMenuClose = ej2Grids.afterFilterColumnMenuClose;
|
|
1430
1431
|
exports.beforeCheckboxfilterRenderer = ej2Grids.beforeCheckboxfilterRenderer;
|
|
1432
|
+
exports.commandColumnDestroy = ej2Grids.commandColumnDestroy;
|
|
1431
1433
|
exports.rowCell = ej2Grids.rowCell;
|
|
1432
1434
|
exports.gridHeader = ej2Grids.gridHeader;
|
|
1433
1435
|
exports.gridContent = ej2Grids.gridContent;
|