@syncfusion/ej2-angular-grids 31.1.20 → 31.1.21
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/CHANGELOG.md
CHANGED
|
@@ -6,11 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
-
- `#
|
|
10
|
-
- `#
|
|
11
|
-
- `#
|
|
12
|
-
- `#I762476` - Removed the `aria-selected` attribute from the detail row's expand and collapse icon cell to resolve an issue with screen reader compatibility.
|
|
13
|
-
- `#I761478` - Added clear type definitions to the `IFilterMUI` interface in the Grid component to improve type safety.
|
|
9
|
+
- `#I759048` - Fixed aggregate calculation issue during edit and save operations in `VirtualScrolling`.
|
|
10
|
+
- `#FB69913` - Fixed the script error that occurs when opening the custom filter dialog on a device in an adaptive grid with `adaptiveUIMode` set to Desktop.
|
|
11
|
+
- `#FB70042` - Added native event details into the `recordClick` and `recordDoubleClick` events.
|
|
14
12
|
|
|
15
13
|
## 31.1.17 (2025-09-05)
|
|
16
14
|
|
|
@@ -2801,4 +2799,15 @@ Grid component is used to display and manipulate tabular data with configuration
|
|
|
2801
2799
|
- **Hierarchy Grid** - It is used to display table data in hierarchical structure which can show or hide by clicking on expand or collapse button.
|
|
2802
2800
|
- **Print and Exporting** - Provides the option to print and exporting grid records.
|
|
2803
2801
|
- **RTL** - Provides a full-fledged right-to-left mode which aligns content in the Grid component from right to left.
|
|
2804
|
-
- **Localization** - Provides inherent support to localize the UI.
|
|
2802
|
+
- **Localization** - Provides inherent support to localize the UI.## 31.1.20 (2025-09-10)
|
|
2803
|
+
|
|
2804
|
+
### Grid
|
|
2805
|
+
|
|
2806
|
+
#### Bug Fixes
|
|
2807
|
+
|
|
2808
|
+
- `#I754033` - Fixed a problem where column resizing didn't work properly if the total column width was more than 100%.
|
|
2809
|
+
- `#I762851` - Resolved an issue where clearing the filter caused the pagination dropdown to incorrectly show `All`.
|
|
2810
|
+
- `#I750250` - Resolved a memory leak issue in the Grid component that occurred during the column reordering process.
|
|
2811
|
+
- `#I762476` - Removed the `aria-selected` attribute from the detail row's expand and collapse icon cell to resolve an issue with screen reader compatibility.
|
|
2812
|
+
- `#I761478` - Added clear type definitions to the `IFilterMUI` interface in the Grid component to improve type safety.
|
|
2813
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-angular-grids",
|
|
3
|
-
"version": "31.1.
|
|
3
|
+
"version": "31.1.21",
|
|
4
4
|
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Angular",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@syncfusion/ej2-base": "~31.1.20",
|
|
10
10
|
"@syncfusion/ej2-angular-base": "~31.1.17",
|
|
11
|
-
"@syncfusion/ej2-grids": "31.1.
|
|
11
|
+
"@syncfusion/ej2-grids": "31.1.21"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"angular",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-grids';
|
|
4
|
-
exports.pkgVer = '^31.1.
|
|
4
|
+
exports.pkgVer = '^31.1.21';
|
|
5
5
|
exports.moduleName = 'GridModule, PagerModule';
|
|
6
|
-
exports.themeVer = '~31.1.
|
|
6
|
+
exports.themeVer = '~31.1.21';
|