Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit e1c4f92

Browse files
author
pipeline
committed
v30.1.42 is released
1 parent 1e776ad commit e1c4f92

File tree

31 files changed

+98
-210
lines changed

31 files changed

+98
-210
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+
## 30.1.42 (2025年07月29日)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I745300` - Resolved input dependent controls remain dirty after form reset.
12+
513
## 25.2.4 (2024年05月14日)
614

715
### Common

‎components/base/releasenotes/README.md

Lines changed: 0 additions & 183 deletions
This file was deleted.

‎components/base/src/form-base.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,14 +136,17 @@ export class FormBase<T> implements ControlValueAccessor {
136136
}
137137
}
138138
}
139+
const isNullValue: boolean = this.angularValue == null;
139140
this.angularValue = value;
140141
this.isUpdated = true;
141142
// When binding Html textbox value to syncfusion textbox, change event triggered dynamically.
142143
// To prevent change event, trigger change in component side based on `preventChange` value
143144
this.preventChange = this.isFormInit ? false : true;
144145
this.cdr.markForCheck();
145146
if (value === null) {
146-
this.preventChange = false;
147+
if (isNullValue) {
148+
this.preventChange = false;
149+
}
147150
return;
148151
}
149152

‎components/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+
## 30.1.42 (2025年07月29日)
6+
7+
### Accumulation Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I743995` - Now the legend and series points remain intact when updating the data in the data source.
12+
513
## 30.1.41 (2025年07月22日)
614

715
### Chart

‎components/diagrams/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+
## 30.1.42 (2025年07月29日)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I743792` - Enhanced connector interaction, When initiating a connector from an InConnect-only port, the target end now correctly attaches to the port, while the source end follows the mouse pointer during drawing.
12+
- `#I745390` - Fixed an issue where an exception was thrown when loading an EJ1 diagram with PreventDefaults set to true in an EJ2 diagram.
13+
514
## 30.1.41 (2025年07月22日)
615

716
### Diagram

‎components/documenteditor/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-
## 30.1.41 (2025-07-22)
5+
## 30.1.42 (2025-07-29)
66

77
### DocumentEditor
88

‎components/dropdowns/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 30.1.41 (2025-07-22)
5+
## 30.1.42 (2025-07-29)
66

77
### MultiSelect
88

@@ -12,6 +12,12 @@
1212

1313
## 30.1.40 (2025年07月15日)
1414

15+
### DropDownTree
16+
17+
#### Bug fixes
18+
19+
- `#I744501` - Dropdown Tree opening issue in the Firefox browser has been Resolved.
20+
1521
### MultiSelect
1622

1723
#### Bug fixes

‎components/filemanager/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-
## 30.1.41 (2025-07-22)
5+
## 30.1.42 (2025-07-29)
66

77
### FileManager
88

‎components/gantt/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 30.1.41 (2025年07月22日)
5+
## 30.1.42 (2025年07月29日)
6+
7+
### GanttChart
8+
9+
#### Bug fixes
10+
11+
- `#I745434` - Taskbar rendering is mismatched between UI and pdf export while using split task issue has been resolved.
12+
- `#I732347` - Spinner is not shown when editing a cell issue has been resolved.
13+
- `#I751091` - Disabling `allowEditing` property for custom columns does not work issue has been resolved.
14+
15+
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
16+
17+
## 30.1.41 (2025年07月08日)
618

719
### GanttChart
820

@@ -14,7 +26,9 @@
1426
- `#I746332` - Console error occurs when refresh action is performed in Gantt followed by toolbar add action issue has been resolved.
1527
- `#I748609` - The issue where the `actionBegin` event was not triggered during the save operation following cell editing has been successfully resolved.
1628

17-
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
29+
- `#F197011` - Fixed an issue where collapsed parent tasks automatically expanded during drag-and-drop in the `multitaskbar` feature, ensuring they remain collapsed as intended.
30+
- `#I746332` - Console error occurs when refresh action is performed in Gantt followed by toolbar add action issue has been resolved.
31+
- `#I748609` - The issue where the `actionBegin` event was not triggered during the save operation following cell editing has been successfully resolved.
1832

1933
## 30.1.39 (2025年07月08日)
2034

‎components/grids/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-
## 30.1.41 (2025-07-22)
5+
## 30.1.42 (2025-07-29)
66

77
### Grid
88

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /