Skip to content

Commit 8f0b0f7

Browse files
author
pipeline
committed
v20.1.57 is released
1 parent 908686b commit 8f0b0f7

Some content is hidden

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

42 files changed

+170
-28
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-
## 20.1.56 (2022-05-17)
5+
## 20.1.57 (2022-05-24)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#F173196` - The issue "`OnPropertyChange` is not triggered while the column length is not same" have been resolved.
12+
13+
## 20.1.55 (2022-05-12)
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-react-base",
3-
"version": "20.1.47",
3+
"version": "20.1.55",
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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,9 @@
431431
extend(propInstance, changedProps[_c1].value);
432432
}
433433
}
434+
else {
435+
this.setProperties(directiveValue, silent);
436+
}
434437
}
435438
}
436439
else {
@@ -475,7 +478,8 @@
475478
// tslint:disable:no-any
476479
public intForceUpdate (callback?: any): void {
477480
let flush: any = getValue('flushSync',ReactDOM);
478-
if (this.initRenderCalled && flush && !this.mountingState) {
481+
let version: string = React.version.split('.')[0];
482+
if (parseInt(version) >= 18 && this.initRenderCalled && flush && !this.mountingState) {
479483
flush(() => {
480484
this.forceUpdate(callback);
481485
});

components/calendars/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.1.57 (2022-05-24)
6+
7+
### DateRangePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I378357` - Issue with "tab key navigation is not working between calendars" has been resolved.
12+
513
## 19.3.46 (2021-10-19)
614

715
### TimePicker

components/calendars/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-calendars",
3-
"version": "20.1.52",
3+
"version": "20.1.57",
44
"description": "A complete package of date or time components with built-in features such as date formatting, inline editing, multiple (range) selection, range restriction, month and year selection, strict mode, and globalization. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/calendars/src/daterangepicker/presets-directive.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { PresetsModel } from '@syncfusion/ej2-calendars';
1414
* </DateRangePickerComponent>
1515
* ```
1616
*/
17-
export class PresetDirective extends ComplexBase<PresetsModel, PresetsModel> {
17+
export class PresetDirective extends ComplexBase<PresetsModel & { children?: React.ReactNode }, PresetsModel> {
1818
public static moduleName: string = 'preset';
1919
}
2020

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": "20.1.55",
3+
"version": "20.1.56",
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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
55

66
## [Unreleased]
77

8+
## 20.1.57 (2022-05-24)
9+
10+
### Circular Gauge
11+
12+
#### New Features
13+
14+
- `#I365344` - Dash array can now be customized in the border of the Circular Gauge.
15+
816
## 19.4.43 (2022-01-18)
917

1018
### CircularGauge

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": "20.1.47",
3+
"version": "20.1.55",
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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 20.1.57 (2022-05-24)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `F173877` - Now, Node template has been rendered properly in layout.
12+
513
## 20.1.55 (2022-05-12)
614

715
### Diagram

0 commit comments

Comments
 (0)