Skip to content

Commit bab97e7

Browse files
author
pipeline
committed
v32.1.22 is released
1 parent dfb9977 commit bab97e7

File tree

37 files changed

+168
-26
lines changed

37 files changed

+168
-26
lines changed

components/barcodegenerator/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 32.1.21 (2025-12-30)
5+
## 32.1.22 (2026-01-06)
66

77
### Barcode
88

components/base/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 32.1.22 (2026-01-06)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I71325` - Fixed issue where data count did not update after changing the data source in React Grid
12+
513
## 32.1.21 (2025-12-30)
614

715
### Common

components/base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-base",
3-
"version": "32.1.20",
3+
"version": "32.1.21",
44
"description": "A common package of Essential JS 2 React base, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/base/src/component-base.ts

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,17 @@ export class ComponentBase<P, S> extends React.Component<P, S> {
177177
if (dProps['children']) {
178178
delete dProps['children'];
179179
}
180-
if (Object.keys(dProps).length) {
181-
this.isSelfTriggeredEvent = true;
180+
if (this.getModuleName() === 'grid') {
181+
const controlledProps: string[] = [
182+
'sortSettings', 'allowPaging', 'filterSettings', 'pageSettings',
183+
'groupSettings', 'searchSettings', 'allowSorting', 'allowFiltering'
184+
];
185+
if (
186+
Object.keys(dProps).length > 0 &&
187+
Object.keys(dProps).some((key: string) => controlledProps.indexOf(key) !== -1)
188+
) {
189+
this.isSelfTriggeredEvent = true;
190+
}
182191
}
183192
if (this.initRenderCalled && (this.canDelayUpdate || (prevProps as any).delayUpdate)) {
184193
setTimeout(() => {

components/blockeditor/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 32.1.21 (2025-12-30)
5+
## 32.1.22 (2026-01-06)
66

77
### Block Editor
88

components/charts/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 32.1.22 (2026-01-06)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `I798374` - Fixed an issue where series animations did not animate from right to left when RTL mode was enabled.
12+
513
## 32.1.19 (2025-12-16)
614

715
### Chart

components/diagrams/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
## 32.1.22 (2026-01-06)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I784056` - The moveObject function in the layer will now work correctly for nested groups.
12+
- `#I795676` - The exported diagram will properly apply the gradient style to nodes with corner radius.
13+
514
## 32.1.21 (2025-12-30)
615

716
### Diagram

components/diagrams/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-diagrams",
3-
"version": "32.1.20",
3+
"version": "32.1.21",
44
"description": "Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/documenteditor/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## [Unreleased]
44

5+
## 32.1.22 (2026-01-06)
6+
7+
### DocumentEditor
8+
9+
#### Bug Fixes
10+
11+
`#787822` - Fixed issue where error words were underlined when typing new words.
12+
`#789001` - Resolved spell check issue where the loader appeared during "Change" and "Ignore" actions.
13+
`#792760` - Fixed problem where applying table shading left a gap at the right corner of the table.
14+
`#786142` - Resolved exception occurring during SFDT to DOCX conversion after adding a comment.
15+
516
## 32.1.21 (2025-12-30)
617

718
### DocumentEditor

components/documenteditor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-documenteditor",
3-
"version": "32.1.20",
3+
"version": "32.1.21",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)