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

0 commit comments

Comments
 (0)