Skip to content

Commit 718c98d

Browse files
author
pipeline
committed
v21.2.6 is released
1 parent 71cbef4 commit 718c98d

Some content is hidden

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

51 files changed

+576
-27
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.2.6 (2023-05-23)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I432022` - The issue with "Grid component triggers multiple requests on state change if the column does not have field property" has been resolved.
12+
513
## 21.1.41 (2023-04-18)
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.2.3",
3+
"version": "21.2.6",
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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,14 @@ export class ComponentBase<P, S> extends React.Component<P, S> {
327327
}
328328
return this.compareObjects(tempVal, tempVal2).status;
329329
}
330+
if (value1.constructor &&
331+
value1.constructor.name === value2.constructor.name &&
332+
(value1.constructor.name === 'Query' ||
333+
value1.constructor.name === 'DataManager')) {
334+
if (JSON.stringify(value1) === JSON.stringify(value2)) {
335+
return true;
336+
}
337+
}
330338
}
331339
return false;
332340
}
@@ -373,6 +381,9 @@ export class ComponentBase<P, S> extends React.Component<P, S> {
373381
}
374382
status = false;
375383
}
384+
if (this.getModuleName() === 'grid' && propName === 'columns' && !curObj['field']) {
385+
curObj['field'] = undefined;
386+
}
376387
if (Object.keys(curObj).length) {
377388
diffArray.push({ index: i, value: curObj, key: propName });
378389
}

components/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.2.6 (2023-05-23)
6+
7+
### RadioButton
8+
9+
#### Bug Fixes
10+
11+
- `#I463728` - The issue with "Provide the boolean value support for radio button while using the v-model property in VUE platform" has been resolved.
12+
13+
## 21.2.5 (2023-05-16)
14+
15+
### RadioButton
16+
17+
#### Bug Fixes
18+
19+
- `#F182133` - The issue with "Ripple element is not destroyed properly while clicking on radio button component" has been resolved.
20+
521
## 21.2.3 (2023-05-03)
622

723
### Switch

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": "21.2.3",
3+
"version": "21.2.5",
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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 21.2.6 (2023-05-23)
6+
7+
### TimePicker
8+
9+
#### Bug Fixes
10+
11+
- `#SF-461465` - Issue with "Time picker dropdown width not responsive to input and icon" has been resolved.
12+
513
## 21.1.41 (2023-04-18)
614

715
### DatePicker

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": "21.2.3",
3+
"version": "21.2.5",
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: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,36 @@
22

33
## [Unreleased]
44

5+
## 21.2.6 (2023-05-23)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#F182033` - The marker is now proper while zooming the chart.
12+
13+
## 21.2.5 (2023-05-16)
14+
15+
### Chart
16+
17+
#### Bug Fixes
18+
19+
- `#F181976` - Now the tooltip is proper when using two axes in a chart.
20+
- `#I451537` - Now, the axis label value is correct when an interval is not given.
21+
- `#I451537` - Fixed an issue where the axis label was not displaying correctly.
22+
- `#I451537` - Now, the secondary axis label will be correctly displayed without an interval.
23+
- `#I452395` - Fixed an issue where the y-axis axis label was displaying double values.
24+
- `#I452390` - Fixed the issue where the axis label was being trimmed despite the shift given to the edgeLabelPlacement.
25+
26+
## 21.2.4 (2023-05-09)
27+
28+
### Chart
29+
30+
#### Bug Fixes
31+
32+
- `#I457088` - Fixed the console error thrown on clicking on the legend.
33+
- `#I459170` - Now the accumulation data label is visible when using a template.
34+
535
## 21.2.3 (2023-05-03)
636

