Skip to content

Commit 28767fa

Browse files
author
pipeline
committed
v21.1.41 is released
1 parent 885a727 commit 28767fa

Some content is hidden

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

47 files changed

+241
-32
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+
## 21.1.41 (2023-04-18)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I451955` - The issue with "Script error thrown after removing the first tab" has been resolved.
12+
513
## 21.1.38 (2023-04-04)
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": "21.1.38",
3+
"version": "21.1.41",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ export class ComponentBase<P, S> extends React.Component<P, S> {
506506
propIndexCount++;
507507
}
508508
});
509-
if (!isNullOrUndefined(index) && this.portals[tempPortal[`${index}`[parseInt(indexCount.toString(), 10)]]].propName === propName) {
509+
if (!isNullOrUndefined(index) && this.portals[index as number] && this.portals[index as number].propName === propName) {
510510
this.portals.splice(index, 1);
511511
indexCount++;
512512
} else {

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-
## 21.1.39 (2023-04-11)
5+
## 21.1.41 (2023-04-18)
66

77
### Checkbox
88

components/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 21.1.39 (2023-04-11)
5+
## 21.1.41 (2023-04-18)
6+
7+
### DatePicker
8+
9+
#### Bug Fixes
10+
11+
- `#453318` - Issue with "Placeholder text not get displayed on initial render with strict mode true case of the datepicker component."
12+
13+
- `#I447192` - The issue with "Exception is thrown when interacting with the datepicker component only when using the time zone extension" has been resolved.
14+
15+
## 21.1.38 (2023-04-04)
616

717
### DatePicker
818

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": "18.30.15",
3+
"version": "21.1.38",
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/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.1.41 (2023-04-18)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I451521` - Now, the border is proper in the funnel and pyramid series.
12+
- `#I453698` - Cross shape marker now displays correctly in Scatter Series.
13+
- `#I439673` - The `enableTextWrap` property of the tooltip is now working properly in the pie chart.
14+
- `#I452390` - Fixed the issue where the axis label was not properly visible.
15+
- `#I447639` - Tooltip format now displays properly when using the axis label format.
16+
- `#I453698` - The legend shape now reflects the marker shape in scatter series.
17+
518
## 21.1.39 (2023-04-11)
619

720
### 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": "21.1.38",
3+
"version": "21.1.39",
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/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": "21.1.37",
3+
"version": "21.1.39",
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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
## [Unreleased]
44

5+
## 21.1.41 (2023-04-18)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#SF-447180` - Resolved Allow row to break across pages issue.
12+
- `#SF-439301` - Resolved Textbox and picture is not preserved properly in Header.
13+
- `#SF-442538` - Resolved the script error while updating table of contents.
14+
- `#SF-447249` - Resolved issue in default character format.
15+
- `#SF-447180` - Resolved Layouting issue while opening the document.
16+
- `#SF-447117` - Resolved the issue with the replacement of the incorrect word.
17+
- `#SF-444154` - Resolved the text is not preserved while drag and drop.
18+
- `#SF-452497` - Resolved the script error while pasting images with text content.
19+
520
## 21.1.39 (2023-04-11)
621

722
### Document Editor

0 commit comments

Comments
 (0)