Skip to content

Commit aa7bcd8

Browse files
author
pipeline
committed
v22.2.12 is released
1 parent c8207a0 commit aa7bcd8

File tree

38 files changed

+220
-49
lines changed

38 files changed

+220
-49
lines changed

components/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 22.2.12 (2023-09-05)
6+
7+
### DatePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I491906` - Fixed an issue where the values were not being cleared or changed while the popup was open and the user focus out.
12+
13+
### DateRangePicker
14+
15+
#### Bug Fixes
16+
17+
- `#I491906` - Fixed an issue where the values were not being cleared or changed while the popup was open and the user focus out.
18+
19+
### DateTimePicker
20+
21+
#### Bug Fixes
22+
23+
- `#I491906` - Fixed an issue where the values were not being cleared or changed while the popup was open and the user focus out.
24+
525
## 22.2.11 (2023-08-29)
626

727
### DateRangePicker

components/calendars/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-calendars",
3-
"version": "22.2.10",
3+
"version": "22.2.11",
44
"description": "A complete package of date or time components with built-in features such as date formatting, inline editing, multiple (range) selection, range restriction, month and year selection, strict mode, and globalization. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

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+
## 22.2.12 (2023-09-05)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#F184251` - Fixed an issue in axis label position when label position set to inside for bar series.
12+
513
## 22.2.11 (2023-08-29)
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": "22.2.10",
3+
"version": "22.2.11",
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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
## [Unreleased]
44

5+
## 22.2.12 (2023-09-05)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I469741` - Now, group node rotation and undo working properly.
12+
- `#F184075` - Now, BPMN node subtype visibles whiles changing the node visibility issue is resolved.
13+
- `#I489954` - Now, Connectors are routed correctly while enable routing set as true.
14+
- `#I493510` -Now, Expand and collapse working properly at runtime.
15+
- `#I490046` - In the positionChange event, during the completed state, old and new values remain identical issue is resolved.
16+
517
## 22.2.11 (2023-08-29)
618

719
### 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": "22.2.10",
3+
"version": "22.2.11",
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
@@ -334,8 +334,8 @@ export let DiagramComponent = vueDefineComponent({
334334
resetSegments(): void {
335335
return this.ej2Instances.resetSegments();
336336
},
337-
rotate(obj: Object | Object | Object, angle: number, pivot?: Object): boolean {
338-
return this.ej2Instances.rotate(obj, angle, pivot);
337+
rotate(obj: Object | Object | Object, angle: number, pivot?: Object, rotateUsingHandle?: boolean): boolean {
338+
return this.ej2Instances.rotate(obj, angle, pivot, rotateUsingHandle);
339339
},
340340
sameSize(option: Object, objects?: undefined[]): void {
341341
return this.ej2Instances.sameSize(option, objects);

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+
## 22.2.12 (2023-09-05)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I482661` - Auto fit table with preferred width table is layouted properly in Document editor
12+
- `#I458332` - Now, able to search a word & apply properties like alignment(left/right/center) inside shape.
13+
- `#I494044` - Resolved the exception issue while exporting a document in server side.
14+
- `#I485502` - Now, Date field opened properly in form filling mode.
15+
516
## 22.2.11 (2023-08-29)
617

718
### 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": "22.2.10",
3+
"version": "22.2.11",
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/dropdowns/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 22.2.12 (2023-09-05)
6+
7+
### MultiSelect
8+
9+
#### Bug Fixes
10+
11+
- `#I483661` - Fixed the issue where the selected value was not displayed correctly when using a character inside the datasource.
12+
13+
## 22.2.11 (2023-08-29)
14+
15+
### Dropdown Tree
16+
17+
#### Bug Fixes
18+
19+
- `#I492834` - An issue with the `noRecordsTemplate` property of the React Dropdown Tree component has been resolved.
20+
521
## 22.2.10 (2023-08-22)
622

723
### DropDown List

0 commit comments

Comments
 (0)