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

components/documenteditor/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+
## 20.1.57 (2022-05-24)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I373287` - Resolved the control hanging issue while opening a document with table.
12+
- `#FB34847` - Resolved the script error thrown on re-updating the custom toolbar.
13+
- `#I376882` - Resolved the issue on applying highlight color after replacing the search text.
14+
- `#I372421` - Resolved the insert table's paragraph format inheritance from previous paragraph.
15+
- `#I378924` - Resolved the text frame margin saving issue in sfdt export.
16+
- `#I375700` - Resolved the footnote misplacement in the initial layout.
17+
- `#I371641` - Resolved the minimum column width causes in-finite lopping issue when resizing table.
18+
519
## 20.1.56 (2022-05-17)
620

721
### 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-react-documenteditor",
3-
"version": "20.1.52",
3+
"version": "20.1.56",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/dropdowns/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+
### Dropdown Tree
8+
9+
#### Bug Fixes
10+
11+
- `#I374653` - The issue with "The filtering was not working properly when using a hierarchical data source for the Dropdown Tree component" has been resolved.
12+
513
## 20.1.56 (2022-05-17)
614

715
### ListBox

components/dropdowns/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-dropdowns",
3-
"version": "20.1.55",
3+
"version": "20.1.56",
44
"description": "Essential JS 2 DropDown Components for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/filemanager/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+
### File Manager
8+
9+
#### Bug Fixes
10+
11+
- `#F173974` - The issue with "Cut and paste files from a parent folder to a sub folder using the toolbar doesn't show any alert for users in File Manager" has been resolved.
12+
513
## 20.1.56 (2022-05-17)
614

715
### File Manager

components/filemanager/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-filemanager",
3-
"version": "20.1.55",
3+
"version": "20.1.56",
44
"description": "Essential JS 2 FileManager Component for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/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-gantt",
3-
"version": "20.1.55",
3+
"version": "20.1.56",
44
"description": "Essential JS 2 Gantt Component for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/grids/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+
## 20.1.57 (2022-05-24)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#I359884` - Accessibility of Grid component has been improved.
12+
- `#I376539` - Sorting issue on URL Adaptor `DataManagerRequest` has been fixed.
13+
- `#I365726` - Image and Text overlap issue in excel image has been fixed.
14+
515
## 20.1.56 (2022-05-17)
616

717
### Grid

components/grids/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-grids",
3-
"version": "20.1.55",
3+
"version": "20.1.56",
44
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/lineargauge/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
## [Unreleased]
1313

14-
## 20.1.56 (2022-05-17)
14+
## 20.1.55 (2022-05-12)
1515

1616
### LinearGauge
1717

components/lineargauge/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-lineargauge",
3-
"version": "20.1.48",
3+
"version": "20.1.55",
44
"description": "Essential JS 2 LinearGauge Components for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/maps/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-maps",
3-
"version": "20.1.48",
3+
"version": "20.1.55",
44
"description": "The Maps component is used to visualize the geographical data and represent the statistical data of a particular geographical area on earth with user interactivity, and provides various customizing options for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/navigations/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+
### Tab
8+
9+
#### Bug Fixes
10+
11+
- `#I377292` - Accessibility issues in tab has been fixed.
12+
513
## 20.1.56 (2022-05-17)
614

715
### Menu

components/navigations/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-navigations",
3-
"version": "20.1.55",
3+
"version": "20.1.56",
44
"description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/pdfviewer/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+
## 20.1.57 (2022-05-24)
6+
7+
### PDF Viewer
8+
9+
#### Bug Fixes
10+
11+
- `#SF-376240`- Multiple words in the typed handwritten signature and signature fields are preserved correctly in the downloaded document.
12+
- `#F174506`- Improved the printing quality of the PDF viewer.
13+
- `#SF-372853`- Now, ink annotation will be added programmatically with path data available in the annotationAdd event.
14+
515
## 20.1.56 (2022-05-17)
616

717
### PDF Viewer

components/pdfviewer/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-pdfviewer",
3-
"version": "20.1.55",
3+
"version": "20.1.56",
44
"description": "Essential JS 2 PDF viewer Component for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/pivotview/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+
## 20.1.57 (2022-05-24)
6+
7+
### Pivot Table
8+
9+
#### Bug Fixes
10+
11+
- `#I378816` - When the defer layout update option is enabled, dataBound event is now restricted while clicking cancel option in the popup field list UI.
12+
- `#F174968` - When virtual scrolling is enabled, the pivot table can now be rendered properly while perform member filtering.
13+
- The pivot table's column selection is now working properly.
14+
515
## 20.1.56 (2022-05-17)
616

717
### Pivot Table

components/pivotview/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-pivotview",
3-
"version": "20.1.55",
3+
"version": "20.1.56",
44
"description": "The pivot grid, or pivot table, is used to visualize large sets of relational data in a cross-tabular format, similar to an Excel pivot table. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/popups/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+
### Popup
8+
9+
#### Bug Fixes
10+
11+
- `#I376806` - Now, the drop down list popup will close properly even after interaction with more than one drop down component.
12+
513
## 19.4.38 (2021-12-17)
614

715
### Tooltip

components/progressbar/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+
### ProgressBar
8+
9+
#### Bug Fixes
10+
11+
- `#I378263` - Progress bar is now working properly on resize.
12+
513
## 20.1.52 (2022-05-04)
614

715
### ProgressBar

components/richtexteditor/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
#### Bug Fixes
1010

1111
- `#I377121` - Now, adding the `cssClass` property will also add the CSS class to all the dependent components of the Rich Text Editor.
12+
- `#I376816` - Now, applying list by selecting all content which is pasted in the Rich Text Editor on the `Firefox` browser works properly.
13+
- `#SF-378184` - Now, the script error is not thrown when resizing the Rich Text Editor component with inline mode.
1214

1315
## 20.1.55 (2022-05-12)
1416

components/richtexteditor/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-richtexteditor",
3-
"version": "20.1.55",
3+
"version": "20.1.56",
44
"description": "Essential JS 2 RichTextEditor component for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/schedule/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 20.1.52 (2022-05-04)
5+
## 20.1.57 (2022-05-24)
6+
7+
### Schedule
8+
9+
#### Bug Fixes
10+
11+
- `#I379346` - An issue with appointments rendered in start and end hour range in vertical views has been fixed.
12+
- `#I379197` - An issue with normal appointment rendered in all day row in DST time zone has been fixed.
13+
14+
- `#I377836` - An issue with component state change when using `workDays` property has been fixed.
15+
16+
## 20.1.55 (2022-05-12)
617

718
### Schedule
819

0 commit comments

Comments
 (0)