Skip to content

Commit f30a1ab

Browse files
author
pipeline
committed
v20.1.57 is released
1 parent 75852ae commit f30a1ab

File tree

39 files changed

+175
-31
lines changed

39 files changed

+175
-31
lines changed

components/base/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.57 (2022-05-24)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I362337` - The issue with the "Row template in the Grid does not work properly in vue 3" has been resolved.
12+
513
## 20.1.56 (2022-05-17)
614

715
### Common

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.55",
3+
"version": "20.1.56",
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/base/src/template.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export function compile(
4242
return vue3Slots[templateElement]({ data: data });
4343
}
4444
})
45-
.mount("#" + id);
45+
.mount((context.getModuleName() === 'grid') ? ("#" + pid ) : ("#" + id));
4646
returnEle = ele.childNodes;
4747
detach(ele);
4848
} else {
@@ -91,7 +91,7 @@ export function compile(
9191
templateCompRef.data = function () { return tempRef; };
9292
allVue
9393
.createApp(templateCompRef)
94-
.mount("#" + id);
94+
.mount((context.getModuleName() === 'grid') ? ("#" + pid ) : ("#" + id));
9595
returnEle = ele.childNodes;
9696
detach(ele);
9797
} else if (typeof templateElement === "string") {

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.57 (2022-05-24)
6+
7+
### DateRangePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I378357` - Issue with "tab key navigation is not working between calendars" has been resolved.
12+
513
## 19.3.46 (2021-10-19)
614

715
### TimePicker

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": "20.1.52",
3+
"version": "20.1.57",
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/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": "20.1.55",
3+
"version": "20.1.56",
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/circulargauge/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
55

66
## [Unreleased]
77

8+
## 20.1.57 (2022-05-24)
9+
10+
### Circular Gauge
11+
12+
#### New Features
13+
14+
- `#I365344` - Dash array can now be customized in the border of the Circular Gauge.
15+
816
## 19.4.43 (2022-01-18)
917

1018
### CircularGauge

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

components/diagrams/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.57 (2022-05-24)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `F173877` - Now, Node template has been rendered properly in layout.
12+
513
## 20.1.55 (2022-05-12)
614

715
### Diagram

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 20.1.57 (2022-05-24)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I373287` - Resolved the control hanging issue while opening a document with table.
12+
- `#FB34847` - Resolved the script error thrown on re-updating the custom toolbar.
13+
- `#I376882` - Resolved the issue on applying highlight color after replacing the search text.
14+
- `#I372421` - Resolved the insert table's paragraph format inheritance from previous paragraph.
15+
- `#I378924` - Resolved the text frame margin saving issue in sfdt export.
16+
- `#I375700` - Resolved the footnote misplacement in the initial layout.
17+
- `#I371641` - Resolved the minimum column width causes in-finite lopping issue when resizing table.
18+
519
## 20.1.56 (2022-05-17)
620

721
### Document Editor

0 commit comments

Comments
 (0)