Skip to content

Commit 59348e5

Browse files
author
pipeline
committed
v20.4.52 is released
1 parent bba7865 commit 59348e5

36 files changed

+178
-32
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.4.52 (2023-02-28)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I431692` - Resolved the Form based components script errors in the Angular 14.
12+
513
## 20.4.48 (2023-02-01)
614

715
### Common

components/base/src/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { isNullOrUndefined } from '@syncfusion/ej2-base';
88
export function applyMixins(derivedClass: any, baseClass: any[]): void {
99
baseClass.forEach(baseClass => {
1010
Object.getOwnPropertyNames(baseClass.prototype).forEach(name => {
11-
if (!derivedClass.prototype.hasOwnProperty(name) || baseClass.isFormBase) {
11+
if (!derivedClass.prototype.hasOwnProperty(name) || (baseClass.isFormBase && name !== 'constructor')) {
1212
derivedClass.prototype[name] = baseClass.prototype[name];
1313
}
1414
});

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.4.52 (2023-02-28)
6+
7+
### DateRangePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I438924` - The issue "Presets label text value overflows when we switch the culture" has been resolved.
12+
513
## 20.4.48 (2023-02-01)
614

715
- `#I426149` - The issue "show method target parameter not works as expected" has been resolved.

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-angular-calendars",
3-
"version": "20.4.48",
3+
"version": "20.4.51",
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 Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/charts/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+
## 20.4.52 (2023-02-28)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#F180554` - Fixed console error thrown when using the destroy method.
12+
- `#I437308` - Resolved accessibility issues in chart.
13+
- `#I436273` - Fixed issue with chart going out when zooming without clip rect in path.
14+
515
## 20.4.51 (2023-02-21)
616

717
### 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-angular-charts",
3-
"version": "20.4.49",
3+
"version": "20.4.51",
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 Angular",
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+
## 20.4.52 (2023-02-28)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#F180478` - Now, the performance of diagram while enabling virtualization is improved.
12+
- `#F180478` - Now, Overview is updated properly while enabling virtualization.
13+
- `#I422299` - Now, swimlane child nodes is selectable after save and load.
14+
515
## 20.4.50 (2023-02-14)
616

717
### Diagram

components/documenteditor/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+
## 20.4.52 (2023-02-28)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I436133` - When inserting, the endnote order was resolved.
12+
- `#I434491` - Resolved the Text off the page and outside the margin issue when paste the text.
13+
514
## 20.4.51 (2023-02-21)
615

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

components/dropdowns/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 20.4.51 (2023-02-21)
5+
## 20.4.52 (2023-02-28)
66

77
### Mention
88

99
#### Bug Fixes
1010

1111
- `#I430690` - The issue "Mention popup doesn't flip out when there is no space at the bottom" has been resolved.
1212

13-
### DropDownList
14-
15-
#### Bug Fixes
16-
17-
- `#I435114` - The issue "popup is not opening through keyboard action when dynamically changing the datasource value" has been resolved.
18-
1913
## 20.4.49 (2023-02-07)
2014

2115
### Dropdown Tree
@@ -2188,6 +2182,14 @@ DropDownList component contains a list of predefined values from which a single
21882182
- **Accessibility** - Provided with built-in accessibility support which helps to access all the DropDownList component features through the keyboard, screen readers, or other assistive technology devices.
21892183

21902184

2185+
## 20.4.51 (2023-02-21)
2186+
2187+
### DropDownList
2188+
2189+
#### Bug Fixes
2190+
2191+
- `#I435114` - The issue "popup is not opening through keyboard action when dynamically changing the datasource value" has been resolved.
2192+
21912193
## 20.4.50 (2023-02-14)
21922194

21932195
### ComboBox

0 commit comments

Comments
 (0)