Skip to content

Commit ab44171

Browse files
author
pipeline
committed
v21.1.37 is released
1 parent b2734de commit ab44171

Some content is hidden

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

52 files changed

+253
-41
lines changed

components/base/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
## 21.1.37 (2023-03-29)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I443045` - The issue with "Chart title is not updated on dynamic changes" has been resolved.
12+
- `#I433083` - The issue with "Accordion content template value is not updated while using state variable" has been resolved.
13+
514
## 20.4.54 (2023-03-14)
615

716
### 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": "17.27.0",
3+
"version": "21.1.37",
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ export class ComponentBase<P, S> extends React.Component<P, S> {
100100

101101
public componentDidUpdate(prev: Object): any {
102102
if(!this.isshouldComponentUpdateCalled && this.initRenderCalled && !this.isReactForeceUpdate) {
103-
this.isshouldComponentUpdateCalled = true;
104103
if (prev !== this.props) {
105-
this.refreshProperties(this.props, true);
104+
this.isshouldComponentUpdateCalled = true;
105+
this.refreshProperties(this.props, this.props);
106106
}
107107
}
108108
}
@@ -166,7 +166,7 @@ export class ComponentBase<P, S> extends React.Component<P, S> {
166166
for (let j: number = 0; j < dpropsClsName.length; j++) {
167167
this.element.classList.add(dpropsClsName[parseInt(j.toString(), 10)]);
168168
}
169-
} else if (propkey !== 'disabled') {
169+
} else if (propkey !== 'disabled' && !(this as any).properties.hasOwnProperty(propkey)) {
170170
delete dProps[`${propkey}`];
171171
}
172172
}

components/buttons/CHANGELOG.md

+15-3
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,34 @@
22

33
## [Unreleased]
44

5-
## 21.1.35 (2023-03-23)
5+
## 21.1.37 (2023-03-29)
66

77
### Checkbox
88

99
#### Bug Fixes
1010

11-
- `#I427235` - The issue `cssClass` property not updated properly while string with a white space in the end of the property in checkbox has been fixed.
11+
- `#I436942` - The issue with "Validation rule not display properly when we use Checkbox within form validator" has been resolved.
1212

1313
### Chip
1414

1515
#### New Features
1616

1717
- `#I422263` - The Chip component now supports htmlAttributes, which enables users to add required attributes such as 'aria-label', 'title', 'class', and more to the Chip item.
1818

19-
- `#I422263` - The Chip component now supports htmlAttributes, which enables users to add required attributes such as 'aria-label', 'title', 'class', and more to the Chip item.
2019

20+
## 21.1.35 (2023-03-23)
21+
22+
### Checkbox
23+
24+
#### Bug Fixes
25+
26+
- `#I427235` - The issue `cssClass` property not updated properly while string with a white space in the end of the property in checkbox has been fixed.
27+
28+
### Chip
29+
30+
#### New Features
31+
32+
- `#I422263` - The Chip component now supports htmlAttributes, which enables users to add required attributes such as 'aria-label', 'title', 'class', and more to the Chip item.
2133

2234
### RadioButton
2335

components/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.1.37 (2023-03-29)
6+
7+
### DatePicker
8+
9+
#### Bug Fixes
10+
11+
- `#SF-446512` - Issue with "The mask placeholder not shown while bind with null value in ng-model" has been resolved.
12+
- `#SF-447843` - Issue with "after the form is reset, mask placeholder is not shown in the UI" has been resolved.
13+
- `#FB41541` - Resolved the issue where the change event was not triggering on the initial time when binding the component with strict mode.
14+
15+
### DateTimePicker
16+
17+
#### Bug Fixes
18+
19+
- `#FB41541` - Resolved the issue where the change event was not triggering on the initial time when binding the component with strict mode.
20+
521
## 19.3.46 (2021-10-19)
622

723
### TimePicker

components/circulargauge/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
## [Unreleased]
77

8-
## 21.1.35 (2023-03-23)
8+
## 21.1.37 (2023-03-29)
99

1010
### Circular Gauge
1111

components/diagrams/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
## [Unreleased]
44

5+
## 21.1.37 (2023-03-29)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I41762` - Now, Different point property for bezier connector is working properly.
12+
- `#I41808` - Now, Text description for HTML node is rendered properly.
13+
- `#I41908` - Now, Perfomance of dragging group nodes is improved.
14+
- `#I41974` - Now, While hovering ports and dragging the multiselected items working properly.
15+
- `#I443748` - Now, changing the styles dynamically, its working properly.
16+
- `#I445506` - Now, you can resize the bezier control thumb when we increase the handleSize also.
17+
- `#I444124` - Now, set the same id for the node and annotation in two different diagrams, the first diagram node annotation is visible properly.
18+
- `#I447256` - Node renders properly on changing the shape dynamically.
19+
520
## 21.1.35 (2023-03-23)
621

