Skip to content

Commit 87290b8

Browse files
author
pipeline
committed
v19.2.51 is released
1 parent ec72f14 commit 87290b8

Some content is hidden

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

44 files changed

+183
-32
lines changed

components/base/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 19.2.49 (2021-07-27)
5+
## 19.2.51 (2021-08-03)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `I334468` Resolved Form get `Dirty` while initial databinding.
12+
13+
## 19.2.48 (2021-07-20)
614

715
### Common
816

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.66",
3+
"version": "19.2.48",
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/form-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class FormBase<T> implements ControlValueAccessor {
3535
//tslint:disable-next-line
3636
let value: T | any = (e.checked === undefined ? e.value : e.checked);
3737
this.objCheck = isObject(value);
38-
if (this.isUpdated === true) {
38+
if (this.isUpdated === true && this.oldValue) {
3939
this.angularValue = this.oldValue;
4040
}
4141
if (this.objCheck === true) {

components/buttons/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.49 (2021-07-27)
5+
## 19.2.51 (2021-08-03)
66

77
### Checkbox
88

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 19.2.51 (2021-08-03)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#337240` - Stripline working properly on canvas mode.
12+
13+
### Accumulation chart
14+
15+
#### Bug Fixes
16+
17+
- `#335684` - Data label positioning properly for pie chart.
18+
519
## 19.2.49 (2021-07-27)
620

721
### 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.47",
3+
"version": "19.2.49",
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.49 (2021-07-27)
8+
## 19.2.51 (2021-08-03)
99

1010
### CircularGauge
1111

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+
## 19.2.51 (2021-08-03)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#F167093` - The issue "The HTML nodes in overview takes place at the wrong position while zoom and move the HTML node in diagram "has been fixed.
12+
- `#F166882` - The issue "Accessibility validation error in Diagram" has been fixed.
13+
- `#F167431` - The issue "While decode the exported JPG image it has the PNG Image signature"has been fixed.
14+
515
## 19.2.49 (2021-07-27)
616

717
### 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.2.48",
3+
"version": "19.2.49",
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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
## 19.2.51 (2021-08-03)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I334754, #F167429` - Resolved the localization issue.
12+
- `#I333264` - Resolved the before spacing issue for the paragraph starting in new page.
13+
514
## 19.2.49 (2021-07-27)
615

716
### Document Editor

0 commit comments

Comments
 (0)