Skip to content

Commit b1f1a28

Browse files
author
pipeline
committed
v20.3.52 is released
1 parent 51b1f95 commit b1f1a28

File tree

34 files changed

+119
-32
lines changed

34 files changed

+119
-32
lines changed

components/base/CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,16 @@
22

33
## [Unreleased]
44

5-
## 20.3.50 (2022-10-18)
5+
## 20.3.52 (2022-10-26)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I412969` - Component tags boolean property not updated properly in Angular 9.
12+
- `#I411249` - Resolved the script error throwing in complex array base.
13+
14+
## 20.3.47 (2022-09-29)
615

716
### Common
817

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

components/base/src/complex-array-base.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,13 @@ export class ComplexBase<T> {
4444
let templateProperties: string[] = Object.keys(this);
4545
for(let i = 0; i < templateProperties.length; i++) {
4646
var tempProp = getValue(templateProperties[i], this);
47-
if (typeof tempProp === 'object' && tempProp.elementRef && !getValue(templateProperties[i].indexOf('Ref') !== -1 ? templateProperties[i] : templateProperties[i] + 'Ref', this)){
47+
if (typeof tempProp === 'object' && tempProp && tempProp.elementRef && !getValue(templateProperties[i].indexOf('Ref') !== -1 ? templateProperties[i] : templateProperties[i] + 'Ref', this)){
4848
setValue(templateProperties[i].indexOf('Ref') !== -1 ? templateProperties[i] : templateProperties[i] + 'Ref', tempProp, this);
4949
}
50+
if (getValue("viewContainerRef", this) && !getValue("_viewContainerRef", tempProp.elementRef.nativeElement) && !getValue("propName", tempProp.elementRef.nativeElement)) {
51+
setValue("_viewContainerRef", getValue("viewContainerRef", this), tempProp.elementRef.nativeElement);
52+
setValue("propName", templateProperties[i].replace("Ref", ''), tempProp.elementRef.nativeElement);
53+
}
5054
}
5155
templateProperties = Object.keys(this)
5256
templateProperties = templateProperties.filter((val: string): boolean => {
@@ -64,7 +68,7 @@ export class ComplexBase<T> {
6468
if (this.directivePropList) {
6569
for (let k: number = 0; k < this.directivePropList.length; k++) {
6670
let dirPropName: string = this.directivePropList[k];
67-
if (propList.indexOf(dirPropName) !== -1 && getValue(dirPropName, this)) {
71+
if (propList.indexOf(dirPropName) !== -1 && (getValue(dirPropName, this) === false || getValue(dirPropName, this))) {
6872
setValue(dirPropName, getValue(dirPropName, this), this.propCollection);
6973
}
7074
}

components/buttons/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-buttons",
3-
"version": "20.3.49",
3+
"version": "20.3.50",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/calendars/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.3.50 (2022-10-18)
5+
## 20.3.52 (2022-10-26)
66

77
### Calendar
88

components/charts/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.3.52 (2022-10-26)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I412377` - Axis labels are now rendering properly inside the chart.
12+
- `#F171844` - Console error while using shared tooltip has been fixed.
13+
514
## 20.3.50 (2022-10-18)
615

716
### 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.3.49",
3+
"version": "20.3.50",
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/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.3.50 (2022-10-18)
8+
## 20.3.52 (2022-10-26)
99

1010
### Circular Gauge
1111

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

components/documenteditor/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+
## 20.3.52 (2022-10-26)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I410179` - Cell background color is now rendering properly.
12+
- `#I411016` - List numbering is now rendered properly.
13+
- `#I411008` - Paragraph border is now rendering properly.
14+
- `#FB37770` - Resolved the script error while printing the document.
15+
- `#I409887` - Replacing text with bookmark is now working properly.
16+
517
## 20.3.50 (2022-10-18)
618

719
### 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.3.49",
3+
"version": "20.3.50",
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/filemanager/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.3.50 (2022-10-18)
5+
## 20.3.52 (2022-10-26)
66

77
### File Manager
88

components/gantt/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 20.3.52 (2022-10-26)
6+
7+
### Gantt
8+
9+
#### Bug Fixes
10+
11+
- `#I413261` - Dependency values for the parent task are not properly updated issue has been fixed.
12+
- `#I412821` - Row drag and drop is not working properly when Virtualization is enabled.
13+
14+
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
15+
516
## 20.3.50 (2022-10-18)
617

718
### Gantt
@@ -12,7 +23,8 @@
1223
- `#I404228` - Saving record even when in edited state issue has been fixed.
1324
- `#I413093` - Pdf export is not working in latest version issue has been fixed.
1425

15-
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
26+
- `#I404228` - Saving record even when in edited state issue has been fixed.
27+
- `#I412821` - Row drag and drop is not working properly when Virtualization is enabled.
1628

1729
## 20.3.49 (2022-10-11)
1830

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.3.49",
3+
"version": "20.3.50",
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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
## [Unreleased]
44

5+
## 20.3.52 (2022-10-26)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#I400775` - `DataStateChange` event argument type is not matched with the original argument list has been fixed.
12+
- `#I411026` - Expanding child grid throws script while adding data dynamically to the child has been resolved.
13+
- `#I412478` - `SetCellValue` is working fine with `virtualization`.
14+
- `#411780` - German translation for the word search has been changed.
15+
- `#I367158` - While rendering the grid in the template column the script error thrown with resizing the frozen column has been fixed.
16+
517
## 20.3.50 (2022-10-18)
618

719
### 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.3.49",
3+
"version": "20.3.50",
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/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.3.49",
3+
"version": "20.3.50",
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.3.48",
3+
"version": "20.3.50",
44
"description": "Essential JS 2 ImageEditor for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/inputs/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.3.50 (2022-10-18)
5+
## 20.3.52 (2022-10-26)
66

77
### TextBox
88

components/lineargauge/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.3.50 (2022-10-18)
14+
## 20.3.52 (2022-10-26)
1515

1616
### Linear Gauge
1717

components/lists/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.3.50 (2022-10-18)
6+
7+
### ListView
8+
9+
#### Bug Fixes
10+
11+
- `#I395385` - The issue with "Space key is not working inside input element within ListView Template" has been resolved.
12+
513
## 20.3.47 (2022-09-29)
614

715
### ListView

components/lists/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-lists",
3-
"version": "20.3.47",
3+
"version": "20.3.50",
44
"description": "The listview control allows you to select an item or multiple items from a list-like interface and represents the data in interactive hierarchical structure across different layouts or views. 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.3.50 (2022-10-18)
14+
## 20.3.52 (2022-10-26)
1515

1616
### Maps
1717

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

components/pivotview/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-pivotview",
3-
"version": "20.3.49",
3+
"version": "20.3.50",
44
"description": "The pivot grid, or pivot table, is used to visualize large sets of relational data in a cross-tabular format, similar to an Excel pivot table. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/popups/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.3.50 (2022-10-18)
5+
## 20.3.52 (2022-10-26)
66

77
### Dialog
88

components/querybuilder/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-querybuilder",
3-
"version": "20.3.49",
3+
"version": "20.3.50",
44
"description": "Essential JS 2 QueryBuilder for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/schedule/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 20.3.50 (2022-10-18)
5+
## 20.3.52 (2022-10-26)
6+
7+
### Schedule
8+
9+
#### Bug fixes
10+
11+
- `#F177962` - An issue with displaying yearly recurrence event has been fixed.
12+
- `#I407566` - An issue with Importing exported ICS file with the edited recurrence event causes issue while editing the recurrence event has been fixed.
13+
- `#F411508` - The issue Error throws when resources with no child is selected in the Editor window has been fixed.
14+
- `#I411253` - Scheduler performance issue in virtual scrolling has been fixed.
15+
- `#I412237` - An issue with Delete action through keyboard not working on Schedule on the MAC OS has been fixed.
16+
- `F178167` - An issue with navigation actions not working while performing swipe on the appointments in mobile mode has been fixed.
17+
18+
## 20.3.49 (2022-10-11)
619

720
### Schedule
821

components/schedule/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-schedule",
3-
"version": "20.3.47",
3+
"version": "20.3.50",
44
"description": "Flexible scheduling library with more built-in features and enhanced customization options similar to outlook and google calendar, allowing the users to plan and manage their appointments with efficient data-binding support. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/splitbuttons/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.3.50 (2022-10-18)
5+
## 20.3.52 (2022-10-26)
66

77
### DropDownButton
88

components/spreadsheet/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 20.3.50 (2022-10-18)
5+
## 20.3.52 (2022-10-26)
66

77
### Spreadsheet
88

99
#### Bug Fixes
1010

11-
- `#I411173` - Issue with "initially loaded chart with JSON data is removed while rendering another chart through menu option" has been resolved.
11+
- `#I411683` - Issue with "`ROUND` formula is not calculated properly while passing the number that end with digit 5" has been resolved.
1212

1313
## 20.3.47 (2022-09-29)
1414

@@ -1221,6 +1221,14 @@ The Spreadsheet is an user interactive component to organize and analyze data in
12211221
- **Accessibility:** Provides with built-in accessibility support which helps to access all the spreadsheet component features using the keyboard, screen readers, or other assistive technology devices.
12221222

12231223

1224+
## 20.3.50 (2022-10-18)
1225+
1226+
### Spreadsheet
1227+
1228+
#### Bug Fixes
1229+
1230+
- `#I411173` - Issue with "initially loaded chart with JSON data is removed while rendering another chart through menu option" has been resolved.
1231+
12241232
## 20.3.49 (2022-10-11)
12251233

12261234
### Spreadsheet

components/spreadsheet/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-spreadsheet",
3-
"version": "20.3.49",
3+
"version": "20.3.50",
44
"description": "Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

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

0 commit comments

Comments
 (0)