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

+8
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

+1-1
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

+1-1
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

+1-1
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

+11-1
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

+1-1
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

+13
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

+1-1
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

+1-1
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

+15
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

components/documenteditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-documenteditor",
3-
"version": "21.1.38",
3+
"version": "21.1.39",
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

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
## [Unreleased]
44

5+
## 21.1.41 (2023-04-18)
6+
7+
### ListBox
8+
9+
#### Bug Fixes
10+
11+
- `#F181311` - Issue with "Scrolling is not working while drag and drop the list box with item Template in angular platform" has been resolved.
12+
13+
### Dropdown Tree
14+
15+
#### Bug Fixes
16+
17+
- `#I451965` - While performing filtering multiple times, the checked node state is cleared in the Dropdown Tree component has been resolved.
18+
519
## 21.1.39 (2023-04-11)
620

721
### ListBox

components/dropdowns/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-dropdowns",
3-
"version": "21.1.38",
3+
"version": "21.1.39",
44
"description": "Essential JS 2 DropDown Components for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/filemanager/CHANGELOG.md

+8
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+
### File Manager
8+
9+
#### Bug fixes
10+
11+
- `#I445512` - The issue with the `fileSelection` and `fileSelect` events argument in the File Manager component large icon view has been resolved.
12+
513
## 21.1.37 (2023-03-29)
614

715
### File Manager

components/filemanager/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-filemanager",
3-
"version": "21.1.37",
3+
"version": "21.1.39",
44
"description": "Essential JS 2 FileManager Component for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22

33
## [Unreleased]
44

5+
## 21.1.41 (2023-04-18)
6+
7+
### Gantt Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I453787` - Duration not calculated properly in hour duration unit issue has been fixed.
12+
- `#I453745` - Modified records in `actionBegin` event has invalid records issue has been fixed.
13+
- `#I449552` - Child record rendered in incorrect dates during initial load issue has been fixed.
14+
- -`#I452233`- Parent Taskbar template not working properly in latest version.
15+
- -`#I449864`- Holiday label is not visible when we don't set height.
16+
- -`#I449674`- Cannot split task when the taskbar is rendered to one day.
17+
- `#I449757` - Taskbar width rendered incorrectly issue has been fixed.
18+
19+
- `#I453787` - Duration not calculated properly in hour duration unit issue has been fixed.
20+
- `#I453745` - Modified records in `actionBegin` event has invalid records issue has been fixed.
21+
- `#I449552` - Child record rendered in incorrect dates during initial load issue has been fixed.
22+
- -`#I452233`- Parent Taskbar template not working properly in latest version.
23+
- -`#I449674`- Cannot split task when the taskbar is rendered to one day.
24+
525
## 21.1.38 (2023-04-04)
626

727
### Gantt Chart

components/grids/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-grids",
3-
"version": "21.1.38",
3+
"version": "21.1.39",
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/heatmap/CHANGELOG.md

+8
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+
### Heatmap
8+
9+
#### Bug Fixes
10+
11+
- `#I452356` - When the x-axis labels are trimmed and rotated, the HeatMap cell area now renders properly.
12+
513
## 21.1.35 (2023-03-23)
614

715
### Heatmap

components/imageeditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-image-editor",
3-
"version": "21.1.37",
3+
"version": "21.1.39",
44
"description": "Essential JS 2 ImageEditor for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/inplaceeditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-inplace-editor",
3-
"version": "21.1.35",
3+
"version": "21.1.37",
44
"description": "A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/inplaceeditor/src/inplace-editor/inplaceeditor.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class InPlaceEditorComponent extends InPlaceEditor {
2020
public initRenderCalled: boolean = false;
2121
private checkInjectedModules: boolean = true;
2222
private statelessTemplateProps: string[] = null;
23+
private templateProps: string[] = null;
2324
private immediateRender: boolean = false;
2425
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2526
& Readonly<InPlaceEditorModel & DefaultHtmlAttributes| InPlaceEditorTypecast>;

components/inputs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-inputs",
3-
"version": "21.1.38",
3+
"version": "21.1.39",
44
"description": "A package of Essential JS 2 input components such as Textbox, Color-picker, Masked-textbox, Numeric-textbox, Slider, Upload, and Form-validator that is used to get input from the users. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/kanban/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-kanban",
3-
"version": "21.1.37",
3+
"version": "21.1.39",
44
"description": "The Kanban board is an efficient way to visualize the workflow at each stage along its path to completion. The most important features available are Swim lane, filtering, and editing. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/layouts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-layouts",
3-
"version": "21.1.35",
3+
"version": "21.1.37",
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/layouts/src/dashboard-layout/dashboardlayout.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export class DashboardLayoutComponent extends DashboardLayout {
1919
private checkInjectedModules: boolean = false;
2020
public directivekeys: { [key: string]: Object } = {'panels': 'panel'};
2121
private statelessTemplateProps: string[] = null;
22+
private templateProps: string[] = null;
2223
private immediateRender: boolean = false;
2324
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2425
& Readonly<DashboardLayoutModel & DefaultHtmlAttributes>;

components/layouts/src/splitter/splitter.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export class SplitterComponent extends Splitter {
1919
private checkInjectedModules: boolean = false;
2020
public directivekeys: { [key: string]: Object } = {'panes': 'pane'};
2121
private statelessTemplateProps: string[] = null;
22+
private templateProps: string[] = null;
2223
private immediateRender: boolean = false;
2324
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2425
& Readonly<SplitterModel & DefaultHtmlAttributes>;

components/lists/CHANGELOG.md

+20-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,33 @@
22

33
## [Unreleased]
44

5-
## 21.1.39 (2023-04-11)
5+
## 21.1.41 (2023-04-18)
6+
7+
### ListBox
8+
9+
#### Bug Fixes
10+
11+
- `#F181131` - Issue with "No Record Found text disappears while hovering the drag item on list box without drop" has been resolved.
612

713
### ListView
814

915
#### Bug Fixes
1016

1117
- `#I447633` - An issue with the primary button styles of the e-icons in the ListView component has been resolved.
12-
- `#I452079` - Resolved detached elements memory leak issue in the ListView component.
1318

14-
- `#I447633` - An issue with the primary button styles of the e-icons in the ListView component has been resolved.
19+
## 21.1.39 (2023-04-11)
20+
21+
### ListBox
22+
23+
#### Bug Fixes
24+
25+
- Issue with Dragging the ListBox item when the end-user pressed the Escape key and the drag operation should be cancelled has been fixed.
26+
27+
### ListView
28+
29+
#### Bug Fixes
30+
31+
- `#I452079` - Resolved detached elements memory leak issue in the ListView component.
1532

1633
## 21.1.35 (2023-03-23)
1734

components/lists/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-lists",
3-
"version": "21.1.37",
3+
"version": "21.1.39",
44
"description": "The listview control allows you to select an item or multiple items from a list-like interface and represents the data in interactive hierarchical structure across different layouts or views. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/maps/CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,15 @@
1111

1212
## [Unreleased]
1313

14-
## 21.1.39 (2023-04-11)
14+
## 21.1.41 (2023-04-18)
15+
16+
### Maps
17+
18+
#### Bug fixes
19+
20+
- `#I441762` - The position of the data labels will now be proper when the `geometryType` is set as **Normal**.
21+
22+
## 21.1.38 (2023-04-04)
1523

1624
### Maps
1725

components/maps/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-maps",
3-
"version": "21.1.37",
3+
"version": "21.1.38",
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/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-navigations",
3-
"version": "21.1.38",
3+
"version": "21.1.39",
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",

0 commit comments

Comments
 (0)