Skip to content

Commit 43e125b

Browse files
author
pipeline
committed
v21.2.9 is released
1 parent 71cbef4 commit 43e125b

Some content is hidden

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

59 files changed

+992
-33
lines changed

components/base/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.8 (2023-05-30)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I432022` - The issue with "Grid component triggers multiple requests on state change if the column has a field property as an empty string" has been resolved.
12+
13+
## 21.2.6 (2023-05-23)
14+
15+
### Common
16+
17+
#### Bug Fixes
18+
19+
- `#I432022` - The issue with "Grid component triggers multiple requests on state change if the column does not have field property" has been resolved.
20+
521
## 21.1.41 (2023-04-18)
622

723
### 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.8",
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' && isNullOrUndefined(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.6",
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: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
## [Unreleased]
44

5+
## 21.2.8 (2023-05-30)
6+
7+
### TimePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I461842` - The performance issue with the Time picker, which was caused by the creation of the popup during component rendering has been resolved.
12+
13+
## 21.2.6 (2023-05-23)
14+
15+
### TimePicker
16+
17+
#### Bug Fixes
18+
19+
- `#SF-461465` - Issue with "Time picker dropdown width not responsive to input and icon" has been resolved.
20+
521
## 21.1.41 (2023-04-18)
622

723
### 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.8",
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: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,59 @@
22

33
## [Unreleased]
44

5+
## 21.2.9 (2023-06-06)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#F182216` - Fixed the issue where the data label was hidden.
12+
- `#I464403` - Fixed an issue where strip line text was getting cut off when it was too long.
13+
14+
## 21.2.8 (2023-05-30)
15+
16+
### Chart
17+
18+
#### Bug Fixes
19+
20+
- `#F181551` - The tooltip now displays the percentage of each stacking group.
21+
- `#F182191` - Now, tooltip values are displayed correctly when no data is given for the data point in a series.
22+
- `#I461357` - Now, zooming and selection are working properly when using both at the same time.
23+
- `#I452148` - The issue of the y-axis label overlap has been fixed.
24+
- `#I464813` - Fixed MinorGridLine to be visible even when the width is not set for MajorTickLine.
25+
- `#I463171` - Fixed issue where column width was not being set properly.
26+
- `#I462090` - Fixed an issue where startFromAxis was not working correctly for stripLine.
27+
28+
## 21.2.6 (2023-05-23)
29+
30+
### Chart
31+
32+
#### Bug Fixes
33+
34+
- `#F182033` - The marker is now proper while zooming the chart.
35+
36+
## 21.2.5 (2023-05-16)
37+
38+
### Chart
39+
40+
#### Bug Fixes
41+
42+
- `#F181976` - Now the tooltip is proper when using two axes in a chart.
43+
- `#I451537` - Now, the axis label value is correct when an interval is not given.
44+
- `#I451537` - Fixed an issue where the axis label was not displaying correctly.
45+
- `#I451537` - Now, the secondary axis label will be correctly displayed without an interval.
46+
- `#I452395` - Fixed an issue where the y-axis axis label was displaying double values.
47+
- `#I452390` - Fixed the issue where the axis label was being trimmed despite the shift given to the edgeLabelPlacement.
48+
49+
## 21.2.4 (2023-05-09)
50+
51+
### Chart
52+
53+
#### Bug Fixes
54+
55+
- `#I457088` - Fixed the console error thrown on clicking on the legend.
56+
- `#I459170` - Now the accumulation data label is visible when using a template.
57+
558
## 21.2.3 (2023-05-03)
659

760
### 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.8",
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: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,50 @@
22

33
## [Unreleased]
44

5+
## 21.2.9 (2023-06-06)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I463138` - Now, Scroll bar is updated properly without flickering while scrolling the diagram using touchpad.
12+
- `#I464508` - The DOM Exception will no longer thrown while adding group node dynamically with multiple layers.
13+
14+
## 21.2.8 (2023-05-30)
15+
16+
### Diagram
17+
18+
#### Bug Fixes
19+
20+
- `#I461020` - The undefined Exception will No longer thrown while dragging Swimlane after performing undo/redo on swimlane child nodes.
21+
- `#I462780` - Now, Nodes are updated properly while zoom out diagram in canvas mode.
22+
23+
## 21.2.6 (2023-05-23)
24+
25+
### Diagram
26+
27+
#### Bug Fixes
28+
29+
- `#I464229` - Now, Complex hierarchical tree layout is working fine while injecting line distribution.
30+
31+
## 21.2.5 (2023-05-16)
32+
33+
### Diagram
34+
35+
#### Bug Fixes
36+
37+
- `#I456104` - Now, swimlane child nodes are selectable after save and load.
38+
39+
## 21.2.4 (2023-05-09)
40+
41+
### Diagram
42+
43+
#### Bug Fixes
44+
45+
- `#I456288` - Now, scroller updated properly when we move nodes outside viewport.
46+
- `#I458205` - Now, bezier connector annotation alignment is working properly.
47+
- `#I456037` - Now, while hovering the port with single select and ZoomPan constraints drawing tool enabled.
48+
549
## 21.2.3 (2023-05-03)
650

751
### Diagram

0 commit comments

Comments
 (0)