Skip to content

Commit 487f75d

Browse files
author
pipeline
committed
v32.2.7 is released
1 parent 3a35aea commit 487f75d

File tree

37 files changed

+204
-40
lines changed

37 files changed

+204
-40
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.2.5 (2026-02-17)
5+
## 32.2.7 (2026-02-24)
66

77
### Barcode
88

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.2.5 (2026-02-17)
5+
## 32.2.7 (2026-02-24)
66

77
### Block Editor
88

components/buttons/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-buttons",
3-
"version": "32.1.24",
3+
"version": "32.2.3",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/calendars/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.2.5 (2026-02-17)
5+
## 32.2.7 (2026-02-24)
66

77
### DatePicker
88

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 32.2.5 (2026-02-17)
5+
## 32.2.7 (2026-02-24)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `I811385` - The chart data label now display correctly in the top and bottom positions when the angle is set to 90 degree.
12+
13+
## 32.1.25 (2026-01-24)
614

715
### Chart
816

components/diagrams/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 32.2.5 (2026-02-17)
5+
## 32.2.7 (2026-02-24)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I812514` - Resolved Incorrect State Values in sourcePointChange and targetPointChange Events.
12+
13+
## 32.2.4 (2026-02-11)
614

715
### Diagram
816

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.2.3",
3+
"version": "32.2.4",
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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 32.2.7 (2026-02-24)
6+
7+
### DocumentEditor
8+
9+
#### Bug Fixes
10+
11+
`#I796630` - Fixed a layout mismatch issue between the Document Editor and Microsoft Word.
12+
513
## 32.2.5 (2026-02-17)
614

715
### 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.2.4",
3+
"version": "32.2.5",
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",

components/dropdowns/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 32.2.5 (2026-02-17)
5+
## 32.2.7 (2026-02-24)
6+
7+
### DropDownTree
8+
9+
#### Feature
10+
11+
- `#I803243` - Introduced the new `disableHtmlEncode` property to control how text content is rendered in the Dropdown Tree. When set to `true`, the component will render raw text exactly as provided (including HTML tags or special characters) without encoding or truncation. To preserve and render raw HTML content correctly, `enableHtmlSanitizer` must also be set to `false`. This update provides greater flexibility in displaying literal text and HTML content within Dropdown Tree nodes.
12+
13+
**Example Usage**
14+
15+
```typescript
16+
import { DropDownTree } from '@syncfusion/ej2-dropdowns';
17+
let data: Object[] = [ { id: '1', name: 'Australia' }, { id: '2', name: 'New<york' }, { id: '3', name: 'Normal Text' } ];
18+
//Initialize DropDownTree control
19+
let dropDownTreeObj: DropDownTree = new DropDownTree({
20+
fields: { dataSource: data, value: 'id', text: 'name' },
21+
disableHtmlEncode: true,
22+
enableHtmlSanitizer: false
23+
});
24+
//Render initialized DropDownTree
25+
dropDownTreeObj.appendTo('#ddt');
26+
```
27+
28+
## 32.2.4 (2026-02-11)
629

730
### DropDownList
831

0 commit comments

Comments
 (0)