Skip to content

Commit a680ad8

Browse files
author
pipeline
committed
v19.2.60 is released
1 parent fad7717 commit a680ad8

File tree

36 files changed

+130
-30
lines changed

36 files changed

+130
-30
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+
## 19.2.60 (2021-09-07)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `I336550` Resolved script error if Component not in the `DOM` while component rendering.
12+
513
## 19.2.59 (2021-08-31)
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-angular-base",
3-
"version": "19.2.55",
3+
"version": "19.2.59",
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/component-base.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ export class ComponentBase<T> {
177177
// Refer Link: https://github.com/angular/angular/issues/6005
178178
setTimeout(() => {
179179
/* istanbul ignore else */
180-
if (typeof window !== 'undefined') {
180+
if (typeof window !== 'undefined' && document.body.contains(tempAfterViewThis.element)) {
181181
tempAfterViewThis.appendTo(tempAfterViewThis.element);
182182
tempAfterViewThis.ngEle.nativeElement.style.visibility = '';
183183
}
@@ -189,7 +189,7 @@ export class ComponentBase<T> {
189189
let tempOnDestroyThis: any = isTempRef || this;
190190
/* istanbul ignore else */
191191
setTimeout(() => {
192-
if (typeof window !== 'undefined' && (tempOnDestroyThis.element.classList.contains('e-control') || tempOnDestroyThis.element)) {
192+
if (typeof window !== 'undefined' && document.body.contains(tempOnDestroyThis.element) && (tempOnDestroyThis.element.classList.contains('e-control') || tempOnDestroyThis.element)) {
193193
tempOnDestroyThis.destroy();
194194
tempOnDestroyThis.clearTemplate(null);
195195
// removing bounded events and tagobjects from component after destroy

components/charts/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+
## 19.2.60 (2021-09-07)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I340525` - Data labels are rendering fine when the background is specified for the chart.
12+
513
## 19.2.59 (2021-08-31)
614

715
### 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": "19.2.57",
3+
"version": "19.2.59",
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-
## 19.2.59 (2021-08-31)
8+
## 19.2.60 (2021-09-07)
99

1010
### CircularGauge
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": "19.2.57",
3+
"version": "19.2.59",
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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## [Unreleased]
44

5+
## 19.2.60 (2021-09-07)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I340416` - Resolved the toolbar reinitialization issue.
12+
- `#I337274` - Resolved the merged cell border rendering issue.
13+
- `#I335107` - Text is not layouted properly when used with floating table.
14+
- `#I336588` - Resolved the RTL text Copy/paste text only mode.
15+
516
## 19.2.59 (2021-08-31)
617

718
### 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": "19.2.57",
3+
"version": "19.2.59",
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-
## 19.2.59 (2021-08-31)
5+
## 19.2.60 (2021-09-07)
66

77
### File Manager
88

0 commit comments

Comments
 (0)