Skip to content

Commit 9d5c609

Browse files
author
pipeline
committed
v19.2.49 is released
1 parent 3a90d6b commit 9d5c609

Some content is hidden

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

41 files changed

+210
-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.49 (2021-07-27)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `I335035`, `I331116` - Resolved the issue with Updating data source of components using React `usestate` hook is not working.
12+
513
## 19.2.48 (2021-07-20)
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-react-base",
3-
"version": "19.1.67",
3+
"version": "19.2.48",
44
"description": "A common package of Essential JS 2 React base, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/base/src/component-base.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
private initRenderCalled: boolean = false;
6666
private isReactForeceUpdate: boolean = false;
6767
private isReact: boolean = true;
68+
private isshouldComponentUpdateCalled: boolean = false;
6869
private modelObserver: any;
6970
private isDestroyed: boolean;
7071
private isProtectedOnChange: boolean;
@@ -89,7 +90,14 @@
8990
this.renderReactTemplates();
9091
}
9192
}
92-
93+
94+
public componentDidUpdate(prev: object, state: any, snapshot: any): any {
95+
if(!this.isshouldComponentUpdateCalled && this.initRenderCalled) {
96+
this.isshouldComponentUpdateCalled = true;
97+
this.refreshProperties(this.props, true);
98+
}
99+
}
100+
93101
private renderReactComponent(): void {
94102
let ele: Element = this.reactElement;
95103
if (ele) {
@@ -105,6 +113,7 @@
105113
* @private
106114
*/
107115
public shouldComponentUpdate(nextProps: Object): boolean {
116+
this.isshouldComponentUpdateCalled = true
108117
if (!this.initRenderCalled) {
109118
this.updateProperties(nextProps, true);
110119
return 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.48 (2021-07-20)
5+
## 19.2.49 (2021-07-27)
66

77
### Checkbox
88

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 19.2.48 (2021-07-20)
5+
## 19.2.49 (2021-07-27)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#335336` - Chart series is now rendeirng properly while zooming in canvas mode.
12+
- `#330763` - Tooltip template is now working fine without cropping.
13+
14+
### Accumulation chart
15+
16+
#### Bug Fixes
17+
18+
- `#335151` - Console error while selecting point after cancelling a tooltip has been fixed.
19+
20+
## 19.2.47 (2021-07-13)
21+
22+
### Sparkline
23+
24+
#### Bug Fixes
25+
26+
- Resolved the console script exception while mouseover on the Sparkline.
627

728
### Chart
829

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-react-charts",
3-
"version": "19.2.46",
3+
"version": "19.2.47",
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 React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/circulargauge/CHANGELOG.md

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

66
## [Unreleased]
77

8-
## 19.2.48 (2021-07-20)
8+
## 19.2.49 (2021-07-27)
9+
10+
### CircularGauge
11+
12+
#### Bug Fixes
13+
14+
- `#I334929` - When the `moveToCenter` property is enabled, the Circular Gauge will now be in the centre, with a `startAngle` of **241** to **269** and an `endAngle` of **150**.
15+
16+
## 19.2.47 (2021-07-13)
917

1018
### CircularGauge
1119

components/circulargauge/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-react-circulargauge",
3-
"version": "19.2.46",
3+
"version": "19.2.47",
44
"description": "Essential JS 2 CircularGauge Components for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/diagrams/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.49 (2021-07-27)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I335783` - The issue "The tooltip rendered in the wrong position when the node is placed at bottom position" has been fixed.
12+
- `#I334315` - The issue "Update template method is triggered twice"has been fixed.
13+
514
## 19.2.48 (2021-07-20)
615

716
### 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-react-diagrams",
3-
"version": "19.2.46",
3+
"version": "19.2.48",
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 React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)