Skip to content

Commit 0649046

Browse files
author
pipeline
committed
v20.1.58 is released
1 parent f30a1ab commit 0649046

File tree

37 files changed

+154
-26
lines changed

37 files changed

+154
-26
lines changed

components/base/CHANGELOG.md

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

1919
- `#SF-377536` - The issue with "Facing an Warning error while running in development mode in Vue 3" has been resolved.
2020

21-
## 20.1.51 (2022-04-26)
21+
## 20.1.52 (2022-05-04)
2222

2323
### Common
2424

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-vue-base",
3-
"version": "20.1.56",
3+
"version": "20.1.57",
44
"description": "A common package of Essential JS 2 base Vue libraries, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/calendars/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+
## 20.1.58 (2022-05-31)
6+
7+
### DatePicker
8+
9+
#### Bug Fixes
10+
11+
- `#F34697` - Issue with "able to clear the input value using clear button when component in readonly mode" has been resolved.
12+
513
## 20.1.57 (2022-05-24)
614

715
### DateRangePicker

components/circulargauge/CHANGELOG.md

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

66
## [Unreleased]
77

8-
## 20.1.57 (2022-05-24)
8+
## 20.1.58 (2022-05-31)
99

1010
### Circular Gauge
1111

components/diagrams/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-
## 20.1.57 (2022-05-24)
5+
## 20.1.58 (2022-05-31)
66

77
### Diagram
88

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 20.1.58 (2022-05-31)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I378991` - Resolved the corruption issue in exporting the document with chart.
12+
- `#I378564` - Resolved the script error in replacing more than 100 items.
13+
- `#I378450`, `#I373175` - Resolved the script error in deleting the tracked content.
14+
- `#I376819` - Resolved the issue in saving the document with track changes.
15+
- `#I375984` - Resolved the script error on scrolling the document.
16+
- `#I375559` - Table with wrapping styles is now preserved properly.
17+
- `#I375504` - Resolved the script error in importing form field.
18+
- `#I375369` - Resolved the layouting issue after after editing.
19+
520
## 20.1.57 (2022-05-24)
621

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

33
## [Unreleased]
44

5+
## 20.1.58 (2022-05-31)
6+
7+
### AutoComplete
8+
9+
#### Bug Fixes
10+
11+
- `#F34768` - Issue with "change event argument `IsInteracted` returns wrong value while rendering component with disabled custom value" has been resolved
12+
513
## 20.1.57 (2022-05-24)
614

715
### Dropdown Tree

components/dropdowns/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-dropdowns",
3-
"version": "20.1.56",
3+
"version": "20.1.57",
44
"description": "Essential JS 2 DropDown Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/dropdowns/src/auto-complete/autocomplete.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ export class AutoCompleteComponent extends ComponentBase {
196196
return this.ej2Instances.getItems();
197197
}
198198

199-
public hidePopup(): void {
200-
return this.ej2Instances.hidePopup();
199+
public hidePopup(e?: Object): void {
200+
return this.ej2Instances.hidePopup(e);
201201
}
202202

203203
public hideSpinner(): void {

0 commit comments

Comments
 (0)