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

0 commit comments

Comments
 (0)