Skip to content

Commit 33099a5

Browse files
author
pipeline
committed
v29.2.10 is released
1 parent 4543e80 commit 33099a5

File tree

106 files changed

+2451
-341
lines changed

Some content is hidden

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

106 files changed

+2451
-341
lines changed

controls/barcodegenerator/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 29.2.8 (2025-06-03)
5+
## 29.2.10 (2025-06-10)
66

77
### Barcode
88

controls/base/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 29.2.8 (2025-06-03)
5+
## 29.2.10 (2025-06-10)
66

77
### Common
88

controls/buttons/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 29.2.8 (2025-06-03)
5+
## 29.2.10 (2025-06-10)
66

77
### Switch
88

controls/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+
## 29.2.10 (2025-06-10)
6+
7+
### DatePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I715669` - Resolved an issue where the duplicate change event triggers when opening a `dialog` from the DatePicker change event.
12+
513
## 29.2.5 (2025-05-21)
614

715
### DatePicker

controls/calendars/src/datepicker/datepicker.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1626,6 +1626,9 @@ export class DatePicker extends Calendar implements IInput {
16261626
this.changedArgs.element = this.element;
16271627
this.changedArgs.isInteracted = this.isInteracted;
16281628
if (!this.isDynamicValueChanged) {
1629+
if (this.isAngular) {
1630+
this.previousDate = this.value && new Date(+this.value);
1631+
}
16291632
this.trigger('change', this.changedArgs);
16301633
}
16311634
this.previousDate = this.value && new Date(+this.value);

controls/calendars/src/timepicker/timepicker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1766,7 +1766,7 @@ export class TimePicker extends Component<HTMLElement> implements IInput {
17661766
keyConfigs: this.keyConfigure,
17671767
eventName: 'keydown'
17681768
});
1769-
if (this.showClearButton && this.inputElement ) {
1769+
if (this.inputElement && (this.showClearButton || this.enableMask)) {
17701770
EventHandler.add(this.inputElement, 'mousedown', this.mouseDownHandler, this);
17711771
}
17721772
}

controls/charts/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+
## 29.2.10 (2025-06-10)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I730840` - The console warning for the shared tooltip in trend line will no longer occurs.
12+
513
## 29.2.8 (2025-06-03)
614

715
### Chart

controls/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-charts",
3-
"version": "29.2.5",
3+
"version": "29.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.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/charts/src/chart/user-interaction/tooltip.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ export class Tooltip extends BaseTooltip {
569569
format = format.replace(
570570
val.source, this.formatPointValue(
571571
point, val.source === '${point.x}' ? xAxis : yAxis,
572-
dataValue, val.source === '${point.x}',
572+
dataValue, (val.source === '${point.x}' && series.category !== 'TrendLine'),
573573
(
574574
val.source === '${point.high}' ||
575575
val.source === '${point.open}' ||

controls/diagrams/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 29.2.8 (2025-06-03)
5+
## 29.2.10 (2025-06-10)
66

77
### Diagram
88

0 commit comments

Comments
 (0)