737
### 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.2.3",
3+
"version": "21.2.5",
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/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.2.6 (2023-05-23)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I464229` - Now, Complex hierarchical tree layout is working fine while injecting line distribution.
12+
13+
## 21.2.5 (2023-05-16)
14+
15+
### Diagram
16+
17+
#### Bug Fixes
18+
19+
- `#I456104` - Now, swimlane child nodes are selectable after save and load.
20+
21+
## 21.2.4 (2023-05-09)
22+
23+
### Diagram
24+
25+
#### Bug Fixes
26+
27+
- `#I456288` - Now, scroller updated properly when we move nodes outside viewport.
28+
- `#I458205` - Now, bezier connector annotation alignment is working properly.
29+
- `#I456037` - Now, while hovering the port with single select and ZoomPan constraints drawing tool enabled.
30+
531
## 21.2.3 (2023-05-03)
632

733
### 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": "21.2.3",
3+
"version": "21.2.5",
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: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,55 @@
22

33
## [Unreleased]
44

5+
## 21.2.6 (2023-05-23)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I455945` - Resolved the issue in Shape position.
12+
- `#I457467` - Now, getStyle() API will return the paragraph format.
13+
- `#I454858` - Resolved the image missing issue in footer.
14+
- `#I451667` - Horizontal scroll bar is not update properly based on cursor position.
15+
- `#I457039` - Resolved the console error while giving accept all.
16+
- `#I453407` - Resolved the script error when loading the document with smileys.
17+
18+
#### New Features
19+
20+
- `#I448978` - Added preservation support for text wrapping break.
21+
- `#F179297` - Added navigation support between the multiple comments in a single line while clicking the comment icon.
22+
- `#I433546` - Added support to show start and end markers for restricted range.
23+
- `#I450206` - Added support to restrict maximum number of columns when creating a table.
24+
25+
## 21.2.5 (2023-05-16)
26+
27+
### Document Editor
28+
29+
#### Bug Fixes
30+
31+
- `#I449912` - Resolved layout issue while opening document.
32+
- `#I450342` - Resolved the wrong Font issue while opening a document.
33+
- `#I458331` - Resolved the paragraph combine issue when insert and delete comment.
34+
- `#I458334` - Cursor position issue is resolved when shift enter key is pressed.
35+
- `#I449581` - Resolved the script error when loading the track changes document with author field empty
36+
- `#I452303` - Layout issue is now not occurred when editing the document.
37+
- `#I452150` - Resolved the hanging issue when opening the attached document.
38+
- `#I453495` - Resolved the Overlapping issue when we do enter/page break before the shape.
39+
- `#I453196` - Resolved the issue in when perform undo action for Arabic content
40+
- `#I454659` - Resolved the issue occurred when performing track changes for Arabic content.
41+
- `#I449049` - A performance issue is resolved when typing inside the table.
42+
43+
## 21.2.4 (2023-05-09)
44+
45+
### Document Editor
46+
47+
#### Bug Fixes
48+
49+
- `#I451421` - Resolved the issue with list indentation.
50+
- `#I450834` - Resolved the Script issue while opening SFDT.
51+
- `#I452243` - Resolved the issue with modifying the style in existing styles.
52+
- `#I449324` - Resolved the issue occurred while exporting the document in the .docx format.
53+
554
## 21.2.3 (2023-05-03)
655

756
### 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": "21.2.3",
3+
"version": "21.2.5",
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

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

33
## [Unreleased]
44

5+
## 21.2.6 (2023-05-23)
6+
7+
- `#I451885` - Resolved the performance issue when multiselect component is rendered with large number of data.
8+
9+
## 21.2.5 (2023-05-16)
10+
11+
### ListBox
12+
13+
#### Bug Fixes
14+
15+
- `#I461307` - Issue with "No Records Template not renders properly when we set the default string in listbox" has been resolved.
16+
17+
### DropDownList
18+
19+
#### Bug Fixes
20+
21+
- `I460077` - Issue with "The popup is not closing properly when the focus is moved between two dropdowns" has been resolved.
22+
23+
### ComboBox
24+
25+
#### Bug Fixes
26+
27+
- `#I452948` - "The memory leak issue detected in the combobox component within the detach element tab of the Edge browser" has been resolved.
28+
29+
### Autocomplete
30+
31+
#### Bug Fixes
32+
33+
- `#I460080` - The issue "Query is not working when using autocomplete with value and categories has same string value" has been resolved.
34+
35+
## 21.2.4 (2023-05-09)
36+
37+
### ListBox
38+
39+
#### Bug Fixes
40+
41+
- `#I453746` - Issue with "Selected items not focusing properly in listbox while using selectItems method" has been resolved.
42+
- `#I461307` - Issue with "No Records Template not renders properly when we set the default string in listbox" has been resolved.
43+
544
## 21.2.3 (2023-05-03)
645