722
### Diagram

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.1.37 (2023-03-29)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I438125` - Resolved the header issue when editing in different section format.
12+
- `#I439280` - Selection is now working properly in the paragraph with indentation.
13+
- `#I436536`, `#I435119` - Table and paragraph is not overlapped while loading the attached document.
14+
- `#I436445` - Resolved the overlapping issue while opening the document.
15+
- `#I446019` - Resolved the issue in opening "Dotx" format document.
16+
17+
- `#425697` - Resolved the positioning and line spacing issue in shape document
18+
19+
#### Breaking Changes
20+
21+
- Starting from version v21.1.x, the SFDT file generated in Word Processor component is optimized by default to reduce the file size. Hence, the optimized SFDT files can't be directly manipulated as JSON string. Please refer the [documentation](https://ej2.syncfusion.com/react/documentation/document-editor/how-to/optimize-sfdt).
22+
23+
#### New Features
24+
25+
- `#I249004`, `#I250933`, `#I256703`, `#I286287`, `#I290760`, `#I301513`, `#I313194`, `#I314827`, `#I316496`, `#I317964`, `#I320201`, `#I320872`, `#I327636`, `#I331310`, `#I333899`, `#I334058`, `#I334929`, `#I337202`, `#I341931`, `#I341953`, `#I345929`, `#I348344`, `#I349206`, `#I349683`, `#I349895`, `#I354081`, `#I356432` - Added support for continuous section break in DocumentEditor.
26+
- `#I422408`, `#I435125` - Optimized SFDT file to reduce the file size relative to a Docx file.
27+
- `#I330729`, `#I256794` - Added support to display bookmark start and end in DocumentEditor.
28+
- `#I333042`, `#I349829` - Added support disable the auto focus to DocumentEditor.
29+
- `#I175038` - Added API to modify the predefine styles in DocumentEditor.
30+
531
## 21.1.35 (2023-03-23)
632

733
### Document Editor
@@ -10,8 +36,6 @@
1036

1137
- Starting from version v21.1.x, the SFDT file generated in Word Processor component is optimized by default to reduce the file size. Hence, the optimized SFDT files can't be directly manipulated as JSON string. Please refer the [documentation](https://ej2.syncfusion.com/documentation/document-editor/how-to/optimize-sfdt).
1238

13-
- Starting from version v21.1.x, the SFDT file generated in Word Processor component is optimized by default to reduce the file size. Hence, the optimized SFDT files can't be directly manipulated as JSON string. Please refer the [documentation](https://ej2.syncfusion.com/react/documentation/document-editor/how-to/optimize-sfdt).
14-
1539
#### Bug Fixes
1640

1741
- `#425697` - Resolved the positioning and line spacing issue in shape document

components/dropdowns/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
## [Unreleased]
44

5+
## 21.1.37 (2023-03-29)
6+
7+
### Mention
8+
9+
#### Bug Fixes
10+
11+
- `#I449973` - Resolved issue where the Mention character would still display after selecting a name from the suggestion list.
12+
13+
### ListBox
14+
15+
#### Bug Fixes
16+
17+
- `#I442262` - Issue with "Script error thrown while using destroy method in change event of list box" has been resolved.
18+
- `#I445397` - Issue with "Script error thrown when navigate the listbox item in grouping listbox through keyboard navigation" has been resolved.
19+
520
## 21.1.35 (2023-03-23)
621

722
### 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": "18.58.20",
3+
"version": "21.1.35",
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.37 (2023-03-29)
6+
7+
### File Manager
8+
9+
#### Bug fixes
10+
11+
- `#I442564` - The issue with `fileOpen` event in File Manager component has been resolved.
12+
513
## 21.1.35 (2023-03-23)
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": "18.20.1",
3+
"version": "21.1.35",
44
"description": "Essential JS 2 FileManager Component for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.1.37 (2023-03-29)
6+
7+
### Gantt Chart
8+
9+
#### Bug Fixes
10+
11+
-`I441276`- Outdent task is not in correct index of modified records in `actionComplete` event issue has been fixed.
12+
-`I435254`, `I444942`- Taskbar not rendered in Pdf exported file when `timelineUnitSize` is initialized issue has been fixed.
13+
14+
15+
-`I441276`- Outdent task is not in correct index of modified records in `actionComplete` event issue has been fixed.
16+
-`I444942`- Taskbar not rendered in Pdf exported file when `timelineUnitSize` is initialized issue has been fixed.
17+
18+
519
## 21.1.35 (2023-03-23)
620

721
### Gantt Chart

components/gantt/package.json

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

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": "1.150.17",
3+
"version": "21.1.35",
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/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-heatmap",
3-
"version": "18.13.20",
3+
"version": "21.1.35",
44
"description": "Feature rich data visulization control used to visualize the matrix data where the individual values are represented as colors for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/imageeditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.1.37 (2023-03-29)
6+
7+
### Image Editor
8+
9+
#### Bug Fixes
10+
11+
- Issue with "Script error thrown while using Toolbar Template" has been resolved.
12+
513
## 21.1.35 (2023-03-23)
614

715
### Image Editor

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": "20.15.0",
3+
"version": "21.1.35",
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": "19.10.3",
3+
"version": "21.1.35",
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/inputs/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.1.37 (2023-03-29)
6+
7+
### Range Slider
8+
9+
#### Bug Fixes
10+
11+
- `#I441327` - The issue with changing event for the first change action in the Slider has been resolved.
12+
513
## 21.1.35 (2023-03-23)
614

715
### Signature

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": "18.73.6",
3+
"version": "21.1.35",
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/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.1.37 (2023-03-29)
6+
7+
### Kanban
8+
9+
#### Bug Fixes
10+
11+
- `#I432638` - Now, when using the kanban `sortSettings` and dropping the cards randomly is sorted properly.
12+
513
## 20.4.54 (2023-03-14)
614

715
### Kanban

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": "20.6.0",
3+
"version": "21.1.35",
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": "20.7.0",
3+
"version": "21.1.35",
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/lineargauge/package.json

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

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": "18.16.5",
3+
"version": "21.1.35",
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

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

1212
## [Unreleased]
1313

14-
## 21.1.35 (2023-03-23)
14+
## 21.1.37 (2023-03-29)
1515

1616
### Maps
1717

0 commit comments

Comments
 (0)