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

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-angular-dropdowns",
3-
"version": "20.4.50",
3+
"version": "20.4.51",
44
"description": "Essential JS 2 DropDown Components for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

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-angular-filemanager",
3-
"version": "20.4.48",
3+
"version": "20.4.51",
44
"description": "Essential JS 2 FileManager Component for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
## [Unreleased]
44

5+
## 20.4.52 (2023-02-28)
6+
7+
### Gantt
8+
9+
#### Bug Fixes
10+
11+
-`I435386`- Column template not working in `Vue` platform issue has been fixed.
12+
-`I426170`- Incorrect Start Date Update for Unscheduled Task When Editing Parent Start Date.
13+
-`I432910`- zoom in not disabled issue has been fixed.
14+
-`I431348`- Updating Day Working Time Property Dynamically in UTC Timezone Results in Invalid Dates.
15+
-`I394676`- Incorrect Date in milestone while on load and editing issue has been fixed.
16+
-`#I436476`- Gantt Task doesn't get updated after Batch Update issue is fixed.
17+
18+
19+
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
20+
521
## 20.4.51 (2023-02-21)
622

723
### Gantt
@@ -12,7 +28,8 @@
1228
-`#I434098`- Script error occurs when updating resources dynamically without child mapping.
1329

1430

15-
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
31+
-`#I434098`- Script error occurs when updating resources dynamically without child mapping.
32+
1633

1734
## 20.4.50 (2023-02-14)
1835

components/gantt/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-gantt",
3-
"version": "20.4.50",
3+
"version": "20.4.51",
44
"description": "Essential JS 2 Gantt Component for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/grids/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+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#I429268` - Script error thrown on state change, with row template button click has been fixed.
12+
- `#I436447` - Improvement in Excel Filter search action and Custom Filter Dialog has been done.
13+
- `#I439694` - Resolved the issue where selecting columns in column chooser or navigating through columns was not being highlighted.
14+
515
## 20.4.51 (2023-02-21)
616

717
### Grid

components/grids/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-grids",
3-
"version": "20.4.50",
3+
"version": "20.4.51",
44
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/heatmap/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+
### Heatmap
8+
9+
#### Bug Fixes
10+
11+
- `#I437917` - Legend labels in the bottom and top positions will now be properly rendered.
12+
513
## 20.4.38 (2022-12-21)
614

715
### Heatmap

components/heatmap/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-heatmap",
3-
"version": "20.4.42",
3+
"version": "20.4.48",
44
"description": "Feature rich data visulization control used to visualize the matrix data where the individual values are represented as colors for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/imageeditor/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-image-editor",
3-
"version": "20.4.49",
3+
"version": "20.4.51",
44
"description": "Essential JS 2 ImageEditor for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/inputs/CHANGELOG.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,19 @@
22

33
## [Unreleased]
44

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

7-
### Uploader
7+
### MaskedTextBox
88

99
#### Bug Fixes
1010

11-
- `#I436425` - Issue with "Accessibility tool reports that duplicate ID value for the uploader component" has been resolved
11+
- `#I435597` - Resolved issue with pasting using keyboard shortcuts not working properly in Safari browser.
12+
13+
### Signature
14+
15+
#### Bug Fixes
16+
17+
- `#I433821` - Correcting the signature scaling issue while resizing the web browser has been resolved.
1218

1319
## 20.4.48 (2023-02-01)
1420

@@ -1294,6 +1300,14 @@ MaskedTextBox allows the user to enter the valid input only based on the provide
12941300
- **Accessibility** - provides built-in accessibility support which helps to access all the MaskedTextBox component features through keyboard, on-screen readers, or other assistive technology devices.
12951301

12961302

1303+
## 20.4.51 (2023-02-21)
1304+
1305+
### Uploader
1306+
1307+
#### Bug Fixes
1308+
1309+
- `#I436425` - Issue with "Accessibility tool reports that duplicate ID value for the uploader component" has been resolved
1310+
12971311
## 19.3.47 (2021-10-26)
12981312

12991313
### TextBox

components/inputs/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-inputs",
3-
"version": "20.4.48",
3+
"version": "20.4.51",
44
"description": "A package of Essential JS 2 input components such as Textbox, Color-picker, Masked-textbox, Numeric-textbox, Slider, Upload, and Form-validator that is used to get input from the users. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/kanban/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+
### Kanban
8+
9+
#### Bug Fixes
10+
11+
- `#I432638` - Now, when using the kanban `sortSettings` the cards are dropped and sorted properly.
12+
513
## 20.4.44 (2023-01-18)
614

715
### Kanban

components/kanban/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-kanban",
3-
"version": "20.4.44",
3+
"version": "20.4.48",
44
"description": "The Kanban board is an efficient way to visualize the workflow at each stage along its path to completion. The most important features available are Swim lane, filtering, and editing. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/maps/CHANGELOG.md

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

1212
## [Unreleased]
1313

14-
## 20.4.51 (2023-02-21)
14+
## 20.4.52 (2023-02-28)
1515

1616
### Maps
1717

components/navigations/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,19 @@
99
#### Bug Fixes
1010

1111
- `#I428766` - Alignment issue in TreeView node without a sub-child in RTL mode has been resolved.
12+
- `#I428002` - The accessibility related issues in the TreeView has been resolved.
13+
14+
### ContextMenu
15+
16+
#### Bug Fixes
17+
18+
- `#I439558` - The issue with "When removing all context menu items that contain icons using removeItems method, it thrown null reference error" has been resolved.
19+
20+
### Breadcrumb
21+
22+
#### Bug Fixes
23+
24+
- `#I437629` - Issue with "Breadcrumb overflow mode menu creates a dark point for multiple click " has been resolved.
1225

1326
## 20.4.49 (2023-02-07)
1427

components/navigations/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-navigations",
3-
"version": "20.4.49",
3+
"version": "20.4.51",
44
"description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/pdfviewer/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+
### PDF Viewer
8+
9+
#### Bug Fixes
10+
11+
- `#I436286` - Now, the script error is not occurred the enable shape annotation is set to false.
12+
- `#I429775` - Now that the problem with some specific document's slow rendering has been resolved.
13+
514
## 20.4.51 (2023-02-21)
615

716
### PDF Viewer

components/pdfviewer/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-pdfviewer",
3-
"version": "20.4.50",
3+
"version": "20.4.51",
44
"description": "Essential JS 2 PDF viewer Component for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)