Skip to content

Commit c0965ff

Browse files
author
pipeline
committed
v21.2.10 is released
1 parent 71cbef4 commit c0965ff

Some content is hidden

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

62 files changed

+1139
-34
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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,30 @@
22

33
## [Unreleased]
44

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

731
### 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.9",
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: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,67 @@
22

33
## [Unreleased]
44

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

768
### 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.9",
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/circulargauge/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
55

66
## [Unreleased]
77

8+
## 21.2.10 (2023-06-13)
9+
10+
### Circular Gauge
11+
12+
#### Bug fixes
13+
14+
- `#I469483` - The annotation is no longer removed when the pointer tooltip in the Circular Gauge component is removed.
15+
816
## 21.1.35 (2023-03-23)
917

1018
### Circular Gauge

0 commit comments

Comments
 (0)