Skip to content

Commit a8fe174

Browse files
author
pipeline
committed
v19.1.66 is released
1 parent d393c5c commit a8fe174

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+410
-174
lines changed

components/barcodegenerator/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.1.65 (2021-05-25)
5+
## 19.1.66 (2021-06-01)
66

77
### Barcode
88

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.1.66 (2021-06-01)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `I310815` - Resolved memory leak issue while using routing.
12+
513
## 19.1.65 (2021-05-25)
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.1.64",
3+
"version": "19.1.65",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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')) {
192+
if (typeof window !== 'undefined' && (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: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,28 @@
88

99
#### Bug Fixes
1010

11+
- `#328528` - Histogram is rendering properly when the `binInterval` value is 0.
12+
13+
### Stock Chart
14+
15+
#### Bug Fixes
16+
17+
- `#F165171` - Tooltip for column in stock chart is working properly now.
18+
19+
## 19.1.64 (2021-05-19)
20+
21+
### Chart
22+
23+
#### Bug Fixes
24+
25+
- `#326473` - Print is now working properly with strip line dash array.
26+
27+
## 19.1.63 (2021-05-13)
28+
29+
### Chart
30+
31+
#### Bug Fixes
32+
1133
- `#325456` - Highlight and selection issue has been fixed for multiple charts.
1234
- `#F165060` - Accumulation chart with data label is now rendering properly inside the dashboard layout.
1335

components/charts/README.md

Lines changed: 53 additions & 58 deletions
Large diffs are not rendered by default.

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.1.59",
3+
"version": "19.1.65",
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.1.65 (2021-05-25)
8+
## 19.1.66 (2021-06-01)
99

1010
### CircularGauge
1111

components/diagrams/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+
## 19.1.66 (2021-06-01)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#328156` - The issue "An exception raised when send the swimlane back to the normal node" has been fixed.
12+
- `#324236` - The issue "When exporting the node with gradient color the exported image does not contain proper node gradient " has been fixed.
13+
- `#324541` - This issue "An exception occurs when printing the diagram with a Content security policy tag." has been fixed.
14+
- `#I325640` - The issue "When dynamically adding node and perform the `bringToFront` method. The order command functionality not working properly" has been resolved.
15+
- `#328132` - The issue "The combination of port constraints is not working" has been fixed.
16+
517
## 19.1.65 (2021-05-25)
618

719
### Diagram

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.1.64",
3+
"version": "19.1.65",
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",

0 commit comments

Comments
 (0)