Skip to content

Commit f13c9ea

Browse files
author
pipeline
committed
v23.1.40 is released
1 parent a7a1d75 commit f13c9ea

File tree

40 files changed

+170
-31
lines changed

40 files changed

+170
-31
lines changed

components/buttons/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-
## 23.1.39 (2023-10-04)
5+
## 23.1.40 (2023-10-10)
66

77
### Checkbox
88

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 23.1.40 (2023-10-10)
6+
7+
### Chart
8+
9+
- `#I499384` - Now the chart series is getting focused properly after legend click.
10+
511
## 23.1.39 (2023-10-04)
612

713
### 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": "23.1.38",
3+
"version": "23.1.39",
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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## 23.1.40 (2023-10-10)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I184539` - Now, BPMN Group shape will Function Like Subprocess.
12+
- `#I484335` - Now, highlighter rendered properly on hovering ports and nodes.
13+
- `#F183609` - Now, External entries are added in startgroup and endgroup action.
14+
515
## 23.1.39 (2023-10-04)
616

717
### 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": "23.1.38",
3+
"version": "23.1.39",
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/diagrams/src/diagram/diagram.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ export let DiagramComponent: DefineVueComponent<DiagramModel> = vueDefineCompon
214214
exportImage(image: string, options: Object): void {
215215
return this.ej2Instances.exportImage(image, options);
216216
},
217-
findElementUnderMouse(obj: Object, position: Object, padding?: number): Object {
218-
return this.ej2Instances.findElementUnderMouse(obj, position, padding);
217+
findElementUnderMouse(obj: Object, position: Object, diagram: Object, padding?: number): Object {
218+
return this.ej2Instances.findElementUnderMouse(obj, position, diagram, padding);
219219
},
220220
findObjectUnderMouse(objects: undefined[], action: Object, inAction: boolean): Object {
221221
return this.ej2Instances.findObjectUnderMouse(objects, action, inAction);

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 23.1.40 (2023-10-10)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I483749` - Resolved the table title and description preservation issue in server side save.
12+
- `#I504150` - Resolved the svg image issue.
13+
- `#I485502` - Resolved the URL image refresh issue while opening the exported document.
14+
- `#I505977` - Heading style destroyed when insert hyperlink.
15+
- `#I506107` - Resolved the issue, footnote content is disappeared when open saved sfdt.
16+
- `#I506619` - Resolved the exporting issue of attached sfdt.
17+
- `#I503945` - Script error occurred when tried to save the document using java server.
18+
- `#I483749` - Resolved the table title and description preservation issue in server side save.
19+
- `#I504150` - Resolved the svg image issue.
20+
- `#I485502` - Resolved the URL image refresh issue while opening the exported document.
21+
- `#I505977` - Heading style destroyed when insert hyperlink.
22+
- `#I506107` - Resolved the issue, footnote content is disappeared when open saved sfdt.
23+
- `#I506619` - Resolved the exporting issue of attached sfdt.
24+
- `#I503945` - Script error occurred when tried to save the document using java server.
25+
26+
#### New Features
27+
28+
- `#I461227` - Added text importing in client side.
29+
530
## 23.1.39 (2023-10-04)
631

732
### Document Editor

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": "23.1.38",
3+
"version": "23.1.39",
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/filemanager/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+
## 23.1.40 (2023-10-10)
6+
7+
### FileManager
8+
9+
#### Bug Fixes
10+
11+
- `#I506921` - The issue with the breadcrumb bar path in the File Manager component has been resolved.
12+
- `#I503082` - The issue with the search placeholder is not updated properly after drag and drop in File Manager has been resolved.
13+
514
## 23.1.39 (2023-10-04)
615

716
### FileManager

components/filemanager/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-filemanager",
3-
"version": "23.1.38",
3+
"version": "23.1.39",
44
"description": "Essential JS 2 FileManager Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)