Skip to content

Commit e1583ee

Browse files
author
pipeline
committed
v20.4.54 is released
1 parent b84b9c8 commit e1583ee

File tree

31 files changed

+165
-21
lines changed

31 files changed

+165
-21
lines changed

components/base/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 20.4.54 (2023-03-14)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- The issue with "the content of other tab items being automatically removed when the first tab item is removed" has been resolved.
12+
513
## 20.4.38 (2022-12-21)
614

715
### Common
@@ -266,4 +274,4 @@
266274
Base library provide options to enable following React functionalities in Essential JS 2 components.
267275

268276
- Support for data binding.
269-
- Tree shaking using `UglifyJS`.
277+
- Tree shaking using `UglifyJS`.

components/base/src/component-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ export class ComponentBase<P, S> extends React.Component<P, S> {
504504
propIndexCount++;
505505
}
506506
});
507-
if (index && this.portals[tempPortal[`${index}`[parseInt(indexCount.toString(), 10)]]].propName === propName) {
507+
if (!isNullOrUndefined(index) && this.portals[tempPortal[`${index}`[parseInt(indexCount.toString(), 10)]]].propName === propName) {
508508
this.portals.splice(index, 1);
509509
indexCount++;
510510
} else {

components/buttons/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-buttons",
3-
"version": "20.4.50",
3+
"version": "20.4.53",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 20.4.54 (2023-03-14)
6+
7+
- `#SF-443337` - The issue "Bigger mode icon in calendar components was slightly bigger than other components" has been resolved.
8+
- `#SF-440324` - The issue "Unable to enter a time value in the TimePicker when the mask is enabled" has been resolved.
9+
510
## 20.4.48 (2023-02-01)
611

712
- `#I426149` - The issue "show method target parameter not works as expected" has been resolved.

components/charts/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.4.54 (2023-03-14)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#F180863` - Resolved the issue where the page was reloading automatically.
12+
513
## 20.4.53 (2023-03-07)
614

715
### 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-react-charts",
3-
"version": "20.4.52",
3+
"version": "20.4.53",
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/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.4.42",
3+
"version": "20.4.48",
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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## 20.4.53 (2023-03-07)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I422049` - Now, calling doLayout after injecting line routing module working fine.
12+
- `#F180577` - Now, Send to back command is working when there is single node in layer.
13+
- `#I436649` - Now, connector segment does not get split into multiple segment for top to bottom approach.
14+
515
## 20.4.52 (2023-02-28)
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-react-diagrams",
3-
"version": "20.4.52",
3+
"version": "20.4.53",
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",

components/documenteditor/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.4.54 (2023-03-14)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I436974` - Combined the next paragraph while removing the paragraph mark.
12+
- `#I436444` - Resolved the control hanging issue when editing inside table.
13+
- `#I442823` - Restricted text inserting issue when restrict editing is in enabled state.
14+
515
## 20.4.53 (2023-03-07)
616

717
### 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.4.52",
3+
"version": "20.4.53",
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/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.4.52",
3+
"version": "20.4.53",
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.4.54 (2023-03-14)
6+
7+
### File Manager
8+
9+
#### Bug Fixes
10+
11+
- `#I440329` - Resolved the issue of folders disappearing from the navigation pane when the `directoryUpload` setting is enabled in the File Manager component.
12+
513
## 20.4.53 (2023-03-07)
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.4.51",
3+
"version": "20.4.53",
44
"description": "Essential JS 2 FileManager Component for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 20.4.54 (2023-03-14)
6+
7+
### Gantt
8+
9+
#### Bug Fixes
10+
11+
-`I442012`- Pdf export padding property for column header is not working properly issue has been fixed.
12+
-`F180721`- Script error occurs when critical path is enabled in virtualization mode issue has been fixed.
13+
-`F180854`- Successor task not updated when editing predecessor task issue has been fixed.
14+
-`I436189`- Two different payloads passed to put and post for a single add action issue has been fixed.
15+
-`I440310`- Script error throws when parent ID mapped issue has been fixed.
16+
-`I441047`- An exception is thrown when attempting to update `task fields` and `data source`.
17+
18+
19+
-`F180721`- Script error occurs when critical path is enabled in virtualization mode issue has been fixed.
20+
-`F180854`- Successor task not updated when editing predecessor task issue has been fixed.
21+
-`I436189`- Two different payloads passed to put and post for a single add action issue has been fixed.
22+
-`I441047`- An exception is thrown when attempting to update `task fields` and `data source`.
23+
24+
525
## 20.4.53 (2023-03-07)
626

727
### Gantt
@@ -13,6 +33,7 @@
1333
-`I437053`- Task label not updated correctly When dynamically updating data source issue has been fixed.
1434

1535

36+
-`I442012`- Pdf export padding property for column header is not working properly issue has been fixed.
1637
-`I441394`- Gantt Column name doesn't change respect to changing of culture at runtime issue has been fixed.
1738

1839

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.4.52",
3+
"version": "20.4.53",
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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
## [Unreleased]
44

5+
## 20.4.54 (2023-03-14)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#I445812` - Column Reordering index is wrong when Grid has hidden columns issue has been fixed.
12+
- `#I440720` - Executing query with custom dataSource is not working in excel export issue has been fixed.
13+
- `#F180504` - Copy not working properly when using `hideColumns` property issue has been fixed.
14+
- `#I433483` - Header cell alignment not proper when text wrapping enabled with filtering issue has been fixed.
15+
- `#I440455` - Unable to get the row element in the `rowDataBound` when using `rowTemplate` in `React18` issue has been fixed.
16+
- `#I380872` - All child element gets Hovered on hovering one child issue has been fixed.
17+
- `#I442280` - Provided the locale support for Expand and Collapse icons issue has been fixed.
18+
- `#I443824` - The issue with the clear icon displaying incorrect text when hovering over it has been resolved.
19+
520
## 20.4.53 (2023-03-07)
621

722
### Grid

components/inplaceeditor/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+
## 20.4.54 (2023-03-14)
6+
7+
### In-place Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I440965` - Now, the validation works properly when using two way binding for the `value` property.
12+
- `#I443357` - Now, when you click the cancel button in the In-place Editor, the Rich Text Editor will no longer be focused.
13+
514
## 20.4.48 (2023-02-01)
615

716
### In-place Editor

components/inputs/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.4.54 (2023-03-14)
6+
7+
### Uploader
8+
9+
#### Bug Fixes
10+
11+
- `#F178267` - Fixed issue unable to upload the same file again after using the remove method.
12+
513
## 20.4.52 (2023-02-28)
614

715
### MaskedTextBox

components/kanban/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-
## 20.4.52 (2023-02-28)
5+
## 20.4.54 (2023-03-14)
66

77
### Kanban
88

components/layouts/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-layouts",
3-
"version": "20.4.48",
3+
"version": "20.4.53",
44
"description": "A package of Essential JS 2 layout pure CSS components such as card and avatar. The card is used as small container to show content in specific structure, whereas the avatars are icons, initials or figures representing particular person. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

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.4.52",
3+
"version": "20.4.53",
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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## [Unreleased]
44

5+
## 20.4.54 (2023-03-14)
6+
7+
### PDF Viewer
8+
9+
#### Bug Fixes
10+
11+
- `#I438960` - Now, different culture date time is working properly while exporting annotations.
12+
- `#I444307` - Now, the check box is not added to the left-most corner of the page.
13+
- `#I444707` - Now, signature dialog box footer button alignment is proper in fluent theme.
14+
- `#I440251` - Now, typed handwritten signature is not broken into a new line after downloading and viewing in other viewers.
15+
516
## 20.4.53 (2023-03-07)
617

718
### 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.4.52",
3+
"version": "20.4.53",
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.4.54 (2023-03-14)
6+
7+
### Pivot Table
8+
9+
#### Bug Fixes
10+
11+
- `#I423348` - The "autoFit" property in the pivot table will now work properly.
12+
- `#I442142` - Headers are now properly exported when exporting a Pivot Table to an Excel sheet.
13+
- `#I441872` - The performance issue has now been fixed with the defer layout update, when the popup field list closes with a "Cancel" button click.
14+
515
## 20.4.48 (2023-02-01)
616

717
### Pivot Table

components/popups/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-popups",
3-
"version": "20.4.52",
3+
"version": "20.4.53",
44
"description": "A package of Essential JS 2 popup components such as Dialog and Tooltip that is used to display information or messages in separate pop-ups. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

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

components/schedule/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-schedule",
3-
"version": "20.4.52",
3+
"version": "20.4.53",
44
"description": "Flexible scheduling library with more built-in features and enhanced customization options similar to outlook and google calendar, allowing the users to plan and manage their appointments with efficient data-binding support. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/spreadsheet/CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22

33
## [Unreleased]
44

5-
## 20.4.53 (2023-03-07)
5+
## 20.4.54 (2023-03-14)
66

77
### Spreadsheet
88

99
#### Bug Fixes
1010

11-
- `#I436894` - Issue with "`computeExpression` method returns `#SPILL!` value while passing `UNIQUE` formula as argument to that method" has been resolved.
12-
- `#I442490` - Issue with "`HOUR/SECOND/MINUTE` formula returns wrong value when time is passed as string" has been resolved.
11+
- `#I444150` - Issue with "white space added to the sheets while changing the font size above `14px`" has been resolved.
1312

1413
## 20.4.52 (2023-02-28)
1514

@@ -1288,6 +1287,15 @@ The Spreadsheet is an user interactive component to organize and analyze data in
12881287
- **Accessibility:** Provides with built-in accessibility support which helps to access all the spreadsheet component features using the keyboard, screen readers, or other assistive technology devices.
12891288

12901289

1290+
## 20.4.53 (2023-03-07)
1291+
1292+
### Spreadsheet
1293+
1294+
#### Bug Fixes
1295+
1296+
- `#I436894` - Issue with "`computeExpression` method returns `#SPILL!` value while passing `UNIQUE` formula as argument to that method" has been resolved.
1297+
- `#I442490` - Issue with "`HOUR/SECOND/MINUTE` formula returns wrong value when time is passed as string" has been resolved.
1298+
12911299
## 20.4.51 (2023-02-21)
12921300

12931301
### Spreadsheet

components/spreadsheet/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-spreadsheet",
3-
"version": "20.4.52",
3+
"version": "20.4.53",
44
"description": "Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)