746
### ListBox

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

33
## [Unreleased]
44

5+
## 21.2.5 (2023-05-16)
6+
7+
### File Manager
8+
9+
#### Bug fixes
10+
11+
- `#I458668` - The issue, replace dialog shows when uploading the same file to different directories in File Manager with the SQL File Provider has been resolved.
12+
- `#I464322` - The issue with `fileOpen` event in the File Manager component has been resolved.
13+
514
## 21.2.3 (2023-05-03)
615

716
### 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": "21.2.3",
3+
"version": "21.2.5",
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: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,57 @@
22

33
## [Unreleased]
44

5+
## 21.2.6 (2023-05-23)
6+
7+
### Gantt Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I461435` - Adding and deleting record rapidly while displaying tooltip cause error has been fixed.
12+
- `#I461087` - Offset value getting modified incorrectly issue has been fixed.
13+
- `#I461778` - Misalignment in rows on Tree Grid and Gantt in virtual scroll issue has been fixed
14+
15+
- `#I461435` - Adding and deleting record rapidly while displaying tooltip cause error has been fixed.
16+
17+
## 21.2.5 (2023-05-16)
18+
19+
### Gantt Chart
20+
21+
#### Bug Fixes
22+
23+
- `#I461778` - Misalignment in rows on Tree Grid and Gantt in virtual scroll issue has been fixed
24+
- `#I181309` - splitter position not updating after resize issue has been fixed.
25+
- `#I449506` - Moving child row referencing another parent row will not move all of the descendants of that another parent row issue has been fixed.
26+
- `#I457803` - Offset value is not correctly updated while connecting predecessor issue has been fixed.
27+
- `#I449944` - Zoom out button in toolbar not enabled once after zoom in operation issue has been fixed.
28+
- `#I434098` - Issue while rendering resource view without child mapping has been fixed.
29+
30+
- `#I461778` - Misalignment in rows on Tree Grid and Gantt in virtual scroll issue has been fixed
31+
- `#I449506` - Moving child row referencing another parent row will not move all of the descendants of that another parent row issue has been fixed.
32+
33+
## 21.2.4 (2023-05-09)
34+
35+
### Gantt Chart
36+
37+
#### Bug Fixes
38+
39+
- `#I457032` - Task label not rendered properly when we render as template issue has been fixed.
40+
- `#I457212` - Timeline renders different in `Firefox` and `Chrome` issue has been fixed.
41+
- `#I456146` - Console error occur while changing task field after removing toolbar issue has been fixed.
42+
- `#F181579` - Style not reflected on the notes column when we perform dialog edit issue has been fixed.
43+
- `#I456453` - `CSS class` is not updated while changing it through `updateRecordbyId` method issue has been fixed.
44+
45+
- `#I457212` - Timeline renders different in `Firefox` and `Chrome` issue has been fixed.
46+
- `#I456146` - Console error occur while changing task field after removing toolbar issue has been fixed.
47+
548
## 21.2.3 (2023-05-03)
649

750
### Gantt Chart
851

952
#### Bug Fixes
1053

1154
- `#I441205` - Two spinner appears while performing action issue has been fixed.
12-
- -`#I451257`- No proper template for manual milestone parent.
55+
- `#I451257` - No proper template for manual milestone parent.
1356
- `#I443041` - Gantt react performance rendering issue during initial load has been fixed.
1457

1558
-`#I451257`- No proper template for manual milestone parent.

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": "21.2.3",
3+
"version": "21.2.5",
44
"description": "Essential JS 2 Gantt Component for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)