Skip to content

Commit 08b584c

Browse files
author
pipeline
committed
v29.2.4 is released
1 parent ab92a95 commit 08b584c

File tree

44 files changed

+275
-109
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+275
-109
lines changed

README.md

Lines changed: 72 additions & 72 deletions
Large diffs are not rendered by default.

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-
## 29.1.41 (2025-05-06)
5+
## 29.2.4 (2025-05-14)
66

77
### Barcode
88

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-
## 29.1.41 (2025-05-06)
5+
## 29.2.4 (2025-05-14)
66

77
### DateRangePicker
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+
## 29.2.4 (2025-05-14)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#F67379` - Now the opacity updates properly on the data point after the tooltip fades out.
12+
513
## 29.1.41 (2025-05-06)
614

715
### Accumulation Chart

components/charts/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-vue-charts",
3-
"version": "29.1.40",
3+
"version": "29.1.41",
44
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/diagrams/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+
## 29.2.4 (2025-05-14)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I952617` - Connectors in the layout will now render with the correct appearance when a specific type is explicitly defined in the `getConnectorDefaults` function.
12+
- `#F196439` - Independent nodes in complex hierarchical trees will now render without overlapping other nodes.
13+
- `#I700206` - Now connectors will not overlap nodes of varying size in layout.
14+
- `#I713490` - Now the nodes will have property defined in `getNodeDefaults` on performing undo and redo.
15+
516
## 29.1.41 (2025-05-06)
617

718
### 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-vue-diagrams",
3-
"version": "29.1.40",
3+
"version": "29.1.41",
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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 29.2.4 (2025-05-14)
6+
7+
### DocumentEditor
8+
9+
#### Bug Fixes
10+
11+
- `#I709841`,`#I722525` - Improved editing performance when spell check is enabled.
12+
- `#I716525` - Fixed performance issues related to bookmark manipulation during editing operations.
13+
- `#I715428` - Resolved a script error that occurred when loading SFDT without injecting the editor module.
14+
- `#I716353` - Fixed an issue where table cell content was clipped when zooming out.
15+
- `#I709838` - Resolved a script error that occurred when exporting after performing a delete operation with track changes enabled.
16+
17+
#### Features
18+
19+
- `#I682661` - Added support for removing editing region in the current selection position.
20+
- `#I706446` - Added support for retrieving fields within the selected range.
21+
- `#I712473` - Added screen reader support in Document Editor.
22+
23+
## 29.1.41 (2025-05-06)
24+
25+
### DocumentEditor
26+
27+
#### Bug Fixes
28+
29+
- `#I712778` - Fixed an issue where a new paragraph was inserted outside the editable region in protected documents.
30+
- `#I713902` - Corrected the underline rendering for the appropriate word during spell check.
31+
- `#I710270` - Resolved a table formatting issue when applying shading to specific cells.
32+
- `#I707681` - Fixed the DocumentEditor refresh issue when the spell checker is enabled.
33+
- `#I701076` - Addressed an issue where bullet points were not applied correctly when pasting SFDT content.
34+
- `#I719946` - Resolved a script error that occurred during repeated find-and-replace operations.
35+
536
## 29.1.40 (2025-04-29)
637

738
### 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-vue-documenteditor",
3-
"version": "29.1.40",
3+
"version": "29.1.41",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/documenteditor/src/document-editor/documenteditor.component.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,9 @@ export let DocumentEditorComponent: DefineVueComponent<DocumentEditorModel> = v
200200
updateFields(): void {
201201
return this.ej2Instances.updateFields();
202202
},
203+
verbelizeFromCursorLocation(): void {
204+
return this.ej2Instances.verbelizeFromCursorLocation();
205+
},
203206
}
204207
});
205208

@@ -254,7 +257,8 @@ export type DocumentEditorComponent = typeof ComponentBase & {
254257
showOptionsPane(): void;
255258
showRestrictEditingPane(show?: boolean): void;
256259
showXmlPane(): void;
257-
updateFields(): void
260+
updateFields(): void;
261+
verbelizeFromCursorLocation(): void
258262
};
259263

260264
export const DocumentEditorPlugin = {

0 commit comments

Comments
 (0)